﻿:root {
  --ink: #15110f;
  --brown: #382720;
  --smoke: #6f655d;
  --ivory: #fbf4e8;
  --paper: #fffdf8;
  --champagne: #dfc58f;
  --gold: #a97732;
  --rose: #8d2d3e;
  --wine: #421923;
  --green: #173d35;
  --mist: #e8e0d4;
  --line: rgba(21, 17, 15, 0.14);
  --shadow: 0 22px 70px rgba(36, 24, 16, 0.14);
  --shadow-strong: 0 34px 110px rgba(21, 17, 15, 0.28);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(223, 197, 143, 0.28), transparent 26rem),
    linear-gradient(180deg, var(--paper), var(--ivory));
  color: var(--ink);
  font-family: var(--body);
  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;
}

.cursor-glow {
  background: radial-gradient(circle, rgba(169, 119, 50, 0.2), transparent 62%);
  border-radius: 50%;
  height: 320px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: translate(-50%, -50%);
  transition: opacity 200ms ease;
  width: 320px;
  z-index: 1;
}

body.has-pointer .cursor-glow {
  opacity: 1;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(21, 17, 15, 0.1);
  border-radius: 999px;
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  left: clamp(12px, 3vw, 34px);
  padding: 9px 13px 9px 15px;
  position: fixed;
  right: clamp(12px, 3vw, 34px);
  top: 14px;
  z-index: 20;
}

.brand,
.footer-brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
}

.brand img,
.footer-brand img {
  height: 42px;
  object-fit: contain;
  width: 42px;
}

.brand span,
.footer-brand span {
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.menu-button {
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  color: var(--paper);
  display: none;
  height: 42px;
  place-items: center;
  width: 42px;
}

.nav-links {
  display: flex;
  gap: clamp(10px, 1.8vw, 24px);
  justify-content: center;
}

.nav-links a,
.footer-links a {
  color: rgba(21, 17, 15, 0.7);
  font-size: 0.86rem;
  font-weight: 800;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: end;
}

.button,
.icon-button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
}

.button {
  border-radius: 999px;
  gap: 8px;
  min-height: 48px;
  padding: 0 21px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.icon-button:hover,
.path-card:hover,
.product-card:hover {
  transform: translateY(-4px);
}

.button-dark {
  background: linear-gradient(135deg, var(--ink), var(--brown));
  color: var(--paper);
}

.button-light {
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line);
  color: var(--ink);
}

.icon-button {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  height: 46px;
  position: relative;
  width: 46px;
}

.button svg,
.icon-button svg,
.text-link svg {
  height: 18px;
  width: 18px;
}

.badge {
  align-items: center;
  background: var(--rose);
  border: 2px solid var(--paper);
  border-radius: 999px;
  color: white;
  display: inline-flex;
  font-size: 0.68rem;
  height: 19px;
  justify-content: center;
  min-width: 19px;
  padding: 0 4px;
  position: absolute;
  right: -4px;
  top: -4px;
}

.cart-drawer {
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 60;
}

.cart-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-backdrop {
  background: rgba(21, 17, 15, 0.36);
  inset: 0;
  position: absolute;
}

.cart-panel {
  background: var(--paper);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
  margin-left: auto;
  max-width: min(430px, 100vw);
  position: relative;
  transform: translateX(100%);
  transition: transform 220ms ease;
  width: 100%;
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.cart-panel header,
.cart-panel footer {
  padding: 22px;
}

.cart-panel header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
}

.cart-panel h2 {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  margin: 4px 0 0;
}

.cart-lines {
  display: grid;
  gap: 16px;
  overflow-y: auto;
  padding: 22px;
}

.cart-line {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 84px 1fr;
}

.cart-line img {
  aspect-ratio: 1;
  background: var(--ivory);
  border: 1px solid var(--line);
  object-fit: cover;
  width: 84px;
}

.cart-line h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1;
  margin: 0 0 5px;
}

.cart-line p,
.cart-empty,
.cart-subtotal span {
  color: var(--smoke);
  font-size: 0.9rem;
  margin: 0;
}

.cart-line strong {
  display: block;
  margin-top: 7px;
}

.cart-panel footer {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 16px;
}

.cart-subtotal {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.cart-panel .button {
  width: 100%;
}

.shopify-description {
  color: var(--smoke);
  display: grid;
  gap: 12px;
}

.shopify-description p {
  margin: 0;
}

.variant-select {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.variant-select span {
  color: var(--smoke);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.variant-select select {
  appearance: none;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  min-height: 48px;
  padding: 0 18px;
}

.shopify-product-detail .product-purchase h1 {
  font-size: clamp(2.75rem, 5.8vw, 5.8rem);
  overflow-wrap: anywhere;
}

.home-hero,
.page-hero,
.product-detail,
.contact-page,
.truemark-page,
.info-hero,
.info-section,
.blog-section {
  padding: clamp(118px, 13vw, 168px) clamp(18px, 6vw, 88px) clamp(72px, 9vw, 118px);
}

.home-hero {
  align-items: end;
  display: grid;
  gap: clamp(28px, 6vw, 90px);
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 460px);
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.home-hero-bg {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.95) 0%, rgba(255, 253, 248, 0.76) 46%, rgba(255, 253, 248, 0.18) 100%),
    url("assets/kive-red-rose-earrings.webp") center / cover;
  inset: 0;
  position: absolute;
  z-index: -2;
}

.home-hero-bg::after {
  background:
    linear-gradient(180deg, transparent 65%, var(--paper)),
    radial-gradient(circle at 18% 34%, rgba(223, 197, 143, 0.32), transparent 28rem);
  content: "";
  inset: 0;
  position: absolute;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: 0;
}

h1,
.hero-copy h1,
.page-hero h1,
.product-purchase h1,
.contact-copy h1,
.truemark-copy h1 {
  font-size: clamp(4rem, 9vw, 8.4rem);
  line-height: 0.92;
  margin: 0;
}

h2,
.section-heading h2,
.split-heading h2,
.home-bespoke-copy h2,
.cta-panel h2,
.builder-copy h2 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.95;
  margin: 0;
}

.hero-copy p,
.page-hero p,
.info-hero p,
.product-purchase p,
.contact-copy p,
.truemark-copy p,
.home-bespoke-copy p,
.builder-copy p,
.product-info-tabs p,
.cta-panel p {
  color: var(--smoke);
  font-size: 1.04rem;
  max-width: 680px;
}

.info-hero {
  align-items: center;
  display: grid;
  gap: clamp(30px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
}

.info-hero h1 {
  font-size: clamp(3.8rem, 8vw, 7.4rem);
  line-height: 0.92;
  margin: 0;
}

.info-hero-media {
  aspect-ratio: 4 / 5;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  overflow: hidden;
}

.info-hero-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.info-section,
.blog-section {
  padding-top: 0;
}

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

.info-card,
.blog-card,
.faq-list details {
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(36, 24, 16, 0.08);
}

.info-card,
.blog-card {
  align-content: start;
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: clamp(22px, 3vw, 34px);
}

.info-card i,
.policy-list i {
  color: var(--gold);
  height: 24px;
  width: 24px;
}

.info-card h2,
.blog-card h2,
.faq-list summary {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.info-card p,
.blog-card p,
.faq-list p,
.policy-list p {
  color: var(--smoke);
  margin: 0;
}

.policy-list {
  display: grid;
  gap: 16px;
  max-width: 920px;
}

.policy-list article {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: 28px 1fr;
  padding: 0 0 20px;
}

.policy-list h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  margin: 0 0 6px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 960px;
}

.faq-list details {
  padding: 22px clamp(20px, 3vw, 30px);
}

.faq-list summary {
  cursor: pointer;
}

.faq-list p {
  margin-top: 14px;
}

.blog-card img {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
  width: 100%;
}

.blog-card time {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .info-hero {
    grid-template-columns: 1fr;
  }

  .info-hero-media {
    aspect-ratio: 16 / 10;
  }

  .info-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.trust-row span,
.feature-pill {
  align-items: center;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid rgba(21, 17, 15, 0.1);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 8px;
  padding: 11px 14px;
}

.trust-row svg {
  color: var(--gold);
  height: 17px;
  width: 17px;
}

.hero-product-card {
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(255, 253, 248, 0.56);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.hero-product-card img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  width: 100%;
}

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

.hero-product-card span,
.path-card span,
.product-kicker {
  color: var(--gold);
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-product-card strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  margin: 6px 0;
}

.hero-product-card small {
  color: var(--smoke);
  font-weight: 700;
}

.shopping-paths,
.featured-products,
.conversion-band,
.home-bespoke,
.cta-panel,
.collection-controls,
.collection-layout,
.tier-showcase,
.product-info-tabs,
.bespoke-builder,
.process-section,
.proof-grid-wide {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 6vw, 88px);
}

.section-heading {
  margin: 0 auto 36px;
  max-width: 780px;
  text-align: center;
}

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

.path-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 440px;
  overflow: hidden;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.path-card:hover {
  box-shadow: var(--shadow-strong);
}

.path-card img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.path-card::after {
  background: linear-gradient(180deg, transparent 36%, rgba(21, 17, 15, 0.82));
  content: "";
  inset: 0;
  position: absolute;
}

.path-card span,
.path-card strong {
  bottom: 84px;
  color: var(--paper);
  left: 24px;
  position: absolute;
  right: 24px;
  z-index: 1;
}

.path-card strong {
  bottom: 24px;
  font-family: var(--display);
  font-size: 2.2rem;
  line-height: 0.95;
}

.split-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.text-link {
  align-items: center;
  color: var(--gold);
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
}

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

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

.product-card {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  box-shadow: var(--shadow-strong);
}

.product-media {
  aspect-ratio: 4 / 5;
  background: var(--mist);
  overflow: hidden;
  position: relative;
}

.product-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
  width: 100%;
}

.product-card:hover .product-media img {
  transform: scale(1.055);
}

.favourite-button {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 42px;
}

.favourite-button.is-active {
  background: var(--rose);
  color: white;
}

.product-body {
  padding: 18px;
}

.product-body h3 {
  font-size: 1.9rem;
  line-height: 0.98;
  margin: 8px 0 12px;
}

.product-meta {
  align-items: end;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.product-meta span {
  color: var(--smoke);
  font-size: 0.88rem;
}

.product-meta strong {
  white-space: nowrap;
}

.product-card .button {
  margin-top: 16px;
  width: 100%;
}

.conversion-band {
  background: linear-gradient(135deg, var(--ink), var(--wine));
  color: var(--paper);
  display: grid;
  gap: clamp(30px, 6vw, 78px);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.conversion-band h2 {
  max-width: 640px;
}

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

.proof-grid article,
.builder-grid article {
  background: rgba(255, 253, 248, 0.1);
  border: 1px solid rgba(255, 253, 248, 0.16);
  padding: 22px;
}

.proof-grid svg,
.builder-grid svg {
  color: var(--champagne);
  height: 28px;
  width: 28px;
}

.proof-grid strong,
.builder-grid h3 {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1;
  margin: 14px 0 10px;
}

.proof-grid p {
  color: rgba(255, 253, 248, 0.72);
  margin: 0;
}

.home-bespoke {
  align-items: center;
  display: grid;
  gap: clamp(30px, 7vw, 88px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
}

.home-bespoke-media img {
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-strong);
  object-fit: cover;
  width: 100%;
}

.cta-panel {
  background:
    linear-gradient(90deg, rgba(21, 17, 15, 0.88), rgba(66, 25, 35, 0.7)),
    url("assets/kive-tennis-necklace-close.webp") center / cover;
  color: var(--paper);
}

.cta-panel p,
.cta-panel .eyebrow {
  color: var(--paper);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.95), rgba(255, 253, 248, 0.66)),
    url("assets/kive-moon-blue-tennis-set.webp") center / cover;
}

.collections-hero {
  min-height: 70svh;
}

.collection-controls {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-bottom: 20px;
  padding-top: 34px;
}

.segmented-control {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  min-height: 50px;
  overflow: hidden;
}

.filter-button {
  background: transparent;
  border: 0;
  color: rgba(21, 17, 15, 0.7);
  cursor: pointer;
  font-weight: 800;
  padding: 0 16px;
}

.filter-button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.sort-label {
  align-items: center;
  color: var(--smoke);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 10px;
}

.sort-label select,
.booking-form input,
.booking-form select,
.booking-form textarea,
.verify-panel input {
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  min-height: 48px;
  padding: 0 15px;
}

.collection-layout {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: 300px 1fr;
  padding-top: 24px;
}

.buying-guide,
.verify-panel,
.booking-form {
  backdrop-filter: blur(18px);
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 24px;
}

.buying-guide {
  position: sticky;
  top: 104px;
}

.buying-guide h2 {
  font-size: 2.4rem;
  line-height: 1;
}

.buying-guide ul {
  color: var(--smoke);
  display: grid;
  gap: 12px;
  margin: 18px 0 22px;
  padding-left: 20px;
}

.tier-showcase {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, 1fr);
}

.tier-showcase article {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 220px;
  padding: 22px;
}

.tier-showcase span {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.tier-showcase strong {
  color: var(--gold);
  display: block;
  margin: 12px 0;
}

.tier-showcase p {
  color: var(--smoke);
}

.product-detail {
  align-items: start;
  display: grid;
  gap: clamp(30px, 6vw, 82px);
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
}

.product-gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.product-gallery img {
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.product-gallery .gallery-main {
  aspect-ratio: 4 / 5;
  grid-column: 1 / -1;
}

.product-purchase {
  position: sticky;
  top: 112px;
}

.price-line {
  color: var(--gold) !important;
  font-size: 1.28rem !important;
  font-weight: 800;
}

.purchase-actions {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.product-trust {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  padding-top: 18px;
}

.product-trust span {
  align-items: center;
  color: var(--smoke);
  display: flex;
  font-weight: 700;
  gap: 10px;
}

.product-trust svg {
  color: var(--gold);
  flex: 0 0 auto;
}

.product-info-tabs {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.product-info-tabs article,
.process-steps article {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 24px;
}

.product-info-tabs h2,
.process-steps h2 {
  font-size: 2.3rem;
  line-height: 1;
  margin: 0 0 10px;
}

.sticky-buy {
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(255, 253, 248, 0.88);
  border-top: 1px solid var(--line);
  bottom: 0;
  display: flex;
  gap: 16px;
  justify-content: center;
  left: 0;
  padding: 12px 18px;
  position: sticky;
  right: 0;
  z-index: 16;
}

.sticky-buy span {
  font-weight: 800;
}

.bespoke-hero {
  background:
    linear-gradient(90deg, rgba(21, 17, 15, 0.78), rgba(21, 17, 15, 0.18)),
    url("assets/kive-burgundy-tennis-portrait.webp") center / cover;
  color: var(--paper);
}

.bespoke-hero p {
  color: rgba(255, 253, 248, 0.82);
}

.bespoke-builder {
  align-items: center;
  display: grid;
  gap: clamp(30px, 6vw, 80px);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

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

.builder-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
}

.builder-grid p {
  color: var(--smoke);
}

.process-section {
  background: linear-gradient(135deg, var(--green), var(--ink));
  color: var(--paper);
}

.process-steps {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.process-steps article {
  background: rgba(255, 253, 248, 0.08);
  border-color: rgba(255, 253, 248, 0.14);
}

.process-steps span {
  color: var(--champagne);
  font-weight: 800;
}

.process-steps p {
  color: rgba(255, 253, 248, 0.72);
}

.truemark-page {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(23, 61, 53, 0.96), rgba(21, 17, 15, 0.96)),
    radial-gradient(circle at 75% 20%, rgba(223, 197, 143, 0.2), transparent 28rem);
  color: var(--paper);
  display: grid;
  gap: clamp(30px, 7vw, 92px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
}

.truemark-copy p {
  color: rgba(255, 253, 248, 0.75);
}

.panel-label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.verify-panel,
.booking-form {
  display: grid;
  gap: 16px;
}

.verify-panel label,
.booking-form label {
  display: grid;
  gap: 7px;
}

.verify-panel label span,
.booking-form label span {
  color: var(--smoke);
  font-size: 0.84rem;
  font-weight: 800;
}

.booking-form textarea {
  border-radius: 22px;
  min-height: 132px;
  padding-top: 13px;
  resize: vertical;
}

.form-intro {
  display: grid;
  gap: 6px;
}

.form-intro h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
  margin: 0;
}

.moulding-form {
  gap: 20px;
}

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

.form-checkbox {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px 1fr;
}

.form-checkbox input {
  accent-color: var(--green);
  margin-top: 3px;
}

.form-checkbox span,
.moulding-note {
  color: var(--smoke);
  font-size: 0.9rem;
  font-weight: 700;
}

.moulding-note {
  background: rgba(23, 61, 53, 0.08);
  border: 1px solid rgba(23, 61, 53, 0.14);
  border-radius: 8px;
  margin: 0;
  padding: 13px 15px;
}

.booking-form .button,
.verify-panel .button {
  width: 100%;
}

.form-note {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
  margin: 0;
  min-height: 24px;
}

.proof-grid-wide {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid-wide article {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 24px;
}

.proof-grid-wide p {
  color: var(--smoke);
}

.contact-page {
  align-items: start;
  display: grid;
  gap: clamp(30px, 7vw, 88px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 520px);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
}

.contact-list div {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: 120px 1fr;
  padding-top: 14px;
}

.contact-list dt {
  color: var(--gold);
  font-weight: 800;
}

.contact-list dd {
  margin: 0;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  gap: 20px;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  padding: 42px clamp(18px, 6vw, 88px);
}

.footer-brand img {
  filter: invert(1);
}

.site-footer p {
  color: rgba(255, 253, 248, 0.66);
  margin: 0;
  max-width: 520px;
}

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

.footer-links a {
  color: rgba(255, 253, 248, 0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms ease;
  transition-delay: var(--delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1120px) {
  .product-grid-home,
  .tier-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .proof-grid,
  .builder-grid,
  .process-steps,
  .product-info-tabs,
  .proof-grid-wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-button {
    display: inline-grid;
  }

  .nav-links {
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 12px;
  }

  .home-hero,
  .conversion-band,
  .home-bespoke,
  .collection-layout,
  .product-detail,
  .bespoke-builder,
  .truemark-page,
  .contact-page,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .buying-guide,
  .product-purchase {
    position: static;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .hero-product-card {
    max-width: 460px;
  }
}

@media (max-width: 680px) {
  .site-header {
    left: 10px;
    right: 10px;
    top: 10px;
  }

  .brand img {
    height: 34px;
    width: 34px;
  }

  .brand span {
    font-size: 1rem;
  }

  .header-actions .button {
    display: none;
  }

  .home-hero,
  .page-hero,
  .product-detail,
  .contact-page,
  .truemark-page {
    padding-top: 108px;
  }

  h1,
  .hero-copy h1,
  .page-hero h1,
  .product-purchase h1,
  .contact-copy h1,
  .truemark-copy h1 {
    font-size: clamp(3.3rem, 15vw, 5.3rem);
  }

  .product-grid,
  .product-grid-home,
  .tier-showcase {
    grid-template-columns: 1fr;
  }

  .collection-controls,
  .split-heading,
  .sticky-buy {
    align-items: stretch;
    flex-direction: column;
  }

  .segmented-control {
    border-radius: 24px;
    overflow-x: auto;
  }

  .filter-button {
    flex: 1 0 auto;
  }

  .sort-label,
  .sort-label select {
    width: 100%;
  }

  .contact-list div {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* Private maison direction */
:root {
  --ink: #0d0d0c;
  --brown: #241b17;
  --smoke: #655f58;
  --ivory: #f6efe4;
  --paper: #fffaf1;
  --champagne: #d4b06c;
  --gold: #9a7438;
  --rose: #6f1f2d;
  --wine: #251014;
  --green: #12342e;
  --mist: #e5d9c9;
  --line: rgba(13, 13, 12, 0.16);
  --shadow: 0 18px 44px rgba(28, 20, 14, 0.1);
  --shadow-strong: 0 28px 88px rgba(13, 13, 12, 0.22);
}

body {
  background:
    linear-gradient(90deg, rgba(13, 13, 12, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, #fffaf1 0%, #f6efe4 52%, #efe4d3 100%);
}

.cursor-glow {
  background: radial-gradient(circle, rgba(111, 31, 45, 0.14), transparent 64%);
}

.site-header {
  background: rgba(255, 250, 241, 0.9);
  border-color: rgba(13, 13, 12, 0.18);
  border-radius: 0;
  left: clamp(14px, 3vw, 40px);
  padding: 12px 14px;
  right: clamp(14px, 3vw, 40px);
  top: 18px;
}

.brand img,
.footer-brand img {
  border: 1px solid var(--line);
  height: 46px;
  padding: 5px;
  width: 46px;
}

.brand span,
.footer-brand span {
  font-size: 1.18rem;
  text-transform: uppercase;
}

.nav-links a,
.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.button,
.icon-button,
.segmented-control,
.filter-button,
.sort-label select,
.booking-form input,
.booking-form select,
.verify-panel input {
  border-radius: 0;
}

.button {
  min-height: 50px;
  padding: 0 24px;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.button-dark {
  background: var(--ink);
}

.button-light {
  background: transparent;
}

.home-hero {
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  min-height: 100svh;
}

.home-hero::before {
  background: var(--ink);
  content: "";
  height: 1px;
  left: clamp(18px, 6vw, 88px);
  position: absolute;
  right: clamp(18px, 6vw, 88px);
  top: 118px;
}

.home-hero-bg {
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.98) 0%, rgba(255, 250, 241, 0.88) 48%, rgba(255, 250, 241, 0.42) 100%),
    url("assets/kive-red-rose-earrings.webp") center / cover;
}

.home-hero-bg::after {
  background:
    linear-gradient(180deg, transparent 72%, var(--paper)),
    radial-gradient(circle at 78% 40%, rgba(13, 13, 12, 0.2), transparent 22rem);
}

h1,
.hero-copy h1,
.page-hero h1,
.product-purchase h1,
.contact-copy h1,
.truemark-copy h1 {
  font-size: clamp(4rem, 8.4vw, 8.2rem);
  font-weight: 600;
  max-width: 860px;
}

.eyebrow {
  color: var(--rose);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.hero-copy p {
  max-width: 520px;
}

.trust-row {
  border-left: 1px solid var(--line);
  display: grid;
  max-width: 520px;
  padding-left: 18px;
}

.trust-row span,
.feature-pill {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 4px 0;
}

.hero-product-card {
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: none;
  padding: 12px;
}

.hero-product-card img {
  filter: grayscale(0.18) contrast(1.02);
}

.hero-product-card div {
  border-top: 1px solid var(--line);
  padding: 18px 4px 4px;
}

.shopping-paths,
.featured-products,
.home-bespoke,
.collection-layout,
.product-info-tabs,
.bespoke-builder,
.proof-grid-wide {
  background: rgba(255, 250, 241, 0.62);
}

.section-heading {
  text-align: left;
  margin-left: 0;
}

.path-grid {
  grid-template-columns: 1.15fr 0.85fr 1fr;
}

.path-card,
.product-card,
.tier-showcase article,
.buying-guide,
.verify-panel,
.booking-form,
.product-info-tabs article,
.process-steps article,
.proof-grid-wide article {
  background: rgba(255, 250, 241, 0.86);
  border: 1px solid var(--line);
  box-shadow: none;
}

.path-card {
  min-height: 520px;
}

.path-card::after {
  background: linear-gradient(180deg, rgba(13, 13, 12, 0.04), rgba(13, 13, 12, 0.78));
}

.path-card:hover,
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.split-heading {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}

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

.product-card {
  display: grid;
}

.product-body {
  border-top: 1px solid var(--line);
}

.product-body h3 {
  font-size: 1.72rem;
}

.favourite-button {
  border-radius: 0;
}

.conversion-band {
  background:
    linear-gradient(90deg, rgba(13, 13, 12, 0.96), rgba(37, 16, 20, 0.86)),
    url("assets/kive-moon-blue-tennis-set.webp") center / cover;
}

.proof-grid article {
  background: rgba(255, 250, 241, 0.06);
  border-color: rgba(255, 250, 241, 0.2);
}

.home-bespoke {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-bespoke-media img,
.product-gallery img {
  box-shadow: none;
}

.cta-panel {
  background:
    linear-gradient(90deg, rgba(13, 13, 12, 0.92), rgba(13, 13, 12, 0.45)),
    url("assets/kive-red-rose-earrings.webp") center / cover;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.96), rgba(255, 250, 241, 0.7)),
    url("assets/kive-tennis-necklace-close.webp") center / cover;
  border-bottom: 1px solid var(--line);
}

.collection-controls {
  padding-top: 44px;
}

.buying-guide {
  border-color: var(--ink);
}

.tier-showcase {
  background: var(--ink);
}

.tier-showcase article {
  background: rgba(255, 250, 241, 0.05);
  border-color: rgba(255, 250, 241, 0.18);
  color: var(--paper);
}

.tier-showcase p {
  color: rgba(255, 250, 241, 0.7);
}

.product-detail {
  background: linear-gradient(90deg, var(--paper) 0%, var(--paper) 50%, #f1e6d5 50%, #f1e6d5 100%);
}

.product-purchase {
  border-top: 1px solid var(--ink);
  padding-top: 22px;
}

.sticky-buy {
  background: rgba(255, 250, 241, 0.94);
}

.bespoke-hero {
  background:
    linear-gradient(90deg, rgba(13, 13, 12, 0.86), rgba(13, 13, 12, 0.22)),
    url("assets/kive-burgundy-tennis-portrait.webp") center / cover;
}

.process-section,
.truemark-page {
  background:
    linear-gradient(135deg, rgba(13, 13, 12, 0.96), rgba(18, 52, 46, 0.88)),
    url("assets/rose-emblem-web.png") left -120px bottom -160px / 520px no-repeat;
}

.contact-page {
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.97), rgba(255, 250, 241, 0.82)),
    url("assets/kive-red-rose-earrings.webp") right center / 44% auto no-repeat;
}

.site-footer {
  border-top: 1px solid rgba(255, 250, 241, 0.16);
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-links {
    border-radius: 0;
  }

  .path-grid,
  .product-grid-home {
    grid-template-columns: 1fr;
  }

  .product-detail,
  .contact-page {
    background: var(--paper);
  }
}

@media (max-width: 680px) {
  .site-header {
    border-radius: 0;
    grid-template-columns: minmax(0, 1fr) auto auto;
    left: 8px;
    right: 8px;
  }

  .brand {
    min-width: 0;
  }

  .home-hero::before {
    display: none;
  }

  .brand span {
    font-size: 0;
    max-width: none;
    overflow: visible;
  }

  .brand span::after {
    content: "Black Rose";
    font-size: 0.95rem;
  }

  .home-hero {
    display: block;
    min-height: auto;
    padding-top: 124px;
  }

  .hero-product-card {
    display: none;
  }

  h1,
  .hero-copy h1,
  .page-hero h1,
  .product-purchase h1,
  .contact-copy h1,
  .truemark-copy h1 {
    font-size: clamp(3rem, 12.5vw, 4.5rem);
    line-height: 0.94;
  }

  .path-card {
    min-height: 420px;
  }
}

/* Gemstone atelier direction */
:root {
  --ink: #15231f;
  --brown: #4f3430;
  --smoke: #6c665f;
  --ivory: #f8f0e3;
  --paper: #fffaf2;
  --champagne: #e5c88d;
  --gold: #b6824b;
  --rose: #a54f61;
  --wine: #6b3140;
  --green: #0d4438;
  --mist: #e8ddd0;
  --platinum: #d9dddd;
  --line: rgba(21, 35, 31, 0.14);
  --shadow: 0 22px 64px rgba(13, 68, 56, 0.13);
  --shadow-strong: 0 30px 96px rgba(13, 68, 56, 0.24);
}

body {
  background:
    radial-gradient(circle at 12% 18%, rgba(165, 79, 97, 0.18), transparent 22rem),
    radial-gradient(circle at 88% 8%, rgba(13, 68, 56, 0.18), transparent 26rem),
    linear-gradient(180deg, #fffaf2 0%, #f8f0e3 48%, #eee3d3 100%);
}

.cursor-glow {
  background: radial-gradient(circle, rgba(13, 68, 56, 0.16), rgba(165, 79, 97, 0.08), transparent 64%);
}

.site-header {
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(182, 130, 75, 0.24);
  border-radius: 999px;
  box-shadow: 0 18px 54px rgba(13, 68, 56, 0.09);
}

.brand img,
.footer-brand img {
  background: rgba(255, 250, 242, 0.7);
  border: 1px solid rgba(182, 130, 75, 0.28);
  border-radius: 999px;
}

.brand span,
.footer-brand span {
  color: var(--green);
  text-transform: none;
}

.nav-links a,
.footer-links a {
  color: rgba(21, 35, 31, 0.72);
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--rose);
}

.button,
.icon-button,
.segmented-control,
.filter-button,
.sort-label select,
.booking-form input,
.booking-form select,
.verify-panel input {
  border-radius: 999px;
}

.button {
  letter-spacing: 0;
  text-transform: none;
}

.button-dark {
  background: linear-gradient(135deg, var(--green), #163b34 58%, var(--wine));
  color: var(--paper);
}

.button-light {
  background: rgba(255, 250, 242, 0.72);
  border-color: rgba(182, 130, 75, 0.28);
}

.icon-button {
  background: rgba(255, 250, 242, 0.84);
  border-color: rgba(182, 130, 75, 0.25);
}

.home-hero::before {
  background: linear-gradient(90deg, transparent, rgba(182, 130, 75, 0.58), transparent);
}

.home-hero-bg {
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.96) 0%, rgba(255, 250, 242, 0.82) 44%, rgba(255, 250, 242, 0.28) 100%),
    url("assets/kive-red-rose-earrings.webp") center / cover;
}

.home-hero-bg::after {
  background:
    linear-gradient(180deg, transparent 68%, var(--paper)),
    radial-gradient(circle at 24% 38%, rgba(229, 200, 141, 0.35), transparent 23rem),
    radial-gradient(circle at 80% 48%, rgba(13, 68, 56, 0.2), transparent 24rem);
}

.eyebrow {
  color: var(--rose);
  letter-spacing: 0.02em;
}

h1,
.hero-copy h1,
.page-hero h1,
.product-purchase h1,
.contact-copy h1,
.truemark-copy h1 {
  color: #151d1a;
}

.hero-copy p,
.page-hero p,
.product-purchase p,
.contact-copy p,
.home-bespoke-copy p,
.builder-copy p {
  color: #696159;
}

.trust-row {
  border-left: 2px solid rgba(182, 130, 75, 0.36);
}

.trust-row span,
.feature-pill {
  color: var(--green);
}

.trust-row svg {
  color: var(--rose);
}

.hero-product-card {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(255, 250, 242, 0.78)),
    radial-gradient(circle at 100% 0%, rgba(165, 79, 97, 0.16), transparent 18rem);
  border: 1px solid rgba(182, 130, 75, 0.34);
  border-radius: 28px 28px 6px 6px;
  box-shadow: var(--shadow-strong);
  padding: 12px;
}

.hero-product-card img,
.home-bespoke-media img,
.product-gallery img,
.path-card,
.product-card {
  border-radius: 28px 28px 6px 6px;
}

.hero-product-card div,
.product-body {
  border-top-color: rgba(182, 130, 75, 0.22);
}

.section-heading {
  text-align: center;
  margin-left: auto;
}

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

.path-card,
.product-card,
.tier-showcase article,
.buying-guide,
.verify-panel,
.booking-form,
.product-info-tabs article,
.process-steps article,
.proof-grid-wide article {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(255, 250, 242, 0.74)),
    radial-gradient(circle at 100% 0%, rgba(229, 200, 141, 0.18), transparent 16rem);
  border: 1px solid rgba(182, 130, 75, 0.22);
  box-shadow: var(--shadow);
}

.path-card::after {
  background: linear-gradient(180deg, transparent 34%, rgba(13, 68, 56, 0.82));
}

.split-heading {
  border-top: 1px solid rgba(182, 130, 75, 0.42);
}

.favourite-button {
  border-radius: 999px;
}

.conversion-band {
  background:
    linear-gradient(135deg, rgba(13, 68, 56, 0.92), rgba(107, 49, 64, 0.82)),
    url("assets/kive-moon-blue-tennis-set.webp") center / cover;
}

.proof-grid article {
  background: rgba(255, 250, 242, 0.1);
  border-color: rgba(229, 200, 141, 0.26);
}

.home-bespoke {
  background:
    radial-gradient(circle at 78% 22%, rgba(13, 68, 56, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(255, 250, 242, 0.76), rgba(248, 240, 227, 0.95));
  border-color: rgba(182, 130, 75, 0.24);
}

.cta-panel {
  background:
    linear-gradient(90deg, rgba(13, 68, 56, 0.92), rgba(107, 49, 64, 0.58)),
    url("assets/kive-red-rose-earrings.webp") center / cover;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.95), rgba(255, 250, 242, 0.68)),
    url("assets/kive-moon-blue-tennis-set.webp") center / cover;
  border-bottom-color: rgba(182, 130, 75, 0.24);
}

.filter-button.is-active {
  background: var(--green);
}

.buying-guide {
  border-color: rgba(13, 68, 56, 0.34);
}

.tier-showcase {
  background:
    radial-gradient(circle at 30% 0%, rgba(229, 200, 141, 0.16), transparent 26rem),
    linear-gradient(135deg, var(--green), #142521);
}

.product-detail {
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 1) 0%, rgba(255, 250, 242, 1) 50%, rgba(232, 221, 208, 0.84) 50%, rgba(232, 221, 208, 0.84) 100%);
}

.product-purchase {
  border-top-color: rgba(182, 130, 75, 0.42);
}

.sticky-buy {
  background: rgba(255, 250, 242, 0.92);
  border-color: rgba(182, 130, 75, 0.22);
}

.bespoke-hero {
  background:
    linear-gradient(90deg, rgba(13, 68, 56, 0.86), rgba(107, 49, 64, 0.28)),
    url("assets/kive-burgundy-tennis-portrait.webp") center / cover;
}

.process-section,
.truemark-page {
  background:
    radial-gradient(circle at 80% 20%, rgba(229, 200, 141, 0.14), transparent 25rem),
    linear-gradient(135deg, rgba(13, 68, 56, 0.96), rgba(107, 49, 64, 0.82)),
    url("assets/rose-emblem-web.png") left -120px bottom -160px / 520px no-repeat;
}

.truemark-copy h1,
.truemark-copy p,
.process-section h2,
.process-section p,
.bespoke-hero h1,
.bespoke-hero p,
.cta-panel h2,
.cta-panel p {
  color: var(--paper);
}

.contact-page {
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.97), rgba(255, 250, 242, 0.86)),
    radial-gradient(circle at 86% 16%, rgba(165, 79, 97, 0.16), transparent 22rem),
    url("assets/kive-red-rose-earrings.webp") right center / 44% auto no-repeat;
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(229, 200, 141, 0.14), transparent 22rem),
    linear-gradient(135deg, #10241f, var(--green));
}

@media (max-width: 940px) {
  .nav-links {
    border-radius: 18px;
  }

  .path-grid,
  .product-grid-home {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    border-radius: 22px;
  }

  .home-hero {
    padding-bottom: 74px;
  }

  .hero-product-card {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }
}

/* Model-led campaign direction */
:root {
  --ink: #15100f;
  --brown: #3e2723;
  --smoke: #6f625d;
  --ivory: #f4eadf;
  --paper: #fff8ef;
  --champagne: #d8b772;
  --gold: #b07a3f;
  --rose: #9c4254;
  --wine: #4f1d2a;
  --green: #153a33;
  --mist: #e8dbce;
  --line: rgba(21, 16, 15, 0.14);
  --shadow: 0 24px 70px rgba(21, 16, 15, 0.16);
  --shadow-strong: 0 38px 120px rgba(21, 16, 15, 0.28);
}

body {
  background:
    radial-gradient(circle at 10% 0%, rgba(156, 66, 84, 0.15), transparent 25rem),
    radial-gradient(circle at 88% 8%, rgba(21, 58, 51, 0.18), transparent 28rem),
    linear-gradient(180deg, #fff8ef 0%, #f4eadf 50%, #eadccf 100%);
}

.site-header {
  background: rgba(255, 248, 239, 0.78);
  border-radius: 28px;
}

.campaign-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.42fr) minmax(280px, 0.58fr);
  gap: clamp(18px, 3vw, 42px);
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(116px, 12vw, 160px) clamp(18px, 5vw, 72px) 56px;
  position: relative;
}

.campaign-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.92), rgba(255, 248, 239, 0.25)),
    url("assets/kive-red-rose-earrings.webp") center / cover;
  content: "";
  filter: grayscale(0.2);
  inset: 0;
  opacity: 0.3;
  position: absolute;
  z-index: -2;
}

.campaign-copy {
  align-self: center;
  max-width: 760px;
}

.campaign-copy h1 {
  font-size: clamp(4.8rem, 10vw, 9.6rem);
  line-height: 0.86;
  margin: 0;
}

.campaign-copy p:not(.eyebrow) {
  color: var(--smoke);
  font-size: 1.08rem;
  max-width: 520px;
}

.campaign-frame {
  align-self: end;
  background: var(--paper);
  border: 1px solid rgba(176, 122, 63, 0.24);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  padding: 12px;
}

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

.campaign-frame-one {
  height: min(68svh, 760px);
  transform: translateY(-22px);
}

.campaign-frame-two {
  height: min(82svh, 860px);
}

.campaign-caption {
  bottom: 26px;
  display: flex;
  gap: 12px;
  left: clamp(18px, 5vw, 72px);
  position: absolute;
}

.campaign-caption span {
  backdrop-filter: blur(18px);
  background: rgba(255, 248, 239, 0.7);
  border: 1px solid rgba(176, 122, 63, 0.22);
  border-radius: 999px;
  color: var(--green);
  font-weight: 800;
  padding: 10px 14px;
}

.model-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.model-strip article {
  display: grid;
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

.model-strip img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.model-strip article::after {
  background: linear-gradient(180deg, transparent 35%, rgba(21, 16, 15, 0.78));
  content: "";
  inset: 0;
  position: absolute;
}

.model-strip div {
  align-self: end;
  color: var(--paper);
  padding: clamp(24px, 5vw, 62px);
  position: relative;
  z-index: 1;
}

.model-strip h2 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.9;
  margin: 0 0 22px;
  max-width: 620px;
}

.model-strip a,
.lookbook-card span {
  color: var(--champagne);
  font-weight: 800;
}

.lookbook-section {
  padding: clamp(76px, 10vw, 130px) clamp(18px, 6vw, 88px);
}

.lookbook-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1.22fr 0.88fr;
}

.lookbook-card {
  display: grid;
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.lookbook-card img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: transform 500ms ease;
  width: 100%;
}

.lookbook-card:hover img {
  transform: scale(1.04);
}

.lookbook-card::after {
  background: linear-gradient(180deg, transparent 45%, rgba(21, 16, 15, 0.7));
  content: "";
  inset: 0;
  position: absolute;
}

.lookbook-card span {
  align-self: end;
  font-family: var(--display);
  font-size: 2.4rem;
  padding: 28px;
  position: relative;
  z-index: 1;
}

.campaign-products {
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.82), rgba(244, 234, 223, 0.92));
}

.service-routes {
  align-items: stretch;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  gap: 1px;
  grid-template-columns: minmax(280px, 1.15fr) repeat(4, minmax(150px, 1fr));
}

.service-routes > div,
.service-routes a {
  background: rgba(255, 248, 239, 0.045);
  min-height: 230px;
  padding: clamp(24px, 4vw, 48px);
}

.service-routes h2 {
  color: var(--paper);
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  line-height: 0.92;
  margin: 0;
}

.service-routes a {
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease;
}

.service-routes a:hover {
  background: var(--champagne);
  color: var(--ink);
}

.service-routes span {
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-routes a:hover span {
  color: var(--green);
}

.service-routes strong {
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  font-weight: 700;
  line-height: 0.98;
}

.campaign-bespoke {
  align-items: end;
  background:
    linear-gradient(90deg, rgba(21, 58, 51, 0.92), rgba(79, 29, 42, 0.75)),
    url("assets/kive-moon-blue-tennis-set.webp") center / cover;
  color: var(--paper);
  display: grid;
  gap: clamp(24px, 5vw, 70px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px) auto;
  padding: clamp(72px, 10vw, 128px) clamp(18px, 6vw, 88px);
}

.campaign-bespoke h2 {
  color: var(--paper);
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.9;
  margin: 0;
}

.campaign-bespoke p {
  color: rgba(255, 248, 239, 0.78);
}

.campaign-bespoke .button-light {
  background: var(--paper);
  color: var(--ink);
}

.product-media img {
  filter: saturate(0.92) contrast(1.02);
}

.product-card {
  border-radius: 0;
}

.product-media {
  aspect-ratio: 3 / 4;
}

.page-hero,
.collections-hero {
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.96), rgba(255, 248, 239, 0.62)),
    url("assets/kive-tennis-necklace-close.webp") center / cover;
}

.bespoke-hero {
  background:
    linear-gradient(90deg, rgba(21, 16, 15, 0.74), rgba(21, 16, 15, 0.18)),
    url("assets/kive-red-rose-earrings.webp") center / cover;
}

.contact-page {
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.97), rgba(255, 248, 239, 0.76)),
    url("assets/kive-red-rose-earrings.webp") right center / 46% auto no-repeat;
}

.product-detail {
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.98), rgba(255, 248, 239, 0.7) 48%, rgba(54, 30, 31, 0.1)),
    var(--paper);
}

.product-gallery {
  align-items: stretch;
}

.product-gallery .gallery-main {
  aspect-ratio: 4 / 5.5;
}

.product-gallery img {
  border-radius: 0;
}

.product-purchase {
  align-self: center;
}

.truemark-page {
  background:
    linear-gradient(90deg, rgba(21, 16, 15, 0.9), rgba(21, 16, 15, 0.48)),
    url("assets/kive-tennis-necklace-close.webp") center / cover;
}

.truemark-copy p,
.truemark-copy h1,
.truemark-copy .eyebrow {
  color: var(--paper);
}

.verify-panel {
  background: rgba(255, 248, 239, 0.88);
  backdrop-filter: blur(24px);
}

@media (max-width: 1040px) {
  .campaign-hero,
  .campaign-bespoke {
    grid-template-columns: 1fr;
  }

  .campaign-frame-one {
    display: none;
  }

  .campaign-frame-two {
    height: 58svh;
  }

  .model-strip,
  .lookbook-grid,
  .service-routes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .campaign-hero {
    display: block;
    min-height: auto;
    padding-top: 124px;
  }

  .campaign-copy h1 {
    font-size: clamp(3.6rem, 17vw, 5.8rem);
  }

  .campaign-frame {
    margin-top: 34px;
  }

  .campaign-frame-two {
    height: 430px;
  }

  .campaign-caption {
    display: none;
  }

  .model-strip article,
  .lookbook-card {
    min-height: 480px;
  }

  .campaign-bespoke {
    display: grid;
  }
}

/* Kive editorial relaunch */
.campaign-home {
  background: #070a12;
  color: #f7efe4;
}

.campaign-home .site-header {
  background: rgba(6, 8, 14, 0.72);
  border-color: rgba(231, 214, 187, 0.2);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  color: #f7efe4;
}

.campaign-home .brand span,
.campaign-home .nav-links a {
  color: #f7efe4;
}

.campaign-home .icon-button {
  background: rgba(247, 239, 228, 0.08);
  color: #f7efe4;
}

.campaign-home .campaign-hero {
  align-items: end;
  background:
    linear-gradient(90deg, rgba(4, 8, 17, 0.92) 0%, rgba(4, 8, 17, 0.66) 38%, rgba(4, 8, 17, 0.14) 72%),
    linear-gradient(0deg, rgba(4, 8, 17, 0.92), rgba(4, 8, 17, 0) 45%),
    url("assets/kive-prestige-male-watch.webp") center / cover;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(260px, 0.52fr);
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(132px, 14vw, 178px) clamp(20px, 6vw, 92px) clamp(38px, 6vw, 76px);
}

.hero-three {
  bottom: 0;
  left: 0;
  opacity: 0.92;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}

.hero-three canvas {
  display: block;
  height: 100%;
  mix-blend-mode: normal;
  width: 100%;
}

.campaign-home .campaign-hero::before {
  display: none;
}

.campaign-home .campaign-copy {
  color: #f7efe4;
  max-width: 760px;
  position: relative;
  z-index: 4;
}

.campaign-home .campaign-copy .eyebrow {
  color: #d9b46f;
}

.campaign-home .campaign-copy h1 {
  color: #f7efe4;
  font-size: clamp(4.8rem, 11vw, 12.5rem);
  letter-spacing: 0;
  line-height: 0.82;
  max-width: 820px;
}

.campaign-home .campaign-copy p:not(.eyebrow) {
  color: rgba(247, 239, 228, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.34rem);
  max-width: 620px;
}

.campaign-home .campaign-frame-one {
  display: none;
}

.campaign-home .campaign-frame-two {
  align-self: end;
  background: rgba(247, 239, 228, 0.08);
  border: 1px solid rgba(247, 239, 228, 0.26);
  height: clamp(280px, 42vw, 570px);
  justify-self: end;
  max-width: 440px;
  position: relative;
  width: min(32vw, 440px);
  z-index: 2;
}

.campaign-home .campaign-frame-two img {
  object-position: 62% center;
}

.campaign-home .campaign-caption {
  bottom: clamp(18px, 3vw, 36px);
  left: clamp(20px, 6vw, 92px);
  position: absolute;
  right: auto;
  z-index: 4;
}

.campaign-home .campaign-caption span {
  background: rgba(247, 239, 228, 0.08);
  border-color: rgba(217, 180, 111, 0.36);
  color: #f7efe4;
}

.campaign-home .model-strip {
  background: #070a12;
  gap: 1px;
  padding-top: 1px;
}

.campaign-home .model-strip article {
  min-height: 620px;
}

.campaign-home .lookbook-section,
.campaign-home .campaign-products {
  background: #0d1019;
  color: #f7efe4;
}

.campaign-home .home-lookbook {
  background: #fffaf2;
  color: #15110f;
  padding: clamp(58px, 7vw, 96px) clamp(18px, 6vw, 88px) clamp(72px, 8vw, 112px);
}

.campaign-home .home-lookbook .split-heading {
  align-items: end;
  border-top-color: rgba(176, 122, 63, 0.32);
  margin-bottom: clamp(24px, 3.4vw, 42px);
  padding-top: clamp(20px, 3vw, 34px);
}

.campaign-home .home-lookbook .split-heading > div {
  max-width: 820px;
}

.campaign-home .home-lookbook .split-heading h2 {
  color: #15110f;
  font-size: clamp(3rem, 5.4vw, 6.1rem);
  line-height: 0.9;
  max-width: 780px;
}

.campaign-home .home-lookbook .split-heading p:not(.eyebrow) {
  color: rgba(21, 17, 15, 0.66);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.55;
  margin: 18px 0 0;
  max-width: 560px;
}

.campaign-home .home-lookbook .lookbook-grid {
  gap: clamp(12px, 1.5vw, 22px);
  grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1.16fr) minmax(220px, 0.86fr);
}

.campaign-home .home-lookbook .lookbook-card {
  aspect-ratio: 0.82;
  min-height: auto;
}

.campaign-home .home-lookbook .lookbook-card:nth-child(2) {
  aspect-ratio: 0.94;
}

.campaign-home .home-lookbook .lookbook-card::after {
  background:
    linear-gradient(180deg, rgba(21, 16, 15, 0.02) 30%, rgba(21, 16, 15, 0.62)),
    linear-gradient(90deg, rgba(21, 16, 15, 0.26), transparent 48%);
}

.campaign-home .home-lookbook .lookbook-card span {
  font-size: clamp(1.9rem, 3vw, 3rem);
  padding: clamp(20px, 2.4vw, 34px);
}

.campaign-home .split-heading h2,
.campaign-home .product-card h3 a {
  color: #f7efe4;
}

.campaign-home .product-card {
  background: rgba(247, 239, 228, 0.06);
  border-color: rgba(247, 239, 228, 0.14);
  color: #f7efe4;
}

.campaign-home .product-card p,
.campaign-home .product-meta,
.campaign-home .split-heading p {
  color: rgba(247, 239, 228, 0.68);
}

.campaign-home .service-routes {
  background:
    linear-gradient(90deg, rgba(7, 10, 18, 0.96), rgba(7, 10, 18, 0.72)),
    url("assets/kive-custom-grillz.webp") center / cover;
}

.campaign-home .campaign-bespoke {
  background:
    linear-gradient(90deg, rgba(7, 10, 18, 0.94), rgba(64, 12, 34, 0.58)),
    url("assets/kive-burgundy-tennis-portrait.webp") center / cover;
}

@media (max-width: 1040px) {
  .campaign-home .campaign-hero {
    grid-template-columns: 1fr;
  }

  .campaign-home .campaign-frame-two {
    justify-self: start;
    width: min(100%, 520px);
  }

  .campaign-home .home-lookbook .split-heading {
    align-items: start;
    flex-direction: column;
  }

  .campaign-home .home-lookbook .lookbook-grid {
    grid-template-columns: 1fr;
  }

  .campaign-home .home-lookbook .lookbook-card,
  .campaign-home .home-lookbook .lookbook-card:nth-child(2) {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 680px) {
  .campaign-home .campaign-hero {
    background-position: 58% center;
    padding-top: 126px;
  }

  .campaign-home .campaign-copy h1 {
    font-size: clamp(4rem, 17vw, 6.2rem);
  }

  .campaign-home .campaign-frame-two {
    height: 330px;
    margin-top: 30px;
  }

  .campaign-home .home-lookbook {
    padding-top: 48px;
  }

  .campaign-home .home-lookbook .split-heading h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .campaign-home .home-lookbook .lookbook-card,
  .campaign-home .home-lookbook .lookbook-card:nth-child(2) {
    aspect-ratio: 4 / 5;
  }

  .hero-three {
    opacity: 0.72;
  }

  .campaign-home .campaign-caption {
    display: none;
  }
}

/* Watch sourcing page */
.watches-page {
  background:
    radial-gradient(circle at 12% 4%, rgba(176, 122, 63, 0.12), transparent 24rem),
    radial-gradient(circle at 86% 10%, rgba(21, 58, 51, 0.22), transparent 26rem),
    linear-gradient(180deg, #070a12 0%, #0d1019 68%, #fff8ef 68%, #f2e5d7 100%);
  color: #f7efe4;
}

.watch-hero,
.watch-controls,
.watch-brief-section {
  padding: clamp(86px, 10vw, 136px) clamp(18px, 6vw, 88px);
}

.watch-hero {
  align-items: end;
  display: grid;
  gap: clamp(28px, 7vw, 92px);
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  min-height: 94svh;
  padding-top: clamp(136px, 14vw, 188px);
}

.watch-hero-copy h1 {
  color: #f7efe4;
  font-size: clamp(4.2rem, 9vw, 8.8rem);
  line-height: 0.86;
  margin: 0;
  max-width: 940px;
}

.watch-hero-copy p:not(.eyebrow) {
  color: rgba(247, 239, 228, 0.72);
  font-size: 1.08rem;
  max-width: 680px;
}

.watch-brief-copy p {
  color: var(--smoke);
  font-size: 1.08rem;
  max-width: 680px;
}

.watch-hero-media {
  border: 1px solid rgba(21, 16, 15, 0.14);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.watch-hero-media img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.watch-controls {
  background: #0d1019;
  color: #f7efe4;
}

.watch-controls .split-heading h2,
.watch-controls .sort-label,
.watch-card h3 a {
  color: #f7efe4;
}

.watch-controls .segmented-control,
.watch-controls .sort-label select {
  background: rgba(247, 239, 228, 0.08);
  border-color: rgba(247, 239, 228, 0.16);
  color: #f7efe4;
}

.watch-filter-control {
  border-radius: 18px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  overflow: hidden;
}

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

.watch-card {
  background: rgba(247, 239, 228, 0.06);
  border-color: rgba(247, 239, 228, 0.14);
  color: #f7efe4;
}

.watch-card .product-meta,
.watch-card .product-body > span {
  color: rgba(247, 239, 228, 0.68);
}

.watch-service-band {
  background:
    linear-gradient(90deg, rgba(7, 10, 18, 0.94), rgba(21, 58, 51, 0.76)),
    url("assets/kive-prestige-male-watch-alt.webp") center / cover;
  color: #f7efe4;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.watch-service-band article {
  background: rgba(247, 239, 228, 0.055);
  min-height: 260px;
  padding: clamp(24px, 4vw, 48px);
}

.watch-service-band svg {
  color: var(--champagne);
  height: 30px;
  width: 30px;
}

.watch-service-band h2,
.watch-brief-copy h2 {
  font-size: clamp(2.7rem, 5.4vw, 5.6rem);
  line-height: 0.94;
  margin: 16px 0 12px;
}

.watch-service-band p {
  color: rgba(247, 239, 228, 0.72);
  margin: 0;
}

.watch-brief-section {
  align-items: start;
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.97), rgba(255, 248, 239, 0.82)),
    url("assets/kive-prestige-male-watch.webp") right center / 44% auto no-repeat;
  display: grid;
  gap: clamp(30px, 7vw, 88px);
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 520px);
  color: var(--ink);
}

@media (max-width: 1120px) {
  .watch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .watch-hero,
  .watch-brief-section,
  .watch-service-band {
    grid-template-columns: 1fr;
  }

  .watch-brief-section {
    background:
      linear-gradient(90deg, rgba(255, 248, 239, 0.97), rgba(255, 248, 239, 0.86)),
      url("assets/kive-prestige-male-watch.webp") center / cover;
  }
}

@media (max-width: 680px) {
  .watch-hero {
    min-height: auto;
    padding-top: 126px;
  }

  .watch-hero-copy h1 {
    font-size: clamp(3.7rem, 16vw, 5.9rem);
  }

  .watch-grid {
    grid-template-columns: 1fr;
  }

  .watch-controls .split-heading {
    display: grid;
  }
}

/* Advanced ring builder */
.pencil-mode > .ring-builder-hero,
.pencil-mode > .ring-builder-app {
  display: none;
}

.pencil-builder-hero,
.pencil-builder-section {
  padding: clamp(76px, 9vw, 122px) clamp(18px, 6vw, 88px);
}

.pencil-builder-hero {
  align-items: end;
  background:
    linear-gradient(90deg, rgba(15, 15, 19, 0.92), rgba(66, 25, 35, 0.5)),
    url("assets/campaign-engagement-ring.png") center / cover;
  color: var(--paper);
  display: grid;
  min-height: 86svh;
  padding-top: clamp(136px, 14vw, 188px);
}

.pencil-builder-hero > div {
  max-width: 880px;
}

.pencil-builder-hero h1 {
  color: var(--paper);
  font-size: clamp(4.2rem, 10vw, 9.4rem);
  line-height: 0.85;
  margin: 0;
}

.pencil-builder-hero p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.8);
  font-size: 1.1rem;
  max-width: 620px;
}

.pencil-builder-section {
  background:
    radial-gradient(circle at 85% 8%, rgba(176, 122, 63, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(255, 248, 239, 0.96), rgba(244, 234, 223, 0.94));
  display: grid;
  gap: clamp(22px, 4vw, 46px);
}

.pencil-builder-copy {
  align-items: end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
}

.pencil-builder-copy h2 {
  font-size: clamp(2.8rem, 6vw, 6.4rem);
  line-height: 0.9;
  margin: 0;
}

.pencil-builder-copy p:not(.eyebrow) {
  color: var(--smoke);
  max-width: 520px;
}

.pencil-builder-shell {
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.pencil-builder-toolbar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 16px;
}

.pencil-builder-toolbar span {
  color: var(--smoke);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pencil-builder-toolbar strong {
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1;
}

.pencil-builder-shell iframe {
  background: #fff;
  border: 0;
  display: none;
  min-height: 760px;
  width: 100%;
}

.pencil-builder-shell iframe[src] {
  display: block;
}

.pencil-frame-fallback {
  align-content: center;
  background: rgba(255, 248, 239, 0.94);
  display: grid;
  inset: 70px 0 0;
  justify-items: center;
  padding: 24px;
  position: absolute;
  text-align: center;
  z-index: 2;
}

.pencil-frame-fallback[hidden] {
  display: none;
}

.pencil-frame-fallback svg {
  color: var(--gold);
  height: 34px;
  width: 34px;
}

.pencil-frame-fallback h3 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.95;
  margin: 18px 0 8px;
}

.pencil-frame-fallback p {
  color: var(--smoke);
  max-width: 460px;
}

.ring-builder-hero,
.ring-builder-app,
.builder-aftercare {
  padding: clamp(76px, 9vw, 122px) clamp(18px, 6vw, 88px);
}

.ring-builder-hero {
  align-items: end;
  background:
    linear-gradient(90deg, rgba(15, 15, 19, 0.9), rgba(66, 25, 35, 0.5)),
    url("assets/kive-red-rose-earrings.webp") center / cover;
  color: var(--paper);
  display: grid;
  gap: clamp(28px, 7vw, 92px);
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  min-height: 88svh;
  padding-top: clamp(136px, 14vw, 188px);
}

.ring-builder-hero h1 {
  color: var(--paper);
  font-size: clamp(4.2rem, 10vw, 9.4rem);
  line-height: 0.85;
  max-width: 920px;
}

.ring-builder-hero p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.78);
  font-size: 1.1rem;
  max-width: 640px;
}

.ring-builder-hero img {
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 253, 248, 0.18);
  box-shadow: var(--shadow-strong);
  object-fit: cover;
  width: 100%;
}

.ring-builder-app {
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.92), rgba(238, 226, 212, 0.94));
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(360px, 1.08fr) minmax(340px, 0.92fr);
}

.ring-preview-panel,
.ring-controls-panel {
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 30px);
}

.ring-preview-panel {
  position: sticky;
  top: 104px;
}

.builder-summary-top {
  align-items: start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.builder-summary-top h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.9;
  margin: 0;
}

.builder-summary-top strong {
  color: var(--gold);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  white-space: nowrap;
}

.builder-view-tabs {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.builder-view-tabs button {
  align-items: center;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
}

.builder-view-tabs button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.builder-view-tabs svg {
  height: 17px;
  width: 17px;
}

.ring-viewport {
  background: #ffffff;
  border: 1px solid rgba(21, 17, 15, 0.18);
  height: clamp(420px, 54vw, 670px);
  margin: 24px 0;
  overflow: hidden;
  position: relative;
}

.ring-viewport::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 28%),
    radial-gradient(circle at 50% 48%, transparent 15rem, rgba(223, 197, 143, 0.1) 48rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.ring-viewport canvas {
  display: none;
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 1;
}

.ring-photo-preview {
  display: none;
  height: 100%;
  object-fit: contain;
  padding: clamp(8px, 2vw, 24px);
  position: relative;
  transition: filter 220ms ease, opacity 220ms ease;
  width: 100%;
  z-index: 1;
}

.ring-svg-render {
  display: none;
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 1;
}

.svg-ground-shadow {
  fill: rgba(0, 0, 0, 0.24);
}

.svg-band-shadow {
  fill: none;
  stroke: rgba(5, 5, 6, 0.34);
  stroke-width: 42;
}

.svg-band-main {
  fill: none;
  stroke: url("#metalGradient");
  stroke-linecap: round;
  stroke-width: 34;
}

.svg-band-highlight {
  fill: none;
  opacity: 0.72;
  stroke: rgba(255, 255, 255, 0.88);
  stroke-width: 5;
}

.svg-band-rim {
  fill: none;
  opacity: 0.58;
  stroke: rgba(255, 255, 255, 0.86);
  stroke-width: 3;
}

.svg-band-rim-inner {
  opacity: 0.36;
  stroke: rgba(2, 2, 3, 0.72);
}

.svg-band-flash {
  fill: none;
  opacity: 0.56;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-linecap: round;
  stroke-width: 7;
}

.svg-shoulder,
.svg-basket-line,
.svg-prong {
  fill: none;
  stroke: url("#metalGradient");
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-shoulder {
  stroke-width: 26;
}

.svg-shoulder-highlight {
  fill: none;
  opacity: 0.74;
  stroke: rgba(255, 255, 255, 0.84);
  stroke-linecap: round;
  stroke-width: 4;
}

.svg-basket-line {
  stroke-width: 14;
}

.svg-basket-arc {
  opacity: 0.82;
  stroke-width: 8;
}

.svg-bridge-detail path {
  fill: none;
  opacity: 0.52;
  stroke: rgba(255, 255, 255, 0.74);
  stroke-linecap: round;
  stroke-width: 3;
}

.svg-prong {
  stroke-width: 16;
}

.svg-prong-tip {
  fill: url("#metalGradient");
  stroke: rgba(255, 255, 255, 0.88);
  stroke-width: 2;
}

.svg-diamond {
  fill: url("#diamondGradient");
  filter: url("#diamondGlow");
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: 3;
}

.svg-table {
  fill: rgba(255, 255, 255, 0.36);
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 2;
}

.svg-facet-fill {
  fill: url("#facetBlue");
  opacity: 0.58;
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 1;
}

.svg-facet {
  fill: none;
  opacity: 0.7;
  stroke: rgba(255, 255, 255, 0.88);
  stroke-width: 2;
}

.svg-facet-dark {
  fill: none;
  opacity: 0.28;
  stroke: rgba(46, 75, 94, 0.85);
  stroke-width: 2;
}

.svg-small-diamond {
  fill: url("#diamondGradient");
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 2;
}

.svg-sparkle {
  fill: rgba(255, 255, 255, 0.9);
  filter: url("#sparkle");
}

.viewport-tools {
  display: none;
  gap: 10px;
  left: 16px;
  position: absolute;
  top: 16px;
  z-index: 2;
}

.viewport-tools .icon-button {
  background: rgba(255, 253, 248, 0.14);
  border-color: rgba(255, 253, 248, 0.26);
  color: var(--paper);
}

.viewport-tools .icon-button.is-active {
  background: var(--champagne);
  color: var(--ink);
}

.ring-viewport[data-active-view="model"] canvas,
.ring-viewport[data-active-view="studio"] .ring-photo-preview,
.ring-viewport[data-active-view="cad"] .ring-svg-render {
  display: block;
}

.ring-viewport[data-active-view="model"] .viewport-tools {
  display: flex;
}

.builder-specs,
.quote-breakdown,
.builder-production {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.builder-specs span,
.quote-breakdown div,
.builder-production div {
  align-items: center;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid var(--line);
  display: flex;
  gap: 10px;
  min-height: 58px;
  padding: 12px 14px;
}

.builder-specs svg {
  color: var(--gold);
  flex: 0 0 auto;
}

.quote-breakdown {
  margin-top: 12px;
}

.quote-breakdown div,
.builder-production div {
  align-items: start;
  display: grid;
  gap: 4px;
}

.quote-breakdown span,
.builder-production span {
  color: var(--smoke);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.builder-production {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 12px;
}

.builder-production strong {
  color: var(--ink);
}

.ring-controls-panel {
  display: grid;
  gap: 22px;
}

.builder-presets,
.choice-grid,
.builder-actions,
.saved-designs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.builder-preset,
.builder-choice,
.saved-designs button {
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.builder-preset {
  min-height: 42px;
  padding: 0 16px;
}

.builder-preset.is-active,
.builder-choice.is-active {
  background: var(--ink);
  color: var(--paper);
}

.control-group {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.control-heading {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.control-heading span {
  color: var(--gold);
  font-weight: 800;
}

.control-heading h2 {
  font-size: 1.9rem;
  line-height: 1;
  margin: 0;
}

.builder-choice {
  align-items: center;
  display: inline-flex;
  gap: 9px;
  min-height: 52px;
  padding: 0 14px;
}

.builder-choice svg {
  height: 18px;
  width: 18px;
}

.profile-grid {
  margin-top: 10px;
}

.diamond-inventory {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.diamond-inventory button {
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  gap: 5px;
  min-height: 86px;
  padding: 12px;
  text-align: left;
}

.diamond-inventory button.is-active {
  background:
    linear-gradient(135deg, rgba(21, 17, 15, 0.96), rgba(66, 25, 35, 0.9));
  color: var(--paper);
}

.diamond-inventory span,
.diamond-inventory strong,
.diamond-inventory small {
  display: block;
}

.diamond-inventory strong {
  color: var(--gold);
}

.diamond-inventory small {
  color: var(--smoke);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.diamond-inventory button.is-active small {
  color: rgba(255, 253, 248, 0.68);
}

.mini-stone,
.metal-swatch {
  border: 1px solid rgba(21, 17, 15, 0.2);
  display: inline-block;
  height: 22px;
  width: 22px;
}

.mini-stone {
  background: linear-gradient(135deg, white, #bdd4e9 52%, white);
}

.mini-stone-oval {
  border-radius: 50%;
  width: 17px;
}

.mini-stone-round {
  border-radius: 50%;
}

.mini-stone-emerald {
  width: 26px;
}

.mini-stone-pear {
  border-radius: 50% 50% 50% 6px;
  transform: rotate(45deg);
}

.metal-swatch {
  border-radius: 50%;
}

.swatch-platinum {
  background: linear-gradient(135deg, #f7f8f6, #aeb8bc);
}

.swatch-yellow {
  background: linear-gradient(135deg, #ffe7a1, #b56d22);
}

.swatch-rose {
  background: linear-gradient(135deg, #ffd2c3, #a64e3b);
}

.swatch-white {
  background: linear-gradient(135deg, #fffef7, #cfc8b7);
}

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

.builder-sliders label,
.builder-fields label {
  display: grid;
  gap: 8px;
}

.builder-sliders label {
  background: rgba(255, 253, 248, 0.58);
  border: 1px solid var(--line);
  padding: 14px;
}

.builder-sliders span,
.builder-fields span {
  color: var(--smoke);
  font-size: 0.84rem;
  font-weight: 800;
}

.builder-sliders input[type="range"] {
  accent-color: var(--gold);
  width: 100%;
}

.builder-fields input,
.builder-fields select {
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--line);
  color: var(--ink);
  min-height: 48px;
  padding: 0 14px;
}

.builder-request {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  padding-top: 18px;
}

.builder-request span {
  color: var(--smoke);
  font-size: 0.84rem;
  font-weight: 800;
}

.builder-request textarea {
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--line);
  color: var(--ink);
  min-height: 108px;
  padding: 14px;
  resize: vertical;
}

.ring-photo-preview.is-generating {
  filter: blur(1px) saturate(0.75) brightness(1.08);
  opacity: 0.62;
}

.builder-actions .button {
  flex: 1 1 160px;
}

.saved-designs {
  align-items: stretch;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.saved-designs > span {
  color: var(--smoke);
  flex: 1 0 100%;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.saved-designs button {
  display: grid;
  gap: 2px;
  min-height: 58px;
  padding: 10px 12px;
  text-align: left;
}

.saved-designs strong {
  color: var(--gold);
}

.builder-aftercare {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.builder-aftercare article {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 24px;
}

.builder-aftercare svg {
  color: var(--gold);
  height: 28px;
  width: 28px;
}

.builder-aftercare h2 {
  font-size: 2.2rem;
  line-height: 1;
  margin: 18px 0 10px;
}

.builder-aftercare p {
  color: var(--smoke);
}

@media (max-width: 1120px) {
  .pencil-builder-copy {
    align-items: start;
    display: grid;
  }

  .ring-builder-hero,
  .ring-builder-app {
    grid-template-columns: 1fr;
  }

  .ring-preview-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .pencil-builder-hero {
    min-height: auto;
    padding-top: 126px;
  }

  .pencil-builder-hero h1 {
    font-size: clamp(3.5rem, 16vw, 5.7rem);
  }

  .pencil-builder-toolbar {
    align-items: stretch;
    display: grid;
  }

  .pencil-builder-shell iframe {
    min-height: 680px;
  }

  .ring-builder-hero {
    min-height: auto;
    padding-top: 126px;
  }

  .ring-builder-hero h1 {
    font-size: clamp(3.5rem, 16vw, 5.7rem);
  }

  .ring-viewport {
    height: 430px;
  }

  .builder-summary-top,
  .builder-specs,
  .quote-breakdown,
  .builder-production,
  .diamond-inventory,
  .builder-sliders,
  .builder-fields,
  .builder-aftercare {
    grid-template-columns: 1fr;
  }

  .builder-summary-top {
    display: grid;
  }
}

/* Theme toggle */
.theme-toggle {
  overflow: hidden;
}

.theme-toggle svg {
  transition: transform 220ms ease;
}

.theme-toggle:hover svg {
  transform: rotate(14deg) scale(1.08);
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 12% 8%, rgba(217, 180, 111, 0.14), transparent 25rem),
    linear-gradient(180deg, #070a12, #10141d);
  color: #f7efe4;
}

html[data-theme="dark"] .site-header {
  background: rgba(6, 8, 14, 0.78);
  border-color: rgba(247, 239, 228, 0.18);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  color: #f7efe4;
}

html[data-theme="dark"] .brand span,
html[data-theme="dark"] .nav-links a {
  color: #f7efe4;
}

html[data-theme="dark"] .site-header .brand img {
  background: #070a12;
  border-color: rgba(247, 239, 228, 0.18);
}

html[data-theme="dark"] .nav-links a:hover {
  color: #d9b46f;
}

html[data-theme="dark"] .icon-button,
html[data-theme="dark"] .button-light,
html[data-theme="dark"] .filter-button,
html[data-theme="dark"] .segmented-control,
html[data-theme="dark"] .sort-label select,
html[data-theme="dark"] .booking-form input,
html[data-theme="dark"] .booking-form select,
html[data-theme="dark"] .booking-form textarea,
html[data-theme="dark"] .verify-panel input,
html[data-theme="dark"] .builder-fields input,
html[data-theme="dark"] .builder-fields select,
html[data-theme="dark"] .builder-request textarea {
  background: rgba(247, 239, 228, 0.08);
  border-color: rgba(247, 239, 228, 0.18);
  color: #f7efe4;
}

html[data-theme="dark"] .button-dark {
  background: linear-gradient(135deg, #13463c, #421923);
  color: #fffdf8;
}

html[data-theme="dark"] .page-hero,
html[data-theme="dark"] .collections-hero {
  background:
    linear-gradient(90deg, rgba(7, 10, 18, 0.94), rgba(7, 10, 18, 0.62)),
    url("assets/kive-tennis-necklace-close.webp") center / cover;
  border-bottom-color: rgba(247, 239, 228, 0.16);
}

html[data-theme="dark"] .page-hero h1,
html[data-theme="dark"] .product-purchase h1,
html[data-theme="dark"] .contact-copy h1,
html[data-theme="dark"] .truemark-copy h1,
html[data-theme="dark"] .builder-copy h2,
html[data-theme="dark"] .split-heading h2,
html[data-theme="dark"] .section-heading h2,
html[data-theme="dark"] .product-card h3 a {
  color: #f7efe4;
}

html[data-theme="dark"] .page-hero p,
html[data-theme="dark"] .product-purchase p,
html[data-theme="dark"] .contact-copy p,
html[data-theme="dark"] .truemark-copy p,
html[data-theme="dark"] .builder-copy p,
html[data-theme="dark"] .split-heading p,
html[data-theme="dark"] .section-heading p,
html[data-theme="dark"] .product-meta,
html[data-theme="dark"] .product-card p,
html[data-theme="dark"] .builder-aftercare p,
html[data-theme="dark"] .booking-form label span,
html[data-theme="dark"] .verify-panel label span {
  color: rgba(247, 239, 228, 0.7);
}

html[data-theme="dark"] .path-card,
html[data-theme="dark"] .product-card,
html[data-theme="dark"] .tier-showcase article,
html[data-theme="dark"] .buying-guide,
html[data-theme="dark"] .verify-panel,
html[data-theme="dark"] .booking-form,
html[data-theme="dark"] .product-info-tabs article,
html[data-theme="dark"] .process-steps article,
html[data-theme="dark"] .proof-grid-wide article,
html[data-theme="dark"] .builder-aftercare article,
html[data-theme="dark"] .ring-controls-panel,
html[data-theme="dark"] .builder-summary-top,
html[data-theme="dark"] .builder-view-tabs button,
html[data-theme="dark"] .builder-production div,
html[data-theme="dark"] .saved-designs button {
  background: rgba(247, 239, 228, 0.07);
  border-color: rgba(247, 239, 228, 0.16);
  color: #f7efe4;
}

html[data-theme="dark"] .site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 180, 111, 0.12), transparent 22rem),
    linear-gradient(135deg, #05070d, #10141d);
  border-top-color: rgba(247, 239, 228, 0.14);
}

html[data-theme="light"] .campaign-home {
  background: #fffaf2;
  color: #15110f;
}

html[data-theme="light"] .campaign-home .site-header {
  background: rgba(255, 253, 248, 0.86);
  border-color: rgba(21, 17, 15, 0.1);
  box-shadow: 0 18px 60px rgba(36, 24, 16, 0.1);
  color: #15110f;
}

html[data-theme="light"] .campaign-home .brand span,
html[data-theme="light"] .campaign-home .nav-links a {
  color: #15110f;
}

html[data-theme="light"] .campaign-home .icon-button {
  background: rgba(255, 253, 248, 0.86);
  border-color: rgba(21, 17, 15, 0.12);
  color: #15110f;
}

html[data-theme="light"] .campaign-home .campaign-hero {
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.94) 0%, rgba(255, 250, 242, 0.72) 38%, rgba(255, 250, 242, 0.12) 72%),
    linear-gradient(0deg, rgba(255, 250, 242, 0.9), rgba(255, 250, 242, 0) 45%),
    url("assets/kive-prestige-male-watch.webp") center / cover;
}

html[data-theme="light"] .hero-three {
  opacity: 0.58;
}

html[data-theme="light"] .campaign-home .campaign-copy,
html[data-theme="light"] .campaign-home .campaign-copy h1,
html[data-theme="light"] .campaign-home .split-heading h2,
html[data-theme="light"] .campaign-home .product-card h3 a {
  color: #15110f;
}

html[data-theme="light"] .campaign-home .campaign-copy p:not(.eyebrow),
html[data-theme="light"] .campaign-home .product-card p,
html[data-theme="light"] .campaign-home .product-meta,
html[data-theme="light"] .campaign-home .split-heading p {
  color: rgba(21, 17, 15, 0.68);
}

html[data-theme="light"] .campaign-home .campaign-frame-two {
  background: rgba(255, 253, 248, 0.46);
  border-color: rgba(21, 17, 15, 0.14);
}

html[data-theme="light"] .campaign-home .model-strip,
html[data-theme="light"] .campaign-home .lookbook-section,
html[data-theme="light"] .campaign-home .campaign-products {
  background: #fffaf2;
  color: #15110f;
}

html[data-theme="light"] .campaign-home .product-card {
  background: rgba(255, 253, 248, 0.88);
  border-color: rgba(21, 17, 15, 0.12);
  color: #15110f;
}

html[data-theme="light"] .campaign-home .service-routes {
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.96), rgba(255, 250, 242, 0.68)),
    url("assets/kive-custom-grillz.webp") center / cover;
}

html[data-theme="light"] .campaign-home .campaign-bespoke {
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.95), rgba(255, 250, 242, 0.62)),
    url("assets/kive-burgundy-tennis-portrait.webp") center / cover;
  color: #15110f;
}

html[data-theme="light"] .campaign-home .campaign-bespoke p,
html[data-theme="light"] .campaign-home .campaign-bespoke h2 {
  color: #15110f;
}

.campaign-home .hero-slideshow {
  background: #070a12;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100svh;
  min-height: 100vh;
  padding: 0;
  position: relative;
}

.hero-slides,
.hero-slide {
  grid-area: 1 / 1;
  min-height: 100svh;
  min-height: 100vh;
}

.hero-slides {
  display: grid;
  overflow: hidden;
  position: relative;
}

.hero-slide {
  align-items: center;
  display: grid;
  opacity: 0;
  overflow: hidden;
  padding: clamp(124px, 12vw, 164px) clamp(20px, 6vw, 92px) clamp(84px, 8vw, 112px);
  pointer-events: none;
  position: relative;
  transition: opacity 900ms ease, visibility 900ms ease;
  visibility: hidden;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.hero-slide img {
  filter: saturate(0.92) contrast(1.05);
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  transform: scale(1.02);
  transition: transform 6800ms ease;
  width: 100%;
  z-index: 0;
}

.hero-slide:nth-child(2) img,
.hero-slide:nth-child(3) img {
  object-position: 54% center;
}

.hero-slide:nth-child(2) img {
  object-position: right center;
}

.hero-slide:nth-child(4) img {
  object-position: center;
}

.hero-slide:nth-child(5) img {
  object-position: 50% center;
}

.hero-slide.is-active img {
  transform: scale(1.06);
}

.hero-slide::after {
  background:
    linear-gradient(90deg, rgba(7, 10, 18, 0.9) 0%, rgba(7, 10, 18, 0.62) 34%, rgba(7, 10, 18, 0.16) 72%),
    linear-gradient(0deg, rgba(7, 10, 18, 0.88), rgba(7, 10, 18, 0) 45%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-slide-copy {
  color: #f7efe4;
  max-width: min(760px, calc(100vw - 40px));
  position: relative;
  transform: translateY(18px);
  transition: opacity 520ms ease 180ms, transform 520ms ease 180ms;
  z-index: 2;
}

.hero-slide:not(.is-active) .hero-slide-copy {
  opacity: 0;
  transform: translateY(26px);
}

.hero-slide-copy h1,
.hero-slide-copy h2 {
  color: #f7efe4;
  font-size: clamp(4rem, 8.4vw, 8.9rem);
  letter-spacing: 0;
  line-height: 0.88;
  margin: 0;
  max-width: min(820px, calc(100vw - 40px));
}

.hero-slide-copy p:not(.eyebrow) {
  color: rgba(247, 239, 228, 0.8);
  font-size: clamp(1rem, 1.7vw, 1.26rem);
  margin-bottom: 0;
  max-width: min(620px, calc(100vw - 40px));
  overflow-wrap: break-word;
}

.hero-giving-note {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(247, 239, 228, 0.1);
  border: 1px solid rgba(217, 180, 111, 0.34);
  border-radius: 999px;
  color: #f7efe4 !important;
  display: inline-flex;
  font-size: 0.9rem !important;
  font-weight: 800;
  margin: 18px 0 0;
  max-width: min(100%, 560px) !important;
  padding: 10px 14px;
}

.button-ghost {
  background: rgba(247, 239, 228, 0.08);
  border: 1px solid rgba(247, 239, 228, 0.34);
  color: #f7efe4;
}

.hero-slide-controls {
  align-items: center;
  bottom: clamp(28px, 4vw, 48px);
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  justify-self: end;
  padding: 0;
  position: absolute;
  right: clamp(20px, 6vw, 92px);
  z-index: 4;
}

.hero-slide-arrow,
.hero-slide-dots button {
  backdrop-filter: blur(18px);
  background: rgba(247, 239, 228, 0.1);
  border: 1px solid rgba(247, 239, 228, 0.24);
  color: #f7efe4;
  cursor: pointer;
}

.hero-slide-arrow {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  transition: background 180ms ease, transform 180ms ease;
  width: 44px;
}

.hero-slide-arrow:hover {
  background: rgba(217, 180, 111, 0.28);
  transform: translateY(-2px);
}

.hero-slide-arrow svg {
  height: 19px;
  width: 19px;
}

.hero-slide-dots {
  align-items: center;
  display: flex;
  gap: 9px;
}

.hero-slide-dots button {
  border-radius: 999px;
  height: 9px;
  padding: 0;
  transition: background 220ms ease, width 220ms ease;
  width: 9px;
}

.hero-slide-dots button.is-active {
  background: #d9b46f;
  border-color: #d9b46f;
  width: 34px;
}

html[data-theme="light"] .campaign-home .hero-slideshow {
  background: #fffaf2;
}

html[data-theme="light"] .hero-slide::after {
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.94) 0%, rgba(255, 250, 242, 0.72) 34%, rgba(255, 250, 242, 0.12) 72%),
    linear-gradient(0deg, rgba(255, 250, 242, 0.88), rgba(255, 250, 242, 0) 45%);
}

html[data-theme="light"] .hero-slide-copy,
html[data-theme="light"] .hero-slide-copy h1,
html[data-theme="light"] .hero-slide-copy h2 {
  color: #15110f;
}

html[data-theme="light"] .hero-slide-copy p:not(.eyebrow) {
  color: rgba(21, 17, 15, 0.68);
}

html[data-theme="light"] .hero-giving-note {
  background: rgba(255, 253, 248, 0.62);
  border-color: rgba(176, 122, 63, 0.24);
  color: #15110f !important;
}

html[data-theme="light"] .button-ghost {
  background: rgba(255, 253, 248, 0.56);
  border-color: rgba(21, 17, 15, 0.16);
  color: #15110f;
}

html[data-theme="light"] .hero-slide-arrow,
html[data-theme="light"] .hero-slide-dots button {
  background: rgba(255, 253, 248, 0.64);
  border-color: rgba(21, 17, 15, 0.16);
  color: #15110f;
}

html[data-theme="light"] .hero-slide-dots button.is-active {
  background: #b07a3f;
  border-color: #b07a3f;
}

@media (max-width: 760px) {
  .header-actions a.icon-button {
    display: none;
  }

  .hero-slide {
    align-items: center;
    min-height: 100svh;
    min-height: 100vh;
    padding: 126px 20px 116px;
  }

  .hero-slide::after {
    background:
      linear-gradient(180deg, rgba(7, 10, 18, 0.16) 0%, rgba(7, 10, 18, 0.22) 35%, rgba(7, 10, 18, 0.94) 100%),
      linear-gradient(90deg, rgba(7, 10, 18, 0.34), rgba(7, 10, 18, 0.08));
  }

  html[data-theme="light"] .hero-slide::after {
    background:
      linear-gradient(180deg, rgba(255, 250, 242, 0.08) 0%, rgba(255, 250, 242, 0.3) 38%, rgba(255, 250, 242, 0.96) 100%),
      linear-gradient(90deg, rgba(255, 250, 242, 0.22), rgba(255, 250, 242, 0.08));
  }

  .hero-slide img {
    object-position: center top;
  }

  .hero-slide:nth-child(4) img,
  .hero-slide:nth-child(5) img {
    object-position: center;
  }

  .hero-slide:nth-child(2) img {
    object-position: 72% center;
  }

  .hero-slide-copy h1,
  .hero-slide-copy h2 {
    font-size: clamp(3.2rem, 15vw, 5.1rem);
    max-width: 100%;
  }

  .hero-slide-copy {
    max-width: min(340px, calc(100vw - 40px));
    width: 100%;
  }

  .hero-slide-copy p:not(.eyebrow) {
    font-size: 0.98rem;
    max-width: 100%;
  }

  .hero-giving-note {
    border-radius: 18px;
    font-size: 0.82rem !important;
    padding: 9px 12px;
  }

  .hero-slide .hero-actions {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-slide .button {
    min-width: 0;
    width: 100%;
  }

  .hero-slide-controls {
    display: none;
  }
}

@media (max-width: 940px) {
  html[data-theme="dark"] .nav-links {
    background: rgba(6, 8, 14, 0.94);
    border-color: rgba(247, 239, 228, 0.16);
  }

  html[data-theme="light"] .campaign-home .nav-links {
    background: rgba(255, 253, 248, 0.94);
    border-color: rgba(21, 17, 15, 0.12);
  }
}

/* Final theme contract */
html[data-theme="light"] body {
  background:
    radial-gradient(circle at 10% 0%, rgba(156, 66, 84, 0.1), transparent 25rem),
    radial-gradient(circle at 88% 8%, rgba(21, 58, 51, 0.12), transparent 28rem),
    linear-gradient(180deg, #fff8ef 0%, #f4eadf 54%, #eadccf 100%);
  color: #15110f;
}

html[data-theme="light"] .site-header {
  background: rgba(255, 248, 239, 0.88);
  border-color: rgba(21, 17, 15, 0.12);
  box-shadow: 0 18px 54px rgba(36, 24, 16, 0.1);
  color: #15110f;
}

html[data-theme="light"] .brand span,
html[data-theme="light"] .nav-links a {
  color: #15110f;
}

html[data-theme="light"] .nav-links a:hover {
  color: var(--gold);
}

html[data-theme="light"] .icon-button,
html[data-theme="light"] .button-light,
html[data-theme="light"] .segmented-control,
html[data-theme="light"] .sort-label select,
html[data-theme="light"] .booking-form input,
html[data-theme="light"] .booking-form select,
html[data-theme="light"] .booking-form textarea,
html[data-theme="light"] .verify-panel input,
html[data-theme="light"] .builder-fields input,
html[data-theme="light"] .builder-fields select,
html[data-theme="light"] .builder-request textarea {
  background: rgba(255, 248, 239, 0.86);
  border-color: rgba(21, 17, 15, 0.14);
  color: #15110f;
}

html[data-theme="light"] .filter-button {
  color: rgba(21, 17, 15, 0.72);
}

html[data-theme="light"] .filter-button.is-active {
  background: #153a33;
  color: #fff8ef;
}

html[data-theme="light"] .button-dark {
  background: linear-gradient(135deg, #15110f, #3e2723);
  color: #fff8ef;
}

html[data-theme="light"] .page-hero,
html[data-theme="light"] .collections-hero {
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.96), rgba(255, 248, 239, 0.64)),
    url("assets/kive-tennis-necklace-close.webp") center / cover;
  color: #15110f;
}

html[data-theme="light"] .contact-page {
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.98), rgba(255, 248, 239, 0.82)),
    url("assets/kive-red-rose-earrings.webp") right center / 46% auto no-repeat;
  color: #15110f;
}

html[data-theme="light"] .product-detail,
html[data-theme="light"] .ring-builder-app,
html[data-theme="light"] .pencil-builder-section,
html[data-theme="light"] .collection-layout,
html[data-theme="light"] .product-info-tabs,
html[data-theme="light"] .bespoke-builder,
html[data-theme="light"] .proof-grid-wide,
html[data-theme="light"] .tier-showcase {
  background:
    radial-gradient(circle at 85% 8%, rgba(176, 122, 63, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(255, 248, 239, 0.96), rgba(244, 234, 223, 0.94));
  color: #15110f;
}

html[data-theme="light"] .page-hero h1,
html[data-theme="light"] .product-purchase h1,
html[data-theme="light"] .contact-copy h1,
html[data-theme="light"] .builder-copy h2,
html[data-theme="light"] .split-heading h2,
html[data-theme="light"] .section-heading h2,
html[data-theme="light"] .product-card h3 a,
html[data-theme="light"] .watch-brief-copy h2 {
  color: #15110f;
}

html[data-theme="light"] .page-hero p,
html[data-theme="light"] .product-purchase p,
html[data-theme="light"] .contact-copy p,
html[data-theme="light"] .builder-copy p,
html[data-theme="light"] .split-heading p,
html[data-theme="light"] .section-heading p,
html[data-theme="light"] .product-meta,
html[data-theme="light"] .product-card p,
html[data-theme="light"] .builder-aftercare p,
html[data-theme="light"] .booking-form label span,
html[data-theme="light"] .verify-panel label span,
html[data-theme="light"] .builder-fields span,
html[data-theme="light"] .builder-sliders span,
html[data-theme="light"] .builder-production span,
html[data-theme="light"] .builder-request span {
  color: rgba(21, 17, 15, 0.66);
}

html[data-theme="light"] .path-card,
html[data-theme="light"] .product-card,
html[data-theme="light"] .tier-showcase article,
html[data-theme="light"] .buying-guide,
html[data-theme="light"] .verify-panel,
html[data-theme="light"] .booking-form,
html[data-theme="light"] .product-info-tabs article,
html[data-theme="light"] .process-steps article,
html[data-theme="light"] .proof-grid-wide article,
html[data-theme="light"] .builder-aftercare article,
html[data-theme="light"] .ring-controls-panel,
html[data-theme="light"] .ring-preview-panel,
html[data-theme="light"] .pencil-builder-shell,
html[data-theme="light"] .builder-summary-top,
html[data-theme="light"] .builder-sliders label,
html[data-theme="light"] .builder-view-tabs button,
html[data-theme="light"] .builder-production div,
html[data-theme="light"] .saved-designs button {
  background: rgba(255, 248, 239, 0.88);
  border-color: rgba(21, 17, 15, 0.14);
  color: #15110f;
}

html[data-theme="light"] .site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(229, 200, 141, 0.14), transparent 22rem),
    linear-gradient(135deg, #10241f, #153a33);
  color: #fff8ef;
}

html[data-theme="dark"] .contact-page {
  background:
    linear-gradient(90deg, rgba(7, 10, 18, 0.96), rgba(7, 10, 18, 0.78)),
    url("assets/kive-red-rose-earrings.webp") right center / 46% auto no-repeat;
  color: #f7efe4;
}

html[data-theme="dark"] .product-detail,
html[data-theme="dark"] .ring-builder-app,
html[data-theme="dark"] .pencil-builder-section,
html[data-theme="dark"] .collection-layout,
html[data-theme="dark"] .product-info-tabs,
html[data-theme="dark"] .bespoke-builder,
html[data-theme="dark"] .proof-grid-wide,
html[data-theme="dark"] .tier-showcase {
  background:
    radial-gradient(circle at 85% 8%, rgba(217, 180, 111, 0.1), transparent 24rem),
    linear-gradient(180deg, rgba(7, 10, 18, 0.96), rgba(16, 20, 29, 0.98));
  color: #f7efe4;
}

html[data-theme="dark"] .pencil-builder-copy p:not(.eyebrow),
html[data-theme="dark"] .pencil-builder-toolbar span,
html[data-theme="dark"] .pencil-frame-fallback p {
  color: rgba(247, 239, 228, 0.72);
}

html[data-theme="dark"] .pencil-frame-fallback {
  background: rgba(7, 10, 18, 0.94);
}

html[data-theme="dark"] .pencil-builder-toolbar {
  border-color: rgba(247, 239, 228, 0.18);
}

html[data-theme="light"] .pencil-builder-hero,
html[data-theme="dark"] .pencil-builder-hero {
  background:
    linear-gradient(90deg, rgba(7, 10, 18, 0.92), rgba(66, 25, 35, 0.46)),
    url("assets/campaign-engagement-ring.png") center / cover;
  color: #fffdf8;
}

html[data-theme="light"] .pencil-builder-hero :is(h1, p),
html[data-theme="dark"] .pencil-builder-hero :is(h1, p) {
  color: #fffdf8;
}

html[data-theme="dark"] .buying-guide li,
html[data-theme="dark"] .buying-guide p,
html[data-theme="dark"] .tier-showcase p,
html[data-theme="dark"] .proof-grid-wide p,
html[data-theme="dark"] .product-info-tabs p {
  color: rgba(247, 239, 228, 0.7);
}

html[data-theme="dark"] .buying-guide strong {
  color: #f7efe4;
}

html[data-theme="light"] .builder-summary-top,
html[data-theme="dark"] .builder-summary-top {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: inherit;
}

html[data-theme="dark"] .ring-preview-panel,
html[data-theme="dark"] .pencil-builder-shell,
html[data-theme="dark"] .builder-specs span,
html[data-theme="dark"] .quote-breakdown div,
html[data-theme="dark"] .builder-sliders label,
html[data-theme="dark"] .builder-view-tabs button,
html[data-theme="dark"] .builder-production div,
html[data-theme="dark"] .diamond-inventory button,
html[data-theme="dark"] .builder-preset,
html[data-theme="dark"] .builder-choice {
  background: rgba(247, 239, 228, 0.07);
  border-color: rgba(247, 239, 228, 0.16);
  color: #f7efe4;
}

html[data-theme="dark"] .builder-specs span,
html[data-theme="dark"] .quote-breakdown div,
html[data-theme="dark"] .builder-production div {
  background: rgba(247, 239, 228, 0.08);
}

html[data-theme="light"] .builder-specs span,
html[data-theme="light"] .quote-breakdown div,
html[data-theme="light"] .builder-production div {
  background: rgba(255, 248, 239, 0.82);
  border-color: rgba(21, 17, 15, 0.14);
  color: #15110f;
}

html[data-theme="dark"] .filter-button.is-active,
html[data-theme="dark"] .builder-preset.is-active,
html[data-theme="dark"] .builder-choice.is-active,
html[data-theme="dark"] .builder-view-tabs button.is-active,
html[data-theme="dark"] .diamond-inventory button.is-active {
  background: #d9b46f;
  color: #15110f;
}

html[data-theme="light"] .builder-view-tabs button.is-active {
  background: #153a33;
  color: #fff8ef;
}

html[data-theme="dark"] .builder-production strong {
  color: #f7efe4;
}

html[data-theme="dark"] .favourite-button {
  background: rgba(7, 10, 18, 0.72);
  border-color: rgba(247, 239, 228, 0.18);
  color: #f7efe4;
}

html[data-theme="dark"] .favourite-button.is-active {
  background: var(--rose);
  color: #fff8ef;
}

html[data-theme="dark"] .form-note {
  color: #d9b46f;
}

html[data-theme="dark"] .builder-sliders span,
html[data-theme="dark"] .builder-fields span,
html[data-theme="dark"] .builder-request span,
html[data-theme="dark"] .diamond-inventory small,
html[data-theme="dark"] .quote-breakdown span,
html[data-theme="dark"] .saved-designs > span {
  color: rgba(247, 239, 228, 0.76);
}

html[data-theme="dark"] .builder-fields input,
html[data-theme="dark"] .builder-fields select,
html[data-theme="dark"] .builder-request textarea {
  background: rgba(247, 239, 228, 0.09);
}

html[data-theme="light"] .diamond-inventory small,
html[data-theme="light"] .quote-breakdown span,
html[data-theme="light"] .saved-designs > span {
  color: rgba(21, 17, 15, 0.62);
}

html[data-theme="dark"] option {
  background: #10141d;
  color: #f7efe4;
}

html[data-theme="light"] option {
  background: #fff8ef;
  color: #15110f;
}

html[data-theme="dark"] ::placeholder {
  color: rgba(247, 239, 228, 0.46);
}

html[data-theme="light"] ::placeholder {
  color: rgba(21, 17, 15, 0.42);
}

html[data-theme="dark"] .watches-page {
  background:
    radial-gradient(circle at 12% 4%, rgba(176, 122, 63, 0.12), transparent 24rem),
    radial-gradient(circle at 86% 10%, rgba(21, 58, 51, 0.22), transparent 26rem),
    linear-gradient(180deg, #070a12 0%, #0d1019 68%, #05070d 100%);
  color: #f7efe4;
}

html[data-theme="dark"] .watch-brief-section {
  background:
    linear-gradient(90deg, rgba(7, 10, 18, 0.97), rgba(7, 10, 18, 0.84)),
    url("assets/kive-prestige-male-watch.webp") right center / 44% auto no-repeat;
  color: #f7efe4;
}

html[data-theme="dark"] .watch-brief-copy h2 {
  color: #f7efe4;
}

html[data-theme="dark"] .watch-brief-copy p {
  color: rgba(247, 239, 228, 0.76);
}

html[data-theme="light"] .watches-page {
  background:
    radial-gradient(circle at 12% 4%, rgba(176, 122, 63, 0.18), transparent 24rem),
    radial-gradient(circle at 86% 10%, rgba(21, 58, 51, 0.12), transparent 26rem),
    linear-gradient(180deg, #fff8ef 0%, #f4eadf 58%, #eadccf 100%);
  color: #15110f;
}

html[data-theme="light"] .watch-hero-copy h1,
html[data-theme="light"] .watch-controls .split-heading h2,
html[data-theme="light"] .watch-card h3 a {
  color: #15110f;
}

html[data-theme="light"] .watch-hero-copy p:not(.eyebrow),
html[data-theme="light"] .watch-controls .sort-label,
html[data-theme="light"] .watch-card .product-meta,
html[data-theme="light"] .watch-card .product-body > span {
  color: rgba(21, 17, 15, 0.68);
}

html[data-theme="light"] .watch-controls {
  background: rgba(255, 248, 239, 0.82);
  color: #15110f;
}

html[data-theme="light"] .watch-controls .segmented-control,
html[data-theme="light"] .watch-controls .sort-label select,
html[data-theme="light"] .watch-card {
  background: rgba(255, 248, 239, 0.9);
  border-color: rgba(21, 17, 15, 0.14);
  color: #15110f;
}

html[data-theme="light"] .watch-service-band {
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.96), rgba(244, 234, 223, 0.8)),
    url("assets/kive-prestige-male-watch-alt.webp") center / cover;
  color: #15110f;
}

html[data-theme="light"] .watch-client-services {
  background:
    radial-gradient(circle at 8% 0%, rgba(176, 122, 63, 0.12), transparent 24rem),
    linear-gradient(180deg, #fff8ef, #f4eadf);
  color: #15110f;
}

html[data-theme="light"] .watch-service-grid article,
html[data-theme="light"] .watch-source-form {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 248, 239, 0.9)),
    radial-gradient(circle at 100% 0%, rgba(176, 122, 63, 0.12), transparent 18rem);
  border-color: rgba(21, 17, 15, 0.14);
  color: #15110f;
}

html[data-theme="light"] .watch-service-band article {
  background: rgba(255, 248, 239, 0.68);
}

html[data-theme="light"] .watch-service-band p {
  color: rgba(21, 17, 15, 0.68);
}

html[data-theme="light"] .watch-brief-section {
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.98), rgba(255, 248, 239, 0.82)),
    url("assets/kive-prestige-male-watch.webp") right center / 44% auto no-repeat;
  color: #15110f;
}

@media (max-width: 940px) {
  html[data-theme="light"] .nav-links {
    background: rgba(255, 248, 239, 0.96);
    border-color: rgba(21, 17, 15, 0.14);
  }

  html[data-theme="dark"] .watch-brief-section,
  html[data-theme="light"] .watch-brief-section {
    background:
      linear-gradient(90deg, rgba(255, 248, 239, 0.97), rgba(255, 248, 239, 0.86)),
      url("assets/kive-prestige-male-watch.webp") center / cover;
  }

  html[data-theme="dark"] .watch-brief-section {
    background:
      linear-gradient(90deg, rgba(7, 10, 18, 0.96), rgba(7, 10, 18, 0.78)),
      url("assets/kive-prestige-male-watch.webp") center / cover;
    color: #f7efe4;
  }
}

@media (max-width: 1120px) {
  .contact-page {
    grid-template-columns: 1fr;
  }

  .contact-copy h1 {
    max-width: 820px;
  }
}

/* Refined watch sourcing */
.watches-page .watch-hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.96), rgba(255, 248, 239, 0.84)),
    radial-gradient(circle at 84% 12%, rgba(176, 122, 63, 0.14), transparent 26rem);
  color: #15110f;
  gap: clamp(32px, 7vw, 96px);
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  min-height: 82svh;
  padding-bottom: clamp(52px, 7vw, 92px);
}

.watches-page .watch-hero-copy h1 {
  color: #15110f;
  font-size: clamp(4.4rem, 9vw, 9rem);
  max-width: 820px;
}

.watches-page .watch-hero-copy p:not(.eyebrow) {
  color: rgba(21, 17, 15, 0.68);
  max-width: 620px;
}

.watches-page .watch-hero-media {
  background: #eee5d8;
  border: 1px solid rgba(21, 17, 15, 0.16);
  box-shadow: none;
  padding: 0;
}

.watches-page .watch-hero-media img {
  aspect-ratio: 5 / 6;
  filter: saturate(0.88) contrast(1.02);
}

.watches-page .watch-controls {
  background: #fff8ef;
  color: #15110f;
  padding-top: clamp(64px, 8vw, 104px);
}

.watches-page .watch-controls .split-heading h2 {
  color: #15110f;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
}

.watches-page .watch-controls .sort-label,
.watches-page .watch-controls .watch-list-card p {
  color: rgba(21, 17, 15, 0.64);
}

.watches-page .watch-controls .segmented-control,
.watches-page .watch-controls .sort-label select {
  background: transparent;
  border-color: rgba(21, 17, 15, 0.18);
  color: #15110f;
}

.watches-page .watch-filter-control {
  border-radius: 0;
  margin-bottom: 26px;
}

.watch-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.watch-list-card {
  align-items: center;
  background: #fffdf8;
  border: 1px solid rgba(21, 17, 15, 0.14);
  display: grid;
  gap: 22px;
  grid-template-columns: 148px minmax(0, 1fr) auto auto;
  min-height: 160px;
  padding: 14px;
  position: relative;
}

.watch-list-media {
  background: #e8dbce;
  display: block;
  height: 132px;
  overflow: hidden;
}

.watch-list-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.watch-list-body span {
  color: #b07a3f;
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.watch-list-body h3 {
  color: #15110f;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 0.96;
  margin: 0 0 8px;
}

.watch-list-body p {
  margin: 0;
}

.watch-list-card > strong {
  color: #15110f;
  font-size: 1.05rem;
  white-space: nowrap;
}

.watch-list-card .text-link {
  white-space: nowrap;
}

.watch-list-card .favourite-button {
  right: 18px;
  top: 18px;
}

.watches-page .watch-service-band {
  background: #15110f;
  color: #fff8ef;
  gap: 1px;
}

.watches-page .watch-service-band article {
  background: rgba(255, 248, 239, 0.055);
}

.watch-client-services {
  background:
    radial-gradient(circle at 8% 0%, rgba(176, 122, 63, 0.12), transparent 24rem),
    linear-gradient(180deg, #fff8ef, #f4eadf);
  color: #15110f;
  padding: clamp(72px, 9vw, 122px) clamp(18px, 6vw, 88px);
}

.watch-services-heading {
  margin-bottom: 28px;
  max-width: 820px;
}

.watch-services-heading h2 {
  color: #15110f;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.92;
  margin: 0;
}

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

.watch-service-grid article {
  background: #fffdf8;
  border: 1px solid rgba(21, 17, 15, 0.14);
  display: grid;
  grid-template-rows: 240px 1fr;
  min-height: 520px;
}

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

.watch-service-grid div {
  align-content: center;
  display: grid;
  padding: clamp(24px, 4vw, 44px);
}

.watch-service-grid h3 {
  color: #15110f;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 0.96;
  margin: 0 0 16px;
}

.watch-service-grid p:not(.eyebrow) {
  color: rgba(21, 17, 15, 0.68);
  margin-top: 0;
}

.watches-page .watch-brief-section {
  align-items: start;
  background: #fff8ef;
  color: #15110f;
  display: grid;
  gap: clamp(28px, 6vw, 76px);
  grid-template-columns: minmax(260px, 0.54fr) minmax(420px, 0.86fr);
  padding-top: clamp(72px, 9vw, 122px);
}

.watches-page .watch-brief-copy h2 {
  color: #15110f;
  font-size: clamp(3.4rem, 6vw, 6.6rem);
  margin-bottom: 18px;
}

.watches-page .watch-brief-copy p {
  color: rgba(21, 17, 15, 0.66);
}

.watch-source-form {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 248, 239, 0.9)),
    radial-gradient(circle at 100% 0%, rgba(176, 122, 63, 0.12), transparent 18rem);
  border: 1px solid rgba(21, 17, 15, 0.14);
  box-shadow: var(--shadow);
  color: #15110f;
  display: grid;
  gap: 18px clamp(20px, 4vw, 56px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  padding: clamp(22px, 4vw, 42px);
}

.watch-source-form label {
  display: grid;
  gap: 9px;
}

.watch-source-form label span {
  color: rgba(21, 17, 15, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: none;
}

.watch-source-form input,
.watch-source-form select,
.watch-source-form textarea {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(21, 17, 15, 0.22);
  border-radius: 0;
  color: #15110f;
  min-height: 46px;
  padding: 0 14px;
  width: 100%;
}

.watch-source-form textarea {
  min-height: 102px;
  padding-top: 12px;
  resize: vertical;
}

.phone-field,
.budget-field {
  align-items: center;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(21, 17, 15, 0.22);
  display: grid;
  min-height: 46px;
}

.phone-field {
  grid-template-columns: 88px 1fr;
}

.phone-field select,
.phone-field input,
.budget-field input {
  border: 0;
  min-height: 44px;
}

.phone-field select {
  border-right: 1px solid #c8c8c8;
}

.budget-field {
  grid-template-columns: 42px 1fr;
}

.budget-field > span {
  color: #4d5a63;
  font-size: 1rem;
  justify-self: center;
}

.watch-form-wide,
.watch-submit,
.watch-source-form .form-note {
  grid-column: 1 / -1;
}

.watch-submit {
  background: linear-gradient(135deg, #15110f, #3e2723);
  border: 0;
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
  min-height: 50px;
  width: 100%;
}

.watch-source-form .form-note {
  color: #153a33;
  margin: 0;
}

html[data-theme="dark"] .watches-page .watch-hero,
html[data-theme="dark"] .watches-page .watch-controls,
html[data-theme="dark"] .watches-page .watch-brief-section,
html[data-theme="dark"] .watch-client-services {
  background:
    radial-gradient(circle at 86% 8%, rgba(217, 180, 111, 0.08), transparent 24rem),
    linear-gradient(180deg, #070a12, #10141d);
  color: #f7efe4;
}

html[data-theme="dark"] .watches-page .watch-hero-copy h1,
html[data-theme="dark"] .watches-page .watch-controls .split-heading h2,
html[data-theme="dark"] .watches-page .watch-brief-copy h2,
html[data-theme="dark"] .watch-services-heading h2,
html[data-theme="dark"] .watch-service-grid h3 {
  color: #f7efe4;
}

html[data-theme="dark"] .watches-page .watch-hero-copy p:not(.eyebrow),
html[data-theme="dark"] .watches-page .watch-brief-copy p,
html[data-theme="dark"] .watches-page .watch-controls .sort-label,
html[data-theme="dark"] .watch-service-grid p:not(.eyebrow) {
  color: rgba(247, 239, 228, 0.72);
}

html[data-theme="dark"] .watches-page .watch-controls .segmented-control,
html[data-theme="dark"] .watches-page .watch-controls .sort-label select,
html[data-theme="dark"] .watch-list-card,
html[data-theme="dark"] .watch-service-grid article,
html[data-theme="dark"] .watch-source-form {
  background: rgba(247, 239, 228, 0.06);
  border-color: rgba(247, 239, 228, 0.16);
  color: #f7efe4;
}

html[data-theme="dark"] .watch-list-body h3,
html[data-theme="dark"] .watch-list-card > strong {
  color: #f7efe4;
}

html[data-theme="dark"] .watch-list-body p {
  color: rgba(247, 239, 228, 0.7);
}

html[data-theme="dark"] .watch-source-form label span {
  color: rgba(247, 239, 228, 0.74);
}

html[data-theme="dark"] .watch-source-form input,
html[data-theme="dark"] .watch-source-form select,
html[data-theme="dark"] .watch-source-form textarea,
html[data-theme="dark"] .phone-field,
html[data-theme="dark"] .budget-field {
  background: rgba(247, 239, 228, 0.08);
  border-color: rgba(247, 239, 228, 0.22);
  color: #f7efe4;
}

html[data-theme="dark"] .phone-field select,
html[data-theme="dark"] .phone-field input,
html[data-theme="dark"] .budget-field input {
  background: transparent;
}

@media (max-width: 940px) {
  .watches-page .watch-hero,
  .watches-page .watch-brief-section,
  .watch-service-grid,
  .watch-service-grid article {
    grid-template-columns: 1fr;
  }

  .watch-source-form {
    gap: 16px;
    grid-template-columns: 1fr;
    max-width: none;
  }

  .watch-list-card {
    grid-template-columns: 116px minmax(0, 1fr);
  }

  .watch-list-card > strong,
  .watch-list-card .text-link {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .watch-list-card {
    grid-template-columns: 1fr;
  }

  .watch-list-media {
    height: 240px;
  }

  .phone-field {
    grid-template-columns: 78px 1fr;
  }
}

/* Watch inventory polish */
.watches-page .watch-grid {
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.watches-page .watch-list-card {
  align-content: start;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  overflow: hidden;
  padding: 0;
}

.watch-sale-badge {
  background: rgba(21, 17, 15, 0.9);
  color: #fff8ef;
  font-size: 0.72rem;
  font-weight: 800;
  left: 14px;
  padding: 8px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 14px;
  z-index: 2;
}

.watches-page .watch-list-media {
  height: auto;
}

.watches-page .watch-list-media img {
  aspect-ratio: 4 / 4.6;
  display: block;
}

.watches-page .watch-list-body {
  display: grid;
  gap: 10px;
  padding: 20px 20px 0;
}

.watches-page .watch-list-body h3 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.watches-page .watch-list-body dl {
  border-top: 1px solid rgba(21, 17, 15, 0.12);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 8px 0 0;
  padding-top: 14px;
}

.watches-page .watch-list-body div {
  display: grid;
  gap: 3px;
}

.watches-page .watch-list-body dt {
  color: rgba(21, 17, 15, 0.54);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.watches-page .watch-list-body dd {
  color: #15110f;
  font-weight: 700;
  margin: 0;
}

.watch-card-actions {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 20px;
}

.watch-card-actions > strong {
  color: #15110f;
  font-size: 1.08rem;
  white-space: nowrap;
}

.watch-card-actions .button {
  min-height: 42px;
  padding: 0 18px;
}

.watch-sell-section {
  border-top: 1px solid rgba(21, 17, 15, 0.1);
}

html[data-theme="dark"] .watch-sale-badge {
  background: #d9b46f;
  color: #15110f;
}

html[data-theme="dark"] .watches-page .watch-list-body dl {
  border-top-color: rgba(247, 239, 228, 0.16);
}

html[data-theme="dark"] .watches-page .watch-list-body dt {
  color: rgba(247, 239, 228, 0.58);
}

html[data-theme="dark"] .watches-page .watch-list-body dd,
html[data-theme="dark"] .watch-card-actions > strong {
  color: #f7efe4;
}

html[data-theme="dark"] .watch-sell-section {
  border-top-color: rgba(247, 239, 228, 0.12);
}

@media (max-width: 1120px) {
  .watches-page .watch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .watches-page .watch-hero {
    gap: 30px;
    min-height: auto;
    padding-bottom: 54px;
    padding-top: 126px;
  }

  .watches-page .watch-hero-copy h1 {
    font-size: clamp(3.7rem, 15vw, 5.7rem);
  }

  .watches-page .watch-hero-media img {
    aspect-ratio: 4 / 3.4;
  }

  .watches-page .watch-controls,
  .watch-client-services,
  .watches-page .watch-brief-section {
    padding-top: 58px;
  }

  .watches-page .watch-grid {
    grid-template-columns: 1fr;
  }

  .watch-card-actions {
    align-items: stretch;
    display: grid;
  }
}

/* Enhanced TrueMark page */
.truemark-page {
  align-items: center;
  background:
    linear-gradient(115deg, rgba(13, 13, 12, 0.96) 0%, rgba(36, 16, 22, 0.9) 46%, rgba(18, 52, 46, 0.82) 100%),
    url("assets/campaign-truemark-authenticity.png") right center / 48% auto no-repeat;
  border-bottom: 1px solid rgba(255, 250, 241, 0.14);
  gap: clamp(32px, 6vw, 84px);
  min-height: 92svh;
  overflow: hidden;
  position: relative;
}

.truemark-page::after {
  background: linear-gradient(180deg, transparent, rgba(255, 250, 241, 0.04));
  content: "";
  inset: auto 0 0;
  height: 25%;
  pointer-events: none;
  position: absolute;
}

.truemark-copy {
  position: relative;
  z-index: 1;
}

.truemark-copy h1 {
  max-width: 820px;
}

.truemark-copy p {
  color: rgba(255, 250, 241, 0.78);
  max-width: 610px;
}

.truemark-page .button-light {
  border-color: rgba(255, 250, 241, 0.48);
  color: var(--paper);
}

.truemark-page .button-dark {
  background: var(--paper);
  color: var(--ink);
}

.truemark-metrics {
  border-top: 1px solid rgba(255, 250, 241, 0.18);
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(32px, 5vw, 58px);
  max-width: 640px;
  padding-top: 18px;
}

.truemark-metrics span {
  color: rgba(255, 250, 241, 0.72);
  display: grid;
  font-size: 0.84rem;
  font-weight: 800;
  gap: 5px;
  text-transform: uppercase;
}

.truemark-metrics strong {
  color: var(--champagne);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 0.9;
}

.truemark-showcase {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.truemark-showcase > img {
  aspect-ratio: 4 / 4.6;
  border: 1px solid rgba(255, 250, 241, 0.22);
  object-fit: cover;
  width: 100%;
}

.certificate-card {
  background: rgba(255, 250, 241, 0.93);
  border: 1px solid rgba(255, 250, 241, 0.62);
  color: var(--ink);
  display: grid;
  gap: 22px;
  margin: -76px clamp(14px, 3vw, 28px) 0;
  padding: clamp(20px, 3vw, 30px);
  position: relative;
  z-index: 2;
}

.certificate-card-head {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.certificate-card-head svg,
.proof-grid-wide svg,
.truemark-flow-grid svg {
  color: var(--gold);
}

.certificate-status {
  color: var(--smoke);
  font-size: 0.82rem;
  font-weight: 800;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.certificate-card strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.certificate-details {
  display: grid;
  gap: 0;
  margin: 0;
}

.certificate-details div {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 92px 1fr;
  padding: 12px 0;
}

.certificate-details dt {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.certificate-details dd {
  color: var(--smoke);
  margin: 0;
}

.truemark-verify-section,
.truemark-flow,
.truemark-cta {
  padding: clamp(64px, 8vw, 110px) clamp(18px, 6vw, 88px);
}

.truemark-verify-section {
  align-items: start;
  background: #fffaf2;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(24px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
  overflow: hidden;
}

.verify-intro h2,
.truemark-flow h2,
.truemark-cta h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.95;
  margin: 0;
}

.verify-intro p,
.truemark-flow-grid p,
.truemark-cta p {
  color: var(--smoke);
  max-width: 620px;
}

.truemark-verify-section .verify-panel {
  background: var(--paper);
  border: 1px solid var(--ink);
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  width: 100%;
}

.truemark-verify-section .form-note {
  color: var(--smoke);
  margin: 0;
}

.truemark-verify-section .verify-panel .button {
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  padding-left: 12px;
  padding-right: 12px;
  text-align: center;
  white-space: normal;
  width: 100%;
}

.truemark-verify-section .verify-panel input {
  min-width: 0;
  width: 100%;
}

.certificate-lookup {
  background: rgba(23, 61, 53, 0.06);
  border: 1px solid rgba(23, 61, 53, 0.13);
  display: grid;
  gap: 16px;
  min-width: 0;
  overflow: hidden;
  padding: 16px;
}

.certificate-lookup[hidden] {
  display: none;
}

.certificate-result-head {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.certificate-result-head span,
.certificate-chain-panel > span,
.certificate-timeline > span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.certificate-result-head span {
  background: rgba(23, 61, 53, 0.1);
  color: var(--green);
  padding: 7px 10px;
}

.certificate-lookup.is-empty .certificate-result-head span {
  background: rgba(141, 45, 62, 0.1);
  color: var(--rose);
}

.certificate-result-head strong {
  color: var(--ink);
  display: block;
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 0.95;
  overflow-wrap: anywhere;
  text-align: right;
  white-space: normal;
  width: 100%;
}

.owner-privacy-control {
  align-items: center;
  border-top: 1px solid rgba(21, 17, 15, 0.1);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding-top: 12px;
}

.owner-privacy-control[hidden] {
  display: none;
}

.owner-privacy-control > span {
  color: var(--smoke);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.owner-privacy-control div {
  background: rgba(21, 17, 15, 0.06);
  border: 1px solid rgba(21, 17, 15, 0.1);
  display: inline-flex;
  padding: 3px;
}

.owner-privacy-control button {
  background: transparent;
  border: 0;
  color: var(--smoke);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
  padding: 8px 10px;
}

.owner-privacy-control button.is-active {
  background: var(--ink);
  color: var(--paper);
}

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

.certificate-record-grid article {
  background: rgba(255, 250, 241, 0.74);
  border: 1px solid rgba(21, 17, 15, 0.1);
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 12px;
}

.certificate-record-grid span {
  color: var(--smoke);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.certificate-record-grid strong {
  color: var(--ink);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.certificate-lookup dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.certificate-chain-panel {
  display: grid;
  gap: 10px;
}

.certificate-chain-panel dl div {
  border-top: 1px solid rgba(21, 17, 15, 0.1);
  display: grid;
  gap: 8px;
  grid-template-columns: 88px 1fr;
  padding: 10px 0;
}

.certificate-lookup dt {
  color: var(--smoke);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.certificate-lookup dd {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  margin: 0;
}

.certificate-lookup.is-empty {
  background: rgba(141, 45, 62, 0.06);
  border-color: rgba(141, 45, 62, 0.16);
}

.certificate-timeline {
  border-top: 1px solid rgba(21, 17, 15, 0.12);
  display: grid;
  gap: 10px;
  padding-top: 14px;
}

.certificate-timeline ol {
  counter-reset: certificate-event;
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.certificate-timeline li {
  color: var(--smoke);
  display: grid;
  font-size: 0.88rem;
  font-weight: 700;
  gap: 10px;
  grid-template-columns: 24px 1fr;
}

.certificate-timeline li::before {
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  content: counter(certificate-event);
  counter-increment: certificate-event;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.certificate-ledger {
  border-top: 1px solid rgba(21, 17, 15, 0.12);
  display: grid;
  gap: 12px;
  padding-top: 14px;
}

.certificate-ledger > span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ledger-list {
  display: grid;
  gap: 10px;
}

.ledger-list article {
  background: rgba(255, 250, 241, 0.62);
  border: 1px solid rgba(21, 17, 15, 0.1);
  display: grid;
  gap: 9px;
  min-width: 0;
  padding: 12px;
}

.ledger-list article > div:first-child {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.ledger-list strong {
  color: var(--ink);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.ledger-list article > div:first-child span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ledger-list p {
  color: var(--smoke);
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0;
}

.ledger-list dl {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.ledger-list dl div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.ledger-list dt {
  color: var(--smoke);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ledger-list dd {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0;
  overflow-wrap: anywhere;
}

html[data-theme="dark"] .truemark-verify-section {
  background: #fffaf2;
  color: var(--ink);
}

html[data-theme="dark"] .truemark-verify-section .verify-intro h2,
html[data-theme="dark"] .truemark-verify-section .certificate-result-head strong,
html[data-theme="dark"] .truemark-verify-section .certificate-record-grid strong,
html[data-theme="dark"] .truemark-verify-section .certificate-lookup dd {
  color: var(--ink);
}

html[data-theme="dark"] .truemark-verify-section .verify-intro p:not(.eyebrow),
html[data-theme="dark"] .truemark-verify-section .verify-panel label span,
html[data-theme="dark"] .truemark-verify-section .form-note,
html[data-theme="dark"] .truemark-verify-section .certificate-record-grid span,
html[data-theme="dark"] .truemark-verify-section .certificate-lookup dt,
html[data-theme="dark"] .truemark-verify-section .certificate-timeline li {
  color: var(--smoke);
}

html[data-theme="dark"] .truemark-verify-section .verify-panel {
  background: var(--paper);
  border-color: var(--ink);
  color: var(--ink);
}

html[data-theme="dark"] .truemark-verify-section .verify-panel input {
  background: #fffaf2 !important;
  border-color: rgba(21, 17, 15, 0.22) !important;
  color: var(--ink) !important;
  font-weight: 700;
}

html[data-theme="dark"] .truemark-verify-section .verify-panel input::placeholder {
  color: rgba(21, 17, 15, 0.46) !important;
}

html[data-theme="dark"] .truemark-verify-section .verify-panel .button-dark {
  background: linear-gradient(135deg, var(--ink), var(--brown));
  color: var(--paper);
}

html[data-theme="dark"] .truemark-verify-section .certificate-lookup {
  background: rgba(23, 61, 53, 0.06);
  border-color: rgba(23, 61, 53, 0.13);
}

html[data-theme="dark"] .truemark-verify-section .certificate-record-grid article {
  background: rgba(255, 250, 241, 0.74);
  border-color: rgba(21, 17, 15, 0.1);
}

html[data-theme="dark"] .truemark-verify-section .certificate-chain-panel dl div,
html[data-theme="dark"] .truemark-verify-section .certificate-timeline {
  border-color: rgba(21, 17, 15, 0.12);
}

html[data-theme="dark"] .truemark-verify-section .certificate-result-head span {
  background: rgba(23, 61, 53, 0.1);
  color: var(--green);
}

html[data-theme="dark"] .truemark-verify-section .certificate-lookup.is-empty {
  background: rgba(141, 45, 62, 0.06);
  border-color: rgba(141, 45, 62, 0.16);
}

html[data-theme="dark"] .truemark-verify-section .certificate-lookup.is-empty .certificate-result-head span {
  background: rgba(141, 45, 62, 0.1);
  color: var(--rose);
}

html[data-theme="dark"] .truemark-verify-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(217, 180, 111, 0.14), transparent 24rem),
    linear-gradient(180deg, #070a12, #10141d);
  border-bottom-color: rgba(247, 239, 228, 0.14);
  color: #f7efe4;
}

html[data-theme="dark"] .truemark-verify-section .verify-panel {
  background: rgba(247, 239, 228, 0.07);
  border-color: rgba(247, 239, 228, 0.18);
  color: #f7efe4;
}

html[data-theme="dark"] .truemark-verify-section .verify-intro h2,
html[data-theme="dark"] .truemark-verify-section .certificate-result-head strong,
html[data-theme="dark"] .truemark-verify-section .certificate-record-grid strong,
html[data-theme="dark"] .truemark-verify-section .certificate-lookup dd {
  color: #f7efe4;
}

html[data-theme="dark"] .truemark-verify-section .verify-intro p:not(.eyebrow),
html[data-theme="dark"] .truemark-verify-section .verify-panel label span,
html[data-theme="dark"] .truemark-verify-section .form-note,
html[data-theme="dark"] .truemark-verify-section .certificate-record-grid span,
html[data-theme="dark"] .truemark-verify-section .certificate-lookup dt,
html[data-theme="dark"] .truemark-verify-section .certificate-timeline li {
  color: rgba(247, 239, 228, 0.72);
}

html[data-theme="dark"] .truemark-verify-section .verify-panel input {
  background: rgba(247, 239, 228, 0.09) !important;
  border-color: rgba(247, 239, 228, 0.22) !important;
  color: #f7efe4 !important;
}

html[data-theme="dark"] .truemark-verify-section .verify-panel input::placeholder {
  color: rgba(247, 239, 228, 0.45) !important;
}

html[data-theme="dark"] .truemark-verify-section .verify-panel .button-dark {
  background: #f7efe4;
  color: var(--ink);
}

html[data-theme="dark"] .truemark-verify-section .certificate-lookup {
  background: rgba(247, 239, 228, 0.06);
  border-color: rgba(247, 239, 228, 0.14);
}

html[data-theme="dark"] .truemark-verify-section .certificate-record-grid article {
  background: rgba(247, 239, 228, 0.07);
  border-color: rgba(247, 239, 228, 0.14);
}

html[data-theme="dark"] .truemark-verify-section .certificate-chain-panel dl div,
html[data-theme="dark"] .truemark-verify-section .certificate-timeline {
  border-color: rgba(247, 239, 228, 0.14);
}

html[data-theme="dark"] .truemark-verify-section .certificate-timeline li::before {
  background: #f7efe4;
  color: var(--ink);
}

html[data-theme="dark"] .truemark-verify-section .certificate-result-head span {
  background: rgba(92, 184, 132, 0.14);
  color: #a5f0bf;
}

html[data-theme="dark"] .truemark-verify-section .certificate-lookup.is-empty {
  background: rgba(141, 45, 62, 0.16);
  border-color: rgba(255, 130, 150, 0.24);
}

html[data-theme="dark"] .truemark-verify-section .certificate-lookup.is-empty .certificate-result-head span {
  background: rgba(255, 130, 150, 0.14);
  color: #ff9caf;
}

html[data-theme="dark"] .truemark-verify-section .certificate-ledger {
  border-color: rgba(247, 239, 228, 0.14);
}

html[data-theme="dark"] .truemark-verify-section .owner-privacy-control {
  border-color: rgba(247, 239, 228, 0.14);
}

html[data-theme="dark"] .truemark-verify-section .owner-privacy-control > span,
html[data-theme="dark"] .truemark-verify-section .owner-privacy-control button {
  color: rgba(247, 239, 228, 0.72);
}

html[data-theme="dark"] .truemark-verify-section .owner-privacy-control div {
  background: rgba(247, 239, 228, 0.07);
  border-color: rgba(247, 239, 228, 0.14);
}

html[data-theme="dark"] .truemark-verify-section .owner-privacy-control button.is-active {
  background: #f7efe4;
  color: var(--ink);
}

html[data-theme="dark"] .truemark-verify-section .ledger-list article {
  background: rgba(247, 239, 228, 0.07);
  border-color: rgba(247, 239, 228, 0.14);
}

html[data-theme="dark"] .truemark-verify-section .ledger-list strong,
html[data-theme="dark"] .truemark-verify-section .ledger-list dd {
  color: #f7efe4;
}

html[data-theme="dark"] .truemark-verify-section .ledger-list p,
html[data-theme="dark"] .truemark-verify-section .ledger-list dt {
  color: rgba(247, 239, 228, 0.72);
}

.proof-grid-wide {
  border-bottom: 1px solid var(--line);
}

.proof-grid-wide article {
  padding: clamp(24px, 3vw, 34px);
}

.proof-grid-wide strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 0.95;
  margin: 18px 0 10px;
}

.proof-grid-wide p {
  color: var(--smoke);
  margin: 0;
}

.truemark-flow {
  background: rgba(255, 250, 241, 0.62);
}

.truemark-flow .split-heading {
  align-items: start;
}

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

.truemark-flow-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  gap: 12px;
  min-height: 280px;
  padding: clamp(22px, 3vw, 34px);
}

.truemark-flow-grid span {
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.truemark-flow-grid h3 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 0.96;
  margin: 0;
}

html[data-theme="dark"] .truemark-flow {
  background:
    radial-gradient(circle at 14% 0%, rgba(217, 180, 111, 0.12), transparent 24rem),
    linear-gradient(180deg, #070a12, #10141d);
  color: #f7efe4;
}

html[data-theme="dark"] .truemark-flow .split-heading {
  border-top-color: rgba(247, 239, 228, 0.2);
}

html[data-theme="dark"] .truemark-flow .split-heading h2,
html[data-theme="dark"] .truemark-flow-grid h3 {
  color: #f7efe4;
}

html[data-theme="dark"] .truemark-flow .text-link,
html[data-theme="dark"] .truemark-flow-grid span {
  color: #d9b46f;
}

html[data-theme="dark"] .truemark-flow-grid article {
  background: rgba(247, 239, 228, 0.07);
  border-color: rgba(247, 239, 228, 0.16);
  color: #f7efe4;
}

html[data-theme="dark"] .truemark-flow-grid p {
  color: rgba(247, 239, 228, 0.72);
}

.truemark-cta {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(13, 13, 12, 0.94), rgba(13, 13, 12, 0.46)),
    url("assets/kive-tennis-necklace-close.webp") center / cover;
  color: var(--paper);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.truemark-cta p {
  color: rgba(255, 250, 241, 0.76);
}

.truemark-cta .button-dark {
  background: var(--paper);
  color: var(--ink);
  white-space: nowrap;
}

@media (max-width: 940px) {
  .truemark-page,
  .truemark-verify-section,
  .truemark-cta {
    grid-template-columns: 1fr;
  }

  .truemark-page {
    background:
      linear-gradient(135deg, rgba(13, 13, 12, 0.96), rgba(37, 16, 20, 0.86)),
      url("assets/campaign-truemark-authenticity.png") center / cover;
  }

  .truemark-showcase {
    max-width: 560px;
  }

  .truemark-flow-grid {
    grid-template-columns: 1fr;
  }

  .truemark-cta {
    align-items: start;
  }
}

@media (max-width: 680px) {
  .truemark-page {
    min-height: auto;
    padding-bottom: 56px;
  }

  .truemark-verify-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .truemark-verify-section .verify-panel {
    max-width: 100%;
    width: 100%;
  }

  .truemark-page .hero-actions {
    align-items: stretch;
    display: grid;
  }

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

  .certificate-card {
    margin: -42px 10px 0;
  }

  .certificate-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .certificate-record-grid {
    grid-template-columns: 1fr;
  }

  .certificate-lookup {
    padding: 12px;
  }

  .certificate-record-grid article {
    padding: 11px;
  }

  .certificate-result-head {
    align-items: start;
    display: grid;
  }

  .certificate-result-head strong {
    font-size: 1.46rem;
    text-align: left;
  }

  .owner-privacy-control,
  .owner-privacy-control div {
    align-items: stretch;
    display: grid;
  }

  .truemark-verify-section .verify-panel .button {
    min-width: 0;
    padding-left: 12px;
    padding-right: 12px;
    white-space: normal;
  }

  .certificate-chain-panel dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .ledger-list article > div:first-child,
  .ledger-list dl {
    display: grid;
    grid-template-columns: 1fr;
  }

  .truemark-flow .split-heading {
    align-items: stretch;
    display: grid;
  }

  .truemark-cta .button {
    width: 100%;
  }
}

/* Original site footer */
.site-footer {
  background: #fffaf2;
  border-top: 1px solid rgba(21, 17, 15, 0.12);
  color: #15110f;
  display: grid;
  gap: clamp(34px, 5vw, 64px);
  grid-template-columns: 1fr;
  padding: clamp(46px, 7vw, 86px) clamp(18px, 6vw, 88px) 28px;
}

html[data-theme="dark"] .site-footer,
html[data-theme="light"] .site-footer {
  background: #fffaf2;
  border-top-color: rgba(21, 17, 15, 0.12);
  color: #15110f;
}

.site-footer p {
  color: rgba(21, 17, 15, 0.72);
  margin: 0;
  max-width: none;
}

.footer-newsletter {
  justify-items: center;
  display: grid;
  gap: 10px;
  justify-self: center;
  max-width: 620px;
  text-align: center;
}

.footer-kicker {
  color: #15110f;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 700;
  line-height: 0.95;
}

.footer-newsletter h2 {
  font-family: var(--body);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  max-width: 460px;
}

.footer-signup {
  align-items: stretch;
  display: flex;
  gap: 10px;
  margin-top: 10px;
  max-width: 520px;
  width: min(100%, 520px);
}

.footer-signup input {
  background: transparent;
  border: 1px solid rgba(21, 17, 15, 0.28);
  border-radius: 0;
  color: #15110f;
  flex: 1;
  min-height: 48px;
  min-width: 0;
  padding: 0 14px;
}

.footer-signup input::placeholder {
  color: rgba(21, 17, 15, 0.48);
}

.footer-signup button {
  background: #15110f;
  border: 1px solid #15110f;
  border-radius: 0;
  color: #fffaf2;
  cursor: pointer;
  font-weight: 800;
  min-height: 48px;
  padding: 0 24px;
}

.footer-thanks {
  min-height: 1.5em;
}

.footer-columns {
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-column {
  align-content: start;
  display: grid;
  gap: 9px;
}

.footer-column h3 {
  color: #15110f;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 5px;
  text-transform: none;
}

.footer-column a,
.footer-contact p,
.footer-contact a {
  color: rgba(21, 17, 15, 0.7);
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-column a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact {
  font-style: normal;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(21, 17, 15, 0.12);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-top: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  align-items: center;
  border: 1px solid rgba(21, 17, 15, 0.18);
  color: #15110f;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.footer-socials svg {
  height: 17px;
  width: 17px;
}

@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .moulding-form-grid {
    grid-template-columns: 1fr;
  }

  .footer-signup,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-signup button {
    width: 100%;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 8px;
    grid-template-columns: auto auto 1fr;
  }

  .brand span {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .icon-button,
  .menu-button {
    height: 40px;
    width: 40px;
  }
}

/* Final theme readability fixes */
html[data-theme="dark"] .site-header,
html[data-theme="dark"] .nav-links,
html[data-theme="dark"] .cart-panel,
html[data-theme="dark"] .modal-panel {
  color-scheme: dark;
}

html[data-theme="light"] {
  color-scheme: light;
}

html[data-theme="dark"] :is(
  .page-hero,
  .collections-hero,
  .ring-builder-hero,
  .bespoke-hero,
  .truemark-page,
  .product-detail,
  .product-info-tabs,
  .bespoke-builder,
  .process-section,
  .proof-grid-wide,
  .contact-page,
  .ring-builder-app,
  .builder-aftercare,
  .collection-layout,
  .watch-hero,
  .watch-controls,
  .watch-client-services,
  .watch-brief-section,
  .truemark-verify-section,
  .truemark-flow,
  .truemark-ledger,
  .truemark-cta
) {
  color: #f7efe4;
}

html[data-theme="dark"] :is(
  .page-hero,
  .collections-hero,
  .ring-builder-hero,
  .bespoke-hero,
  .truemark-page,
  .product-detail,
  .product-info-tabs,
  .bespoke-builder,
  .process-section,
  .proof-grid-wide,
  .contact-page,
  .ring-builder-app,
  .builder-aftercare,
  .collection-layout,
  .watch-hero,
  .watch-controls,
  .watch-client-services,
  .watch-brief-section,
  .truemark-verify-section,
  .truemark-flow,
  .truemark-ledger,
  .truemark-cta
) :is(h1, h2, h3, h4, strong, dt, dd, label) {
  color: #f7efe4;
}

html[data-theme="dark"] :is(
  .page-hero,
  .collections-hero,
  .ring-builder-hero,
  .bespoke-hero,
  .truemark-page,
  .product-detail,
  .product-info-tabs,
  .bespoke-builder,
  .process-section,
  .proof-grid-wide,
  .contact-page,
  .ring-builder-app,
  .builder-aftercare,
  .collection-layout,
  .watch-hero,
  .watch-controls,
  .watch-client-services,
  .watch-brief-section,
  .truemark-verify-section,
  .truemark-flow,
  .truemark-ledger,
  .truemark-cta
) :is(p, li, span, small, .product-meta, .form-note) {
  color: rgba(247, 239, 228, 0.82);
}

html[data-theme="dark"] :is(.eyebrow, .price-line, .control-heading span, .contact-list dt) {
  color: #d9b46f !important;
}

html[data-theme="dark"] :is(
  .path-card,
  .product-card,
  .watch-list-card,
  .watch-service-grid article,
  .buying-guide,
  .verify-panel,
  .booking-form,
  .watch-source-form,
  .product-info-tabs article,
  .process-steps article,
  .proof-grid-wide article,
  .builder-aftercare article,
  .ring-controls-panel,
  .ring-preview-panel,
  .builder-sliders label,
  .builder-specs span,
  .quote-breakdown div,
  .saved-designs button,
  .certificate-chain-panel,
  .ledger-list article,
  .truemark-feature-card,
  .truemark-status-card
) {
  background: rgba(247, 239, 228, 0.09);
  border-color: rgba(247, 239, 228, 0.2);
  color: #f7efe4;
}

html[data-theme="dark"] :is(
  input,
  select,
  textarea,
  .phone-field,
  .budget-field,
  .segmented-control,
  .sort-label select,
  .filter-button,
  .builder-choice,
  .builder-preset,
  .diamond-inventory button
) {
  background-color: rgba(247, 239, 228, 0.1);
  border-color: rgba(247, 239, 228, 0.24);
  color: #f7efe4;
}

html[data-theme="dark"] :is(input, textarea)::placeholder {
  color: rgba(247, 239, 228, 0.58);
}

html[data-theme="light"] :is(
  .page-hero,
  .collections-hero,
  .product-detail,
  .product-info-tabs,
  .bespoke-builder,
  .process-section,
  .proof-grid-wide,
  .contact-page,
  .ring-builder-app,
  .builder-aftercare,
  .collection-layout,
  .watch-hero,
  .watch-controls,
  .watch-client-services,
  .watch-brief-section,
  .truemark-verify-section,
  .truemark-flow,
  .truemark-ledger
) {
  color: #15110f;
}

html[data-theme="light"] :is(
  .page-hero,
  .collections-hero,
  .product-detail,
  .product-info-tabs,
  .bespoke-builder,
  .process-section,
  .proof-grid-wide,
  .contact-page,
  .ring-builder-app,
  .builder-aftercare,
  .collection-layout,
  .watch-hero,
  .watch-controls,
  .watch-client-services,
  .watch-brief-section,
  .truemark-verify-section,
  .truemark-flow,
  .truemark-ledger
) :is(h1, h2, h3, h4, strong, dt, dd, label) {
  color: #15110f;
}

html[data-theme="light"] :is(
  .page-hero,
  .collections-hero,
  .product-detail,
  .product-info-tabs,
  .bespoke-builder,
  .process-section,
  .proof-grid-wide,
  .contact-page,
  .ring-builder-app,
  .builder-aftercare,
  .collection-layout,
  .watch-hero,
  .watch-controls,
  .watch-client-services,
  .watch-brief-section,
  .truemark-verify-section,
  .truemark-flow,
  .truemark-ledger
) :is(p, li, span, small, .product-meta, .form-note) {
  color: rgba(21, 17, 15, 0.74);
}

html[data-theme="light"] :is(.eyebrow, .price-line, .control-heading span, .contact-list dt) {
  color: #8d2d3e !important;
}

html[data-theme="dark"] .button-dark,
html[data-theme="dark"] .watch-submit {
  background: linear-gradient(135deg, #d9b46f, #b07a3f);
  color: #15110f;
}

html[data-theme="dark"] .button-light,
html[data-theme="dark"] .button-ghost {
  background: rgba(247, 239, 228, 0.12);
  border-color: rgba(247, 239, 228, 0.3);
  color: #f7efe4;
}

html[data-theme="light"] .button-dark,
html[data-theme="light"] .watch-submit {
  background: linear-gradient(135deg, #15110f, #3e2723);
  color: #fff8ef;
}

html[data-theme="light"] .button-light,
html[data-theme="light"] .button-ghost {
  background: rgba(255, 253, 248, 0.86);
  border-color: rgba(21, 17, 15, 0.18);
  color: #15110f;
}

html[data-theme="light"] .service-routes {
  background: #15110f;
  color: #fff8ef;
}

html[data-theme="light"] .service-routes :is(h2, strong, a) {
  color: #fff8ef;
}

html[data-theme="light"] .service-routes :is(.eyebrow, span) {
  color: #d9b46f !important;
}

html[data-theme="light"] .service-routes a:hover,
html[data-theme="dark"] .service-routes a:hover {
  background: #d9b46f;
  color: #15110f;
}

html[data-theme="light"] .service-routes a:hover span,
html[data-theme="dark"] .service-routes a:hover span {
  color: #15110f !important;
}

html[data-theme="light"] .campaign-home .campaign-bespoke {
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.98), rgba(255, 250, 242, 0.82)),
    url("assets/kive-burgundy-tennis-portrait.webp") center / cover;
}

html[data-theme="light"] .campaign-home .campaign-bespoke :is(h2, p) {
  color: #15110f;
}

html[data-theme="dark"] .campaign-home .campaign-bespoke {
  background:
    linear-gradient(90deg, rgba(7, 10, 18, 0.96), rgba(64, 12, 34, 0.72)),
    url("assets/kive-burgundy-tennis-portrait.webp") center / cover;
}

html[data-theme="dark"] .campaign-home .campaign-bespoke :is(h2, p) {
  color: #f7efe4;
}

html[data-theme="dark"] .site-footer :is(input, select, textarea),
html[data-theme="light"] .site-footer :is(input, select, textarea) {
  background: transparent;
  border-color: rgba(21, 17, 15, 0.28);
  color: #15110f;
}

html[data-theme="dark"] .site-footer input::placeholder,
html[data-theme="light"] .site-footer input::placeholder {
  color: rgba(21, 17, 15, 0.48);
}

html[data-theme="dark"] .site-footer button,
html[data-theme="light"] .site-footer button {
  background: #15110f;
  border-color: #15110f;
  color: #fffaf2;
}

html[data-theme="light"] .pencil-builder-hero,
html[data-theme="dark"] .pencil-builder-hero {
  background:
    linear-gradient(90deg, rgba(7, 10, 18, 0.92), rgba(66, 25, 35, 0.46)),
    url("assets/campaign-engagement-ring.png") center / cover !important;
  color: #fffdf8 !important;
}

html[data-theme="light"] .pencil-builder-hero :is(.eyebrow, h1, p),
html[data-theme="dark"] .pencil-builder-hero :is(.eyebrow, h1, p) {
  color: #fffdf8 !important;
}

html[data-theme="light"] .pencil-builder-hero .button-dark,
html[data-theme="dark"] .pencil-builder-hero .button-dark {
  background: #2a1715;
  color: #fffdf8;
}

html[data-theme="light"] .pencil-builder-hero .button-light,
html[data-theme="dark"] .pencil-builder-hero .button-light {
  background: rgba(255, 253, 248, 0.92);
  color: #15110f;
}

.pencil-builder-hero.reveal {
  opacity: 1 !important;
  transform: none !important;
}
