:root {
  --ink: #171511;
  --muted: #646973;
  --line: #ded6c9;
  --surface: #fffdf8;
  --surface-soft: #f8f3ec;
  --surface-tint: #efe6d9;
  --accent: #213a57;
  --accent-dark: #102238;
  --metal: #bd9a60;
  --metal-dark: #8b6837;
  --shadow: 0 28px 70px rgba(31, 35, 44, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.top-announcement {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: #ffffff;
  background: #050505;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  min-height: 72px;
  padding: 0 clamp(20px, 3vw, 42px);
  border-bottom: 1px solid #e5e5e5;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.mobile-menu-button {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-button span {
  position: absolute;
  width: 24px;
  height: 1px;
  background: #111111;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.mobile-menu-button span:nth-child(1) {
  transform: translateY(-7px);
}

.mobile-menu-button span:nth-child(3) {
  transform: translateY(7px);
}

.site-header.is-menu-open .mobile-menu-button span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-menu-open .mobile-menu-button span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .mobile-menu-button span:nth-child(3) {
  transform: rotate(-45deg);
}

.brand {
  display: inline-flex;
  grid-column: 2;
  grid-row: 1;
  align-items: center;
  justify-self: center;
  min-width: 0;
}

.brand-logo {
  width: min(154px, 40vw);
  max-height: 44px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  grid-column: 1;
  grid-row: 1;
  gap: clamp(14px, 2vw, 28px);
  justify-content: flex-start;
  min-width: 0;
  color: #171717;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav .mobile-menu-extra {
  display: none;
}

.site-nav a,
.header-action,
.primary-action,
.secondary-action,
.filter-button,
.showcase-filter,
.quote-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 0 13px;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--ink);
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.language-control {
  display: inline-flex;
  grid-column: 3;
  grid-row: 1;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.language-control label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.language-control select {
  min-height: 42px;
  width: 150px;
  border: 1px solid #d7d7d7;
  border-radius: 0;
  padding: 0 12px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  outline: none;
}

.language-control select:focus {
  border-color: var(--metal);
  box-shadow: 0 0 0 3px rgba(180, 138, 78, 0.16);
}

.mobile-header-icons {
  display: none;
}

.mobile-header-icons a {
  color: #111111;
}

.mobile-icon-search,
.mobile-icon-bag {
  position: relative;
  width: 34px;
  height: 34px;
}

.mobile-icon-search::before {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 18px;
  height: 18px;
  border: 2px solid #111111;
  border-radius: 50%;
  content: "";
}

.mobile-icon-search::after {
  position: absolute;
  right: 5px;
  bottom: 7px;
  width: 11px;
  height: 2px;
  background: #111111;
  content: "";
  transform: rotate(45deg);
  transform-origin: center;
}

.mobile-icon-heart {
  width: 38px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1;
}

.mobile-icon-bag::before {
  position: absolute;
  right: 4px;
  bottom: 4px;
  left: 4px;
  height: 22px;
  border: 2px solid #111111;
  content: "";
}

.mobile-icon-bag::after {
  position: absolute;
  top: 2px;
  left: 11px;
  width: 12px;
  height: 12px;
  border: 2px solid #111111;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  content: "";
}

#google_translate_element {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-gadget {
  display: none !important;
}

body {
  top: 0 !important;
}

.header-action,
.primary-action {
  border: 1px solid var(--accent-dark);
  color: #ffffff;
  background: var(--accent-dark);
  font-weight: 700;
}

.header-action {
  grid-column: 4;
  grid-row: 1;
  max-width: 205px;
  min-width: 0;
  white-space: normal;
  text-align: center;
  line-height: 1.12;
}

.header-action:hover,
.primary-action:hover {
  border-color: var(--accent);
  background: var(--accent);
}

@media (min-width: 1181px) {
  .header-action {
    max-width: none;
    min-width: max-content;
    white-space: nowrap;
    line-height: 1;
  }
}

.secondary-action {
  border: 1px solid rgba(199, 165, 111, 0.46);
  color: var(--ink);
  background: var(--surface);
  font-weight: 700;
}

.secondary-action:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  color: #ffffff;
  background: #1f7a4d;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(23, 21, 17, 0.22);
}

.floating-whatsapp:hover {
  background: #17613c;
}

.home-hero-section {
  border-bottom: 1px solid #e5e5e5;
  background: #111111;
}

.home-hero-slide {
  position: relative;
  min-height: clamp(520px, 58vw, 720px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.02) 58%, rgba(0, 0, 0, 0.1)),
    url("./assets/pave-1ct.png") 70% 50% / min(1180px, 82vw) no-repeat,
    linear-gradient(110deg, #23384b 0%, #d7e0e8 48%, #f7f7f6 100%);
}

.home-hero-copy {
  position: absolute;
  bottom: clamp(42px, 5vw, 74px);
  left: clamp(28px, 4vw, 54px);
  z-index: 1;
  display: grid;
  gap: 24px;
  max-width: 620px;
  color: #ffffff;
}

.home-hero-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.5vw, 72px);
  font-weight: 500;
  line-height: 0.98;
  text-transform: none;
}

.home-hero-copy a {
  width: max-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 2px solid #ffffff;
  padding: 0 28px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero-copy a:hover {
  color: #111111;
  background: #ffffff;
}

.home-hero-dots {
  position: absolute;
  right: 50%;
  bottom: 42px;
  display: flex;
  gap: 14px;
  transform: translateX(50%);
}

.home-hero-dots span {
  width: 9px;
  height: 9px;
  border: 1px solid #ffffff;
  background: transparent;
}

.home-hero-dots span.is-active {
  background: #ffffff;
}

.home-category-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  padding: 30px clamp(20px, 3vw, 40px) 24px;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
}

.home-category-rail a {
  display: grid;
  justify-items: center;
  gap: 11px;
  min-width: 0;
  color: #111111;
  text-align: center;
}

.home-category-rail img {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 10px;
  background: #f5f3ef;
  object-fit: contain;
}

.home-category-rail span {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-split-promos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
}

.home-split-promos a {
  position: relative;
  min-height: clamp(390px, 39vw, 590px);
  overflow: hidden;
  color: #ffffff;
  background: #111111;
}

.home-split-promos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 400ms ease;
}

.home-split-promos a:hover img {
  transform: scale(1.025);
}

.home-split-promos div {
  position: absolute;
  bottom: clamp(26px, 4vw, 46px);
  left: clamp(22px, 3vw, 42px);
  z-index: 1;
  display: grid;
  gap: 16px;
}

.home-split-promos h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 500;
  line-height: 1;
}

.home-split-promos span {
  width: max-content;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 5px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-price-section {
  padding: clamp(38px, 5vw, 64px) clamp(22px, 5vw, 72px);
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
  text-align: center;
}

.home-price-section h2 {
  margin-bottom: 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.04;
}

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

.home-price-grid a {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111111;
  background: #ffffff;
  color: #111111;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-price-grid a:hover {
  color: #ffffff;
  background: #111111;
}

.rc-hero-strip {
  overflow: hidden;
  border-bottom: 1px solid #e5e5e5;
  background: #eeeeec;
}

.rc-hero-media {
  min-height: clamp(170px, 21vw, 255px);
  background:
    linear-gradient(90deg, rgba(238, 238, 236, 1) 0%, rgba(238, 238, 236, 0.88) 34%, rgba(238, 238, 236, 0.14) 64%),
    url("./assets/solitaire-1ct.png") 74% 48% / min(680px, 58vw) no-repeat,
    linear-gradient(90deg, #eeeeec, #f7f7f5);
}

.rc-signature-section {
  padding: clamp(26px, 4vw, 56px) clamp(22px, 3vw, 42px) clamp(48px, 6vw, 88px);
  background: #ffffff;
}

.rc-title {
  display: grid;
  justify-items: center;
  max-width: 820px;
  margin: 0 auto clamp(28px, 3.5vw, 44px);
  text-align: center;
}

.rc-title .eyebrow {
  display: none;
  margin-bottom: 12px;
  color: #6f5833;
}

.rc-title h1 {
  max-width: 820px;
  margin-bottom: 14px;
  font-family:
    Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.06;
}

.rc-title p:not(.eyebrow) {
  display: none;
  max-width: 690px;
  margin-bottom: 0;
  color: #555555;
  font-size: 15px;
}

.rc-settings-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 22px;
}

.rc-setting-card {
  min-width: 0;
}

.rc-setting-gallery {
  position: relative;
  min-width: 0;
}

.rc-setting-image {
  display: none;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ffffff;
}

.rc-setting-image.is-active {
  display: block;
}

.rc-setting-image img {
  width: 100%;
  height: 100%;
  padding: clamp(8px, 1.8vw, 28px);
  object-fit: contain;
  transition: transform 280ms ease;
}

.rc-setting-card:hover .rc-setting-image img {
  transform: scale(1.025);
}

.rc-private-visual {
  display: grid;
  place-items: center;
  border: 1px solid #e4e4e4;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.04), rgba(8, 12, 18, 0.62)),
    linear-gradient(135deg, #0c1421, #030508);
}

.rc-setting-image.rc-private-visual:not(.is-active) {
  display: none;
}

.rc-setting-image.rc-private-visual.is-active {
  display: grid;
}

.rc-private-visual span {
  width: min(72%, 220px);
  border-top: 1px solid rgba(220, 197, 159, 0.62);
  border-bottom: 1px solid rgba(220, 197, 159, 0.62);
  padding: 18px 0;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
}

.rc-gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 38px;
  margin-top: 10px;
}

.rc-gallery-arrow,
.rc-gallery-dot {
  border: 0;
  padding: 0;
  color: #111111;
  background: transparent;
  cursor: pointer;
}

.rc-gallery-arrow {
  width: 26px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  font-size: 31px;
  font-weight: 300;
  line-height: 1;
}

.rc-gallery-arrow:hover,
.rc-gallery-arrow:focus-visible {
  color: #6f5833;
}

.rc-gallery-dot {
  width: 5px;
  height: 5px;
  background: #d5d5d5;
}

.rc-gallery-dot.is-active {
  background: #111111;
}

.rc-setting-copy {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  padding-top: 4px;
  text-align: center;
}

.rc-setting-copy h2 {
  margin-bottom: 0;
  color: #111111;
  font-family:
    Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.18;
}

.rc-setting-copy strong {
  color: #111111;
  font-size: 14px;
  font-weight: 700;
}

.rc-setting-copy p {
  min-height: 62px;
  margin-bottom: 0;
  color: #606060;
  font-size: 14px;
  line-height: 1.45;
}

.rc-setting-copy .quote-button {
  justify-self: center;
  min-height: 32px;
  margin-top: 7px;
  border: 0;
  border-bottom: 1px solid #111111;
  padding: 0 0 4px;
  color: #111111;
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rc-setting-copy .quote-button:hover {
  color: #6f5833;
  background: transparent;
  border-color: #6f5833;
}

.rc-detail-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.44fr);
  align-items: stretch;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
}

.rc-detail-image {
  min-height: clamp(360px, 38vw, 520px);
  overflow: hidden;
  background: #f6f6f4;
}

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

.rc-detail-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(34px, 5vw, 70px);
}

.rc-detail-copy h2 {
  max-width: 420px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.04;
}

.rc-detail-copy p:not(.eyebrow) {
  max-width: 460px;
  margin-bottom: 6px;
  color: #555555;
  font-size: 15px;
}

.rc-detail-copy .secondary-action {
  justify-self: start;
  border-color: #111111;
  background: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rc-ways-section,
.rc-category-section {
  padding: clamp(46px, 6vw, 78px) clamp(22px, 3vw, 42px);
  background: #ffffff;
}

.rc-ways-section h2,
.rc-category-section h2 {
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 500;
  text-align: center;
}

.rc-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}

.rc-category-grid a {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 410px;
  align-content: center;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: clamp(18px, 2vw, 30px);
  background: #ffffff;
  text-align: center;
}

.rc-category-grid a:hover {
  background: #f7f7f5;
}

.rc-category-grid img {
  width: 100%;
  max-width: 310px;
  aspect-ratio: 1 / 1;
  padding: clamp(10px, 2vw, 28px);
  object-fit: contain;
}

.rc-category-grid span {
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.1;
}

.rc-category-grid strong {
  border-bottom: 1px solid #111111;
  padding-bottom: 4px;
  color: #111111;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rc-service-section {
  display: grid;
  min-height: clamp(360px, 38vw, 520px);
  place-items: center;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 4vw, 52px);
  background: #f8f8f6;
  text-align: center;
}

.rc-service-section > div {
  display: grid;
  justify-items: center;
  max-width: 720px;
}

.rc-service-section h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.3vw, 62px);
  font-weight: 500;
  line-height: 1.04;
}

.rc-service-section p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 22px;
  color: #555555;
  font-size: 15px;
}

.rc-service-section .secondary-action {
  border-color: #111111;
  background: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rc-ways-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}

.rc-ways-grid a {
  display: grid;
  gap: 10px;
  min-height: 210px;
  align-content: center;
  padding: clamp(22px, 3vw, 38px);
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
}

.rc-ways-grid a:hover {
  background: #f7f7f5;
}

.rc-ways-grid span {
  color: #6f5833;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.rc-ways-grid strong {
  color: #111111;
  font-size: 18px;
  line-height: 1.18;
}

.rc-ways-grid p {
  max-width: 340px;
  margin-bottom: 0;
  color: #606060;
  font-size: 14px;
}

.reference-collection-hero {
  display: grid;
  justify-items: center;
  padding: clamp(30px, 4vw, 48px) clamp(16px, 4vw, 56px) clamp(24px, 3vw, 36px);
  border-bottom: 1px solid #e8e8e8;
  background: #ffffff;
  text-align: center;
}

.reference-collection-hero .eyebrow {
  margin-bottom: 10px;
  color: #80643d;
}

.reference-collection-hero h1 {
  max-width: 840px;
  margin-bottom: 10px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.reference-collection-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: #5d5d5d;
  font-size: clamp(14px, 1.15vw, 16px);
}

.reference-collection-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.reference-collection-actions .primary-action,
.reference-collection-actions .secondary-action {
  min-height: 34px;
  padding: 0 14px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.collection-filter-section {
  display: flex;
  align-items: flex-end;
  gap: clamp(18px, 2.6vw, 34px);
  overflow-x: auto;
  padding: 18px clamp(20px, 3vw, 44px);
  border-bottom: 1px solid #e8e8e8;
  background: #ffffff;
  scrollbar-width: thin;
}

.filter-group {
  display: grid;
  flex: 0 0 auto;
  gap: 10px;
  min-width: max-content;
  border-right: 1px solid #e5e5e5;
  padding-right: clamp(18px, 2.2vw, 30px);
}

.filter-group:last-child {
  border-right: 0;
  padding-right: 0;
}

.filter-label {
  color: #626262;
  font-size: 13px;
  line-height: 1;
}

.shape-chips,
.metal-swatches,
.style-chips {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shape-chip,
.metal-swatch,
.showcase-filter {
  border: 1px solid #111111;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
}

.shape-chip {
  width: 24px;
  height: 24px;
  min-height: 24px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}

.shape-chip.oval {
  width: 20px;
  height: 28px;
}

.shape-chip.emerald {
  border-radius: 4px;
}

.shape-chip.pear {
  border-radius: 50% 50% 50% 8px;
  transform: rotate(45deg);
}

.shape-chip.pear::first-letter {
  transform: rotate(-45deg);
}

.shape-chip.cushion {
  border-radius: 7px;
}

.shape-chip.plus {
  border: 0;
  background: #e9e9e9;
  font-size: 15px;
}

.metal-swatch {
  width: 36px;
  height: 36px;
  min-height: 36px;
  padding: 0;
  border-color: #dddddd;
  border-radius: 999px;
}

.metal-swatch.white {
  background: linear-gradient(135deg, #cfd3d6 0%, #ffffff 54%, #f0f0f0 100%);
}

.metal-swatch.yellow {
  background: linear-gradient(135deg, #b88d34 0%, #f7e29b 52%, #d0a951 100%);
}

.metal-swatch.rose {
  background: linear-gradient(135deg, #b77b66 0%, #f1c9b5 54%, #c69073 100%);
}

.metal-swatch.platinum {
  background: linear-gradient(135deg, #d9dee2 0%, #ffffff 50%, #adb5bd 100%);
}

.showcase-filter {
  min-height: 32px;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.showcase-filter.is-active,
.showcase-filter:hover {
  color: #ffffff;
  background: #111111;
}

.lead-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  gap: 10px;
  color: #111111;
  font-size: 14px;
  white-space: nowrap;
}

.lead-toggle::before {
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: #111111;
  content: "";
}

.lead-toggle::after {
  position: absolute;
  left: 22px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ffffff;
  content: "";
}

.popular-settings-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.24fr) minmax(0, 0.76fr);
  min-height: 430px;
  border-bottom: 1px solid #e8e8e8;
  background: #ffffff;
}

.popular-settings-copy {
  display: grid;
  align-content: center;
  padding: clamp(34px, 4vw, 54px) clamp(28px, 4vw, 58px);
  background: #f7f7f5;
}

.popular-settings-copy h2 {
  max-width: 330px;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 2.8vw, 44px);
  font-weight: 500;
  line-height: 1.08;
}

.popular-settings-copy p:not(.eyebrow) {
  max-width: 360px;
  margin-bottom: 0;
  color: #676767;
  font-size: 14px;
}

.popular-arrows {
  display: flex;
  gap: 42px;
  margin-top: 76px;
  color: #555555;
  font-size: 24px;
  font-weight: 300;
}

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

.popular-setting-card {
  display: grid;
  align-content: center;
  gap: 9px;
  min-width: 0;
  padding: 28px clamp(14px, 2vw, 28px) 32px;
  border-left: 1px solid #e8e8e8;
  background: #ffffff;
}

.popular-setting-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f6f6f4;
  transition: transform 260ms ease;
}

.popular-setting-card:hover img {
  transform: translateY(-4px);
}

.popular-setting-card strong {
  margin-top: 5px;
  color: #111111;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.popular-setting-card span {
  color: #646464;
  font-size: 13px;
}

.shop-grid-section {
  padding: clamp(58px, 7vw, 96px) clamp(20px, 3vw, 42px);
  border-bottom: 1px solid #e8e8e8;
  background: #ffffff;
}

.shop-grid-heading {
  display: grid;
  justify-items: center;
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.shop-grid-heading h2 {
  margin-bottom: 10px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.08;
  text-transform: uppercase;
}

.shop-grid-heading p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: #666666;
}

.shop-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 18px;
}

.shop-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
}

.shop-card.is-hidden {
  display: none;
}

.shop-card img,
.shop-card-visual {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f6f6f4;
}

.shop-card img {
  object-fit: cover;
}

.shop-card-visual {
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 24px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(7, 17, 30, 0.1), rgba(7, 17, 30, 0.86)),
    linear-gradient(135deg, #102238, #060b12);
}

.shop-card-visual span {
  width: fit-content;
  border-bottom: 1px solid rgba(210, 184, 139, 0.7);
  padding-bottom: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-card-visual strong {
  max-width: 240px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 500;
  line-height: 0.98;
}

.shop-card-body {
  display: grid;
  align-content: start;
  gap: 7px;
  padding-top: 15px;
}

.shop-card-body > span {
  color: #777777;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-card-body h3 {
  margin-bottom: 0;
  color: #111111;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.18;
}

.shop-card-body p {
  margin-bottom: 0;
  color: #676767;
  font-size: 14px;
  line-height: 1.45;
}

.price-guide {
  color: #111111;
  font-size: 14px;
  font-weight: 500;
}

.shop-card .quote-button {
  justify-self: start;
  min-height: 36px;
  margin-top: 9px;
  padding: 0 16px;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.quote-confidence-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid #e8e8e8;
  background: #ffffff;
}

.quote-confidence-row article {
  min-height: 150px;
  padding: clamp(24px, 3vw, 34px) clamp(24px, 4vw, 52px);
  border-right: 1px solid #e8e8e8;
}

.quote-confidence-row article:last-child {
  border-right: 0;
}

.quote-confidence-row span {
  display: block;
  margin-bottom: 14px;
  color: #8b6837;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.quote-confidence-row strong {
  display: block;
  margin-bottom: 8px;
  color: #111111;
  font-size: 16px;
}

.quote-confidence-row p {
  margin-bottom: 0;
  color: #666666;
  font-size: 13px;
}

main#top > .catalog-section {
  padding: clamp(52px, 7vw, 84px) clamp(18px, 5vw, 72px);
  background: #ffffff;
}

main#top > .catalog-section > .section-heading,
main#top > .catalog-section > .pricing-guide,
main#top > .catalog-section > .launch-value,
main#top > .catalog-section .sku-showcase,
main#top > .catalog-section .catalog-panel {
  display: none;
}

main#top > .catalog-section .catalog-layout {
  grid-template-columns: minmax(320px, 760px);
  justify-content: center;
}

main#top > .catalog-section .inquiry-panel {
  position: static;
  border-color: #e5e5e5;
  border-radius: 0;
  padding: clamp(22px, 3vw, 36px);
  background: #ffffff;
  box-shadow: none;
}

.metal-market {
  border-bottom: 1px solid rgba(199, 165, 111, 0.22);
  color: #ffffff;
  background: var(--accent-dark);
}

.metal-market.is-inline-reference,
.metal-market.is-top-reference {
  border: 1px solid rgba(199, 165, 111, 0.22);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.96);
}

.metal-market.is-inline-reference {
  margin: -4px 0 26px;
}

.home-metal-reference {
  margin: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.metal-market.is-top-reference {
  position: relative;
  z-index: 5;
  border-right: 0;
  border-left: 0;
  border-top: 0;
}

.metal-market-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: center;
  padding: 12px clamp(18px, 4vw, 48px);
}

.metal-market.is-inline-reference .metal-market-inner {
  padding: 16px 18px;
}

.metal-market.is-top-reference .metal-market-inner {
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1fr);
  padding: 8px clamp(18px, 4vw, 52px);
}

.metal-market-copy {
  display: grid;
  gap: 2px;
}

.metal-market-kicker,
.metal-market-copy small,
.metal-market-item small {
  color: rgba(255, 255, 255, 0.72);
}

.metal-market.is-inline-reference .metal-market-kicker,
.metal-market.is-inline-reference .metal-market-copy small,
.metal-market.is-inline-reference .metal-market-item small,
.metal-market.is-top-reference .metal-market-kicker,
.metal-market.is-top-reference .metal-market-copy small,
.metal-market.is-top-reference .metal-market-item small {
  color: var(--muted);
}

.metal-market-kicker {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.metal-market-copy strong {
  font-size: 14px;
}

.metal-market.is-top-reference .metal-market-copy strong {
  font-size: 12px;
}

.metal-market-copy small {
  font-size: 12px;
}

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

.metal-market-item {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
}

.metal-market.is-inline-reference .metal-market-item,
.metal-market.is-top-reference .metal-market-item {
  border-color: rgba(23, 40, 68, 0.12);
  background: rgba(244, 239, 231, 0.72);
}

.metal-market.is-top-reference .metal-market-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 12px;
}

.metal-market-item span,
.metal-market-item strong,
.metal-market-item small {
  display: block;
}

.metal-market-item span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.metal-market.is-inline-reference .metal-market-item span,
.metal-market.is-top-reference .metal-market-item span {
  color: var(--metal-dark);
}

.metal-market-item strong {
  margin-top: 3px;
  font-size: 16px;
  line-height: 1.15;
}

.metal-market.is-top-reference .metal-market-item strong {
  margin-top: 0;
  font-size: 14px;
}

.metal-market-item small {
  margin-top: 3px;
  font-size: 11px;
}

.metal-market-item em {
  font-style: normal;
  font-weight: 800;
}

.metal-market-item em.is-up {
  color: #a7efca;
}

.metal-market-item em.is-down {
  color: #ffc6b8;
}

.commerce-hero {
  position: relative;
  display: flex;
  min-height: clamp(390px, calc(64svh - 72px), 520px);
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(44px, 6vw, 76px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.35) 62%, rgba(255, 255, 255, 0) 100%),
    url("./assets/solitaire-1ct.png") 78% 50% / min(780px, 56vw) no-repeat,
    linear-gradient(110deg, #ffffff 0%, #f6f6f6 54%, #eef1f4 100%);
  border-bottom: 1px solid #e8e8e8;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(560px, 100%);
  flex-direction: column;
  justify-content: center;
  padding-bottom: clamp(10px, 3vw, 28px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--metal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 700px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5.8vw, 74px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.commerce-hero h1 {
  max-width: 560px;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.02;
  color: var(--ink);
}

.commerce-hero .hero-intro {
  max-width: 560px;
  color: #56524b;
}

.commerce-hero .eyebrow {
  color: var(--metal-dark);
}

.commerce-hero .secondary-action {
  border-color: #171717;
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.72);
}

.commerce-hero .secondary-action:hover {
  border-color: rgba(189, 154, 96, 0.72);
  color: var(--ink);
  background: #ffffff;
}

.studio-path-section {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid #e8e8e8;
  background: #ffffff;
}

.studio-path-section a {
  display: grid;
  gap: 5px;
  min-height: 108px;
  align-content: center;
  padding: clamp(18px, 2.4vw, 26px) clamp(20px, 4vw, 46px);
  border-right: 1px solid #e8e8e8;
}

.studio-path-section a:last-child {
  border-right: 0;
}

.studio-path-section a:hover {
  background: #f7f7f7;
}

.studio-path-section span {
  color: #777777;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.studio-path-section strong {
  max-width: 300px;
  color: #111111;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.18;
}

.studio-path-section small {
  max-width: 360px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-product-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) minmax(180px, 0.9fr);
  grid-auto-rows: minmax(150px, 1fr);
  gap: 12px;
  align-self: stretch;
  min-height: 520px;
}

.hero-product-card {
  position: relative;
  display: grid;
  align-content: end;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 237, 0.18);
  border-radius: 8px;
  color: #ffffff;
  background: #071426;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.hero-product-card-main {
  grid-row: span 2;
}

.hero-product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
  transform: scale(1.01);
}

.hero-product-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 20, 38, 0.04) 20%, rgba(7, 20, 38, 0.72) 100%),
    linear-gradient(90deg, rgba(7, 20, 38, 0.16), rgba(7, 20, 38, 0));
}

.hero-product-card > div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding: 16px;
}

.hero-product-card span {
  color: rgba(216, 184, 124, 0.96);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-product-card strong {
  max-width: 320px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.02;
}

.hero-product-card:not(.hero-product-card-main) strong {
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
}

.hero-product-card small {
  color: rgba(255, 248, 237, 0.68);
  font-size: 12px;
}

.jewelry-window-section {
  display: grid;
  grid-template-columns: minmax(230px, 0.24fr) minmax(0, 0.76fr);
  gap: clamp(20px, 4vw, 50px);
  align-items: stretch;
  padding: clamp(56px, 7vw, 90px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid #e8e8e8;
  background: #ffffff;
}

.jewelry-window-section .compact-heading {
  display: grid;
  align-content: center;
  margin-bottom: 0;
}

.jewelry-window-section h2 {
  max-width: 360px;
  margin-bottom: 0;
  font-size: clamp(28px, 2.4vw, 32px);
}

.jewelry-window-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.jewelry-window-grid a {
  position: relative;
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.jewelry-window-grid .jewelry-window-feature {
  grid-row: auto;
  min-height: 0;
}

.jewelry-window-grid img {
  width: 100%;
  height: 300px;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 280ms ease;
  background: #f7f7f7;
}

.jewelry-window-grid a:hover img {
  transform: scale(1.03);
}

.jewelry-window-grid span {
  position: static;
  padding: 14px 0 0;
  color: #111111;
  background: transparent;
  box-shadow: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.featured-style-section {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid #e8e8e8;
  background: #ffffff;
}

.featured-style-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  justify-items: center;
  margin-bottom: 34px;
  text-align: center;
}

.featured-style-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-family: inherit;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured-style-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

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

.featured-style-card {
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.featured-style-card.featured {
  grid-template-rows: minmax(360px, 1fr) auto;
}

.featured-style-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  background: #f7f7f7;
}

.featured-style-card.featured img {
  min-height: 360px;
}

.featured-style-card div {
  display: grid;
  gap: 8px;
  padding: 18px 0 0;
}

.featured-style-card span {
  color: var(--metal-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-style-card h3 {
  margin-bottom: 0;
  color: #111111;
  font-family: inherit;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.18;
}

.featured-style-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.featured-style-card strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}

.featured-style-card .primary-action,
.featured-style-card .secondary-action {
  justify-self: start;
  margin-top: 6px;
}

.hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(189, 154, 96, 0.18);
  border-bottom: 1px solid rgba(189, 154, 96, 0.18);
  background: #fbf6ee;
}

.hero-proof-strip div {
  min-height: 150px;
  padding: clamp(20px, 3vw, 34px) clamp(18px, 4vw, 44px);
  border-right: 1px solid rgba(189, 154, 96, 0.18);
}

.hero-proof-strip div:last-child {
  border-right: 0;
}

.hero-proof-strip span {
  display: block;
  margin-bottom: 16px;
  color: var(--metal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.hero-proof-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 16px;
}

.hero-proof-strip p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.signature-entry-section {
  display: none;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 72px);
  color: var(--ink);
  background:
    linear-gradient(115deg, #fffdf8 0%, #f8f0e4 55%, #eef4f8 100%);
  border-top: 1px solid rgba(189, 154, 96, 0.18);
  border-bottom: 1px solid rgba(189, 154, 96, 0.18);
}

.signature-entry-copy {
  max-width: 560px;
}

.signature-entry-copy .eyebrow {
  color: var(--metal-dark);
}

.signature-entry-copy h2 {
  max-width: 540px;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 62px);
}

.signature-entry-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.signature-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.signature-entry-actions .secondary-action {
  border-color: rgba(16, 34, 56, 0.22);
  color: var(--accent-dark);
  background: rgba(255, 253, 248, 0.74);
}

.signature-entry-visual {
  position: relative;
  min-height: clamp(430px, 54vw, 640px);
  overflow: hidden;
  border: 1px solid rgba(189, 154, 96, 0.28);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(16, 34, 56, 0.14);
}

.signature-entry-visual img {
  width: 100%;
  height: 100%;
  min-height: clamp(430px, 54vw, 640px);
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
}

.signature-entry-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0) 42%, rgba(16, 34, 56, 0.36) 100%);
}

.signature-entry-ticket {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.35fr) minmax(0, 0.65fr);
  gap: 16px;
  align-items: end;
  border: 1px solid rgba(189, 154, 96, 0.26);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(10px);
}

.signature-entry-ticket span {
  color: var(--metal-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.signature-entry-ticket strong {
  display: block;
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  line-height: 1;
}

.signature-entry-ticket p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 0;
}

h4 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-intro,
.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-studio-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 237, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.2);
}

.hero-studio-panel a {
  display: grid;
  gap: 6px;
  min-height: 86px;
  align-content: center;
  padding: 14px 16px;
  border-right: 1px solid rgba(23, 40, 68, 0.12);
}

.hero-studio-panel a:last-child {
  border-right: 0;
}

.hero-studio-panel a:hover {
  background: rgba(199, 165, 111, 0.12);
}

.hero-studio-panel span,
.hero-studio-panel strong {
  display: block;
}

.hero-studio-panel span {
  color: var(--metal-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-studio-panel strong {
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.05;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 680px;
  margin-top: 34px;
  border: 1px solid rgba(23, 40, 68, 0.2);
  color: #ffffff;
  background: rgba(7, 20, 38, 0.82);
  backdrop-filter: blur(12px);
}

.hero-metrics span {
  min-height: 82px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.68);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.hero-metrics span:last-child {
  border-right: 0;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 17px;
}

.concierge-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(217, 221, 228, 0.9);
  background: #ffffff;
}

.concierge-strip div {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 18px;
  padding: 0 clamp(18px, 4vw, 52px);
  border-right: 1px solid rgba(217, 221, 228, 0.92);
}

.concierge-strip div:last-child {
  border-right: 0;
}

.concierge-strip span {
  color: var(--metal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.concierge-strip strong {
  color: var(--accent-dark);
  font-size: 15px;
  line-height: 1.2;
}

.atelier-route-section {
  display: none;
  grid-template-columns: minmax(300px, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: clamp(64px, 9vw, 122px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 246, 248, 0.98)),
    var(--surface-soft);
}

.atelier-route-heading {
  position: sticky;
  top: 104px;
  max-width: 560px;
}

.atelier-route-heading h2 {
  max-width: 560px;
  font-size: clamp(38px, 5vw, 60px);
}

.atelier-route-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.atelier-route-grid {
  display: grid;
  gap: 16px;
}

.atelier-route-card {
  position: relative;
  display: grid;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(7, 20, 38, 0.14);
  border-radius: 8px;
  color: #ffffff;
  background: var(--accent-dark);
  box-shadow: 0 28px 64px rgba(7, 20, 38, 0.12);
}

.atelier-route-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transform: scale(1.01);
}

.atelier-route-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.82), rgba(7, 20, 38, 0.32) 56%, rgba(7, 20, 38, 0.12)),
    linear-gradient(0deg, rgba(7, 20, 38, 0.46), rgba(7, 20, 38, 0));
}

.atelier-route-card > div {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 560px;
  padding: clamp(24px, 4vw, 40px);
}

.atelier-route-card span {
  display: inline-flex;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(182, 144, 92, 0.76);
  padding-bottom: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.atelier-route-card h3 {
  max-width: 560px;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 4vw, 46px);
  font-weight: 500;
  line-height: 1;
}

.atelier-route-card p {
  max-width: 460px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

.route-feature {
  min-height: 420px;
}

.build-flow-section {
  display: none;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(22px, 4vw, 50px);
  align-items: start;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8f3ec 100%);
  border-bottom: 1px solid rgba(189, 154, 96, 0.18);
}

.build-flow-section .eyebrow {
  color: var(--metal-dark);
}

.build-flow-copy h2 {
  max-width: 520px;
}

.build-flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(189, 154, 96, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: #fffdf8;
}

.build-flow-list article {
  min-height: 260px;
  padding: 24px;
  border-right: 1px solid rgba(189, 154, 96, 0.18);
}

.build-flow-list article:last-child {
  border-right: 0;
}

.build-flow-list span {
  color: var(--metal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.build-flow-list h3 {
  margin-top: 44px;
  color: var(--accent-dark);
}

.build-flow-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.capability-section {
  display: none;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(7, 20, 38, 0.04), rgba(255, 255, 255, 0) 46%),
    var(--surface-soft);
}

.capability-intro {
  align-self: center;
  max-width: 620px;
}

.capability-intro h2 {
  margin-bottom: 18px;
}

.capability-intro p {
  color: var(--muted);
  font-size: 17px;
}

.capability-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

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

.capability-grid article {
  min-width: 0;
  min-height: 220px;
  border: 1px solid rgba(23, 21, 17, 0.1);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
}

.capability-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(180, 138, 78, 0.45);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--metal-dark);
  background: var(--surface);
  font-size: 12px;
  font-weight: 900;
}

.capability-grid h3 {
  margin-top: 18px;
}

.capability-grid p {
  color: var(--muted);
  font-size: 14px;
}

.catalog-section,
.brand-section,
.process-section,
.education-section,
.policy-section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.catalog-section,
.education-section {
  background: #ffffff;
}

.brand-section {
  display: none;
  background: var(--surface);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 28px;
}

.compact-heading {
  margin-bottom: 18px;
}

.pricing-guide {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 34px;
  border: 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 0;
  padding: 24px 0;
  background: #ffffff;
}

.pricing-guide h3,
.quote-guide-pricing h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.pricing-guide p {
  color: var(--muted);
  margin-bottom: 0;
}

.price-band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 10px;
}

.price-band-grid article {
  min-height: 104px;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  padding: 16px;
  background: #ffffff;
}

.price-band-grid article:first-child {
  border-color: #111111;
  color: #ffffff;
  background: #111111;
}

.price-band-grid span,
.price-band-grid strong {
  display: block;
}

.price-band-grid span {
  color: var(--muted);
  font-size: 13px;
}

.price-band-grid article:first-child span,
.price-band-grid article:first-child strong {
  color: #ffffff;
}

.price-band-grid strong {
  margin-top: 8px;
  color: var(--ink);
  font-size: 21px;
}

.ring-builder-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 28px;
  border: 1px solid rgba(23, 40, 68, 0.18);
  background: #ffffff;
}

.ring-builder-strip article {
  min-height: 170px;
  padding: 22px;
  border-right: 1px solid rgba(23, 40, 68, 0.14);
}

.ring-builder-strip article:last-child {
  border-right: 0;
}

.ring-builder-strip span,
.ring-builder-strip strong {
  display: block;
}

.ring-builder-strip span {
  color: var(--metal-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.ring-builder-strip strong {
  margin-top: 22px;
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.05;
}

.ring-builder-strip p {
  margin-top: 12px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.launch-value {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 32px;
  border: 1px solid rgba(23, 40, 68, 0.18);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(23, 40, 68, 0.08), rgba(255, 255, 255, 0.92)),
    var(--surface);
}

.launch-value h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.launch-value p {
  color: var(--muted);
}

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

.value-proof-grid article {
  min-width: 0;
  min-height: 156px;
  border: 1px solid rgba(180, 138, 78, 0.32);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.74);
}

.value-proof-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(180, 138, 78, 0.42);
  border-radius: 999px;
  padding: 0 9px;
  color: var(--metal-dark);
  background: var(--surface-soft);
  font-size: 11px;
  font-weight: 900;
}

.value-proof-grid strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 16px;
}

.value-proof-grid p {
  margin-top: 7px;
  margin-bottom: 0;
  font-size: 13px;
}

.quote-guide-pricing {
  margin-bottom: 28px;
}

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

.entity-grid {
  margin-top: 18px;
}

.entity-grid article,
.entity-panel article {
  border: 1px solid rgba(180, 138, 78, 0.4);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface);
}

.entity-grid span,
.entity-grid strong,
.entity-panel span,
.entity-panel strong {
  display: block;
}

.entity-grid span,
.entity-panel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.entity-grid strong,
.entity-panel strong {
  margin-top: 8px;
  color: var(--accent-dark);
  font-size: 18px;
}

.brand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.sku-showcase {
  display: none;
  margin: 0 0 32px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(23, 40, 68, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(231, 235, 242, 0.42)),
    var(--surface);
}

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

.sku-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(23, 40, 68, 0.12);
  border-radius: 0;
  padding: 0;
  background: var(--surface);
  box-shadow: 0 18px 46px rgba(7, 20, 38, 0.05);
}

.sku-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.sku-code {
  width: fit-content;
  margin: 16px 18px 12px;
  border: 1px solid rgba(180, 138, 78, 0.42);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--metal-dark);
  background: var(--surface-soft);
  font-size: 12px;
  font-weight: 800;
}

.sku-card h3,
.sku-card h4 {
  margin-right: 18px;
  margin-left: 18px;
}

.sku-card p {
  margin-right: 18px;
  margin-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.sku-prices {
  display: grid;
  gap: 7px;
  margin: 4px 18px 16px;
}

.sku-prices span {
  display: block;
  border-left: 3px solid rgba(23, 40, 68, 0.72);
  padding: 7px 9px;
  color: var(--accent-dark);
  background: rgba(231, 235, 242, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.sku-card .quote-button {
  margin-top: auto;
  margin-right: 18px;
  margin-bottom: 18px;
  margin-left: 18px;
}

.sku-card .sku-detail-link {
  width: calc(100% - 36px);
  margin: -8px 18px 18px;
  font-size: 13px;
}

@media (min-width: 1181px) {
  .sku-card.featured-sku {
    display: grid;
    grid-column: span 2;
    grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
    grid-template-rows: auto auto auto 1fr auto auto;
    min-height: 520px;
    color: #ffffff;
    background: var(--accent-dark);
  }

  .sku-card.featured-sku img {
    grid-row: 1 / -1;
    height: 100%;
    aspect-ratio: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 0;
    filter: saturate(0.9);
  }

  .sku-card.featured-sku .sku-code {
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.08);
  }

  .sku-card.featured-sku h3,
  .sku-card.featured-sku h4 {
    max-width: 360px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
  }

  .sku-card.featured-sku p {
    color: rgba(255, 255, 255, 0.7);
  }

  .sku-card.featured-sku .sku-prices span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-left-color: rgba(214, 181, 126, 0.9);
  }

  .sku-card.featured-sku .quote-button {
    border-color: #ffffff;
    color: var(--accent-dark);
    background: #ffffff;
  }

  .sku-card.featured-sku .quote-button:hover {
    color: #ffffff;
    background: transparent;
  }

  .sku-card.featured-sku .sku-detail-link {
    border-color: rgba(255, 255, 255, 0.28);
    color: #ffffff;
    background: transparent;
  }
}

.sku-detail-page {
  background: #ffffff;
}

.sku-detail-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(42px, 7vw, 86px) clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.pdp-page {
  background: #ffffff;
}

.pdp-breadcrumb {
  display: flex;
  gap: 8px;
  padding: 18px clamp(16px, 3vw, 40px) 0;
  color: #666666;
  font-size: 12px;
}

.pdp-breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pdp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: start;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(18px, 3vw, 36px) clamp(16px, 3vw, 42px) clamp(52px, 7vw, 96px);
}

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

.pdp-media-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #f6f6f6;
}

.pdp-media-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  transition: transform 320ms ease;
}

.pdp-media-grid figure:first-child {
  grid-column: span 2;
}

.pdp-media-grid figure:first-child img {
  aspect-ratio: 1.12 / 1;
}

.pdp-media-grid figure:hover img {
  transform: scale(1.025);
}

.pdp-media-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 5px 9px;
  color: #111111;
  background: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pdp-summary {
  position: sticky;
  top: 98px;
  min-width: 0;
  padding: clamp(8px, 1vw, 14px) 0 0;
}

.pdp-kicker {
  margin: 0 0 12px;
  color: #555555;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pdp-summary h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.4vw, 66px);
  font-weight: 500;
  line-height: 1;
}

.pdp-subtitle {
  max-width: 620px;
  margin: 18px 0 0;
  color: #545454;
  font-size: 15px;
  line-height: 1.7;
}

.pdp-guide-price {
  margin: 22px 0;
  padding: 18px 0;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}

.pdp-guide-price span {
  display: block;
  color: #666666;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pdp-guide-price strong {
  display: block;
  margin-top: 5px;
  color: #111111;
  font-size: 21px;
  font-weight: 600;
}

.pdp-options {
  display: grid;
  gap: 18px;
  margin: 24px 0;
}

.pdp-option {
  display: grid;
  gap: 8px;
}

.pdp-option label,
.pdp-option span {
  color: #555555;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pdp-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pdp-choice-row button,
.pdp-choice-row a {
  min-height: 42px;
  border: 1px solid #111111;
  padding: 0 14px;
  color: #111111;
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pdp-choice-row button:first-child {
  color: #ffffff;
  background: #111111;
}

.pdp-cta-row {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.pdp-cta-row .primary-action,
.pdp-cta-row .secondary-action {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pdp-service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  background: #ffffff;
}

.pdp-service-list article {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 5px;
  border-right: 1px solid #e1e1e1;
  padding: 18px clamp(16px, 4vw, 44px);
}

.pdp-service-list article:last-child {
  border-right: 0;
}

.pdp-service-list strong {
  font-size: 15px;
}

.pdp-service-list span {
  color: #666666;
  font-size: 13px;
}

.pdp-details {
  padding: clamp(42px, 6vw, 86px) clamp(16px, 3vw, 42px);
}

.pdp-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(26px, 5vw, 72px);
  max-width: 1260px;
  margin: 0 auto;
}

.pdp-detail-grid h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.05;
}

.pdp-accordions {
  display: grid;
  gap: 0;
  border-top: 1px solid #d8d8d8;
}

.pdp-accordions details {
  border-bottom: 1px solid #d8d8d8;
  padding: 20px 0;
}

.pdp-accordions summary {
  cursor: pointer;
  color: #111111;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pdp-accordions p {
  max-width: 760px;
  color: #555555;
  line-height: 1.75;
}

.pdp-related {
  padding: clamp(44px, 6vw, 76px) clamp(16px, 3vw, 42px);
  border-top: 1px solid #e5e5e5;
  background: #fafafa;
}

.pdp-related h2 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  text-align: center;
}

.pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pdp-related-card {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.pdp-related-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f3f3f3;
}

.pdp-related-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.pdp-related-card span {
  color: #666666;
  font-size: 13px;
}

.sku-detail-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: var(--surface-tint);
  box-shadow: 0 18px 44px rgba(23, 21, 17, 0.1);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(199, 165, 111, 0.24);
  background: var(--surface);
}

.trust-strip div {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 6px;
  border-right: 1px solid rgba(199, 165, 111, 0.2);
  padding: 20px clamp(18px, 4vw, 52px);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  color: var(--accent-dark);
  font-size: 16px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.sku-detail-copy {
  min-width: 0;
}

.sku-detail-copy h1 {
  max-width: 760px;
  margin: 12px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5.8vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
}

.sku-detail-copy .sku-code {
  margin: 0;
}

.sku-price-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.sku-price-panel article {
  min-width: 0;
  border: 1px solid rgba(180, 138, 78, 0.38);
  border-radius: 8px;
  padding: 16px;
  background: var(--surface);
}

.sku-price-panel span,
.sku-price-panel strong {
  display: block;
}

.sku-price-panel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.sku-price-panel strong {
  margin-top: 8px;
  color: var(--accent-dark);
  font-size: 18px;
  line-height: 1.25;
}

.sku-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sku-detail-actions .quote-button {
  margin: 0;
  color: #ffffff;
  background: var(--ink);
}

.sku-detail-actions .quote-button:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.sku-detail-section {
  padding: clamp(48px, 7vw, 90px) clamp(18px, 4vw, 48px);
}

.sku-inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  align-items: start;
  gap: 24px;
  background: var(--surface-soft);
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  align-items: start;
  gap: clamp(24px, 4vw, 42px);
}

.catalog-panel {
  min-width: 0;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-button {
  min-height: 34px;
  border: 0;
  border-bottom: 1px solid transparent;
  color: #555555;
  background: transparent;
  cursor: pointer;
  padding: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-button.is-active,
.filter-button:hover {
  border-color: #111111;
  color: #111111;
  background: transparent;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-width: 0;
  gap: 22px 18px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.product-card.is-hidden {
  display: none;
}

.product-card img,
.stone-visual,
.atelier-visual {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.product-card img {
  object-fit: cover;
  background: #f7f7f7;
}

.product-card-text {
  background:
    linear-gradient(180deg, rgba(231, 235, 242, 0.72), rgba(255, 255, 255, 1) 45%),
    var(--surface);
}

.stone-visual {
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.9) 0 18%, transparent 19%),
    linear-gradient(145deg, #e3eaf3, #ffffff);
  font-size: 54px;
  font-weight: 800;
}

.atelier-visual {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 22px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(7, 20, 38, 0.12), rgba(7, 20, 38, 0.82)),
    linear-gradient(135deg, #172844, #071426);
}

.atelier-visual span {
  width: fit-content;
  border-bottom: 1px solid rgba(182, 144, 92, 0.72);
  padding-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.atelier-visual strong {
  max-width: 220px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 500;
  line-height: 0.98;
}

.product-copy {
  display: flex;
  min-width: 0;
  min-height: 310px;
  flex-direction: column;
  padding: 14px 0 0;
}

.product-type {
  margin-bottom: 8px;
  color: #777777;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-copy h3 {
  color: #111111;
  font-size: 18px;
  font-weight: 800;
}

.product-copy p {
  color: var(--muted);
  font-size: 14px;
}

.product-copy dl {
  display: grid;
  gap: 8px;
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.product-copy dl div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;
}

.product-copy dt {
  color: var(--ink);
  font-weight: 800;
}

.product-copy dd {
  margin: 0;
}

.quote-button {
  margin-top: auto;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: #ffffff;
  cursor: pointer;
  font-weight: 800;
}

.quote-button:hover {
  color: #ffffff;
  background: var(--ink);
}

.inquiry-panel {
  position: sticky;
  top: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(23, 32, 29, 0.08);
}

.inquiry-panel h2 {
  font-size: 28px;
}

form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
  gap: 14px;
}

label {
  display: grid;
  min-width: 0;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

select {
  min-height: 46px;
  appearance: auto;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--metal);
  box-shadow: 0 0 0 3px rgba(180, 138, 78, 0.16);
}

textarea {
  resize: vertical;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.form-actions.has-whatsapp {
  grid-template-columns: 1fr 1fr;
}

[hidden] {
  display: none !important;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-note a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-list li {
  min-height: 170px;
  padding: 24px;
  background: var(--surface);
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list strong {
  margin-bottom: 12px;
  font-size: 18px;
}

.process-list span {
  color: var(--muted);
}

.process-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.guide-grid,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.guide-grid article,
.policy-grid article {
  min-height: 168px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
}

.guide-grid p,
.policy-grid p {
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 48px);
  color: #ffffff;
  background: var(--ink);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-links a:hover {
  color: #ffffff;
}

.policy-page {
  background: var(--surface-soft);
}

.policy-hero,
.policy-content {
  max-width: 920px;
  margin: 0 auto;
  padding-right: clamp(18px, 4vw, 48px);
  padding-left: clamp(18px, 4vw, 48px);
}

.policy-hero {
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: 30px;
}

.policy-hero h1 {
  max-width: 840px;
  font-size: clamp(38px, 5vw, 64px);
}

.policy-hero p,
.policy-content p {
  color: var(--muted);
  font-size: 16px;
}

.policy-content {
  display: grid;
  gap: 14px;
  padding-bottom: clamp(56px, 8vw, 96px);
}

.policy-content h2 {
  margin: 20px 0 0;
  font-size: 24px;
}

.policy-content a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quote-hero {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
  padding-top: clamp(56px, 8vw, 104px);
  padding-bottom: clamp(28px, 5vw, 58px);
}

.quote-hero-copy h1 {
  max-width: 760px;
}

.quote-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  font-size: 18px;
}

.quote-hero-panel {
  border: 1px solid rgba(23, 40, 68, 0.2);
  border-radius: 8px;
  padding: 24px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(182, 144, 92, 0.2), rgba(7, 20, 38, 0)),
    var(--accent-dark);
  box-shadow: 0 24px 60px rgba(7, 20, 38, 0.18);
}

.quote-hero-panel span,
.quote-hero-panel strong,
.quote-hero-panel em {
  display: block;
}

.quote-hero-panel span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-hero-panel strong {
  margin-top: 14px;
  max-width: 280px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.04;
}

.quote-hero-panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.quote-hero-panel div {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.quote-hero-panel em {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.brand-hero-panel strong {
  max-width: 330px;
}

.brand-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(23, 40, 68, 0.18);
  background: var(--surface);
}

.brand-proof-strip article {
  min-height: 112px;
  padding: 18px;
  border-right: 1px solid rgba(23, 40, 68, 0.14);
}

.brand-proof-strip article:last-child {
  border-right: 0;
}

.brand-proof-strip span,
.brand-proof-strip strong {
  display: block;
}

.brand-proof-strip span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-proof-strip strong {
  margin-top: 18px;
  color: var(--accent-dark);
  font-size: 18px;
}

.ring-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(23, 40, 68, 0.18);
  border-radius: 8px;
  background: var(--accent-dark);
  box-shadow: 0 26px 70px rgba(7, 20, 38, 0.18);
}

.ring-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.ring-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 20, 38, 0) 34%, rgba(7, 20, 38, 0.86) 100%),
    linear-gradient(90deg, rgba(7, 20, 38, 0.38), rgba(7, 20, 38, 0));
}

.ring-hero-media div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  color: #ffffff;
}

.ring-hero-media span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ring-hero-media strong {
  display: block;
  max-width: 420px;
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.04;
}

.ring-hero-media p {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.entity-panel {
  margin-bottom: 18px;
}

.faq-content article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.faq-content article:last-child {
  border-bottom: 0;
}

.quote-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 14px;
}

.quote-guide-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
}

.quote-guide-grid span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--accent);
  font-weight: 800;
}

.quote-guide-grid h2 {
  margin-top: 14px;
}

.quote-template {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
}

.quote-template pre {
  overflow-x: auto;
  margin: 0 0 18px;
  border-radius: 8px;
  padding: 18px;
  color: #ffffff;
  background: var(--ink);
  white-space: pre-wrap;
}

.quote-template code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
}

.quote-guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quote-signal-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(23, 40, 68, 0.18);
  background: var(--surface);
}

.quote-signal-band article {
  min-height: 178px;
  padding: 22px;
  border-right: 1px solid rgba(23, 40, 68, 0.14);
}

.quote-signal-band article:last-child {
  border-right: 0;
}

.quote-signal-band span {
  display: block;
  color: var(--accent-dark);
  font-weight: 900;
}

.quote-signal-band p {
  margin-bottom: 0;
  font-size: 14px;
}

.quote-route-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 16px;
  border: 1px solid rgba(182, 144, 92, 0.34);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(182, 144, 92, 0.1), rgba(255, 255, 255, 0.9)),
    var(--surface);
}

.quote-route-panel h2 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.quote-route-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quote-route-links a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  text-decoration: none;
}

.quote-route-links a::after {
  content: ">";
  color: var(--metal-dark);
  font-size: 18px;
}

.quote-route-links a:hover {
  border-color: rgba(23, 40, 68, 0.28);
  background: #ffffff;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    row-gap: 0;
  }

  .site-nav {
    grid-column: 1;
    grid-row: 1;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .language-control {
    grid-column: 3;
    grid-row: 1;
  }

  .header-action {
    grid-column: 4;
    grid-row: 1;
  }

  .site-nav a {
    min-height: 32px;
  }

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

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

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

  .rc-detail-band {
    grid-template-columns: minmax(0, 0.58fr) minmax(300px, 0.42fr);
  }

  .commerce-hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.28) 100%),
      url("./assets/solitaire-1ct.png") right center / min(680px, 64vw) no-repeat,
      linear-gradient(110deg, #ffffff 0%, #f7f7f7 52%, #eef1f4 100%);
  }

  .hero-copy {
    width: min(760px, 100%);
  }

  .hero-product-board {
    min-height: 480px;
  }

  .jewelry-window-section {
    grid-template-columns: minmax(220px, 0.24fr) minmax(0, 0.76fr);
  }

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

  .jewelry-window-grid .jewelry-window-feature {
    grid-row: span 1;
    min-height: 248px;
  }

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

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

  .entity-grid,
  .entity-panel,
  .brand-proof-strip,
  .ring-builder-strip,
  .quote-hero,
  .quote-guide-grid,
  .quote-route-panel,
  .policy-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-signal-band {
    grid-template-columns: minmax(0, 1fr);
  }

  .quote-signal-band article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 40, 68, 0.14);
  }

  .quote-signal-band article:last-child {
    border-bottom: 0;
  }

  .brand-proof-strip article:nth-child(2) {
    border-right: 0;
  }

  .brand-proof-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(23, 40, 68, 0.14);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    min-height: 64px;
    z-index: 40;
    padding: 0 20px;
  }

  .mobile-menu-button {
    position: relative;
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
    z-index: 43;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .language-control {
    display: none;
  }

  .mobile-header-icons {
    display: flex;
    grid-column: 3;
    grid-row: 1;
    align-items: center;
    gap: 12px;
    justify-self: end;
    z-index: 42;
  }

  .site-nav {
    position: fixed;
    inset: 94px 0 0;
    z-index: 41;
    display: grid;
    grid-column: auto;
    grid-row: auto;
    align-content: start;
    gap: 0;
    overflow-y: auto;
    border-top: 1px solid #111111;
    padding: 54px 34px 42px;
    background: #ffffff;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
    transition:
      opacity 180ms ease,
      transform 220ms ease;
  }

  .site-header.is-menu-open .site-nav {
    position: static;
    opacity: 1;
    pointer-events: auto;
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: minmax(0, 1fr);
    transform: translateX(0);
  }

  .site-nav a,
  .site-nav .mobile-menu-extra {
    width: 100%;
  }

  .site-header.is-menu-open .site-nav a:not(.mobile-menu-extra) {
    min-height: 100px;
    justify-content: flex-start;
    border-bottom: 1px solid #111111;
    padding: 0;
    color: #111111;
    font-size: clamp(22px, 5.4vw, 30px);
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .site-nav a:not(.mobile-menu-extra)::after {
    margin-left: auto;
    content: ">";
    font-size: 19px;
    font-weight: 500;
  }

  .site-nav .mobile-menu-extra {
    display: flex;
    min-height: 54px;
    border-bottom: 0;
    padding: 0;
    color: #111111;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.08em;
  }

  .site-header.is-menu-open .brand {
    z-index: 42;
  }

  .site-header.is-menu-open {
    position: fixed;
    inset: 30px 0 0;
    grid-template-rows: 64px minmax(0, 1fr);
    align-items: start;
    min-height: calc(100dvh - 30px);
    overflow-y: auto;
    background: #ffffff;
    backdrop-filter: none;
  }

  .header-action {
    display: none;
  }

  .reference-collection-hero {
    padding: 46px 18px 36px;
  }

  .home-hero-slide {
    min-height: 700px;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.26)),
      url("./assets/pave-1ct.png") center center / cover no-repeat,
      linear-gradient(180deg, #c9d6df 0%, #f7f7f5 100%);
  }

  .home-hero-copy {
    right: 24px;
    bottom: 78px;
    left: 24px;
    justify-items: center;
    text-align: center;
  }

  .home-hero-copy h1 {
    font-size: clamp(43px, 9.5vw, 62px);
    line-height: 0.98;
  }

  .home-category-rail {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 30px 10px 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .home-category-rail::-webkit-scrollbar {
    display: none;
  }

  .home-category-rail a {
    flex: 0 0 31vw;
    scroll-snap-align: start;
  }

  .home-split-promos {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-split-promos a {
    min-height: 560px;
  }

  .home-price-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .rc-hero-media {
    min-height: 180px;
    background:
      linear-gradient(90deg, rgba(238, 238, 236, 1) 0%, rgba(238, 238, 236, 0.78) 42%, rgba(238, 238, 236, 0.06) 100%),
      url("./assets/solitaire-1ct.png") 88% 50% / min(560px, 76vw) no-repeat,
      linear-gradient(90deg, #eeeeec, #f7f7f5);
  }

  .rc-signature-section {
    padding: 42px 22px 58px;
  }

  .rc-title h1 {
    font-size: clamp(31px, 6vw, 44px);
  }

  .rc-settings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 18px;
  }

  .rc-setting-copy p {
    min-height: 0;
  }

  .rc-detail-band {
    grid-template-columns: minmax(0, 1fr);
  }

  .rc-detail-image {
    min-height: 420px;
  }

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

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

  .rc-category-grid a {
    min-height: 330px;
  }

  .reference-collection-hero h1 {
    max-width: 720px;
    font-size: clamp(31px, 8.4vw, 48px);
  }

  .collection-filter-section {
    align-items: flex-start;
    padding: 18px;
  }

  .popular-settings-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .popular-settings-copy {
    padding: 34px 28px;
  }

  .popular-settings-copy h2,
  .popular-settings-copy p:not(.eyebrow) {
    max-width: 620px;
  }

  .popular-settings-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .popular-setting-card:nth-child(odd) {
    border-left: 0;
  }

  .popular-setting-card:nth-child(-n + 2) {
    border-bottom: 1px solid #e8e8e8;
  }

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

  .quote-confidence-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .quote-confidence-row article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #e8e8e8;
  }

  .quote-confidence-row article:last-child {
    border-bottom: 0;
  }

  .metal-market-inner {
    grid-template-columns: 1fr;
  }

  .metal-market.is-top-reference .metal-market-inner {
    grid-template-columns: 1fr;
  }

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

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

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

  .signature-entry-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .signature-entry-visual,
  .signature-entry-visual img {
    min-height: 420px;
  }

  .signature-entry-ticket {
    grid-template-columns: minmax(0, 1fr);
  }

  .signature-entry-ticket p {
    grid-column: auto;
  }

  .sku-detail-hero,
  .sku-inquiry-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .pdp-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 20px 16px 50px;
  }

  .pdp-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .pdp-summary {
    position: static;
    width: 100%;
    padding: 0;
  }

  .pdp-service-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .pdp-service-list article {
    min-height: 86px;
    border-right: 0;
    border-bottom: 1px solid #e1e1e1;
  }

  .pdp-service-list article:last-child {
    border-bottom: 0;
  }

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

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

  .sku-price-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-guide {
    grid-template-columns: 1fr;
  }

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

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

  .commerce-hero {
    min-height: 620px;
    padding-top: 46px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 44%, rgba(255, 255, 255, 0.22) 100%),
      url("./assets/solitaire-1ct.png") center bottom / min(620px, 92vw) no-repeat,
      linear-gradient(180deg, #ffffff 0%, #f7f7f7 70%, #eef1f4 100%);
    align-items: flex-start;
  }

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

  .featured-style-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy {
    padding-bottom: 260px;
  }

  .studio-path-section,
  .hero-proof-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .studio-path-section a,
  .hero-proof-strip div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(189, 154, 96, 0.18);
  }

  .studio-path-section a:last-child,
  .hero-proof-strip div:last-child {
    border-bottom: 0;
  }

  .hero-studio-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-studio-panel a {
    min-height: 68px;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 40, 68, 0.12);
  }

  .hero-studio-panel a:last-child {
    border-bottom: 0;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .concierge-strip,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .concierge-strip div,
  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .concierge-strip div {
    border-bottom-color: rgba(217, 221, 228, 0.92);
  }

  .concierge-strip div:last-child,
  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .atelier-route-section,
  .build-flow-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .atelier-route-heading {
    position: static;
  }

  .atelier-route-card,
  .route-feature {
    min-height: 360px;
  }

  .build-flow-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .build-flow-list article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(189, 154, 96, 0.18);
  }

  .build-flow-list article:last-child {
    border-bottom: 0;
  }

  .ring-builder-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .ring-builder-strip article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 40, 68, 0.14);
  }

  .ring-builder-strip article:last-child {
    border-bottom: 0;
  }

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

  .inquiry-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .top-announcement {
    min-height: 32px;
    padding: 4px 10px;
    font-size: 10px;
    line-height: 1.25;
  }

  .site-header {
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 8px 10px;
    min-height: 62px;
    padding: 0 16px;
    overflow: visible;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .site-nav {
    grid-column: auto;
    grid-row: auto;
    inset: 94px 0 0;
    max-width: 100%;
    padding: 36px 34px 38px;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    padding: 0;
  }

  .site-header.is-menu-open .site-nav a:not(.mobile-menu-extra) {
    min-height: 99px;
    font-size: 23px;
  }

  .site-header.is-menu-open {
    inset: 32px 0 0;
    grid-template-rows: 62px minmax(0, 1fr);
    min-height: calc(100dvh - 32px);
  }

  .site-nav .mobile-menu-extra {
    min-height: 48px;
    font-size: 18px;
  }

  .brand-logo {
    width: min(154px, 48vw);
    max-height: 48px;
  }

  .mobile-header-icons {
    gap: 6px;
  }

  .mobile-icon-search,
  .mobile-icon-bag {
    width: 31px;
    height: 31px;
  }

  .mobile-icon-heart {
    width: 34px;
    height: 31px;
    font-size: 40px;
  }

  .header-action {
    padding: 0 12px;
    font-size: 13px;
  }

  .metal-market-inner {
    padding: 12px 14px;
  }

  .metal-market-copy small {
    display: none;
  }

  .metal-market-item {
    padding: 8px 10px;
  }

  .metal-market.is-top-reference .metal-market-item {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .metal-market-item strong {
    font-size: 14px;
  }

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

  .reference-collection-hero {
    padding: 38px 16px 32px;
  }

  .home-hero-slide {
    min-height: 590px;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.32)),
      url("./assets/pave-1ct.png") center center / cover no-repeat,
      linear-gradient(180deg, #cad7df 0%, #f9f9f8 100%);
  }

  .home-hero-copy {
    bottom: 68px;
    gap: 18px;
  }

  .home-hero-copy h1 {
    font-size: 44px;
  }

  .home-hero-copy a {
    min-height: 42px;
    padding: 0 28px;
  }

  .home-hero-dots {
    bottom: 38px;
  }

  .home-category-rail a {
    flex-basis: 38vw;
  }

  .home-category-rail img {
    padding: 8px;
  }

  .home-category-rail span {
    font-size: 15px;
    letter-spacing: 0.05em;
  }

  .home-split-promos a {
    min-height: 520px;
  }

  .home-split-promos div {
    bottom: 38px;
    left: 28px;
  }

  .home-split-promos h2 {
    font-size: 47px;
  }

  .home-price-section {
    padding: 38px 18px;
  }

  .home-price-section h2 {
    margin-bottom: 22px;
    font-size: 42px;
  }

  .home-price-grid a {
    min-height: 58px;
    font-size: 14px;
  }

  .rc-hero-media {
    min-height: 126px;
    background:
      linear-gradient(90deg, rgba(238, 238, 236, 1) 0%, rgba(238, 238, 236, 0.72) 44%, rgba(238, 238, 236, 0.1) 100%),
      url("./assets/solitaire-1ct.png") 92% 50% / min(360px, 88vw) no-repeat,
      linear-gradient(90deg, #eeeeec, #f7f7f5);
  }

  .rc-signature-section {
    padding: 34px 16px 46px;
  }

  .rc-title {
    margin-bottom: 28px;
  }

  .rc-title h1 {
    font-size: 37px;
    line-height: 1.08;
  }

  .rc-title p:not(.eyebrow) {
    font-size: 14px;
  }

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

  .rc-setting-copy h2 {
    font-size: 19px;
    line-height: 1.12;
  }

  .rc-setting-copy strong {
    font-size: 13px;
  }

  .rc-setting-copy p {
    font-size: 13px;
    line-height: 1.34;
  }

  .rc-setting-copy .quote-button {
    min-height: 30px;
    font-size: 11px;
    letter-spacing: 0.05em;
  }

  .rc-gallery-controls {
    gap: 9px;
    min-height: 34px;
    margin-top: 8px;
  }

  .rc-gallery-arrow {
    width: 22px;
    height: 28px;
    font-size: 29px;
  }

  .rc-gallery-dot {
    width: 5px;
    height: 5px;
  }

  .rc-detail-image {
    min-height: 320px;
  }

  .rc-detail-copy {
    padding: 30px 18px;
  }

  .rc-detail-copy h2 {
    font-size: 32px;
  }

  .rc-ways-section {
    padding: 36px 16px;
  }

  .rc-category-section {
    padding: 38px 0 0;
  }

  .rc-category-section h2 {
    margin-bottom: 24px;
    font-size: 34px;
  }

  .rc-category-grid {
    border-left: 0;
  }

  .rc-category-grid a {
    min-height: 252px;
    padding: 14px 12px 20px;
  }

  .rc-category-grid img {
    max-width: 180px;
    padding: 8px;
  }

  .rc-category-grid span {
    font-size: 21px;
  }

  .rc-category-grid strong {
    font-size: 10px;
    letter-spacing: 0.05em;
  }

  .rc-service-section {
    min-height: 360px;
    padding: 46px 18px;
  }

  .rc-service-section h2 {
    font-size: 34px;
  }

  .rc-ways-grid a {
    min-height: 0;
    padding: 24px 20px;
  }

  .reference-collection-hero .eyebrow {
    margin-bottom: 12px;
  }

  .reference-collection-hero h1 {
    width: min(100%, 342px);
    font-size: 24px;
    letter-spacing: 0.01em;
    line-height: 1.12;
  }

  .reference-collection-hero p:not(.eyebrow) {
    width: min(100%, 340px);
    font-size: 14px;
  }

  .reference-collection-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 260px);
    margin-top: 22px;
  }

  .reference-collection-actions .primary-action,
  .reference-collection-actions .secondary-action {
    width: 100%;
  }

  .collection-filter-section {
    gap: 20px;
    padding: 16px;
  }

  .filter-group {
    padding-right: 18px;
  }

  .shape-chips,
  .metal-swatches,
  .style-chips {
    gap: 10px;
  }

  .lead-toggle {
    max-width: 230px;
    white-space: normal;
    line-height: 1.25;
  }

  .popular-settings-copy {
    padding: 30px 20px;
  }

  .popular-settings-copy h2 {
    max-width: 340px;
    font-size: 28px;
  }

  .popular-settings-copy p:not(.eyebrow) {
    max-width: 340px;
  }

  .popular-setting-card {
    padding: 16px 12px 20px;
  }

  .shop-grid-section {
    padding: 44px 16px;
  }

  .shop-card-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .shop-card-body {
    padding-top: 13px;
  }

  .quote-confidence-row article {
    padding: 22px 20px;
  }

  main#top > .catalog-section {
    padding: 40px 14px;
  }

  .commerce-hero {
    min-height: 640px;
    padding-top: 40px;
    padding-right: 14px;
    padding-bottom: 18px;
    padding-left: 14px;
    gap: 22px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 255, 255, 0.25) 100%),
      url("./assets/solitaire-1ct.png") center bottom / min(520px, 105vw) no-repeat,
      linear-gradient(180deg, #ffffff 0%, #f7f7f7 70%, #eef1f4 100%);
  }

  .hero-copy {
    padding-bottom: 300px;
  }

  .hero-product-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 168px;
    min-height: 0;
    gap: 8px;
  }

  .hero-product-card-main {
    grid-column: span 2;
    grid-row: span 1;
  }

  .hero-product-card > div {
    padding: 12px;
  }

  .hero-product-card strong {
    font-size: 20px;
  }

  .hero-product-card:not(.hero-product-card-main) strong {
    font-size: 12px;
  }

  .hero-studio-panel {
    margin-top: 14px;
  }

  .hero-studio-panel strong {
    font-size: 16px;
  }

  .jewelry-window-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .jewelry-window-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .jewelry-window-grid a,
  .jewelry-window-grid img {
    min-height: 170px;
  }

  .featured-style-section,
  .hero-proof-strip div {
    padding-right: 14px;
    padding-left: 14px;
  }

  .featured-style-card,
  .featured-style-card.featured {
    grid-template-rows: minmax(250px, 1fr) auto;
  }

  .featured-style-card img,
  .featured-style-card.featured img {
    min-height: 250px;
  }

  .signature-entry-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .signature-entry-visual,
  .signature-entry-visual img {
    min-height: 350px;
  }

  .signature-entry-ticket {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 14px;
  }

  .signature-entry-ticket strong {
    font-size: 22px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.02;
  }

  .commerce-hero h1 {
    font-size: 32px;
    line-height: 1.02;
  }

  .hero-intro {
    font-size: 14px;
  }

  .hero-metrics {
    display: none;
  }

  .concierge-strip div {
    min-height: 74px;
    gap: 14px;
    padding: 0 16px;
  }

  .concierge-strip span {
    font-size: 22px;
  }

  .atelier-route-section,
  .build-flow-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .atelier-route-heading h2 {
    font-size: 34px;
  }

  .atelier-route-card,
  .route-feature {
    min-height: 330px;
  }

  .atelier-route-card > div {
    padding: 22px;
  }

  .atelier-route-card h3 {
    font-size: 30px;
  }

  .build-flow-copy h2 {
    font-size: 32px;
  }

  .build-flow-list article {
    padding: 20px;
  }

  .build-flow-list h3 {
    margin-top: 28px;
  }

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

  .start-path-card {
    min-height: 0;
  }

  .hero-actions,
  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .form-actions.has-whatsapp {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-grid,
  .sku-grid,
  .capability-grid,
  .entity-grid,
  .entity-panel,
  .brand-proof-strip,
  .ring-builder-strip,
  .quote-hero,
  .quote-guide-grid,
  .quote-route-panel,
  .price-band-grid,
  .guide-grid,
  .policy-grid,
  .process-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .quote-hero {
    padding-top: 40px;
  }

  .quote-hero-panel {
    padding: 20px;
  }

  .quote-hero-panel strong {
    font-size: 28px;
  }

  .ring-hero-media,
  .ring-hero-media img {
    min-height: 360px;
  }

  .ring-hero-media strong {
    font-size: 28px;
  }

  .quote-route-links {
    grid-template-columns: minmax(0, 1fr);
  }

  .brand-proof-strip article,
  .brand-proof-strip article:nth-child(2) {
    border-right: 0;
  }

  .brand-proof-strip article {
    min-height: 96px;
    border-bottom: 1px solid rgba(23, 40, 68, 0.14);
  }

  .brand-proof-strip article:last-child {
    border-bottom: 0;
  }

  .product-copy {
    min-height: auto;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .floating-whatsapp {
    right: 8px;
    bottom: 18px;
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  }
}
