/* ────────────────────────────────────────────────────────────
   LAWSON — fine jewelry · design tokens & global styles
   ──────────────────────────────────────────────────────────── */

:root {
  /* Cinematic noir palette — chosen because Lawson's photography
     is high-contrast black-bg studio work + the brand's identity
     leans into gold/diamond brilliance on dark grounds. */
  --noir: #0c0a08;
  --ink: #161310;
  --soot: #1f1b16;
  --ivory: #f7f1e6;
  --bone: #ece3d2;
  --paper: #f3ecdf;
  --line: rgba(247,241,230,0.14);
  --line-dark: rgba(20,16,12,0.12);

  /* metals — set as a default; tweakable */
  --gold: #b8954e;
  --gold-deep: #8a6e32;
  --gold-soft: #d8b878;
  --rose: #c79b87;
  --white-gold: #d5d2c8;

  --accent: var(--gold);
  --accent-deep: var(--gold-deep);

  /* type */
  --serif: "Cormorant Garamond", "Cormorant", "EB Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* rhythm */
  --maxw: 1440px;
  --gut: 56px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--ivory); color: var(--ink); }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.005em;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }

/* ─── Layout helpers ─── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.wrap-wide { max-width: 1640px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }
.section-tight { padding: 80px 0; }

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

.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.96;
}

.display-italic { font-style: italic; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }

.tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.mono-price {
  font-family: var(--sans);
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 30px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 240ms cubic-bezier(.22,.61,.36,1);
  white-space: nowrap;
}
.btn .arrow {
  display: inline-block;
  width: 14px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width 240ms ease;
}
.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);
}
.btn:hover .arrow { width: 22px; }

.btn-primary {
  background: var(--accent);
  color: var(--noir);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--ivory); }

.btn-ghost-light {
  color: var(--ivory);
  border-color: rgba(247,241,230,0.4);
}
.btn-ghost-light:hover { border-color: var(--ivory); background: rgba(247,241,230,0.06); }

.btn-ghost-dark {
  color: var(--ink);
  border-color: rgba(20,16,12,0.3);
}
.btn-ghost-dark:hover { border-color: var(--ink); background: rgba(20,16,12,0.04); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
}

/* ─── Navbar ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 22px 0;
  transition: background 320ms ease, padding 320ms ease, color 320ms ease;
  color: var(--ivory);
}
.nav.nav-light { color: var(--ink); }
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a { position: relative; padding: 6px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width 240ms ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; justify-content: flex-end; align-items: center; gap: 28px; }
.nav-icon { width: 18px; height: 18px; opacity: 0.85; cursor: pointer; }
.nav-icon:hover { opacity: 1; }

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 11px 22px;
  border: 1px solid currentColor;
  transition: all 220ms ease;
}
.nav-cta:hover { background: var(--accent); color: var(--noir); border-color: var(--accent); }

.wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.36em;
  text-indent: 0.36em;
  display: inline-flex;
  align-items: baseline;
}
.wordmark .wm-diamond {
  display: inline-block;
  width: 0.6em; height: 0.6em;
  background: currentColor;
  transform: rotate(45deg);
  margin: 0 0.1em;
  position: relative;
  top: -0.05em;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  background: var(--noir);
  color: var(--ivory);
  min-height: 100vh;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  min-height: 100vh;
}
.hero-text {
  padding: 180px 60px 100px 88px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--gold-soft);
}
.hero-eyebrow .dot {
  width: 5px; height: 5px; background: var(--gold);
  transform: rotate(45deg);
}

.hero h1 {
  font-size: clamp(64px, 7.4vw, 116px);
  line-height: 0.96;
  font-weight: 400;
  margin: 36px 0 0 0;
  letter-spacing: -0.012em;
  color: var(--ivory);
}
.hero h1 em { font-style: italic; color: var(--gold-soft); font-weight: 300; }
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  margin-top: 28px;
  color: rgba(247,241,230,0.78);
  max-width: 420px;
  line-height: 1.45;
}
.hero-ctas { display: flex; gap: 16px; margin-top: 56px; }

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(247,241,230,0.55);
  gap: 40px;
}
.hero-meta .scroll-cue {
  display: flex; align-items: center; gap: 10px;
}
.hero-meta .scroll-cue .line {
  width: 36px; height: 1px; background: currentColor;
}

.hero-img-wrap {
  position: relative;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--noir) 0%, transparent 22%, transparent 78%, rgba(12,10,8,0.4) 100%),
    linear-gradient(180deg, rgba(12,10,8,0.25) 0%, transparent 30%, transparent 70%, rgba(12,10,8,0.55) 100%);
}

.hero-piece-label {
  position: absolute;
  right: 32px;
  bottom: 32px;
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247,241,230,0.7);
  z-index: 3;
}
.hero-piece-label .piece-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ivory);
  display: block;
  margin-bottom: 6px;
}

/* hero variant: editorial */
.hero[data-variant="editorial"] { background: var(--ivory); color: var(--ink); }
.hero[data-variant="editorial"] .hero-img-overlay {
  background:
    linear-gradient(90deg, rgba(247,241,230,0.9) 0%, transparent 35%, transparent 100%);
}
.hero[data-variant="editorial"] h1 { color: var(--ink); }
.hero[data-variant="editorial"] h1 em { color: var(--gold-deep); }
.hero[data-variant="editorial"] .hero-sub { color: rgba(20,16,12,0.7); }
.hero[data-variant="editorial"] .hero-meta { color: rgba(20,16,12,0.5); }
.hero[data-variant="editorial"] .hero-piece-label { color: rgba(20,16,12,0.55); }
.hero[data-variant="editorial"] .hero-piece-label .piece-name { color: var(--ink); }

/* hero variant: split */
.hero[data-variant="split"] .hero-grid { grid-template-columns: 1fr 1fr; }

/* ─── Ethos strip ─── */
.ethos {
  background: var(--noir);
  color: var(--ivory);
  padding: 38px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ethos-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.ethos-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247,241,230,0.78);
}
.ethos-item .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-soft);
  letter-spacing: 0;
}

/* ─── Section header ─── */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 80px;
}
.section-head .left .eyebrow { margin-bottom: 24px; display: block; }
.section-head h2 {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.0;
  margin: 0;
  max-width: 12ch;
}
.section-head .right {
  padding-bottom: 8px;
  max-width: 440px;
  justify-self: end;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(20,16,12,0.72);
}
.section-head h2 em { font-style: italic; color: var(--gold-deep); }

/* ─── Collections ─── */
.collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--noir);
}
.collection-card .img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.collection-card .img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(.22,.61,.36,1);
}
.collection-card:hover .img-wrap img { transform: scale(1.04); }
.collection-card .img-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(12,10,8,0.78) 100%);
}

.collection-card .body {
  position: absolute;
  left: 32px; right: 32px; bottom: 32px;
  color: var(--ivory);
  z-index: 2;
}
.collection-card .roman {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-soft);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.collection-card h3 {
  font-size: 56px;
  letter-spacing: 0.04em;
  margin: 0 0 14px 0;
  font-weight: 500;
}
.collection-card .mantra {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(247,241,230,0.82);
  max-width: 26ch;
  margin-bottom: 20px;
}
.collection-card .more {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(247,241,230,0.4);
  transition: border-color 240ms ease;
}
.collection-card:hover .more { border-color: var(--gold-soft); color: var(--gold-soft); }

.collection-card .pin {
  position: absolute;
  top: 28px; left: 28px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247,241,230,0.7);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.collection-card .pin .dot {
  width: 4px; height: 4px; background: var(--gold); transform: rotate(45deg);
}

/* ─── Featured products / atelier section ─── */
.atelier {
  background: var(--paper);
  color: var(--ink);
}
.atelier .section-head .right { color: rgba(20,16,12,0.72); }

.product-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-card {
  cursor: pointer;
  position: relative;
}
.product-card .pc-img {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ivory);
  overflow: hidden;
}
.product-card .pc-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.22,.61,.36,1);
  mix-blend-mode: multiply;
}
.product-card:hover .pc-img img { transform: scale(1.03); }
.product-card .pc-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 10px;
  background: rgba(247,241,230,0.92);
  color: var(--ink);
  backdrop-filter: blur(4px);
}
.product-card .pc-quick {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  background: var(--noir);
  color: var(--ivory);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding: 12px 0;
  opacity: 0;
  transform: translateY(8px);
  transition: all 280ms ease;
}
.product-card:hover .pc-quick { opacity: 1; transform: translateY(0); }
.product-card .pc-body {
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}
.product-card .pc-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.15;
  margin-bottom: 6px;
}
.product-card .pc-meta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(20,16,12,0.55);
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-card .pc-price {
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
}
.product-card .pc-price .currency {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(20,16,12,0.5);
  margin-right: 4px;
}
.metal-dots { display: inline-flex; gap: 5px; margin-left: 4px; }
.metal-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(20,16,12,0.2);
  transition: transform 200ms ease;
}
.metal-dot.yellow { background: var(--gold); }
.metal-dot.rose { background: var(--rose); }
.metal-dot.white { background: var(--white-gold); }
.metal-dot.active { transform: scale(1.3); border-color: var(--ink); }

/* atelier filter row */
.atelier-filter {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
}
.filter-pill {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 0;
  color: rgba(20,16,12,0.5);
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: all 200ms ease;
}
.filter-pill.active {
  color: var(--ink);
  border-bottom-color: var(--accent);
}
.filter-pill:hover { color: var(--ink); }
.atelier-filter .spacer { flex: 1; }
.atelier-filter .count {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(20,16,12,0.5);
}

/* ─── Atelier story (Maison) ─── */
.maison {
  background: var(--ink);
  color: var(--ivory);
}
.maison .section-head .right { color: rgba(247,241,230,0.7); }
.maison .section-head h2 em { color: var(--gold-soft); }
.maison .eyebrow { color: var(--gold-soft); }

.maison-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.maison-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.maison-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.maison-img .caption {
  position: absolute;
  bottom: 28px; left: 28px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.maison-text { padding: 0 24px; }
.maison-text .body-copy {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.5;
  color: rgba(247,241,230,0.85);
  margin: 0 0 36px 0;
}
.maison-text .body-copy em { font-style: italic; color: var(--gold-soft); }

.founders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.founder { }
.founder .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--ivory);
  margin-bottom: 4px;
}
.founder .role {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247,241,230,0.5);
}

/* ─── Occasions (Proposals & Gifting) ─── */
.occasions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.occasion-card {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  cursor: pointer;
  background: var(--noir);
}
.occasion-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(.22,.61,.36,1);
}
.occasion-card:hover img { transform: scale(1.04); }
.occasion-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(12,10,8,0.7) 0%, rgba(12,10,8,0.3) 50%, transparent 100%);
}
.occasion-card .body {
  position: absolute;
  left: 40px; bottom: 36px; right: 40px;
  z-index: 2;
  color: var(--ivory);
}
.occasion-card h3 {
  font-size: 44px;
  margin: 8px 0 12px 0;
  font-weight: 400;
}
.occasion-card .desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(247,241,230,0.78);
  max-width: 38ch;
  margin-bottom: 22px;
}

/* ─── Appointment band ─── */
.appointment-band {
  background: var(--noir);
  color: var(--ivory);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.appointment-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.appointment-band h2 {
  font-size: clamp(40px, 4.4vw, 64px);
  margin: 0;
  line-height: 1.05;
  max-width: 18ch;
}
.appointment-band h2 em { font-style: italic; color: var(--gold-soft); }
.appointment-band .sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(247,241,230,0.7);
  margin-top: 24px;
  max-width: 50ch;
}
.appointment-band .cta-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.appointment-band .whatsapp-link {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(216,184,120,0.35);
  padding-bottom: 6px;
}
.appointment-band .whatsapp-link:hover { color: var(--ivory); border-color: var(--ivory); }

.app-decoration {
  position: absolute;
  font-family: var(--serif);
  font-size: 28vw;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  color: rgba(184,149,78,0.05);
  bottom: -8vw; left: -3vw;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
  font-weight: 400;
}

/* ─── Showrooms ─── */
.showrooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.showroom {
  border: 1px solid var(--line-dark);
  padding: 56px 48px;
  position: relative;
}
.showroom .city {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0 0 8px 0;
}
.showroom .country {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 40px;
}
.showroom .addr {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(20,16,12,0.78);
  margin-bottom: 28px;
  max-width: 28ch;
}
.showroom .meta-row {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(20,16,12,0.55);
  margin-bottom: 8px;
  display: flex;
  gap: 12px;
}
.showroom .meta-row .label { color: rgba(20,16,12,0.35); min-width: 80px; }
.showroom .meta-row .val { color: var(--ink); }
.showroom .by-appt {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.showroom .by-appt-label {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ─── Footer ─── */
.footer {
  background: var(--noir);
  color: rgba(247,241,230,0.75);
  padding: 100px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer .brand {
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: 0.36em;
  color: var(--ivory);
  margin-bottom: 18px;
}
.footer .brand-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(247,241,230,0.6);
  max-width: 36ch;
}
.footer h5 {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
  font-family: var(--sans);
  margin: 6px 0 22px 0;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 12px; font-size: 13px; }
.footer ul li a:hover { color: var(--ivory); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,241,230,0.45);
}

/* ─── Modal (appointment) ─── */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(8,6,4,0.7);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--ivory);
  color: var(--ink);
  width: 100%;
  max-width: 920px;
  max-height: 92vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  transform: translateY(20px);
  transition: transform 320ms ease;
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal-aside {
  background: var(--noir);
  color: var(--ivory);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: linear-gradient(180deg, rgba(12,10,8,0.4), rgba(12,10,8,0.9)), url('media/lifestyle-sway-necklace.webp');
  background-size: cover;
  background-position: center;
}
.modal-aside h3 {
  font-size: 40px;
  line-height: 1.05;
  margin: 24px 0 16px 0;
  color: var(--ivory);
}
.modal-aside .lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(247,241,230,0.8);
}
.modal-aside .promise {
  margin-top: auto;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.modal-form { padding: 56px 56px 48px; position: relative; }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-dark);
  cursor: pointer;
  transition: all 200ms ease;
}
.modal-close:hover { background: var(--ink); color: var(--ivory); }

.steps {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.step-pip {
  flex: 1;
  height: 2px;
  background: var(--line-dark);
  position: relative;
}
.step-pip.active { background: var(--accent); }
.step-pip.done { background: var(--accent-deep); }

.step-label {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(20,16,12,0.5);
  margin-bottom: 8px;
  font-weight: 500;
}
.modal h4 {
  font-size: 28px;
  margin: 0 0 10px 0;
  line-height: 1.15;
}
.modal h4 em { font-style: italic; color: var(--gold-deep); }
.modal .step-sub {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(20,16,12,0.6);
  margin-bottom: 32px;
}

.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(20,16,12,0.6);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  outline: none;
  transition: border-color 200ms ease;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.option-tile {
  border: 1px solid var(--line-dark);
  padding: 22px 22px;
  cursor: pointer;
  transition: all 200ms ease;
  text-align: left;
}
.option-tile:hover { border-color: var(--ink); }
.option-tile.selected { border-color: var(--accent); background: rgba(184,149,78,0.06); }
.option-tile .ot-city {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 4px;
}
.option-tile .ot-sub {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(20,16,12,0.5);
}

.modal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}
.modal-back {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(20,16,12,0.55);
  padding: 8px 0;
}
.modal-back:hover { color: var(--ink); }
.modal-back:disabled { opacity: 0.3; cursor: not-allowed; }

.success-state {
  text-align: center;
  padding: 40px 20px;
}
.success-state .check {
  width: 56px; height: 56px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.success-state h4 { font-size: 36px; }

/* ─── Quick-view drawer (product) ─── */
.qv-backdrop {
  position: fixed; inset: 0;
  background: rgba(8,6,4,0.55);
  backdrop-filter: blur(4px);
  z-index: 95;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}
.qv-backdrop.open { opacity: 1; pointer-events: auto; }
.qv-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 560px;
  background: var(--ivory);
  z-index: 96;
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(.22,.61,.36,1);
  display: flex;
  flex-direction: column;
}
.qv-drawer.open { transform: translateX(0); }
.qv-img {
  height: 56%;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.qv-img img {
  width: 100%; height: 100%; object-fit: cover;
  mix-blend-mode: multiply;
}
.qv-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.qv-body {
  padding: 36px 44px 36px;
  overflow: auto;
}
.qv-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
  font-weight: 500;
}
.qv-name {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 14px 0;
}
.qv-price {
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.qv-desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(20,16,12,0.7);
  margin-bottom: 32px;
  line-height: 1.5;
}
.qv-metals { margin-bottom: 24px; }
.qv-metals-label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(20,16,12,0.55); margin-bottom: 14px;
}
.qv-metals-row { display: flex; gap: 14px; align-items: center; }
.qv-metal-pick {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  cursor: pointer;
}
.qv-metal-pick .dot {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid rgba(20,16,12,0.2);
  transition: all 200ms ease;
}
.qv-metal-pick.active .dot {
  outline: 1px solid var(--ink);
  outline-offset: 3px;
}
.qv-metal-pick .label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(20,16,12,0.55);
}
.qv-metal-pick.active .label { color: var(--ink); }

.qv-specs {
  margin: 24px 0 32px;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.qv-spec-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 8px 0;
}
.qv-spec-row .k {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(20,16,12,0.5);
}

.qv-ctas { display: flex; gap: 12px; margin-bottom: 16px; }
.qv-ctas .btn { flex: 1; justify-content: center; }

/* ─── Cinematic title block (large LAWSON wash) ─── */
.title-wash {
  text-align: center;
  padding: 90px 0 40px;
  font-family: var(--serif);
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(20,16,12,0.18);
}

/* utility */
.hide { display: none !important; }
.center { text-align: center; }
.gold { color: var(--accent-deep); }
