/* === Monili Jewellers redesign — design tokens === */
:root {
  --onyx: #14110F;
  --charcoal: #2A2622;
  --ink: #0E0C0A;
  --champagne: #C9A24B;
  --champagne-deep: #A4823A;
  --gold-soft: #E4CE94;
  --platinum: #C9CDD2;
  --ivory: #F7F3EC;
  --pearl: #FBF9F4;
  --paper: #FFFCF7;
  --line: rgba(20, 17, 15, 0.12);
  --line-soft: rgba(20, 17, 15, 0.06);
  --line-gold: rgba(201, 162, 75, 0.30);
  --emerald: #1F5C46;
  --shadow-card: 0 1px 2px rgba(20, 17, 15, 0.04), 0 12px 32px -16px rgba(20, 17, 15, 0.18);
  --shadow-soft: 0 1px 2px rgba(20, 17, 15, 0.03), 0 24px 56px -28px rgba(20, 17, 15, 0.22);
  --radius-card: 2px;
  --radius-pill: 999px;
  --serif: "Cormorant Garamond", "EB Garamond", "Garamond", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --header-h: 84px;
}

/* dark palette */
[data-palette="onyx"] {
  --ivory: #14110F;
  --pearl: #1A1714;
  --paper: #100D0B;
  --onyx: #F4EFE6;
  --charcoal: #D6CFC2;
  --ink: #F7F3EC;
  --line: rgba(244, 239, 230, 0.12);
  --line-soft: rgba(244, 239, 230, 0.06);
  --line-gold: rgba(228, 206, 148, 0.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--onyx);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 15px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* === Typography === */
.serif { font-family: var(--serif); font-weight: 500; letter-spacing: -0.005em; }
.display { font-family: var(--serif); font-weight: 400; line-height: 1.02; letter-spacing: -0.012em; }
.eyebrow {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 11px; font-weight: 500; color: var(--charcoal);
}
.eyebrow-gold { color: var(--champagne-deep); }
.mono { font-family: var(--mono); letter-spacing: 0; font-feature-settings: "tnum"; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border: 1px solid var(--onyx);
  background: var(--onyx); color: var(--ivory);
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 0; transition: all .2s ease;
  cursor: pointer;
}
.btn:hover { background: transparent; color: var(--onyx); }
.btn-gold {
  background: var(--champagne); border-color: var(--champagne); color: var(--ink);
}
.btn-gold:hover { background: var(--champagne-deep); border-color: var(--champagne-deep); color: var(--paper); }
.btn-ghost {
  background: transparent; color: var(--onyx); border-color: var(--onyx);
}
.btn-ghost:hover { background: var(--onyx); color: var(--ivory); }
.btn-quiet {
  background: transparent; color: var(--onyx); border-color: var(--line);
}
.btn-quiet:hover { border-color: var(--onyx); }
.btn-link {
  background: transparent; border: none; padding: 0; color: var(--onyx);
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--onyx);
  padding-bottom: 4px;
}
.btn-link:hover { color: var(--champagne-deep); border-color: var(--champagne-deep); }

/* === Layout === */
.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-lg { padding: 140px 0; }
.divider-gold {
  height: 1px; background: linear-gradient(90deg, transparent, var(--champagne) 50%, transparent);
  border: 0; margin: 0;
}
.hairline { height: 1px; background: var(--line); border: 0; }

/* === Nav === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: rgba(247, 243, 236, 0.96);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: background .25s ease;
}
[data-palette="onyx"] .nav { background: rgba(20, 17, 15, 0.94); }
.nav-inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: var(--header-h); padding: 0 32px; gap: 24px;
}
.nav-left { display: flex; align-items: center; gap: 28px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-mark {
  font-family: var(--serif); font-size: 26px; font-weight: 500;
  letter-spacing: 0.04em; color: var(--onyx);
}
.nav-logo-sub {
  font-family: var(--sans); font-size: 9px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--charcoal);
  margin-top: 2px;
}
.nav-links {
  display: flex; justify-content: center; align-items: center; gap: 36px;
}
.nav-link {
  font-family: var(--sans);
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--charcoal);
  padding: 8px 0; border: 0; border-bottom: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
}
.nav-link:hover, .nav-link.active { color: var(--onyx); border-bottom-color: var(--champagne); }
.nav-right { display: flex; justify-content: flex-end; align-items: center; gap: 14px; }
.nav-icon-btn {
  width: 40px; height: 40px; border: 1px solid var(--line);
  background: transparent; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 0; transition: all .15s ease;
}
.nav-icon-btn:hover { border-color: var(--onyx); }

/* === Hero === */
.hero {
  position: relative; min-height: calc(100vh - 0px); display: flex; align-items: stretch;
  padding-top: var(--header-h); background: var(--ivory);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 0;
  width: 100%; align-items: stretch;
}
.hero-left {
  padding: 80px 56px 80px 56px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 24px; position: relative;
  min-width: 0;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; background: var(--champagne); border-radius: 50%;
}
.hero-title {
  font-family: var(--serif); font-weight: 400; font-size: clamp(48px, 6vw, 86px);
  line-height: 0.98; letter-spacing: -0.018em; margin: 0; color: var(--onyx);
}
.hero-title em {
  font-style: italic; font-weight: 400; color: var(--champagne-deep);
}
.hero-sub {
  font-size: 17px; line-height: 1.55; color: var(--charcoal); max-width: 460px; margin: 0;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.hero-meta {
  display: flex; gap: 28px; align-items: center; margin-top: 24px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.hero-meta-block { display: flex; flex-direction: column; gap: 4px; }
.hero-meta-num {
  font-family: var(--serif); font-size: 28px; line-height: 1;
  color: var(--onyx); font-weight: 500;
}
.hero-meta-label {
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--charcoal); font-weight: 500;
}
.hero-right {
  position: relative; overflow: hidden; background: #2c1f12;
  min-height: 560px;
}
.hero-right img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 80% center; display: block;
}
.hero-marker {
  position: absolute; bottom: 32px; left: 32px;
  background: rgba(20, 17, 15, 0.78); color: var(--ivory);
  padding: 16px 22px; backdrop-filter: blur(8px);
  display: flex; flex-direction: column; gap: 6px; max-width: 280px;
}
.hero-marker .label { font-size: 10px; letter-spacing: 0.24em; color: var(--gold-soft); text-transform: uppercase; }
.hero-marker .name { font-family: var(--serif); font-size: 19px; font-weight: 500; }
.hero-side-tag {
  position: absolute; top: 50%; right: 12px;
  writing-mode: vertical-rl; transform: rotate(180deg) translateY(50%);
  font-size: 10px; letter-spacing: 0.32em; color: var(--ivory); opacity: .7;
  text-transform: uppercase;
}

/* === Trust strip === */
.trust {
  background: var(--paper); border-block: 1px solid var(--line);
  padding: 28px 0;
}
.trust-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 14px; padding: 0 12px;
  border-right: 1px solid var(--line-soft);
}
.trust-item:last-child { border-right: 0; }
.trust-num {
  font-family: var(--serif); font-size: 32px; line-height: 1; color: var(--onyx);
  font-weight: 500;
}
.trust-label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--charcoal); line-height: 1.4;
}

/* === Section heads === */
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; margin-bottom: 56px; flex-wrap: wrap;
}
.section-head-left { max-width: 640px; }
.section-title {
  font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 4vw, 56px);
  line-height: 1.04; letter-spacing: -0.012em; margin: 14px 0 0 0; color: var(--onyx);
}
.section-title em { font-style: italic; color: var(--champagne-deep); }
.section-lede {
  font-size: 16px; line-height: 1.6; color: var(--charcoal); max-width: 520px;
  margin-top: 18px;
}

/* === Product cards === */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px 28px;
}
.product-card {
  display: flex; flex-direction: column; gap: 16px; cursor: pointer;
  transition: transform .2s ease;
}
.product-card-frame {
  background: var(--pearl); aspect-ratio: 4/5; position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: center;
}
.product-card-frame img {
  width: 78%; height: 78%; object-fit: contain; transition: transform .35s ease;
}
.product-card:hover .product-card-frame img { transform: scale(1.04); }
.product-card-frame .tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--paper); padding: 5px 10px; color: var(--onyx);
  border: 1px solid var(--line);
}
.product-card-frame .tag.gold { background: var(--champagne); border-color: var(--champagne); color: var(--ink); }
.product-card-frame .tag.emerald { background: var(--emerald); color: #fff; border-color: var(--emerald); }
.product-meta { display: flex; flex-direction: column; gap: 6px; }
.product-name {
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  line-height: 1.15; color: var(--onyx);
}
.product-spec {
  font-size: 12.5px; color: var(--charcoal); line-height: 1.4;
}
.product-cta-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 6px; padding-top: 12px; border-top: 1px solid var(--line-soft);
}
.product-enquire {
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; color: var(--onyx);
}

/* === Bespoke teaser === */
.bespoke-teaser {
  background: var(--onyx); color: var(--ivory);
}
.bespoke-teaser .section-title { color: var(--ivory); }
.bespoke-teaser .eyebrow { color: var(--gold-soft); }
.bespoke-teaser .section-lede { color: rgba(247, 243, 236, 0.75); }
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; border-top: 1px solid rgba(255,255,255,0.12); }
.step-card {
  padding: 36px 28px 36px 0; border-right: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 14px; position: relative;
  cursor: pointer;
}
.step-card:last-child { border-right: 0; }
.step-card .step-num {
  font-family: var(--serif); font-size: 13px; color: var(--gold-soft);
  letter-spacing: 0.18em; font-weight: 500;
}
.step-card .step-title {
  font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1;
}
.step-card .step-copy {
  font-size: 13.5px; line-height: 1.55; color: rgba(247, 243, 236, 0.72);
}

/* === Testimonials === */
.testimonials { background: var(--pearl); }
.testimonial {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px;
  align-items: center; min-height: 320px;
}
.testimonial-quote {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18; letter-spacing: -0.01em; color: var(--onyx); font-weight: 400;
}
.testimonial-quote::before { content: "\201C"; color: var(--champagne); margin-right: 4px; }
.testimonial-quote::after { content: "\201D"; color: var(--champagne); margin-left: 2px; }
.testimonial-meta {
  display: flex; flex-direction: column; gap: 6px; margin-top: 32px;
}
.testimonial-name { font-size: 13px; font-weight: 600; color: var(--onyx); letter-spacing: 0.04em; }
.testimonial-source { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--charcoal); }
.testimonial-right {
  padding: 36px; background: var(--paper); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
}
.testimonial-stars { display: flex; gap: 4px; color: var(--champagne); font-size: 14px; }
.testimonial-pager {
  display: flex; gap: 8px; margin-top: 32px;
}
.pager-dot {
  width: 28px; height: 2px; background: var(--line); border: 0; padding: 0; cursor: pointer;
}
.pager-dot.active { background: var(--onyx); }

/* === Showroom cards === */
.showroom-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.showroom-card {
  background: var(--paper); border: 1px solid var(--line);
  display: flex; flex-direction: column; cursor: pointer;
  transition: border-color .15s ease;
}
.showroom-card:hover { border-color: var(--champagne); }
.showroom-card-frame {
  aspect-ratio: 4/3; background: var(--charcoal); position: relative; overflow: hidden;
}
.showroom-card-frame img { width: 100%; height: 100%; object-fit: cover; }
.showroom-card-flag {
  position: absolute; top: 14px; left: 14px;
  background: var(--paper); padding: 5px 10px;
  font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--onyx);
}
.showroom-card-flag.flagship { background: var(--champagne); }
.showroom-card-body { padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.showroom-card-name {
  font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 1.1;
}
.showroom-card-addr { font-size: 13px; line-height: 1.5; color: var(--charcoal); }
.showroom-card-hours { font-size: 12px; color: var(--charcoal); display: flex; gap: 8px; align-items: center; }
.showroom-card-cta {
  display: flex; gap: 14px; padding-top: 14px; border-top: 1px solid var(--line-soft);
  font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
}
.showroom-card-cta a { display: inline-flex; gap: 6px; align-items: center; color: var(--onyx); }
.showroom-card-cta a:hover { color: var(--champagne-deep); }

/* === Sticky CTA bar === */
.bottom-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: var(--onyx); color: var(--ivory);
  display: flex; align-items: center; gap: 16px;
  padding: 14px 24px;
  transform: translateY(100%); transition: transform .35s ease;
}
.bottom-bar.visible { transform: translateY(0); }
.bottom-bar-text {
  flex: 1; font-size: 13px; letter-spacing: 0.02em;
}
.bottom-bar-text strong { font-weight: 600; }
.bottom-bar-text .accent { color: var(--gold-soft); }
.bottom-bar-cta {
  display: flex; gap: 10px;
}

/* === WhatsApp FAB === */
.fab-wa {
  position: fixed; right: 24px; bottom: 96px; z-index: 55;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white; border: 0;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 32px -8px rgba(37, 211, 102, 0.5), 0 2px 6px rgba(0,0,0,.12);
  cursor: pointer; transition: transform .2s ease;
}
.fab-wa:hover { transform: scale(1.06); }
.fab-wa-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  white-space: nowrap; background: var(--onyx); color: var(--ivory);
  padding: 8px 14px; font-size: 12px; letter-spacing: 0.04em;
  opacity: 0; pointer-events: none; transition: opacity .15s ease;
}
.fab-wa:hover .fab-wa-tooltip { opacity: 1; }

/* === Footer === */
.footer {
  background: var(--onyx); color: rgba(247, 243, 236, 0.7);
  padding: 80px 0 32px 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer h4 {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-soft); margin: 0 0 18px 0; font-weight: 500;
}
.footer a { color: rgba(247, 243, 236, 0.7); display: block; padding: 6px 0; font-size: 13px; }
.footer a:hover { color: var(--ivory); }
.footer-brand-line {
  font-family: var(--serif); font-size: 28px; color: var(--ivory); margin-bottom: 16px; font-weight: 500;
}
.footer-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; font-size: 11.5px; letter-spacing: 0.04em;
}

/* === Bespoke page === */
.bespoke-hero {
  background: var(--onyx); color: var(--ivory);
  padding: calc(var(--header-h) + 80px) 0 100px 0;
  position: relative; overflow: hidden;
}
.bespoke-hero .container { position: relative; z-index: 2; }
.bespoke-hero h1 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(48px, 6vw, 92px);
  line-height: 1; letter-spacing: -0.015em; margin: 18px 0 0 0; max-width: 14ch;
}
.bespoke-hero h1 em { font-style: italic; color: var(--gold-soft); }
.bespoke-hero .lede {
  font-size: 17px; line-height: 1.6; color: rgba(247, 243, 236, 0.75);
  max-width: 540px; margin-top: 28px;
}
.bespoke-stepper {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px;
  align-items: start;
}
.bespoke-stepper-rail {
  display: flex; flex-direction: column; gap: 4px;
  position: sticky; top: calc(var(--header-h) + 24px);
}
.stepper-item {
  padding: 22px 24px; border-left: 2px solid var(--line);
  cursor: pointer; transition: all .25s ease; display: flex;
  flex-direction: column; gap: 6px;
  background: transparent;
  border-right: 0; border-top: 0; border-bottom: 0;
  font: inherit; text-align: left; width: 100%;
}
.stepper-item:hover { border-left-color: var(--gold-soft); }
.stepper-item.active {
  border-left-color: var(--champagne); background: var(--pearl);
}
.stepper-num {
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--charcoal); font-weight: 500;
}
.stepper-item.active .stepper-num { color: var(--champagne-deep); }
.stepper-name {
  font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 1.1; color: var(--onyx);
}
.stepper-blurb {
  font-size: 13px; color: var(--charcoal); line-height: 1.5; margin-top: 4px;
}
.bespoke-stage {
  background: var(--pearl); padding: 48px;
  border: 1px solid var(--line); min-height: 540px;
  display: flex; flex-direction: column; gap: 28px;
  position: relative; overflow: hidden;
}
.bespoke-stage-img {
  aspect-ratio: 16/9; background: var(--ivory); border: 1px solid var(--line);
  position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.bespoke-stage h3 {
  font-family: var(--serif); font-size: 36px; font-weight: 500; line-height: 1.1;
  margin: 0; color: var(--onyx);
}
.bespoke-stage p {
  font-size: 15.5px; line-height: 1.65; color: var(--charcoal); margin: 0;
}
.bespoke-stage .detail-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 24px; margin-top: 8px;
}
.bespoke-stage .detail {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px; background: var(--paper); border: 1px solid var(--line-soft);
}
.bespoke-stage .detail-label {
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--charcoal);
}
.bespoke-stage .detail-value {
  font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--onyx);
}

/* === Forms === */
.form {
  display: grid; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--charcoal); font-weight: 500;
}
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 14px;
  padding: 14px 16px; border: 1px solid var(--line);
  background: var(--paper); color: var(--onyx);
  border-radius: 0; transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--champagne);
}
.field textarea { min-height: 96px; resize: vertical; font-family: var(--sans); }
.field-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 14px; border: 1px solid var(--line); background: var(--paper);
  font-size: 12.5px; color: var(--charcoal); cursor: pointer; transition: all .15s ease;
}
.chip:hover { border-color: var(--onyx); color: var(--onyx); }
.chip.active { background: var(--onyx); color: var(--ivory); border-color: var(--onyx); }
.chip-gold.active { background: var(--champagne); border-color: var(--champagne); color: var(--ink); }

/* === Heritage === */
.heritage-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  align-items: stretch; min-height: 80vh;
}
.heritage-hero-left {
  padding: 120px 64px;
  background: var(--ivory); display: flex; flex-direction: column; justify-content: center;
}
.heritage-hero-right { background: var(--charcoal); position: relative; overflow: hidden; }
.heritage-hero-right img { width: 100%; height: 100%; object-fit: cover; }

.heritage-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--pearl); border-block: 1px solid var(--line);
}
.heritage-stat {
  padding: 56px 32px; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.heritage-stat:last-child { border-right: 0; }
.heritage-stat-num {
  font-family: var(--serif); font-size: 64px; line-height: 1;
  font-weight: 400; color: var(--onyx);
}
.heritage-stat-num em { font-style: italic; color: var(--champagne-deep); }
.heritage-stat-label {
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--charcoal);
}
.heritage-stat-desc { font-size: 13px; color: var(--charcoal); line-height: 1.5; margin-top: 4px; }

/* === Misc === */
.tagline-vertical {
  position: absolute; left: 32px; top: 50%; transform: translateY(-50%);
  writing-mode: vertical-rl; rotate: 180deg;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--charcoal);
}

.subnav {
  background: var(--pearl); border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.subnav-inner {
  display: flex; gap: 28px; align-items: center; overflow-x: auto;
}
.subnav-link {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  padding: 6px 0; color: var(--charcoal); cursor: pointer; white-space: nowrap;
  border-bottom: 1px solid transparent;
}
.subnav-link:hover, .subnav-link.active { color: var(--onyx); border-color: var(--champagne); }

.page-head {
  padding: calc(var(--header-h) + 64px) 0 56px 0; background: var(--ivory);
}
.page-head h1 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(44px, 5.5vw, 80px);
  line-height: 1; letter-spacing: -0.015em; margin: 16px 0 0 0; color: var(--onyx);
}
.page-head h1 em { font-style: italic; color: var(--champagne-deep); }
.page-head .lede {
  font-size: 17px; line-height: 1.6; color: var(--charcoal);
  max-width: 560px; margin-top: 22px;
}

.collection-controls {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  padding: 28px 0; border-block: 1px solid var(--line);
  background: var(--paper);
}
.collection-controls-inner {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center; width: 100%;
}

.gia-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border: 1px solid var(--emerald); color: var(--emerald);
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  background: rgba(31, 92, 70, 0.06);
}

.review-pip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border: 1px solid var(--line);
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em; color: var(--charcoal);
  background: var(--paper);
}

/* === Animations === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* No-op by default — content is static. Add `.anim-on` to an ancestor to opt in if needed. */
.fade-up { opacity: 1; transform: none; }
.anim-on .fade-up { animation: fadeUp .55s ease both; }
.anim-on .fade-up.delay-1 { animation-delay: .06s; }
.anim-on .fade-up.delay-2 { animation-delay: .14s; }
.anim-on .fade-up.delay-3 { animation-delay: .22s; }
.anim-on .fade-up.delay-4 { animation-delay: .30s; }

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* === Responsive — tablet (720–1100): tighten, keep desktop layout) === */
@media (max-width: 1180px) {
  .nav-inner { padding: 0 20px; gap: 16px; }
  .nav-links { gap: 22px; }
  .nav-link { font-size: 11.5px; letter-spacing: 0.10em; }
  .nav-logo-sub { display: none; }
  .nav-right .btn { padding: 12px 16px; font-size: 12px; }
  .container, .container-narrow { padding: 0 24px; }
  .hero-left { padding: 64px 36px; }
  .hero-title { font-size: clamp(40px, 5.8vw, 70px); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 32px; }
}

/* === Mobile (<= 760px) — single column === */
@media (max-width: 760px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-left { padding: 96px 24px 48px; }
  .hero-right { min-height: 56vh; }
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-right .btn { display: none; }
  .nav-right .nav-icon-btn { width: 38px; height: 38px; }
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
  .trust-item { border-right: 0; padding: 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .step-card { padding: 24px 16px 24px 0; }
  .testimonial { grid-template-columns: 1fr; gap: 28px; }
  .showroom-row { grid-template-columns: 1fr; }
  .bespoke-stepper { grid-template-columns: 1fr; gap: 28px; }
  .bespoke-stepper-rail { position: relative; top: 0; }
  .heritage-hero { grid-template-columns: 1fr; }
  .heritage-hero-left { padding: 96px 24px 56px; }
  .heritage-stats { grid-template-columns: repeat(2, 1fr); }
  .heritage-stat { border-bottom: 1px solid var(--line); padding: 36px 20px; }
  .heritage-stat-num { font-size: 44px; }
  .container, .container-narrow { padding: 0 20px; }
  .section, .section-lg { padding: 72px 0; }
  .section-head { margin-bottom: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .bottom-bar { padding: 12px 16px; gap: 10px; flex-wrap: wrap; }
  .bottom-bar-text { font-size: 12px; flex-basis: 100%; }
  .bottom-bar-cta .btn { padding: 10px 14px; font-size: 11.5px; }
  .fab-wa { right: 16px; bottom: 92px; width: 50px; height: 50px; }
  /* Page sub-grids that used 2-col */
  main section .container > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; gap: 32px !important; }
}
