/* Diana Jewellery — Design System
   Editorial + Warm Heritage
   ---------------------------------- */

:root {
  /* Palette */
  --ivory: #F7F3EC;
  --pearl: #FBF9F4;
  --bone: #EFE7D7;
  --champagne: #C8A96A;
  --gold-deep: #A8842F;
  --platinum: #D8D8D2;
  --ink: #1C1A17;
  --ink-soft: #4A453C;
  --ink-muted: #8A8273;
  --rule: #E0D7C4;
  --emerald: #1F5C4A;
  --rose-blush: #E9DDD3;

  /* Type */
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Spacing */
  --pad-x: clamp(24px, 5vw, 96px);
  --section-y: clamp(72px, 9vw, 144px);

  /* Density */
  --density: 1;
}

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

/* Type scale */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}
.eyebrow-gold { color: var(--gold-deep); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}
.display {
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
}
h1 { font-size: clamp(44px, 6vw, 88px); }
h2 { font-size: clamp(36px, 4.4vw, 64px); }
h3 { font-size: clamp(24px, 2.4vw, 34px); }
h4 { font-size: clamp(18px, 1.6vw, 22px); font-family: var(--sans); font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1em; text-wrap: pretty; }
.lead { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.5; color: var(--ink-soft); }
.small { font-size: 13px; color: var(--ink-soft); }

/* Layout */
.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
section {
  padding: var(--section-y) 0;
}

/* ----- Top utility bar ----- */
.utility {
  background: var(--ink);
  color: var(--ivory);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px var(--pad-x);
  gap: 24px;
}
.utility-msg {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.85;
}
.utility-msg::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--champagne);
}
.utility-actions {
  display: flex; gap: 22px; align-items: center;
}
.utility-actions a { opacity: 0.7; transition: opacity .2s; }
.utility-actions a:hover { opacity: 1; }
.currency-toggle {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  overflow: hidden;
}
.currency-toggle button {
  background: transparent;
  color: inherit;
  border: 0;
  padding: 3px 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  opacity: 0.55;
}
.currency-toggle button.active {
  background: var(--champagne);
  color: var(--ink);
  opacity: 1;
}

/* ----- Header / Nav ----- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247,243,236,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px var(--pad-x);
  gap: 32px;
}
.nav-left, .nav-right {
  display: flex;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-right { justify-content: flex-end; align-items: center; }
.nav a { color: var(--ink); transition: color .2s; position: relative; padding: 4px 0; }
.nav a:hover { color: var(--gold-deep); }
.nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--gold-deep);
}
.brandmark {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--ink);
  text-align: center;
  padding-left: 0.32em; /* optical centering for tracking */
}
.brandmark sup {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  font-weight: 500;
  margin-left: 6px;
  vertical-align: super;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--ivory);
  transition: all .25s ease;
  cursor: pointer;
}
.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.btn.gold {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--ink);
}
.btn.gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--ivory); }
.btn.sm { padding: 12px 20px; font-size: 11px; }
.btn .arrow {
  width: 14px; height: 1px; background: currentColor; position: relative;
}
.btn .arrow::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: gap .25s, color .25s, border-color .25s;
}
.link-arrow:hover { gap: 16px; color: var(--gold-deep); border-color: var(--gold-deep); }

/* ----- Hero ----- */
.hero {
  position: relative;
  padding: clamp(48px, 6vw, 80px) 0 clamp(64px, 8vw, 120px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.hero-headline {
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-headline .eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.hero-headline .eyebrow::before,
.hero-headline .eyebrow::after {
  content: ""; width: 36px; height: 1px; background: var(--rule);
}
.hero-image-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--pearl);
  border-radius: 0;
  overflow: hidden;
}
.hero-image-frame img {
  width: 100%; height: 100%; object-fit: cover;
}
/* Composition: large diamond on left, type on right - hero option 4 vibe */
.hero-comp {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
  margin-top: clamp(40px, 5vw, 64px);
}
.hero-product {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--pearl) 0%, var(--bone) 100%);
  overflow: hidden;
}
.hero-product img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-product::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid rgba(168,132,47,0.15);
  pointer-events: none;
}
.hero-product .badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--ivory);
  padding: 8px 14px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.hero-cta-stack {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 36px;
  justify-content: center;
}
.hero-trust {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hero-trust .cell {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid var(--rule);
}
.hero-trust .cell:last-child { border-right: 0; }
.hero-trust .num {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  color: var(--ink);
  font-weight: 500;
}
.hero-trust .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 10px;
}
.tripadvisor-mark {
  display: inline-flex; align-items: center; gap: 8px;
}
.tripadvisor-mark .dots {
  display: inline-flex; gap: 2px;
}
.tripadvisor-mark .dots span {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--emerald);
}

/* ----- Style picker ----- */
.style-picker {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 1.5vw, 24px);
  margin-top: 56px;
}
.style-tile {
  cursor: pointer;
  display: flex; flex-direction: column;
  align-items: center;
  background: var(--pearl);
  padding: 28px 16px 20px;
  transition: background .25s, transform .3s ease;
  position: relative;
  border: 1px solid transparent;
}
.style-tile:hover, .style-tile.active {
  background: var(--ivory);
  border-color: var(--rule);
  transform: translateY(-4px);
}
.style-tile.active {
  border-color: var(--champagne);
}
.style-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--ivory);
  mix-blend-mode: multiply;
}
.style-tile .name {
  font-family: var(--serif);
  font-size: 20px;
  margin-top: 18px;
  font-weight: 500;
}
.style-tile .meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
}
.style-picker-cta {
  display: flex; justify-content: center; margin-top: 48px;
}

/* ----- Category tiles ----- */
.categories {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2vw, 32px);
  margin-top: 56px;
}
.cat {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--pearl);
  transition: transform .4s ease;
}
.cat.lg { grid-column: span 7; aspect-ratio: 5/6; }
.cat.sm { grid-column: span 5; aspect-ratio: 4/5; }
.cat.wide { grid-column: span 6; aspect-ratio: 5/4; }
.cat img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.cat:hover img { transform: scale(1.04); }
.cat::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 100%);
}
.cat .cat-body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 40px);
  color: var(--ivory);
  z-index: 2;
}
.cat .cat-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 12px;
}
.cat .cat-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  font-weight: 500;
  margin-bottom: 14px;
}
.cat .cat-desc {
  font-size: 13px; opacity: 0.85; max-width: 38ch;
  margin-bottom: 18px;
}
.cat .cat-link {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--ivory); padding-bottom: 4px;
  width: max-content;
}

/* ----- Section header ----- */
.sec-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.sec-header.center {
  grid-template-columns: 1fr;
  text-align: center;
  align-items: center;
  justify-items: center;
}
.sec-header .eyebrow { display: block; margin-bottom: 16px; }
.sec-header h2 { max-width: 16ch; }
.sec-header .sec-desc {
  font-size: 16px; line-height: 1.6; color: var(--ink-soft);
  max-width: 48ch;
}

/* ----- Bespoke teaser ----- */
.bespoke-teaser {
  background: var(--ink);
  color: var(--ivory);
  padding: 0;
}
.bespoke-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.bespoke-image {
  background: var(--bone);
  position: relative;
  min-height: 560px;
  overflow: hidden;
}
.bespoke-image img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.bespoke-text {
  padding: clamp(48px, 6vw, 96px);
  display: flex; flex-direction: column; justify-content: center;
}
.bespoke-text .eyebrow { color: var(--champagne); }
.bespoke-steps {
  list-style: none;
  padding: 0;
  margin: 32px 0 40px;
  display: flex; flex-direction: column;
  gap: 0;
}
.bespoke-steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  align-items: center;
}
.bespoke-steps li:last-child { border-bottom: 1px solid rgba(255,255,255,0.15); }
.bespoke-steps .step-num {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--champagne);
  font-weight: 400;
}
.bespoke-steps .step-body strong {
  display: block; font-weight: 500; margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.bespoke-steps .step-body span {
  font-size: 13px; color: rgba(247,243,236,0.7); line-height: 1.5;
}

/* ----- Heritage block ----- */
.heritage-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.heritage-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--bone);
}
.heritage-image img { width: 100%; height: 100%; object-fit: cover; }
.heritage-text h2 { margin-bottom: 32px; }
.heritage-text blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  margin: 0 0 32px;
  padding-left: 24px;
  border-left: 2px solid var(--champagne);
  color: var(--ink);
}
.heritage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.heritage-stats .stat .num {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  color: var(--gold-deep);
  font-weight: 500;
}
.heritage-stats .stat .label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 10px;
}

/* ----- Featured products ----- */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
  margin-top: 48px;
}
.product {
  display: block;
}
.product-img {
  aspect-ratio: 1;
  background: var(--pearl);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.product:hover .product-img img { transform: scale(1.05); }
.product-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
}
.product-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 4px;
}
.product-spec {
  font-size: 12px; color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.product-price {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.product-price small { color: var(--ink-muted); font-weight: 400; }

/* ----- Testimonials ----- */
.testimonials {
  background: var(--pearl);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
  margin-top: 56px;
}
.testi {
  background: var(--ivory);
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
}
.testi .rating {
  display: inline-flex; gap: 3px;
}
.testi .rating span {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--emerald);
}
.testi blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.4;
  color: var(--ink);
  flex: 1;
}
.testi .source {
  font-size: 12px; color: var(--ink-soft);
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.testi .source strong { color: var(--ink); font-weight: 500; }

/* ----- Instagram strip ----- */
.insta {
  background: var(--ivory);
  padding-bottom: clamp(48px, 6vw, 96px);
}
.insta-header {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 32px;
}
.insta-header h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 32px);
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.insta-grid a {
  aspect-ratio: 1;
  background: var(--bone);
  overflow: hidden;
  position: relative;
  display: block;
}
.insta-grid a img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s; }
.insta-grid a:hover img { opacity: 0.85; }

/* ----- Footer ----- */
.site-footer {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(64px, 8vw, 120px) 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brandmark { color: var(--ivory); text-align: left; padding: 0; }
.footer-brand p { color: rgba(247,243,236,0.65); margin-top: 24px; max-width: 32ch; }
.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--champagne);
  margin: 0 0 20px;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.footer-col a {
  color: rgba(247,243,236,0.75);
  font-size: 14px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--champagne); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 32px;
  font-size: 12px;
  color: rgba(247,243,236,0.4);
  letter-spacing: 0.04em;
  flex-wrap: wrap; gap: 16px;
}

/* ----- WhatsApp FAB ----- */
.whatsapp-fab {
  position: fixed; right: 28px; bottom: 28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(31,92,74,0.35);
  z-index: 50;
  transition: transform .25s, box-shadow .25s;
}
.whatsapp-fab:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(31,92,74,0.45); }
.whatsapp-fab svg { width: 28px; height: 28px; }

/* ----- Page hero (sub-pages) ----- */
.page-hero {
  padding: clamp(64px, 8vw, 120px) 0 clamp(48px, 6vw, 80px);
  text-align: center;
  background: var(--pearl);
  border-bottom: 1px solid var(--rule);
}
.page-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.page-hero .eyebrow::before,
.page-hero .eyebrow::after {
  content: ""; width: 36px; height: 1px; background: var(--rule);
}
.page-hero h1 { max-width: 18ch; margin: 0 auto; }
.page-hero .lead { max-width: 56ch; margin: 24px auto 0; }

/* ----- Bespoke detail page ----- */
.bespoke-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 56px);
  margin-top: 56px;
}
.process-card {
  display: flex; flex-direction: column; gap: 18px;
}
.process-card .num {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1;
  color: var(--champagne);
  font-weight: 400;
}
.process-card .ph {
  aspect-ratio: 5/4;
  background: var(--pearl);
  overflow: hidden;
  margin-bottom: 8px;
}
.process-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.process-card h3 { font-size: 26px; }
.process-card p { color: var(--ink-soft); font-size: 14px; }

.form-card {
  background: var(--pearl);
  padding: clamp(32px, 4vw, 64px);
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-card .full { grid-column: span 2; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; color: var(--ink-soft);
}
.form-field input, .form-field select, .form-field textarea {
  font: inherit;
  font-size: 15px;
  padding: 14px 16px;
  background: var(--ivory);
  border: 1px solid var(--rule);
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
  font-family: var(--sans);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--champagne);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.upload-area {
  border: 1px dashed var(--rule);
  background: var(--ivory);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.upload-area:hover { border-color: var(--champagne); background: var(--bone); }
.upload-area .icon {
  width: 36px; height: 36px;
  border: 1px solid var(--ink); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}

/* ----- Heritage page ----- */
.heritage-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 80px);
  align-items: start;
}
.heritage-intro .col-eyebrow { padding-top: 8px; }
.heritage-intro h2 { font-size: clamp(40px, 4.5vw, 64px); }

.generations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 56px);
  margin-top: 64px;
}
.gen-card {
  display: flex; flex-direction: column;
  padding-top: 32px;
  border-top: 1px solid var(--ink);
}
.gen-card .gen-num {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
  font-style: italic;
}
.gen-card h3 { margin-bottom: 12px; }
.gen-card .era {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 24px;
}
.gen-card p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.value {
  padding: clamp(28px, 3vw, 40px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.value h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--ink);
  letter-spacing: 0;
}
.value p { color: var(--ink-soft); font-size: 14px; margin: 0; }
.value .v-num {
  font-family: var(--serif);
  font-size: 12px; color: var(--gold-deep); font-style: italic;
  margin-bottom: 14px; display: block;
}

/* ----- Visit page ----- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.visit-info { padding: clamp(40px, 5vw, 80px); }
.visit-map {
  background: var(--bone);
  position: relative;
  min-height: 560px;
  overflow: hidden;
}
.visit-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.2) contrast(1.05);
}
.visit-map > :not(iframe) {
  display: none !important;
}
.info-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
}
.info-row:first-of-type { border-top: 0; padding-top: 0; }
.info-row .lbl {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft); padding-top: 2px;
}
.info-row .val { font-size: 15px; line-height: 1.6; }
.info-row .val a { color: var(--gold-deep); border-bottom: 1px solid var(--gold-deep); padding-bottom: 1px; }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 24px;
  font-variant-numeric: tabular-nums;
}
.hours-grid .closed { color: var(--ink-muted); }

.appointment-card {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(40px, 5vw, 64px);
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.appointment-card h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  margin-bottom: 16px;
}
.appointment-card .calendar-mock {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px;
}
.appointment-card .cal-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
  font-family: var(--serif); font-size: 18px;
}
.appointment-card .cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  font-size: 12px;
  text-align: center;
}
.appointment-card .cal-grid .dn { color: rgba(247,243,236,0.4); padding: 6px 0; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; }
.appointment-card .cal-grid .d {
  padding: 8px 0; cursor: pointer;
  border: 1px solid transparent;
}
.appointment-card .cal-grid .d:hover { background: rgba(255,255,255,0.08); }
.appointment-card .cal-grid .d.off { color: rgba(247,243,236,0.25); cursor: default; }
.appointment-card .cal-grid .d.sel { background: var(--champagne); color: var(--ink); }
.appointment-card .times {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 20px;
}
.appointment-card .times button {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--ivory);
  padding: 10px 6px; font-size: 12px;
  font-variant-numeric: tabular-nums;
  transition: all .2s;
}
.appointment-card .times button:hover, .appointment-card .times button.sel {
  background: var(--champagne); color: var(--ink); border-color: var(--champagne);
}

/* Diamond marquee */
.marquee {
  background: var(--ink); color: var(--ivory);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex; gap: 64px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
}
.marquee span {
  font-family: var(--serif); font-style: italic;
  font-size: 18px;
  display: inline-flex; align-items: center; gap: 64px;
}
.marquee span::after {
  content: "✦"; color: var(--champagne); font-style: normal;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----- Tweaks panel ----- */
#tweaks-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 320px;
  background: var(--ivory);
  border: 1px solid var(--rule);
  box-shadow: 0 24px 64px rgba(28,26,23,0.18);
  z-index: 100;
  font-family: var(--sans);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s, transform .2s;
}
#tweaks-panel.open { opacity: 1; pointer-events: auto; transform: none; }
.tw-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--rule);
}
.tw-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.tw-close {
  background: transparent; border: 0; font-size: 22px; line-height: 1;
  color: var(--ink-soft); cursor: pointer; padding: 4px 8px;
}
.tw-body { padding: 16px 20px 20px; max-height: 70vh; overflow-y: auto; }
.tw-section { margin-bottom: 18px; }
.tw-section:last-child { margin-bottom: 0; }
.tw-label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 10px;
}
.tw-swatches {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
}
.tw-swatch {
  background: transparent; border: 1px solid var(--rule); padding: 10px;
  display: flex; flex-direction: column; align-items: stretch; gap: 6px;
  cursor: pointer; transition: border-color .2s;
  font-family: var(--sans);
}
.tw-swatch span {
  height: 12px; border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.06);
}
.tw-swatch em {
  font-style: normal; font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-soft);
  text-align: center; margin-top: 4px;
}
.tw-swatch.selected { border-color: var(--champagne); }
.tw-swatch.selected em { color: var(--gold-deep); }
.tw-radio { display: flex; flex-wrap: wrap; gap: 6px; }
.tw-pill {
  background: transparent;
  border: 1px solid var(--rule);
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s;
  font-family: var(--sans);
}
.tw-pill.selected {
  background: var(--ink); color: var(--ivory); border-color: var(--ink);
}

/* Dark hero variant */
body.hero-dark .hero { background: var(--ink); color: var(--ivory); }
body.hero-dark .hero h1,
body.hero-dark .hero .display,
body.hero-dark .hero .hero-trust .num { color: var(--ivory); }
body.hero-dark .hero .lead,
body.hero-dark .hero .hero-trust .label { color: rgba(247,243,236,0.7); }
body.hero-dark .hero .hero-trust { border-color: rgba(255,255,255,0.15); }
body.hero-dark .hero .hero-trust .cell { border-color: rgba(255,255,255,0.15); }
body.hero-dark .hero .btn.ghost { color: var(--ivory); border-color: var(--ivory); }
body.hero-dark .hero .btn.ghost:hover { background: var(--ivory); color: var(--ink); }
body.hero-dark .hero .eyebrow { color: var(--champagne); }
body.hero-dark .hero .eyebrow::before,
body.hero-dark .hero .eyebrow::after { background: rgba(255,255,255,0.2); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-left, .nav-right { display: none; }
  .style-picker { grid-template-columns: repeat(3, 1fr); }
  .products { grid-template-columns: repeat(2, 1fr); }
  .hero-comp { grid-template-columns: 1fr; }
  .heritage-block { grid-template-columns: 1fr; }
  .bespoke-grid { grid-template-columns: 1fr; }
  .bespoke-process { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .form-card { grid-template-columns: 1fr; }
  .form-card .full { grid-column: span 1; }
  .heritage-intro { grid-template-columns: 1fr; }
  .generations { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .categories { grid-template-columns: 1fr; }
  .cat.lg, .cat.sm, .cat.wide { grid-column: span 1; aspect-ratio: 4/5; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-trust { grid-template-columns: repeat(2, 1fr); }
  .hero-trust .cell:nth-child(2) { border-right: 0; }
  .hero-trust .cell:nth-child(1), .hero-trust .cell:nth-child(2) { border-bottom: 1px solid var(--rule); }
  .appointment-card { grid-template-columns: 1fr; }
  .sec-header { grid-template-columns: 1fr; }
}
