:root {
  --bg: #050505;
  --bg-soft: #101010;
  --panel: rgba(13, 13, 13, 0.88);
  --panel-solid: #141414;
  --text: #f5f2eb;
  --muted: #c4bcab;
  --gold: #c7a36a;
  --gold-strong: #d9b884;
  --border: rgba(199, 163, 106, 0.28);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 26px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(199, 163, 106, 0.12), transparent 28%),
    linear-gradient(180deg, #090909 0%, #050505 35%, #0a0a0a 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner,
.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: auto;
  height: 44px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 0;
  border-radius: 999px;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  font-family: "Times New Roman", Times, serif;
  font-size: 0.9rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #d9d0bf;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero__slides,
.hero__slide {
  position: absolute;
  inset: 0;
}

.hero__slide {
  opacity: 0;
  transition: opacity 700ms ease;
  background-size: cover;
  background-position: center;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.72)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.54), transparent 58%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 0 88px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-family: "Times New Roman", Times, serif;
  font-size: 0.84rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1,
.section-title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.94;
  font-weight: 400;
}

.hero p,
.section-intro,
.lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-link {
  display: inline-block;
  margin-top: 4px;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: #d3c18c;
}

.section-link:hover {
  color: #b18c42;
}

.hero__dots {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.hero__dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  padding: 0;
}

.hero__dots button.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

.section {
  padding: 96px 0;
}

.section--tight {
  padding: 72px 0;
}

.section--split {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
}

.section--dark {
  background: rgba(255, 255, 255, 0.015);
}

.grid-3,
.grid-4,
.grid-auto {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
}

.service-card h3,
.stat-card h3,
.contact-card h3,
.bio-card h3 {
  margin: 0 0 12px;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.42rem;
  font-weight: 400;
  color: var(--text);
}

.service-card {
  overflow: hidden;
  padding: 0;
}

.service-card__image {
  aspect-ratio: 1 / 0.78;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__body {
  padding: 24px 28px 28px;
}

.service-card p,
.stat-card p,
.contact-card p,
.bio-card p,
.testimonial p {
  margin: 0;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--text);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.button:hover {
  background: rgba(199, 163, 106, 0.14);
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-banner {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  min-height: 420px;
  display: grid;
  align-items: end;
  padding: 48px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.feature-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.82));
}

.feature-banner > * {
  position: relative;
  z-index: 1;
}

.feature-banner h2,
.feature-banner h3,
.page-hero h1,
.subsection-title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
}

.feature-banner h2,
.page-hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 0.98;
}

.feature-banner p {
  max-width: 560px;
  color: #e0d8cb;
}

.instagram-band {
  background: #050505;
  padding: 22px 0 36px;
}

.signature-band {
  background: #050505;
  padding: 22px 0 36px;
}

.certification-band {
  padding-top: 0;
}

.instagram-band .container {
  width: 100%;
  max-width: none;
}

.signature-band .container {
  width: 100%;
  max-width: none;
}

.certification-band .container {
  width: 100%;
  max-width: none;
}

.instagram-panel {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  text-align: center;
  background-image: url("images/home/PARALAX10.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.instagram-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
}

.instagram-panel__content {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(calc(100% - 48px), 720px);
  padding: 40px 24px 28px;
}

.instagram-mark {
  display: inline-flex;
  justify-content: center;
  margin: 0 0 24px;
}

.instagram-mark img {
  width: auto;
  height: 64px;
}

.instagram-label {
  margin: 0 0 12px;
  font-family: "Times New Roman", Times, serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #bdb7aa;
}

.instagram-handle {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.6rem, 3.8vw, 2.45rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b8b4ab;
  text-align: center;
}

.instagram-link {
  display: inline-block;
  margin-top: 18px;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: #d3c18c;
}

.instagram-link:hover {
  color: #b18c42;
}

.instagram-wordmark {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.55rem;
  color: #111;
}

.latest-grid .product-card {
  padding: 12px;
}

.product-card img {
  aspect-ratio: 1 / 1;
  border-radius: calc(var(--radius) - 8px);
  object-fit: cover;
}

.product-card__title {
  margin: 16px 0 6px;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.product-card__tag {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.logo-row {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.logo-row .card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.logo-row img {
  max-height: 72px;
  width: auto;
}

.signature-panel {
  position: relative;
  min-height: 630px;
  display: grid;
  place-items: center;
  text-align: center;
  background-image: url("images/home/PARALAX5.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.signature-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.7));
}

.signature-panel__content {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(calc(100% - 48px), 720px);
  padding: 40px 24px 28px;
}

.signature-label {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.35rem;
  font-style: italic;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #bdb7aa;
}

.signature-link {
  display: inline-block;
  margin-top: 18px;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: #d3c18c;
}

.signature-link:hover {
  color: #b18c42;
}

.certification-panel {
  padding: 28px;
  background: #fff;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.certification-panel .card {
  min-height: 150px;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.certification-panel img {
  max-height: 92px;
}

.page-hero {
  padding: 120px 0 56px;
}

.page-hero__inner {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.about-intro {
  text-align: center;
}

.about-intro .lead {
  margin-left: auto;
  margin-right: auto;
}

.about-section-heading > .eyebrow {
  display: block;
  text-align: center;
}

.diamonds-section-heading {
  text-align: center;
}

.diamonds-section-heading .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.diamonds-centered-copy {
  text-align: center;
}

.diamonds-centered-copy .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.diamonds-band--light {
  background: #fff;
}

.diamonds-band--light .diamonds-quote-title,
.diamonds-band--light .section-intro {
  color: #4d4d4d;
}

.diamonds-band--light .diamond-item span,
.diamonds-band--light .eyebrow {
  color: #b18c42;
}

.diamonds-band .diamond-set,
.diamonds-band .grid-4 {
  margin-top: 42px !important;
}

.diamond-set.diamond-set--cuts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.diamond-set.diamond-set--cuts .diamond-item {
  min-width: 0;
}

.diamonds-quote-title {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--muted);
}

.page-hero .diamonds-quote-title {
  font-size: 1.05rem;
  line-height: 1.5;
}

.diamonds-quote-title--wide {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.diamonds-separator {
  width: 100%;
  height: 8px;
  background: #050505;
}

.diamond-item .image-frame,
.diamonds-band .image-frame {
  box-shadow: none;
  border: 0;
}

.diamond-item .image-frame {
  width: 80%;
  margin: 0 auto;
}

.diamonds-band .grid-4 .image-frame {
  width: 80%;
  margin: 0 auto;
}

.page-hero--image {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  background-size: cover;
  background-position: center;
}

.page-hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.8));
}

.page-hero--image .page-hero__inner {
  position: relative;
  z-index: 1;
  padding-bottom: 44px;
}

.stats {
  display: grid;
  gap: 18px;
}

.stat-card {
  padding: 20px 24px;
}

.meter {
  margin-top: 14px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-strong));
}

.team-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-grid--published {
  gap: 78px 28px;
  align-items: start;
}

.bio-card img {
  aspect-ratio: 4 / 4.3;
  border-radius: calc(var(--radius) - 10px);
  object-fit: cover;
  margin-bottom: 18px;
}

.bio-card--published {
  position: relative;
  padding-top: 64px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  color: var(--text);
  box-shadow: var(--shadow);
  border-color: var(--border);
}

.bio-card--published h3 {
  color: var(--text);
  margin-bottom: 4px;
}

.bio-card--published p {
  color: var(--muted);
}

.bio-card__avatar-wrap {
  position: absolute;
  left: 50%;
  top: -42px;
  width: 90px;
  height: 90px;
  margin-left: -45px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.bio-card__avatar-wrap img {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 50%;
  object-fit: cover;
}

.bio-card__role,
.quote-credit {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.bio-card--published .bio-card__role {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.testimonial-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.testimonial strong {
  display: block;
  margin-top: 16px;
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--gold);
}

.diamond-set {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.diamond-item {
  text-align: center;
}

.diamond-item .image-frame img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.diamond-item span {
  display: block;
  margin-top: 12px;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  text-transform: uppercase;
  color: var(--gold);
}


.gallery-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 0.8fr));
  justify-content: center;
}

.gallery-grid .product-card {
  padding: 12px;
}

.gallery-grid img {
  aspect-ratio: 2680 / 1787;
  object-fit: cover;
}

.gallery-page[hidden] {
  display: none;
}

.gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.gallery-pagination__button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: #d9d0bf;
  cursor: pointer;
  font-family: "Times New Roman", Times, serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.gallery-pagination__button:hover:not(:disabled),
.gallery-pagination__button.is-current {
  border-color: var(--gold);
  background: var(--gold);
  color: #0c0c0c;
}

.gallery-pagination__button:disabled {
  opacity: 0.45;
  cursor: default;
}

.contact-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-card--plain {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.contact-card--plain .contact-list {
  justify-items: center;
}

.social-links {
  margin-top: 28px;
  text-align: center;
}

.social-links strong {
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--gold);
}

.social-links__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.social-links__icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c1c1c1;
}

.social-links__icons a:hover {
  color: var(--gold);
}

.social-links__icons svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.contact-list div strong {
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--gold);
}

.contact-list__line {
  display: block;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 14px 16px;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.site-footer {
  padding: 30px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer p {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  color: #c2b59f;
  text-align: center;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4px;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.92);
    border: 1px solid var(--border);
  }

  .site-nav.is-open {
    display: flex;
  }

  .section--split,
  .contact-layout,
  .team-grid,
  .testimonial-grid,
  .gallery-grid,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 72vh;
  }

  .feature-banner {
    min-height: 340px;
    padding: 34px;
  }

  .instagram-panel {
    min-height: 360px;
  }

  .signature-panel {
    min-height: 510px;
  }
}

@media (max-width: 640px) {
  .site-header__inner,
  .container,
  .page-hero__inner,
  .site-footer p {
    width: min(calc(100% - 26px), var(--container));
  }

  .brand img {
    height: 35px;
  }

  .hero__content {
    padding-bottom: 58px;
  }

  .hero h1,
  .section-title,
  .feature-banner h2,
  .page-hero h1 {
    font-size: clamp(2.4rem, 14vw, 4.3rem);
  }

  .card,
  .testimonial {
    padding: 22px;
  }

  .feature-banner {
    padding: 24px;
  }

  .instagram-panel__content {
    width: min(calc(100% - 28px), 560px);
    padding-top: 26px;
  }

  .instagram-mark {
    margin-bottom: 18px;
  }

  .instagram-mark img {
    height: 52px;
  }

  .instagram-handle {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }

  .bio-card--published {
    padding-top: 76px;
  }

  .bio-card__avatar-wrap {
    top: -34px;
    width: 84px;
    height: 84px;
    margin-left: -42px;
  }

  .bio-card--published h3 {
    margin-top: 8px;
    font-size: 2rem;
  }

  .signature-panel__content {
    width: min(calc(100% - 28px), 560px);
  }

  .logo-row {
    grid-template-columns: 1fr;
  }

  .diamond-set,
  .grid-4,
  .diamond-set.diamond-set--cuts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .diamond-item .image-frame,
  .diamonds-band .grid-4 .image-frame {
    width: 100%;
    max-width: 150px;
  }
}
