/*
  CLIENT: Chemmanur International Jewellers (since 1863)
  TYPE: Heritage multi-showroom jewellery house, Kerala + Middle East
  ART DIRECTION: "The Chemmanur Codex" — a printed jewellery catalogue, c.1900,
                 cut with Mattancherry palace mural pigments. Cream lithograph paper,
                 lampblack ink, vermillion seal, matte gold-leaf, dye-master indigo.
                 Plate-numbered, fleuron-ornamented, page-bordered. The complete
                 OPPOSITE of editorial-Fraunces "luxury minimalism". This is a
                 BOOK. Open it. Read it. Print it. Hand it to a bride's mother.
  PALETTE:
    Cream paper     #F4E8CC  — saffron-tinted manuscript base
    Cream-deep      #E8D6A6  — warm secondary
    Lampblack       #1A0F08  — body ink (slight red shift, never pure black)
    Sepia ink       #4A2F1C  — secondary text
    Vermillion      #B0291A  — the actual Chemmanur red (from their wordmark)
    Vermillion-deep #851F12  — hover/active
    Gold-leaf       #A88030  — MATTE gold (Tibetan-leaf, not casino-foil)
    Gold-leaf-bright#C99A3F  — accent gold
    Indigo          #1F2D52  — dye-master accent
    Indigo-deep     #131D38  — dark contrast
  TYPOGRAPHY (intentionally distinct from any prior Shijil mockup):
    Display:  Bodoni Moda Variable (9..144 opsz) — razor didone, jewellery-magazine
    Caps:     Marcellus — Roman inscription, used for plate numbering & date stamps
    Body:     Lora Variable — warm Indian-publishing serif, NOT Boska/Switzer
  DENSITY: Maximalist where mural pages allow; restrained on product plates.
  MOOD: Catalogue, codex, kasavu border, gopura silhouette, brass weighing scale.
  HARD RULES: NO Lenis. NO Roman numerals. Mobile QA at 375 & 414.
*/

/* ============================================================
   TOKENS — CREAM DEFAULT, indigo "evening edition" optional
   ============================================================ */
:root,
[data-theme="light"] {
  --paper:        #F4E8CC;
  --paper-deep:   #E8D6A6;
  --paper-edge:   #DAC58B;
  --surface:      #FBF3DE;
  --plate:        #F8EDD0;
  --rule:         #C7A968;
  --rule-soft:    #DCC58F;

  --ink:          #1A0F08;
  --ink-soft:     #4A2F1C;
  --ink-mute:     #7A5C3F;

  --red:          #B0291A;
  --red-deep:     #851F12;
  --red-soft:     #C45446;

  --gold:         #A88030;
  --gold-bright:  #C99A3F;
  --gold-deep:    #7A5A20;

  --indigo:       #1F2D52;
  --indigo-deep:  #131D38;

  --shadow-page:  0 1px 0 var(--paper-edge), 0 12px 28px rgba(74,47,28,.10);
  --shadow-plate: inset 0 0 0 1px var(--rule-soft), 0 1px 0 var(--paper-edge), 0 18px 44px rgba(74,47,28,.14);
  --shadow-card:  0 2px 0 var(--paper-edge), 0 20px 50px rgba(74,47,28,.12);
}

[data-theme="dark"] {
  --paper:        #0F1424;
  --paper-deep:   #131A30;
  --paper-edge:   #1A2240;
  --surface:      #131A30;
  --plate:        #182142;
  --rule:         #2B3866;
  --rule-soft:    #1F284A;

  --ink:          #F4E8CC;
  --ink-soft:     #D7C49A;
  --ink-mute:     #8E7F5F;

  --red:          #D85240;
  --red-deep:     #B43726;
  --red-soft:     #E97C6E;

  --gold:         #C99A3F;
  --gold-bright:  #E5B968;
  --gold-deep:    #A88030;

  --indigo:       #5F7BB9;
  --indigo-deep:  #4060A2;

  --shadow-page:  0 2px 14px rgba(0,0,0,.5);
  --shadow-plate: inset 0 0 0 1px rgba(201,154,63,.22), 0 18px 44px rgba(0,0,0,.55);
  --shadow-card:  0 2px 0 rgba(0,0,0,.4), 0 20px 50px rgba(0,0,0,.55);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Lora", "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* subtle paper-grain texture */
  background-image:
    radial-gradient(circle at 20% 30%, rgba(168,128,48,.04) 0, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(176,41,26,.03) 0, transparent 35%),
    repeating-linear-gradient(0deg, rgba(74,47,28,.012) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(74,47,28,.012) 0 1px, transparent 1px 3px);
  transition: background-color .4s ease, color .4s ease;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: "Bodoni Moda", "Bodoni Moda 96pt", "Bodoni 72", "Didot", "Playfair Display", serif;
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  letter-spacing: -0.012em;
  line-height: 1.02;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: 1.2rem; }
p { margin: 0; max-width: 62ch; }
em, .italic { font-style: italic; }
::selection { background: var(--red); color: var(--paper); }

/* utility */
.codex { max-width: 1360px; margin: 0 auto; padding: 0 5vw; }

/* ============================================================
   ORNAMENT — fleuron, kalamkari rule, plate badge
   ============================================================ */
.fleuron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold);
  font-family: "Marcellus", serif;
}
.fleuron::before,
.fleuron::after {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: .65;
}
.fleuron .star { font-size: 14px; opacity: .85; }
.kalamkari-rule {
  position: relative;
  height: 22px;
  margin: 64px auto;
  max-width: 1100px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.kalamkari-rule::before,
.kalamkari-rule::after {
  content: "";
  flex: 1;
  height: 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: 2px 0;
  opacity: .55;
}
.kalamkari-rule .ornament {
  width: 88px; height: 22px;
  color: var(--gold);
}
.plate-no {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--red);
}
.plate-no::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.eyebrow {
  font-family: "Marcellus", serif;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 400;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--red);
}
.lede {
  font-family: "Lora", serif;
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  line-height: 1.7;
  color: var(--ink-soft);
  font-style: italic;
  font-weight: 400;
  max-width: 56ch;
}
.serif-italic {
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  color: var(--red);
  font-variation-settings: "opsz" 72;
}

/* ============================================================
   BUTTONS — engraved, with serif label
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 30px;
  font-family: "Marcellus", serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--ink);
  background: var(--paper);
  position: relative;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
}
.btn::after {
  /* engraved outline */
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid currentColor;
  opacity: .25;
  pointer-events: none;
  transition: opacity .3s ease;
}
.btn:hover { color: var(--paper); background: var(--ink); transform: translateY(-2px); }
.btn:hover::after { opacity: .45; border-color: var(--paper); }

.btn-red {
  background: var(--red);
  color: var(--paper);
  border-color: var(--red);
}
.btn-red:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Marcellus", serif;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
  padding: 6px 0;
  border-bottom: 1px solid var(--red);
  transition: all .3s ease;
}
.btn-link:hover { color: var(--ink); border-color: var(--ink); gap: 16px; }

/* ============================================================
   HEADER — Plate header with double rule + kasavu border
   ============================================================ */
.plate-header {
  background: var(--paper);
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--rule);
  box-shadow: var(--shadow-page);
}
.plate-header::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: transparent;
}
.gold-rate-bar {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 0;
  overflow: hidden;
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
}
.gold-rate-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 60px, rgba(201,154,63,.08) 60px 61px);
  pointer-events: none;
}
.rate-track {
  display: flex;
  width: max-content;
  animation: rate-tick 70s linear infinite;
  gap: 0;
}
.rate-set { display: flex; }
.rate-pill {
  padding: 0 30px;
  border-right: 1px solid rgba(201,154,63,.25);
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.rate-pill .city { color: var(--gold-bright); }
.rate-pill .value { color: var(--paper); font-family: "Bodoni Moda", serif; font-size: 14px; letter-spacing: 0; font-weight: 600; }
.rate-pill .unit { color: rgba(244,232,204,.5); font-size: 10px; }
@keyframes rate-tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.codex-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 22px 5vw;
  max-width: 1440px;
  margin: 0 auto;
}
.codex-nav .crest {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--ink);
}
.crest-mark { width: 56px; height: 56px; flex-shrink: 0; }
.crest-text { display: flex; flex-direction: column; line-height: 1; }
.crest-title {
  font-family: "Bodoni Moda", serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  font-variation-settings: "opsz" 48;
}
.crest-sub {
  font-family: "Marcellus", serif;
  font-size: 9.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 6px;
}

.codex-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.codex-nav-links a {
  font-family: "Marcellus", serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 0;
  position: relative;
  transition: color .3s ease;
}
.codex-nav-links a:hover { color: var(--red); }
.codex-nav-links a.active { color: var(--red); }
.codex-nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.codex-nav-right { display: flex; align-items: center; gap: 14px; }
.theme-toggle {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: all .3s ease;
}
.theme-toggle:hover { background: var(--ink); color: var(--paper); }
.theme-toggle i { width: 16px; height: 16px; }

.burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--ink);
  background: transparent;
}
.burger span {
  width: 20px;
  height: 1px;
  background: var(--ink);
  transition: all .3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.codex-mobile {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 49;
  padding: 120px 8vw 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .35s ease, visibility 0s linear .5s;
  pointer-events: none;
}
.codex-mobile.open {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .35s ease, visibility 0s linear 0s;
}
.codex-mobile a {
  font-family: "Bodoni Moda", serif;
  font-size: 32px;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.codex-mobile a:hover { color: var(--red); font-style: italic; }
.codex-mobile-foot {
  margin-top: auto;
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   HERO — "Frontispiece"
   ============================================================ */
.frontispiece {
  position: relative;
  padding: 80px 5vw 60px;
  max-width: 1440px;
  margin: 0 auto;
}
.frontispiece-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: start;
}
.title-block { position: relative; padding: 32px 0 0; }
.title-block .plate-no { margin-bottom: 28px; }
.title-block h1 {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 144;
  font-size: clamp(3.4rem, 7.6vw, 6.4rem);
  line-height: 0.98;
  font-weight: 400;
  margin: 0 0 32px;
  color: var(--ink);
  letter-spacing: -0.018em;
}
.title-block h1 .acc-red {
  font-style: italic;
  font-variation-settings: "opsz" 96;
  color: var(--red);
  font-weight: 400;
}
.title-block h1 .acc-gold {
  font-style: italic;
  font-variation-settings: "opsz" 96;
  color: var(--gold);
  font-weight: 400;
}
.title-block .lede {
  margin: 0 0 36px;
  font-size: 19px;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 50ch;
  line-height: 1.7;
}
.title-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.title-foot {
  display: flex;
  gap: 36px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  position: relative;
}
.title-foot::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0; right: 0;
  border-top: 1px solid var(--rule);
}
.title-foot-item { display: flex; flex-direction: column; gap: 4px; }
.title-foot-item .num {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 96;
  font-size: 32px;
  color: var(--ink);
  line-height: 1;
  font-weight: 500;
}
.title-foot-item .label {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
}
.frontispiece-plate {
  position: relative;
  border: 1px solid var(--rule);
  background: var(--plate);
  padding: 16px;
  box-shadow: var(--shadow-plate);
}
.frontispiece-plate::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid var(--gold);
  opacity: .55;
  pointer-events: none;
}
.frontispiece-plate-inner {
  aspect-ratio: 4/5;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(201,154,63,.55), rgba(168,128,48,.18) 38%, transparent 70%),
    radial-gradient(ellipse at 50% 70%, rgba(176,41,26,.22), transparent 65%),
    linear-gradient(170deg, #F2DDA5 0%, #E2C887 60%, #C7A769 100%);
  overflow: hidden;
}
.engraved-bridal { position: absolute; inset: 0; display: grid; place-items: center; }
.engraved-bridal svg { width: 76%; height: auto; filter: drop-shadow(0 4px 18px rgba(74,47,28,.18)); }
.frontispiece-plate .plate-caption {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}
.frontispiece-plate .plate-caption strong {
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--red);
}
.house-seal {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 110px;
  height: 110px;
  background: var(--red);
  color: var(--paper);
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(133,31,18,.35), inset 0 0 0 2px var(--paper), inset 0 0 0 3px var(--red);
  transform: rotate(-12deg);
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.4;
  padding: 14px;
}
.house-seal strong {
  display: block;
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  margin: 2px 0;
}
.frontispiece-signature {
  margin: 80px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--rule);
  position: relative;
}
.frontispiece-signature::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0; right: 0;
  border-top: 1px solid var(--rule);
}
.frontispiece-signature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.signature-item { display: flex; flex-direction: column; gap: 6px; }
.signature-item .label {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
}
.signature-item .value {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 28;
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}

/* ============================================================
   TODAYS RATE BLOCK
   ============================================================ */
.todays-rate {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.todays-rate::before {
  content: "";
  position: absolute;
  top: 14px; left: 0; right: 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  height: 5px;
  opacity: .6;
}
.todays-rate::after {
  content: "";
  position: absolute;
  bottom: 14px; left: 0; right: 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  height: 5px;
  opacity: .6;
}
.todays-rate-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}
.todays-rate-title {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 72;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--paper);
}
.todays-rate-title em { color: var(--gold-bright); font-style: italic; }
.todays-rate-sub {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
}
.todays-rate-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 18px;
}
.rate-card {
  border: 1px solid rgba(201,154,63,.35);
  padding: 22px 22px 20px;
  background: rgba(244,232,204,.04);
  position: relative;
}
.rate-card-city {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 12px;
}
.rate-card-value {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 48;
  font-size: 28px;
  color: var(--paper);
  font-weight: 500;
  line-height: 1;
}
.rate-card-meta {
  font-family: "Lora", serif;
  font-size: 11.5px;
  font-style: italic;
  color: rgba(244,232,204,.65);
  margin-top: 6px;
}
.rate-card .delta {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--red-soft);
  position: absolute;
  top: 16px;
  right: 16px;
}

/* ============================================================
   PORTFOLIO — Six plates in a portfolio
   ============================================================ */
.portfolio { padding: 120px 0; position: relative; }
.portfolio-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.portfolio-head h2 {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.portfolio-head h2 em { color: var(--red); font-style: italic; }
.portfolio-head .lede { font-size: 17px; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px 24px;
}
.plate-card {
  background: var(--plate);
  border: 1px solid var(--rule);
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all .5s cubic-bezier(.2,.7,.2,1);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
}
.plate-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid var(--gold);
  opacity: .45;
  pointer-events: none;
  transition: opacity .4s ease;
}
.plate-card:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(74,47,28,.18); }
.plate-card:hover::before { opacity: .85; }
.plate-card.span-7 { grid-column: span 7; }
.plate-card.span-5 { grid-column: span 5; }
.plate-card.span-6 { grid-column: span 6; }
.plate-card.span-4 { grid-column: span 4; }
.plate-card.span-8 { grid-column: span 8; }
.plate-illustration {
  aspect-ratio: 16/11;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(201,154,63,.6), rgba(168,128,48,.18) 38%, transparent 72%),
    linear-gradient(170deg, #EDDAA0 0%, #DDC57E 60%, #BDA15E 100%);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.plate-illustration svg { width: 60%; height: auto; filter: drop-shadow(0 4px 12px rgba(74,47,28,.18)); }
.plate-illustration[data-bg="diamond"] {
  background:
    radial-gradient(ellipse at 50% 45%, rgba(255,250,235,.6), rgba(220,210,180,.2) 40%, transparent 70%),
    linear-gradient(170deg, #EAE3CC 0%, #D8CCAA 60%, #AFA37E 100%);
}
.plate-illustration[data-bg="gold-coin"] {
  background:
    radial-gradient(circle at 50% 50%, rgba(201,154,63,.8), rgba(168,128,48,.35) 40%, transparent 70%),
    linear-gradient(170deg, #E8C97A 0%, #C8A65A 60%, #9A7C38 100%);
}
.plate-illustration[data-bg="platinum"] {
  background:
    radial-gradient(ellipse at 50% 45%, rgba(220,220,235,.6), rgba(170,180,200,.2) 35%, transparent 70%),
    linear-gradient(170deg, #DAD4C0 0%, #B8B49E 60%, #807D6A 100%);
}
.plate-illustration[data-bg="bespoke"] {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(201,154,63,.45), transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(176,41,26,.32), transparent 50%),
    linear-gradient(170deg, #EBD8A4 0%, #C9A560 60%, #8A6A2A 100%);
}
.plate-illustration[data-bg="mens"] {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(74,47,28,.6), rgba(31,45,82,.4) 50%, transparent 75%),
    linear-gradient(170deg, #C9A560 0%, #8A6A2A 60%, #4E3A14 100%);
}
.plate-illustration[data-bg="gift"] {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(176,41,26,.55), rgba(133,31,18,.25) 45%, transparent 72%),
    linear-gradient(170deg, #E2A892 0%, #C46A56 60%, #851F12 100%);
}
.plate-body { padding: 22px 8px 6px; display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.plate-body .plate-no { font-size: 10px; }
.plate-body h3 {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 96;
  font-size: 32px;
  font-weight: 500;
  margin: 0;
  line-height: 1.05;
}
.plate-body h3 em { font-style: italic; color: var(--red); }
.plate-card.span-7 .plate-body h3,
.plate-card.span-8 .plate-body h3 { font-size: 42px; }
.plate-body p {
  font-family: "Lora", serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
.plate-body .btn-link { align-self: flex-start; margin-top: 6px; }

/* ============================================================
   FOLIO — Chronicle / Book Spread
   ============================================================ */
.folio {
  padding: 120px 0;
  background: var(--paper-deep);
  position: relative;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.folio::before {
  content: "";
  position: absolute;
  top: 6px; left: 0; right: 0;
  border-top: 1px solid var(--rule);
}
.folio::after {
  content: "";
  position: absolute;
  bottom: 6px; left: 0; right: 0;
  border-top: 1px solid var(--rule);
}
.folio-head { text-align: center; margin-bottom: 72px; }
.folio-head .eyebrow { justify-content: center; }
.folio-head h2 {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-top: 18px;
}
.folio-head h2 em { color: var(--red); font-style: italic; }
.folio-head .lede { margin: 24px auto 0; text-align: center; }
.folio-spread {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.folio-page {
  background: var(--plate);
  border: 1px solid var(--rule);
  padding: 36px 32px 32px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.folio-page::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid var(--gold);
  opacity: .35;
  pointer-events: none;
}
.folio-page-no {
  position: absolute;
  bottom: 18px;
  right: 24px;
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
}
.folio-year {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 144;
  font-size: 78px;
  font-style: italic;
  color: var(--red);
  line-height: 1;
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.folio-page h3 {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 48;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
}
.folio-page p {
  font-family: "Lora", serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
.folio-page.feature { background: var(--ink); color: var(--paper); }
.folio-page.feature::before { border-color: var(--gold-bright); opacity: .55; }
.folio-page.feature .folio-year { color: var(--gold-bright); }
.folio-page.feature h3 { color: var(--paper); }
.folio-page.feature p { color: rgba(244,232,204,.85); }
.folio-page.feature .folio-page-no { color: rgba(244,232,204,.5); }

/* ============================================================
   ATELIER — Bespoke section, full-bleed dark plate
   ============================================================ */
.atelier-book {
  padding: 120px 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.atelier-book .eyebrow { color: var(--gold-bright); }
.atelier-book .eyebrow::before { background: var(--gold-bright); }
.atelier-book-grid {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.atelier-book-grid h2 {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 18px 0 28px;
}
.atelier-book-grid h2 em { color: var(--gold-bright); font-style: italic; }
.atelier-book-grid .lede { color: rgba(244,232,204,.78); font-size: 18px; max-width: 50ch; }
.atelier-steps { margin: 40px 0 36px; }
.atelier-steps li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(201,154,63,.25);
}
.atelier-steps li:last-child { border-bottom: 1px solid rgba(201,154,63,.25); }
.atelier-steps li .step-num {
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-variation-settings: "opsz" 72;
  font-size: 36px;
  color: var(--gold-bright);
  line-height: 1;
}
.atelier-steps li h4 {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 48;
  font-size: 22px;
  font-weight: 500;
  color: var(--paper);
  margin: 0 0 6px;
}
.atelier-steps li p {
  font-family: "Lora", serif;
  font-size: 15px;
  color: rgba(244,232,204,.7);
  line-height: 1.65;
}
.atelier-book-illu {
  position: relative;
  border: 1px solid var(--gold);
  padding: 22px;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(201,154,63,.45), transparent 65%),
    linear-gradient(170deg, #2A1A0E 0%, #100804 100%);
  aspect-ratio: 4/5;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.atelier-book-illu::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid var(--gold-bright);
  opacity: .35;
}
.atelier-book-illu-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.atelier-book-illu svg { width: 70%; filter: drop-shadow(0 4px 30px rgba(201,154,63,.4)); }
.atelier-book-illu .plate-caption {
  position: absolute;
  bottom: 20px;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.atelier-book-illu .plate-caption strong {
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold-bright);
}

/* ============================================================
   AMBASSADORS — Notebook spread
   ============================================================ */
.ambassadors-book {
  padding: 120px 0;
  background: var(--paper);
  position: relative;
}
.ambassadors-head { text-align: center; margin-bottom: 64px; }
.ambassadors-head .eyebrow { justify-content: center; }
.ambassadors-head h2 {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 1.02;
  margin-top: 18px;
}
.ambassadors-head h2 em { color: var(--red); font-style: italic; }
.ambassadors-head .lede { margin: 24px auto 0; }
.ambassadors-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
}
.amb-marker {
  padding: 36px 32px 32px;
  border: 1px solid var(--rule);
  background: var(--plate);
  position: relative;
  box-shadow: var(--shadow-card);
}
.amb-marker::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--gold);
  opacity: .35;
  pointer-events: none;
}
.amb-marker .amb-year {
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-variation-settings: "opsz" 96;
  font-size: 30px;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.amb-marker h3 {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 48;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--ink);
}
.amb-marker p {
  font-family: "Lora", serif;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.amb-headliner {
  background: var(--ink);
  color: var(--paper);
}
.amb-headliner::before { border-color: var(--gold-bright); opacity: .55; }
.amb-headliner .amb-quote {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 72;
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--paper);
  margin: 0 0 24px;
}
.amb-headliner .amb-quote::before {
  content: "\201C";
  font-family: "Bodoni Moda", serif;
  font-size: 78px;
  font-style: italic;
  color: var(--gold-bright);
  line-height: 0;
  display: block;
  margin-bottom: 28px;
}
.amb-headliner cite {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--gold-bright);
  text-transform: uppercase;
  font-style: normal;
}

/* ============================================================
   SCHEMES — gold-savings catalog ads
   ============================================================ */
.schemes-book {
  padding: 120px 0;
  background: var(--paper-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.schemes-book::before { content:""; position: absolute; top: 6px; left:0; right:0; border-top: 1px solid var(--rule); }
.schemes-book::after  { content:""; position: absolute; bottom: 6px; left:0; right:0; border-top: 1px solid var(--rule); }
.schemes-head { text-align: center; margin-bottom: 64px; }
.schemes-head .eyebrow { justify-content: center; }
.schemes-head h2 {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 1.02;
  margin-top: 18px;
}
.schemes-head h2 em { color: var(--red); font-style: italic; }
.schemes-head .lede { margin: 24px auto 0; }
.schemes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.scheme-plate {
  background: var(--plate);
  border: 1px solid var(--rule);
  padding: 44px 36px 36px;
  position: relative;
  transition: all .4s ease;
  box-shadow: var(--shadow-card);
}
.scheme-plate::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid var(--gold);
  opacity: .35;
  pointer-events: none;
}
.scheme-plate:hover { transform: translateY(-4px); }
.scheme-plate:hover::before { opacity: .7; }
.scheme-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  color: var(--red);
  border-radius: 50%;
}
.scheme-icon::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border: 1px solid var(--red);
  border-radius: 50%;
  opacity: .35;
  pointer-events: none;
}
.scheme-icon i { width: 22px; height: 22px; }
.scheme-plate h3 {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 72;
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 14px;
  color: var(--ink);
}
.scheme-plate h3 em { color: var(--red); font-style: italic; }
.scheme-plate p {
  font-family: "Lora", serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.scheme-meta {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: block;
}

/* ============================================================
   DOORS — Showroom directory
   ============================================================ */
.doors-book {
  padding: 120px 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.doors-head {
  max-width: 1360px;
  margin: 0 auto 64px;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: end;
  gap: 32px;
}
.doors-head .eyebrow { color: var(--gold-bright); }
.doors-head .eyebrow::before { background: var(--gold-bright); }
.doors-head h2 {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.02;
  margin-top: 18px;
  max-width: 24ch;
  color: var(--paper);
}
.doors-head h2 em { color: var(--gold-bright); font-style: italic; }
.doors-head .lede { color: rgba(244,232,204,.72); margin: 0; }
.doors-grid {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.doors-col {
  padding: 32px 28px;
  border: 1px solid rgba(201,154,63,.35);
  background: rgba(244,232,204,.03);
  position: relative;
}
.doors-col::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--gold-bright);
  opacity: .25;
  pointer-events: none;
}
.doors-col h4 {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201,154,63,.35);
}
.doors-col ul li {
  font-family: "Lora", serif;
  font-size: 15px;
  color: var(--paper);
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,154,63,.12);
}
.doors-col ul li em {
  display: block;
  font-style: normal;
  font-family: "Marcellus", serif;
  font-size: 9px;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-top: 3px;
}
.doors-promise-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(201,154,63,.12);
}
.doors-promise-list li i {
  width: 16px;
  height: 16px;
  color: var(--gold-bright);
}
.doors-promise-list li span {
  font-family: "Lora", serif;
  font-size: 14px;
  color: var(--paper);
}

/* ============================================================
   VOICES — Quoted testimony
   ============================================================ */
.voices-book {
  padding: 120px 0;
  background: var(--paper);
  position: relative;
}
.voices-head { text-align: center; margin-bottom: 64px; }
.voices-head .eyebrow { justify-content: center; }
.voices-head h2 {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 1.02;
  margin-top: 18px;
}
.voices-head h2 em { color: var(--red); font-style: italic; }
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.voice-plate {
  padding: 44px 36px 32px;
  border: 1px solid var(--rule);
  background: var(--plate);
  position: relative;
  box-shadow: var(--shadow-card);
}
.voice-plate::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid var(--gold);
  opacity: .35;
  pointer-events: none;
}
.voice-plate::after {
  content: "\201C";
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-size: 100px;
  color: var(--gold);
  position: absolute;
  top: 8px;
  left: 28px;
  line-height: 0.7;
  opacity: .55;
}
.voice-plate blockquote {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 28;
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  margin: 0 0 28px;
  color: var(--ink);
  position: relative;
  z-index: 1;
  padding-top: 24px;
}
.voice-plate figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.voice-plate figcaption strong {
  font-family: "Marcellus", serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.voice-plate figcaption span {
  font-family: "Lora", serif;
  font-size: 13px;
  font-style: italic;
  color: var(--ink-soft);
}

/* ============================================================
   VISIT BAND — Booking
   ============================================================ */
.visit-book {
  padding: 120px 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  border-top: 1px solid var(--gold);
}
.visit-book-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.visit-book-left h2 {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  line-height: 1.04;
  margin: 18px 0 24px;
  color: var(--paper);
}
.visit-book-left h2 em { color: var(--gold-bright); font-style: italic; }
.visit-book-left .lede { color: rgba(244,232,204,.78); font-size: 17px; }
.visit-book-left .eyebrow { color: var(--gold-bright); }
.visit-book-left .eyebrow::before { background: var(--gold-bright); }
.visit-book-meta { margin-top: 40px; display: flex; flex-direction: column; gap: 18px; }
.visit-book-meta-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}
.visit-book-meta-item i { width: 18px; height: 18px; color: var(--gold-bright); margin-top: 3px; }
.visit-book-meta-item .label {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 4px;
}
.visit-book-meta-item .value {
  font-family: "Lora", serif;
  font-size: 15.5px;
  color: var(--paper);
  line-height: 1.5;
}
.visit-form-plate {
  position: relative;
  background: rgba(244,232,204,.04);
  border: 1px solid var(--gold);
  padding: 40px;
}
.visit-form-plate::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--gold-bright);
  opacity: .35;
  pointer-events: none;
}
.visit-form-plate h3 {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 48;
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  color: var(--gold-bright);
  margin-bottom: 28px;
}
.visit-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.visit-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.visit-form-grid input,
.visit-form-grid select,
.visit-form-grid textarea {
  background: rgba(26,15,8,.55);
  border: 1px solid var(--gold);
  padding: 14px 16px;
  font-family: "Lora", serif;
  font-size: 15.5px;
  color: var(--paper);
  outline: none;
  transition: border-color .3s ease;
}
.visit-form-grid input::placeholder,
.visit-form-grid textarea::placeholder { color: rgba(244,232,204,.4); font-style: italic; }
.visit-form-grid input:focus,
.visit-form-grid select:focus,
.visit-form-grid textarea:focus { border-color: var(--gold-bright); }
.visit-form-grid .full { grid-column: span 2; }
.visit-form-grid button { grid-column: span 2; justify-self: start; }
.visit-thanks {
  grid-column: span 2;
  font-family: "Marcellus", serif;
  font-size: 11px;
  color: var(--gold-bright);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .4s ease;
}
.visit-thanks.on { opacity: 1; }

/* ============================================================
   FOOTER — colophon
   ============================================================ */
.colophon {
  background: #0E0805;
  color: rgba(244,232,204,.78);
  padding: 80px 5vw 36px;
  border-top: 1px solid var(--gold);
  position: relative;
}
.colophon::before {
  content: "";
  position: absolute;
  top: 6px; left: 5vw; right: 5vw;
  border-top: 1px solid var(--gold);
  opacity: .5;
}
.colophon-top {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(201,154,63,.2);
}
.colophon-brand { display: flex; flex-direction: column; gap: 22px; }
.colophon-logo {
  width: 60px;
  height: 60px;
  color: var(--gold-bright);
}
.colophon-tag {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 48;
  font-size: 22px;
  line-height: 1.4;
  color: var(--paper);
}
.colophon-tag em { color: var(--gold-bright); font-style: italic; }
.colophon-since {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold-bright);
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}
.colophon-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}
.colophon-cols h5 {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 18px;
  font-weight: 400;
}
.colophon-cols p,
.colophon-cols a {
  font-family: "Lora", serif;
  font-size: 14.5px;
  color: rgba(244,232,204,.78);
  line-height: 1.85;
}
.colophon-cols a:hover { color: var(--gold-bright); }
.colophon-bottom {
  max-width: 1440px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: "Marcellus", serif;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244,232,204,.5);
}
.colophon-bottom .credit a { color: var(--gold-bright); }
.colophon-bottom .credit a:hover { color: var(--paper); }

/* ============================================================
   INNER PAGE HEROES (Bridal / Diamond / Gold / Heritage / etc.)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 80px 5vw 90px;
  max-width: 1440px;
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
}
.page-hero::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 5vw; right: 5vw;
  border-top: 1px solid var(--rule);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.page-hero h1 {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 144;
  font-size: clamp(3rem, 6.4vw, 5.6rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.018em;
  margin: 28px 0 28px;
}
.page-hero h1 em {
  font-variation-settings: "opsz" 96;
  font-style: italic;
  color: var(--red);
  font-weight: 400;
}
.page-hero h1 .gold-acc {
  font-style: italic;
  font-variation-settings: "opsz" 96;
  color: var(--gold);
}
.page-hero .lede { font-size: 19px; margin: 0 0 36px; max-width: 50ch; }
.page-hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.page-hero-plate {
  position: relative;
  border: 1px solid var(--rule);
  background: var(--plate);
  padding: 16px;
  box-shadow: var(--shadow-plate);
  aspect-ratio: 4/5;
}
.page-hero-plate::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid var(--gold);
  opacity: .55;
  pointer-events: none;
}
.page-hero-plate-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.page-hero-plate-inner svg {
  width: 70%;
  filter: drop-shadow(0 6px 22px rgba(74,47,28,.18));
}
.page-hero-plate .plate-caption {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}
.page-hero-plate .plate-caption strong {
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--red);
}
.bg-bridal     .page-hero-plate-inner { background: radial-gradient(ellipse at 50% 40%, rgba(201,154,63,.6), rgba(176,41,26,.18) 40%, transparent 72%), linear-gradient(170deg, #F2DDA5 0%, #C99A3F 100%); }
.bg-diamond    .page-hero-plate-inner { background: radial-gradient(ellipse at 50% 40%, rgba(255,250,235,.55), rgba(220,210,180,.18) 40%, transparent 72%), linear-gradient(170deg, #EAE3CC 0%, #AFA37E 100%); }
.bg-gold       .page-hero-plate-inner { background: radial-gradient(circle at 50% 50%, rgba(201,154,63,.7), rgba(168,128,48,.3) 40%, transparent 72%), linear-gradient(170deg, #E8C97A 0%, #9A7C38 100%); }
.bg-heritage   .page-hero-plate-inner { background: radial-gradient(ellipse at 30% 40%, rgba(176,41,26,.4), transparent 55%), radial-gradient(ellipse at 70% 70%, rgba(31,45,82,.4), transparent 55%), linear-gradient(170deg, #DAC58B 0%, #7A5A20 100%); }
.bg-schemes    .page-hero-plate-inner { background: radial-gradient(ellipse at 50% 40%, rgba(201,154,63,.55), rgba(168,128,48,.18) 40%, transparent 72%), linear-gradient(170deg, #F2E1B0 0%, #B8923E 100%); }
.bg-doors      .page-hero-plate-inner { background: radial-gradient(ellipse at 50% 40%, rgba(31,45,82,.45), rgba(19,29,56,.18) 40%, transparent 72%), linear-gradient(170deg, #D9C58B 0%, #4A6090 100%); }
.bg-visit      .page-hero-plate-inner { background: radial-gradient(ellipse at 50% 40%, rgba(176,41,26,.5), rgba(133,31,18,.18) 40%, transparent 72%), linear-gradient(170deg, #E8B89C 0%, #851F12 100%); }

/* breadcrumb-style page meta strip */
.page-meta {
  background: var(--paper-deep);
  border-bottom: 1px solid var(--rule);
  padding: 14px 5vw;
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
}
.page-meta a { color: var(--red); }
.page-meta .sep { margin: 0 14px; color: var(--gold); }

/* ============================================================
   COLLECTION GRID (used on Bridal / Diamond / Gold pages)
   ============================================================ */
.collection-section {
  padding: 100px 0;
}
.collection-section.alt { background: var(--paper-deep); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.collection-head {
  text-align: center;
  margin-bottom: 60px;
}
.collection-head .eyebrow { justify-content: center; }
.collection-head h2 {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  margin-top: 18px;
}
.collection-head h2 em { color: var(--red); font-style: italic; }
.collection-head .lede { margin: 22px auto 0; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-card {
  background: var(--plate);
  border: 1px solid var(--rule);
  padding: 18px;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: all .4s ease;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid var(--gold);
  opacity: .35;
  pointer-events: none;
  transition: opacity .4s ease;
}
.product-card:hover { transform: translateY(-4px); }
.product-card:hover::before { opacity: .7; }
.product-illu {
  aspect-ratio: 4/5;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(201,154,63,.55), rgba(168,128,48,.18) 40%, transparent 70%),
    linear-gradient(170deg, #EDDAA0 0%, #BDA15E 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.product-illu svg { width: 65%; filter: drop-shadow(0 4px 14px rgba(74,47,28,.18)); }
.product-body {
  padding: 22px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-body .plate-no { font-size: 10px; margin-bottom: 4px; }
.product-body h3 {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 48;
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  line-height: 1.15;
}
.product-body h3 em { font-style: italic; color: var(--red); }
.product-body p {
  font-family: "Lora", serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid var(--rule);
}
.product-meta .price {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 48;
  font-style: italic;
  font-size: 20px;
  color: var(--red);
}
.product-meta .gram {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* split feature row */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}
.feature-row.flip > div:first-child { order: 2; }
.feature-row .feature-plate {
  position: relative;
  border: 1px solid var(--rule);
  padding: 16px;
  background: var(--plate);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-plate);
}
.feature-row .feature-plate::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid var(--gold);
  opacity: .5;
  pointer-events: none;
}
.feature-row .feature-plate-inner {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: radial-gradient(ellipse at 50% 42%, rgba(201,154,63,.5), transparent 65%), linear-gradient(170deg, #EDDAA0 0%, #BDA15E 100%);
}
.feature-row .feature-plate-inner svg { width: 65%; filter: drop-shadow(0 6px 18px rgba(74,47,28,.18)); }
.feature-row h3 {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 144;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  margin: 20px 0 18px;
  font-weight: 400;
  line-height: 1.05;
}
.feature-row h3 em { color: var(--red); font-style: italic; }
.feature-row p {
  font-family: "Lora", serif;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

/* ============================================================
   THE FOUR C-S TABLE (Diamond page)
   ============================================================ */
.fourcs {
  padding: 100px 0;
  background: var(--paper-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.fourcs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fourcs-card {
  border: 1px solid var(--rule);
  background: var(--plate);
  padding: 36px 28px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.fourcs-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--gold);
  opacity: .35;
  pointer-events: none;
}
.fourcs-card .big-letter {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 144;
  font-style: italic;
  font-size: 110px;
  color: var(--red);
  line-height: 0.8;
  font-weight: 400;
  margin-bottom: 14px;
}
.fourcs-card h3 {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 48;
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 500;
}
.fourcs-card p {
  font-family: "Lora", serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ============================================================
   FAQ (Schemes page)
   ============================================================ */
.faq-section { padding: 100px 0; }
.faq-grid {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--rule);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 48;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-q::after {
  content: "+";
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-size: 32px;
  color: var(--red);
  line-height: 1;
  transition: transform .35s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-family: "Lora", serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease, margin-top .35s ease, opacity .4s ease;
  opacity: 0;
}
.faq-item.open .faq-a {
  max-height: 400px;
  margin-top: 16px;
  opacity: 1;
}

/* ============================================================
   HERITAGE PAGE — Founder column + awards table
   ============================================================ */
.founder-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  padding: 100px 0;
}
.founder-text h2 {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.04;
  margin: 18px 0 28px;
}
.founder-text h2 em { color: var(--red); font-style: italic; }
.founder-text p {
  font-family: "Lora", serif;
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 60ch;
}
.founder-text p strong { color: var(--ink); font-weight: 600; }
.founder-quote {
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-variation-settings: "opsz" 72;
  font-size: 26px;
  color: var(--red);
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding: 12px 0 12px 28px;
  margin: 32px 0;
}
.founder-portrait {
  position: relative;
  border: 1px solid var(--rule);
  padding: 16px;
  background: var(--plate);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-plate);
}
.founder-portrait::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid var(--gold);
  opacity: .55;
  pointer-events: none;
}
.founder-portrait-inner {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(176,41,26,.4), transparent 60%),
    radial-gradient(ellipse at 50% 75%, rgba(31,45,82,.4), transparent 55%),
    linear-gradient(170deg, #C9A560 0%, #7A5A20 100%);
}
.founder-portrait .plate-caption {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}
.founder-portrait .plate-caption strong {
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--red);
}

/* awards / accolades table */
.awards-table {
  padding: 100px 0;
  background: var(--paper-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.awards-list {
  max-width: 900px;
  margin: 0 auto;
}
.award-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 32px;
  align-items: baseline;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
}
.award-row:last-child { border-bottom: 1px solid var(--rule); }
.award-row .year {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 72;
  font-style: italic;
  font-size: 30px;
  color: var(--red);
}
.award-row h4 {
  font-family: "Bodoni Moda", serif;
  font-variation-settings: "opsz" 48;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.2;
}
.award-row p {
  font-family: "Lora", serif;
  font-size: 14.5px;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
}
.award-row .award-label {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   REVEAL — fail-safe (CLAUDE.md hard rule)
   ============================================================ */
.reveal { transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal--hidden { opacity: 0; transform: translateY(34px); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--hidden, .reveal.in { opacity: 1 !important; transform: none !important; transition: none !important; }
  .rate-track { animation: none; }
}

/* ============================================================
   RESPONSIVE — tablet 1024 / mobile 768 / small 380
   ============================================================ */
@media (max-width: 1100px) {
  .codex-nav-links { display: none; }
  .burger { display: flex; }
  .codex-nav-right .nav-cta { display: none; }

  .frontispiece-grid { grid-template-columns: 1fr; gap: 56px; }
  .frontispiece-signature-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .todays-rate-inner { grid-template-columns: 1fr; gap: 48px; }
  .todays-rate-list { grid-template-columns: repeat(2, 1fr); }
  .portfolio-head { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(6, 1fr); }
  .plate-card.span-7, .plate-card.span-8 { grid-column: span 6; }
  .plate-card.span-5, .plate-card.span-4 { grid-column: span 6; }
  .plate-card.span-6 { grid-column: span 6; }
  .folio-spread { grid-template-columns: 1fr 1fr; }
  .atelier-book-grid { grid-template-columns: 1fr; gap: 48px; }
  .ambassadors-grid { grid-template-columns: 1fr 1fr; }
  .schemes-grid { grid-template-columns: 1fr; }
  .doors-head { grid-template-columns: 1fr; }
  .doors-grid { grid-template-columns: 1fr 1fr; }
  .voices-grid { grid-template-columns: 1fr; }
  .visit-book-grid { grid-template-columns: 1fr; gap: 48px; }
  .colophon-top { grid-template-columns: 1fr; gap: 40px; }
  .colophon-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .feature-row, .feature-row.flip { grid-template-columns: 1fr; gap: 48px; }
  .feature-row.flip > div:first-child { order: 0; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .fourcs-grid { grid-template-columns: 1fr 1fr; }
  .founder-spread { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .crest-sub { display: none; }
  .codex-nav { padding: 16px 6vw; gap: 12px; }
  .crest-mark { width: 44px; height: 44px; }
  .crest-title { font-size: 20px; }
  .rate-pill { padding: 0 18px; }
  .rate-pill .value { font-size: 12.5px; }
  .frontispiece { padding: 50px 6vw 50px; }
  .title-block h1 { font-size: clamp(2.4rem, 11.5vw, 3.6rem); margin-bottom: 22px; }
  .title-block .lede { font-size: 16.5px; }
  .title-cta .btn { width: 100%; justify-content: center; }
  .title-foot { gap: 18px; flex-wrap: wrap; }
  .title-foot-item .num { font-size: 26px; }
  .house-seal { width: 88px; height: 88px; top: -22px; right: -10px; font-size: 9px; padding: 10px; }
  .house-seal strong { font-size: 18px; }
  .frontispiece-signature-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .todays-rate { padding: 56px 0; }
  .todays-rate-list { grid-template-columns: 1fr 1fr; gap: 16px; }
  .rate-card { padding: 18px 16px 16px; }
  .rate-card-value { font-size: 22px; }
  .portfolio, .folio, .atelier-book, .ambassadors-book, .schemes-book, .doors-book, .voices-book, .visit-book { padding: 70px 0; }
  .portfolio-head h2 { font-size: 2.4rem; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 18px; padding: 0 6vw; }
  .plate-card.span-7, .plate-card.span-8, .plate-card.span-5, .plate-card.span-4, .plate-card.span-6 { grid-column: auto; }
  .plate-card { padding: 14px; }
  .plate-card::before { inset: 14px; }
  .plate-body { padding: 18px 6px 4px; }
  .plate-card.span-7 .plate-body h3, .plate-card.span-8 .plate-body h3 { font-size: 28px; }
  .plate-body h3 { font-size: 24px; }
  .folio-head h2 { font-size: 2.2rem; }
  .folio-spread { grid-template-columns: 1fr; gap: 18px; padding: 0 6vw; }
  .folio-page { padding: 28px 24px; }
  .folio-year { font-size: 56px; margin-bottom: 18px; }
  .atelier-book-grid { padding: 0 6vw; }
  .atelier-book-grid h2 { font-size: 2.2rem; }
  .atelier-steps li { grid-template-columns: 56px 1fr; padding: 18px 0; }
  .atelier-steps li .step-num { font-size: 28px; }
  .ambassadors-head h2, .schemes-head h2, .voices-head h2 { font-size: 2.2rem; }
  .ambassadors-grid { grid-template-columns: 1fr; gap: 18px; padding: 0 6vw; }
  .amb-marker { padding: 28px 24px; }
  .amb-headliner .amb-quote { font-size: 20px; }
  .schemes-grid { padding: 0 6vw; gap: 18px; }
  .scheme-plate { padding: 32px 26px; }
  .scheme-plate h3 { font-size: 24px; }
  .doors-head { padding: 0 6vw; }
  .doors-head h2 { font-size: 2rem; }
  .doors-grid { grid-template-columns: 1fr; gap: 18px; padding: 0 6vw; }
  .doors-col { padding: 26px 22px; }
  .voices-grid { padding: 0 6vw; }
  .voice-plate { padding: 36px 28px 28px; }
  .visit-book-grid { padding: 0 6vw; gap: 40px; }
  .visit-book-left h2 { font-size: 2rem; }
  .visit-form-plate { padding: 26px; }
  .visit-form-grid { grid-template-columns: 1fr; gap: 14px; }
  .visit-form-grid .full, .visit-form-grid button, .visit-thanks { grid-column: auto; }
  .colophon { padding: 60px 6vw 28px; }
  .colophon-cols { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .colophon-bottom { flex-direction: column; align-items: flex-start; font-size: 8.5px; }
  .page-hero { padding: 56px 6vw 60px; }
  .page-hero h1 { font-size: clamp(2.2rem, 10vw, 3.4rem); }
  .product-grid { grid-template-columns: 1fr; gap: 18px; padding: 0 6vw; }
  .fourcs-grid { grid-template-columns: 1fr; gap: 16px; padding: 0 6vw; }
  .fourcs-card { padding: 30px 26px; }
  .fourcs-card .big-letter { font-size: 80px; }
  .feature-row { padding: 60px 0; gap: 40px; }
  .founder-spread { padding: 60px 0; }
  .founder-text h2 { font-size: 2rem; }
  .founder-quote { font-size: 20px; padding-left: 20px; }
  .awards-table { padding: 70px 0; }
  .award-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .award-row .award-label { justify-self: start; }
  .faq-q { font-size: 18px; gap: 14px; }
  .faq-q::after { font-size: 26px; }
}

@media (max-width: 380px) {
  .codex-nav { padding: 14px 5vw; }
  .crest-title { font-size: 18px; }
  .title-block h1 { font-size: 2.2rem; }
  .house-seal { display: none; }
  .rate-pill { padding: 0 14px; font-size: 10px; }
}

/* ============================================================
   REAL PHOTOGRAPHY IN CATALOGUE PLATES
   ============================================================ */
.plate-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* plate inners that now hold a photo: kill the gradient + center grid */
.frontispiece-plate-inner.has-photo,
.page-hero-plate-inner.has-photo,
.feature-plate-inner.has-photo,
.atelier-book-illu-inner.has-photo,
.founder-portrait-inner.has-photo {
  background: #1A0F08 !important;
  display: block;
  padding: 0;
}
.product-illu.has-photo,
.plate-illustration.has-photo {
  background: #F2DDA5;
  padding: 0;
}
.product-illu.has-photo .plate-photo,
.plate-illustration.has-photo .plate-photo { aspect-ratio: inherit; }
/* warm sepia wash over photos to bind them to the codex palette */
.plate-photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.plate-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(168,128,48,.10) 0%, transparent 40%),
    linear-gradient(0deg, rgba(26,15,8,.30) 0%, transparent 38%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.product-illu .plate-photo-wrap::after { background: linear-gradient(0deg, rgba(26,15,8,.12) 0%, transparent 30%); }

/* zoom-on-hover for product + portfolio photos */
.product-card .plate-photo,
.plate-card .plate-photo,
.feature-plate .plate-photo { transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .plate-photo,
.plate-card:hover .plate-photo,
.feature-row:hover .plate-photo { transform: scale(1.06); }

/* ============================================================
   REAL LOGO — header crest + footer + hero seal
   ============================================================ */
.crest-logo-img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--rule), 0 2px 8px rgba(74,47,28,.15);
  background: #14213F;
}
[data-theme="dark"] .crest-logo-img { box-shadow: 0 0 0 1px var(--gold), 0 2px 10px rgba(0,0,0,.4); }

/* real logo used as the hero house-seal (replaces CSS wax seal) */
.house-seal-real {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(20,15,30,.4), 0 0 0 4px var(--paper), 0 0 0 5px var(--rule);
  background: #14213F;
  transform: rotate(-6deg);
  z-index: 3;
}

.colophon-logo-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--gold-bright);
  background: #14213F;
}

/* storefront band — heritage / doors */
.storefront-band {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5vw;
}
.storefront-frame {
  position: relative;
  border: 1px solid var(--rule);
  padding: 14px;
  background: var(--plate);
  box-shadow: var(--shadow-plate);
}
.storefront-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--gold);
  opacity: .5;
  pointer-events: none;
  z-index: 2;
}
.storefront-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.storefront-cap {
  position: absolute;
  bottom: 30px;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--paper);
  text-shadow: 0 1px 6px rgba(0,0,0,.8);
  z-index: 3;
}
.storefront-cap strong {
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
}

/* ============================================================
   FOUNDER HOUSE-SEAL (heritage) — real crest as embossed seal
   ============================================================ */
.founder-portrait-inner.seal-mode {
  background:
    radial-gradient(ellipse at 50% 38%, rgba(201,154,63,.30), transparent 62%),
    linear-gradient(170deg, #16213F 0%, #0E1730 100%) !important;
  display: grid;
  place-items: center;
  padding: 0;
}
.founder-seal-stack { display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; padding: 32px; }
.founder-seal-stack img {
  width: 168px; height: 168px; border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(201,154,63,.5), 0 14px 40px rgba(0,0,0,.4);
  background: #14213F;
}
.founder-seal-stack .seal-line {
  font-family: "Marcellus", serif; font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-bright);
}
.founder-seal-stack .seal-estd {
  font-family: "Bodoni Moda", serif; font-style: italic; font-size: 30px;
  color: #F4E8CC; line-height: 1; font-variation-settings: "opsz" 72;
}
