/* ─────────────────────────────────────────────────────────
   SILK MANDIR · House of Silk · Mavoor Road, Kozhikode
   "സിൽക്ക് മന്ദിർ — പട്ടിന്റെ ആത്മാവ്"

   Design system v2 — distinct Kerala silk house aesthetic.
   Bilingual Malayalam/English. Silk-dye palette per section.
   Kasavu-border ornament. Boska display + Switzer body.
   NO Lenis · NO Roman numerals · WCAG AA verified.
   ───────────────────────────────────────────────────────── */

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--paper); }
body {
  font-family: 'Switzer', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--beetroot); color: var(--paper); }

/* ── Design tokens — actual silk dye colors ─────────────── */
:root {
  /* paper */
  --paper:        #F4ECD7;       /* warm kasavu cream — page base */
  --paper-soft:   #EDE3C8;       /* the slightly darker tone for surfaces */
  --paper-ivory:  #FAF4E2;       /* lighter for cards on cream */

  /* silk dye accents */
  --beetroot:     #3F0F1C;       /* deep wine maroon — primary brand */
  --beetroot-dark:#290710;       /* darker tone */
  --gold:         #B07D2A;       /* kasavu gold thread */
  --gold-soft:    #C99425;       /* mustard turmeric */
  --gold-pale:    #D6AE5C;       /* pale gold for dark sections */
  --palmyra:      #3A4A2A;       /* Kerala palm green */
  --sindoor:      #A6293A;       /* sindoor red */
  --charcoal:     #1B1410;       /* night ink */
  --charcoal-soft:#2A211C;       /* slightly lifted dark */

  /* ink scale */
  --ink:          #261814;       /* primary text on cream */
  --ink-soft:     #5F4A3D;       /* secondary text */
  --ink-quiet:    #8C7A6D;       /* tertiary */

  /* rules */
  --rule:         rgba(38,24,20,.16);
  --rule-soft:    rgba(38,24,20,.08);
  --rule-gold:    rgba(176,125,42,.32);

  /* fonts */
  --f-display: 'Boska', 'Times New Roman', serif;
  --f-body:    'Switzer', system-ui, -apple-system, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;
  --f-mal:     'Noto Serif Malayalam', 'Boska', serif;

  /* spacing rhythm */
  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 12vw, 160px);

  /* motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ── Subtle silk-weave texture overlay on page ──────────── */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .035;
  background-image:
    repeating-linear-gradient(90deg, rgba(38,24,20,.6) 0 .5px, transparent .5px 3px),
    repeating-linear-gradient(0deg,  rgba(38,24,20,.4) 0 .5px, transparent .5px 4px);
  mix-blend-mode: multiply;
}

/* ── Type ───────────────────────────────────────────────── */
.t-display {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -.012em;
  line-height: 1.02;
  color: var(--ink);
}
.t-display em {
  font-style: italic;
  font-weight: 400;
  color: var(--beetroot);
}
.t-mal {
  font-family: var(--f-mal);
  font-weight: 500;
  letter-spacing: 0;
  color: var(--gold);
}
.t-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.t-eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.t-lede {
  font-family: var(--f-body);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
}
.t-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.4;
  color: var(--beetroot);
}

/* ── Kasavu border ornaments (SVG-via-CSS) ──────────────── */
.kasavu-rule {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  width: 100%;
}
.kasavu-rule::before,
.kasavu-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background:
    linear-gradient(90deg, transparent 0%, var(--gold) 6px, var(--gold) calc(100% - 6px), transparent 100%);
  position: relative;
}
.kasavu-rule .mango {
  width: 22px; height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Mango/paisley SVG inline marker */
.mango-mark {
  width: 16px; height: 16px;
  color: var(--gold);
  display: inline-block;
  vertical-align: middle;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  border: 1px solid transparent;
  border-radius: 0;            /* sharp, like a saree edge */
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .35s var(--ease);
  white-space: nowrap;
  position: relative;
}
.btn span.arr {
  display: inline-block;
  transition: transform .3s var(--ease);
}
.btn:hover span.arr { transform: translateX(5px); }

.btn--ink { background: var(--beetroot); color: var(--paper); }
.btn--ink:hover { background: var(--beetroot-dark); }
.btn--gold { background: var(--gold); color: var(--charcoal); }
.btn--gold:hover { background: var(--gold-soft); }
.btn--ghost {
  color: var(--ink); border-color: var(--ink); background: transparent;
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--paper-ghost {
  color: var(--paper); border-color: var(--paper); background: transparent;
}
.btn--paper-ghost:hover { background: var(--paper); color: var(--charcoal); }
.btn--gold-ghost {
  color: var(--gold-pale); border-color: var(--gold-pale); background: transparent;
}
.btn--gold-ghost:hover { background: var(--gold-pale); color: var(--charcoal); }

.btn-link {
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-link:hover { color: var(--beetroot); border-color: var(--beetroot); }

/* ── Loom thread — top scroll progress bar ──────────────── */
.loom-thread {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 60;
  background: transparent;
}
.loom-thread__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 100%);
  transition: width .1s linear;
  box-shadow: 0 0 8px rgba(176,125,42,.4);
}

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 2px; left: 0; right: 0;
  z-index: 50;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  transition: background .3s var(--ease), padding .3s var(--ease), backdrop-filter .3s;
}
.nav.is-scrolled {
  background: rgba(244,236,215,.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding: 12px var(--gutter);
  box-shadow: 0 1px 0 var(--rule-soft);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  position: relative;
}
.nav__brand-mark {
  width: 30px; height: 30px;
  color: var(--gold);
}
.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__brand-en {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .12em;
  color: var(--ink);
}
.nav__brand-mal {
  font-family: var(--f-mal);
  font-size: 10.5px;
  letter-spacing: .04em;
  color: var(--gold);
  margin-top: 3px;
}

.nav__links {
  display: flex;
  gap: clamp(18px, 2vw, 30px);
  justify-content: center;
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 500;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--beetroot); }
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__cta {
  font-size: 13px;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, color .2s;
  font-weight: 500;
}
.nav__cta:hover { background: var(--ink); color: var(--paper); }
.nav__cta .arr { transition: transform .3s var(--ease); }
.nav__cta:hover .arr { transform: translateX(4px); }

.nav__burger {
  display: none;
  width: 38px; height: 38px;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
}
.nav__burger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile overlay */
.overlay-nav {
  position: fixed; inset: 0;
  z-index: 49;
  background: var(--beetroot);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--gutter);
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.overlay-nav.is-open { opacity: 1; pointer-events: auto; }
.overlay-nav a {
  font-family: var(--f-display);
  font-size: clamp(2rem, 8vw, 3.4rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--paper);
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.overlay-nav a .mal {
  font-family: var(--f-mal);
  font-size: .35em;
  color: var(--gold-pale);
}
.overlay-nav a:hover { font-style: italic; color: var(--gold-pale); }
.overlay-nav__cta {
  margin-top: 24px;
  font-family: var(--f-mono);
  font-size: 13px !important;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-pale) !important;
}

/* ── HOME HERO — vertical pallu composition ─────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  padding-top: clamp(110px, 14vw, 160px);
  padding-bottom: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  gap: clamp(24px, 4vw, 70px);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(176,125,42,.08) 0%, transparent 60%),
    var(--paper);
}
.hero__photo {
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
.hero__photo img {
  width: 100%; height: 100%;
  min-height: 78vh;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(.96);
}
.hero__photo::after {
  /* a thin kasavu border framing the photo */
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(244,236,215,.7);
  pointer-events: none;
}
.hero__photo-cap {
  position: absolute;
  left: 26px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__photo-cap .mal {
  font-family: var(--f-mal);
  color: var(--gold-pale);
  font-size: 15px;
}
.hero__photo-cap .en {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244,236,215,.85);
}

.hero__pallu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding-left: clamp(0px, 1vw, 24px);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(176,125,42,.16);
}
.hero__eyebrow .mal {
  font-family: var(--f-mal);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--beetroot);
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid var(--rule);
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 8.5vw, 6.8rem);
  line-height: .96;
  letter-spacing: -.024em;
  color: var(--beetroot);
  margin: 26px 0 22px;
  max-width: 12ch;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-soft);
}
.hero__title .ml {
  display: block;
  font-family: var(--f-mal);
  font-style: normal;
  font-size: .35em;
  font-weight: 500;
  color: var(--gold);
  margin-top: 14px;
  letter-spacing: 0;
}

.hero__lede {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 44ch;
  margin-bottom: 32px;
}
.hero__lede b { color: var(--ink); font-weight: 500; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid var(--rule);
}
.hero__strip > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__strip .num {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--beetroot);
  line-height: 1;
}
.hero__strip .num em { color: var(--gold-soft); font-style: italic; }
.hero__strip .lab {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}
.hero__strip .mal {
  font-family: var(--f-mal);
  font-size: 13px;
  color: var(--gold);
  margin-top: -3px;
}

/* ── Welcome / opening band ─────────────────────────────── */
.welcome {
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  background: var(--paper);
  border-top: 1px solid var(--rule-gold);
  border-bottom: 1px solid var(--rule-gold);
}
.welcome__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.welcome__mal {
  font-family: var(--f-mal);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--gold);
  font-weight: 500;
}
.welcome__en {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(20px, 1.9vw, 26px);
  color: var(--beetroot);
  max-width: 38ch;
  line-height: 1.4;
}
.welcome__sig {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

/* ── Editorial section frame ────────────────────────────── */
.section {
  padding: var(--section-y) var(--gutter);
  position: relative;
}
.section--paper { background: var(--paper); }
.section--ivory { background: var(--paper-ivory); }
.section--cream { background: var(--paper-soft); }
.section--wine {
  background: var(--beetroot);
  color: var(--paper);
}
.section--wine .t-display { color: var(--paper); }
.section--wine .t-display em { color: var(--gold-pale); }
.section--wine .t-eyebrow { color: var(--gold-pale); }
.section--wine .t-eyebrow::before { background: var(--gold-pale); }
.section--wine .t-lede { color: rgba(244,236,215,.84); }
.section--wine .kasavu-rule::before,
.section--wine .kasavu-rule::after {
  background: linear-gradient(90deg, transparent 0%, var(--gold-pale) 6px, var(--gold-pale) calc(100% - 6px), transparent 100%);
}
.section--wine .kasavu-rule .mango { color: var(--gold-pale); }

.section--charcoal {
  background: var(--charcoal);
  color: var(--paper);
}
.section--charcoal .t-display { color: var(--paper); }
.section--charcoal .t-display em { color: var(--gold-pale); }
.section--charcoal .t-eyebrow { color: var(--gold-pale); }
.section--charcoal .t-eyebrow::before { background: var(--gold-pale); }
.section--charcoal .t-lede { color: rgba(244,236,215,.78); }

.section--palmyra {
  background: var(--palmyra);
  color: var(--paper);
}
.section--palmyra .t-display { color: var(--paper); }
.section--palmyra .t-display em { color: var(--gold-pale); }
.section--palmyra .t-eyebrow { color: var(--gold-pale); }
.section--palmyra .t-eyebrow::before { background: var(--gold-pale); }

.section__head {
  max-width: var(--maxw);
  margin: 0 auto clamp(40px, 5vw, 70px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(20px, 4vw, 80px);
  align-items: end;
}
.section__head-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section__head .chapter {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.section__head .chapter .mal {
  font-family: var(--f-mal);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--beetroot);
  border-left: 1px solid var(--rule);
  padding-left: 12px;
}
.section--wine .section__head .chapter .mal,
.section--charcoal .section__head .chapter .mal,
.section--palmyra .section__head .chapter .mal {
  color: var(--gold-pale);
  border-left-color: rgba(244,236,215,.3);
}
.section__head h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -.018em;
  color: var(--ink);
  max-width: 18ch;
}
.section--wine .section__head h2,
.section--charcoal .section__head h2,
.section--palmyra .section__head h2 { color: var(--paper); }
.section__head h2 em {
  font-style: italic;
  color: var(--beetroot);
}
.section--wine .section__head h2 em,
.section--charcoal .section__head h2 em,
.section--palmyra .section__head h2 em { color: var(--gold-pale); }

.section__head-right { padding-bottom: 6px; }
.section__head-right .t-lede { max-width: 50ch; }

/* ── HOUSE — three-floor walkthrough (asymmetric editorial) */
.house {
  max-width: var(--maxw);
  margin: 0 auto;
}
.house__intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.house__intro figure { position: relative; }
.house__intro figure img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
}
.house__intro figcaption {
  position: absolute;
  bottom: -28px; right: 0;
  background: var(--paper);
  padding: 12px 20px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  border: 1px solid var(--rule);
}
.house__intro figcaption .mal {
  font-family: var(--f-mal);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0;
  text-transform: none;
  margin-right: 8px;
}
.house__intro-text h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 22px;
  max-width: 16ch;
}
.house__intro-text h3 em { font-style: italic; color: var(--beetroot); }
.house__intro-text p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 14px;
  max-width: 56ch;
}
.house__intro-text p b { color: var(--ink); font-weight: 500; }

.house__floors {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(16px, 2.4vw, 30px);
}
.floor {
  background: var(--paper-ivory);
  padding: 32px 26px;
  border-top: 2px solid var(--gold);
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.floor:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -40px rgba(63,15,28,.35);
}
.floor__num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 80px;
  color: var(--gold);
  opacity: .25;
  line-height: 1;
  margin-bottom: 12px;
}
.floor__mal {
  font-family: var(--f-mal);
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 6px;
}
.floor h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.2;
}
.floor h4 em { font-style: italic; color: var(--beetroot); }
.floor p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 18px;
}
.floor ul {
  border-top: 1px dashed var(--rule);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.floor ul li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--ink-quiet);
  text-transform: uppercase;
}
.floor ul li::before {
  content: "✦";
  color: var(--gold);
  font-size: 9px;
}

/* ── EDITS — asymmetric, NOT a generic 6-grid ──────────── */
.edits-stack {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 8vw, 110px);
}

/* row 01: full-bleed bridal feature */
.edit-feature {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  min-height: 70vh;
  overflow: hidden;
}
.edit-feature__photo img {
  width: 100%; height: 100%;
  min-height: 70vh;
  object-fit: cover;
}
.edit-feature__copy {
  background: var(--beetroot);
  color: var(--paper);
  padding: clamp(34px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.edit-feature__plate {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.edit-feature__plate .mal {
  font-family: var(--f-mal);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold-pale);
  border-left: 1px solid rgba(244,236,215,.25);
  padding-left: 12px;
}
.edit-feature h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.04;
  margin-bottom: 22px;
  max-width: 14ch;
}
.edit-feature h3 em { font-style: italic; color: var(--gold-pale); }
.edit-feature p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(244,236,215,.86);
  max-width: 44ch;
  margin-bottom: 28px;
}
.edit-feature p b { color: var(--paper); font-weight: 500; }
.edit-feature__spec {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-bottom: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(244,236,215,.18);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(244,236,215,.7);
}

/* row 02: split editorial (kasavu) */
.edit-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.edit-split--reverse { grid-template-columns: 1.1fr 1fr; direction: rtl; }
.edit-split--reverse > * { direction: ltr; }
.edit-split__photo { position: relative; }
.edit-split__photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.edit-split__photo .photo-cap {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(20,15,12,.78);
  color: var(--paper);
  padding: 8px 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.edit-split__copy { padding-block: 14px; }
.edit-split__plate {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.edit-split__plate .mal {
  font-family: var(--f-mal);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--beetroot);
  border-left: 1px solid var(--rule);
  padding-left: 12px;
}
.edit-split h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 16ch;
}
.edit-split h3 em { font-style: italic; color: var(--beetroot); }
.edit-split p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 48ch;
  margin-bottom: 18px;
}
.edit-split__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

/* row 03+: 2-up daily / lehenga compact cards */
.edit-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
}
.edit-card {
  background: var(--paper-ivory);
  padding-bottom: 28px;
  transition: transform .4s var(--ease);
}
.edit-card:hover { transform: translateY(-4px); }
.edit-card__img {
  overflow: hidden;
  aspect-ratio: 5/6;
}
.edit-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.edit-card:hover .edit-card__img img { transform: scale(1.05); }
.edit-card__body { padding: 24px 26px 0; }
.edit-card__plate {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.edit-card h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.15;
}
.edit-card .mal {
  font-family: var(--f-mal);
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.edit-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.edit-card__cta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--beetroot);
  border-bottom: 1px solid var(--beetroot);
  padding-bottom: 3px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.edit-card__cta:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ── WEAVES MAP — India regions ─────────────────────────── */
.weave-map {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.weave-map__visual {
  position: relative;
  aspect-ratio: 1/1.1;
  background: var(--paper);
  border: 1px solid var(--rule-gold);
  padding: 28px;
}
.weave-map__visual svg {
  width: 100%; height: 100%;
}
.weave-map__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.weave-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  transition: padding .25s var(--ease);
  cursor: pointer;
}
.weave-row:last-child { border-bottom: 1px solid var(--rule); }
.weave-row:hover { padding-left: 8px; }
.weave-row__no {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--gold);
}
.weave-row__name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.weave-row__name .en {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.1;
}
.weave-row:hover .weave-row__name .en { color: var(--beetroot); }
.weave-row__name .meta {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}
.weave-row__price {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ink-soft);
  text-align: right;
}
.weave-row__price .from {
  display: block;
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-bottom: 2px;
}

/* ── BRIDAL — 4 chapters scroll ─────────────────────────── */
.bridal-journey {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
}
.bridal-journey__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bjstep {
  padding: 28px 0;
  border-top: 1px solid rgba(244,236,215,.18);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  cursor: pointer;
  transition: padding-left .25s var(--ease);
}
.bjstep:hover { padding-left: 8px; }
.bjstep:last-child { border-bottom: 1px solid rgba(244,236,215,.18); }
.bjstep__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 56px;
  color: var(--gold-pale);
  line-height: 1;
  opacity: .9;
}
.bjstep__body {}
.bjstep__mal {
  font-family: var(--f-mal);
  font-size: 18px;
  color: var(--gold-pale);
  margin-bottom: 4px;
}
.bjstep h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  color: var(--paper);
  margin-bottom: 10px;
}
.bjstep h4 em { font-style: italic; color: var(--gold-pale); }
.bjstep p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(244,236,215,.78);
  max-width: 50ch;
}
.bridal-journey__photo {
  position: relative;
  align-self: start;
  position: sticky;
  top: 100px;
  height: 80vh;
  overflow: hidden;
}
.bridal-journey__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.bridal-journey__photo::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(244,236,215,.4);
  pointer-events: none;
}

/* ── VOICES — handwritten notes on photos ───────────────── */
.voices {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.voice-card {
  position: relative;
  display: flex;
  flex-direction: column;
}
.voice-card__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
}
.voice-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.voice-card__note {
  background: var(--paper);
  padding: 26px 24px 26px;
  margin: -50px 24px 0;
  position: relative;
  border-top: 2px solid var(--gold);
  box-shadow: 0 24px 50px -30px rgba(63,15,28,.4);
}
.voice-card__note blockquote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 14px;
}
.voice-card__note blockquote::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 14px;
}
.voice-card__note cite {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

/* ── VISIT ──────────────────────────────────────────────── */
.visit-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.visit-info {}
.visit-info h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
  color: var(--ink);
  margin: 16px 0 28px;
  max-width: 16ch;
}
.visit-info h2 em { font-style: italic; color: var(--beetroot); }
.visit-info .ml {
  font-family: var(--f-mal);
  font-size: 22px;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.visit-rows {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
.visit-rows > li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}
.visit-rows > li:last-child { border-bottom: 1px solid var(--rule); }
.visit-rows .lab {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.visit-rows .val {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.visit-rows .val a {
  color: var(--beetroot);
  border-bottom: 1px solid var(--rule);
}
.visit-rows .val a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.visit-rows .val b { color: var(--ink); font-weight: 500; }
.visit-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.visit-map {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--rule-gold);
  background: var(--paper-ivory);
}
.visit-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(.9) sepia(.05);
}
.visit-map__corner {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--paper);
  padding: 10px 14px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  border: 1px solid var(--rule);
}

/* ── CTA band ───────────────────────────────────────────── */
.cta-band {
  padding: var(--section-y) var(--gutter);
  background: var(--gold);
  color: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 16px;
  /* Kasavu border — repeating diamond stitch */
  background-image:
    radial-gradient(circle at 50% 8px, var(--charcoal) 0 2px, transparent 2.5px),
    repeating-linear-gradient(90deg, transparent 0 24px, var(--charcoal) 24px 25px, transparent 25px 50px);
  background-size: 24px 16px, auto;
  opacity: .14;
}
.cta-band::before { top: 0; }
.cta-band::after { bottom: 0; }
.cta-band__inner { max-width: 920px; margin: 0 auto; position: relative; }
.cta-band__chapter {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(27,20,16,.7);
  margin-bottom: 18px;
}
.cta-band__chapter .mal {
  font-family: var(--f-mal);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--beetroot);
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid rgba(27,20,16,.3);
}
.cta-band h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.06;
  color: var(--charcoal);
  margin: 0 auto 30px;
  max-width: 22ch;
}
.cta-band h2 em { font-style: italic; color: var(--beetroot); }
.cta-band__ctas {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cta-band .btn--ink { background: var(--charcoal); }
.cta-band .btn--ink:hover { background: var(--beetroot); }
.cta-band .btn--ghost { color: var(--charcoal); border-color: var(--charcoal); }
.cta-band .btn--ghost:hover { background: var(--charcoal); color: var(--gold); }

/* ── FOOTER — kasavu-bordered cream ─────────────────────── */
.foot {
  background: var(--charcoal);
  color: var(--paper);
  padding: clamp(70px, 9vw, 110px) var(--gutter) 30px;
  position: relative;
}
.foot::before {
  /* a real kasavu border at the top of the footer */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 24px;
  background:
    radial-gradient(circle at 50% 12px, var(--gold-pale) 0 2.5px, transparent 3px),
    linear-gradient(90deg, var(--gold-pale), var(--gold-pale)) top/100% 1px no-repeat,
    linear-gradient(90deg, var(--gold-pale), var(--gold-pale)) bottom/100% 1px no-repeat;
  background-color: var(--charcoal-soft);
  background-size: 32px 24px, 100% 1px, 100% 1px;
}
.foot__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.foot__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(244,236,215,.14);
}
.foot__brand { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.foot__mark { width: 56px; height: 56px; color: var(--gold-pale); margin-bottom: 8px; }
.foot__name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: .12em;
  color: var(--paper);
}
.foot__name-mal {
  font-family: var(--f-mal);
  font-size: 22px;
  color: var(--gold-pale);
  margin-top: 4px;
}
.foot__tag {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold-pale);
  font-size: 15px;
  max-width: 24ch;
  line-height: 1.4;
  margin-top: 6px;
}

.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.foot__head {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.foot__head .mal {
  font-family: var(--f-mal);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold-pale);
  opacity: .7;
}
.foot__cols a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(244,236,215,.78);
  transition: color .2s, transform .2s var(--ease);
}
.foot__cols a:hover { color: var(--gold-pale); transform: translateX(3px); }

.foot__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(244,236,215,.55);
  margin-top: 30px;
}
.foot__credit a {
  color: var(--gold-pale);
  border-bottom: 1px solid rgba(214,174,92,.4);
}
.foot__credit a:hover { color: var(--paper); }

/* ── LIGHTBOX ───────────────────────────────────────────── */
.lb {
  position: fixed; inset: 0;
  z-index: 100;
  background: rgba(11,7,5,.94);
  display: grid; place-items: center;
  padding: 4vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lb.is-open { opacity: 1; pointer-events: auto; }
.lb img {
  max-width: 90vw; max-height: 86vh;
  object-fit: contain;
}
.lb__close, .lb__nav {
  position: absolute;
  width: 44px; height: 44px;
  background: rgba(244,236,215,.08);
  color: var(--paper);
  display: grid; place-items: center;
  font-size: 20px;
  border: 1px solid rgba(244,236,215,.18);
  font-family: var(--f-display);
  transition: background .2s, color .2s;
}
.lb__close { top: 24px; right: 28px; }
.lb__close:hover { background: var(--gold); color: var(--charcoal); }
.lb__nav { top: 50%; transform: translateY(-50%); font-size: 28px; }
.lb__nav--prev { left: 28px; }
.lb__nav--next { right: 28px; }
.lb__nav:hover { background: var(--gold); color: var(--charcoal); }
.lb__cap {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(244,236,215,.7);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-align: center;
}

/* ── REVEAL UTILITIES (with fail-open safety) ──────────── */
.reveal-y { opacity: 0; transform: translateY(28px); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal-y { opacity: 1; transform: none; }
}

/* ── PAGE-HERO (used on subpages) ───────────────────────── */
.page-hero {
  padding: clamp(140px, 16vw, 200px) var(--gutter) clamp(60px, 8vw, 110px);
  background: var(--paper);
  position: relative;
  border-bottom: 1px solid var(--rule-gold);
}
.page-hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
}
.page-hero__left { padding-bottom: 6px; }
.page-hero__chapter {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero__chapter .mal {
  font-family: var(--f-mal);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--beetroot);
  border-left: 1px solid var(--rule);
  padding-left: 12px;
}
.page-hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 7.5vw, 6.2rem);
  line-height: .98;
  letter-spacing: -.022em;
  color: var(--beetroot);
  margin-bottom: 14px;
  max-width: 14ch;
}
.page-hero__title em { font-style: italic; color: var(--gold-soft); }
.page-hero__mal {
  font-family: var(--f-mal);
  font-size: clamp(18px, 2.2vw, 28px);
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.page-hero__lede {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 46ch;
}
.page-hero__right img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* ── BREADCRUMB ─────────────────────────────────────────── */
.crumb {
  display: flex;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-bottom: 26px;
}
.crumb a:hover { color: var(--beetroot); }
.crumb span { color: var(--gold); }

/* ── WEAVES PAGE — encyclopedia ─────────────────────────── */
.weave-chapter {
  padding: clamp(70px, 9vw, 130px) var(--gutter);
  border-top: 1px solid var(--rule);
}
.weave-chapter:nth-child(odd) { background: var(--paper); }
.weave-chapter:nth-child(even) { background: var(--paper-ivory); }
.weave-chapter__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.weave-chapter--reverse .weave-chapter__inner { direction: rtl; }
.weave-chapter--reverse .weave-chapter__inner > * { direction: ltr; }
.weave-chapter__photo { position: relative; }
.weave-chapter__photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.weave-chapter__photo::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(244,236,215,.7);
  pointer-events: none;
}
.weave-chapter__photo .stamp {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--paper);
  border: 1px solid var(--rule-gold);
  padding: 10px 14px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.weave-chapter__copy {}
.weave-chapter__no {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 6px;
}
.weave-chapter__mal {
  font-family: var(--f-mal);
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 500;
}
.weave-chapter h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.04;
  letter-spacing: -.014em;
  color: var(--ink);
  margin-bottom: 22px;
  max-width: 14ch;
}
.weave-chapter h3 em { font-style: italic; color: var(--beetroot); }
.weave-chapter__lede {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 26px;
  max-width: 56ch;
}
.weave-chapter__lede b { color: var(--ink); font-weight: 500; }
.weave-chapter__spec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  margin-bottom: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.weave-chapter__spec dt {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.weave-chapter__spec dd {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.3;
}

/* ── BRIDAL PAGE — 4-chapter trousseau ──────────────────── */
.trouss-step {
  padding: clamp(70px, 9vw, 140px) var(--gutter);
  border-top: 1px solid var(--rule);
}
.trouss-step:nth-child(odd) { background: var(--paper); }
.trouss-step:nth-child(even) { background: var(--paper-ivory); }
.trouss-step__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 90px);
  align-items: center;
}
.trouss-step--alt .trouss-step__inner { grid-template-columns: 1.1fr 1fr; direction: rtl; }
.trouss-step--alt .trouss-step__inner > * { direction: ltr; }

.trouss-step__photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.trouss-step__no {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(70px, 9vw, 120px);
  color: var(--gold);
  opacity: .35;
  line-height: 1;
  margin-bottom: 20px;
}
.trouss-step__mal {
  font-family: var(--f-mal);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 8px;
}
.trouss-step h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 22px;
  max-width: 18ch;
}
.trouss-step h3 em { font-style: italic; color: var(--beetroot); }
.trouss-step p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 56ch;
}
.trouss-step__detail {
  margin-top: 26px;
  padding: 22px;
  background: var(--paper);
  border-top: 2px solid var(--gold);
}
.trouss-step__detail dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.trouss-step__detail dt {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.trouss-step__detail dd {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  margin-top: 4px;
}

/* ── LOOKBOOK PAGE — magazine spread ────────────────────── */
.lookbook-page {
  padding: clamp(60px, 8vw, 120px) var(--gutter);
  background: var(--paper);
}
.lookbook-page__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.lb-spread {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
  margin-bottom: clamp(50px, 7vw, 90px);
}
.lb-tile {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--paper-ivory);
}
.lb-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter .4s;
}
.lb-tile:hover img { transform: scale(1.04); filter: brightness(.9); }
.lb-tile__cap {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(244,236,215,.94);
  padding: 10px 14px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s var(--ease);
}
.lb-tile:hover .lb-tile__cap { opacity: 1; transform: translateY(0); }
.lb-tile__cap .mal {
  font-family: var(--f-mal);
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  margin-left: 8px;
}

/* spread shapes */
.lb-tile[data-shape="hero"]    { grid-column: span 8; grid-row: span 2; aspect-ratio: 1.4/1; }
.lb-tile[data-shape="tall"]    { grid-column: span 4; grid-row: span 2; aspect-ratio: .8/1; }
.lb-tile[data-shape="wide"]    { grid-column: span 8; aspect-ratio: 16/9; }
.lb-tile[data-shape="quad"]    { grid-column: span 3; aspect-ratio: 3/4; }
.lb-tile[data-shape="half"]    { grid-column: span 6; aspect-ratio: 4/3; }
.lb-tile[data-shape="square"]  { grid-column: span 4; aspect-ratio: 1/1; }

/* lookbook chapter title between spreads */
.lb-chapter {
  text-align: center;
  padding: clamp(40px, 6vw, 80px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lb-chapter__no {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.lb-chapter__mal {
  font-family: var(--f-mal);
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--gold);
  margin-bottom: 4px;
}
.lb-chapter h3 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  color: var(--ink);
}

/* ── STORY PAGE ─────────────────────────────────────────── */
.story-block {
  padding: clamp(70px, 9vw, 130px) var(--gutter);
}
.story-block--paper { background: var(--paper); }
.story-block--ivory { background: var(--paper-ivory); }
.story-block--wine { background: var(--beetroot); color: var(--paper); }
.story-block__inner {
  max-width: 980px;
  margin: 0 auto;
}
.story-block__inner h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  margin-bottom: 24px;
  color: inherit;
}
.story-block__inner h3 em { font-style: italic; color: var(--beetroot); }
.story-block--wine h3 em { color: var(--gold-pale); }
.story-block__inner p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: inherit;
}
.story-block--paper p, .story-block--ivory p { color: var(--ink-soft); }
.story-block--wine p { color: rgba(244,236,215,.86); }
.story-block__inner h3 + p::first-letter {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 4.2em;
  float: left;
  line-height: .9;
  padding: 4px 12px 0 0;
  color: var(--gold);
}
.story-block__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.4;
  text-align: center;
  margin: 40px 0;
  padding: 30px 20px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  color: var(--beetroot);
}
.story-block--wine .story-block__quote {
  border-color: rgba(244,236,215,.2);
  color: var(--gold-pale);
}

/* ── APPOINTMENT FORM ───────────────────────────────────── */
.appt {
  padding: clamp(70px, 9vw, 120px) var(--gutter);
  background: var(--paper);
}
.appt__inner {
  max-width: 960px;
  margin: 0 auto;
}
.appt__form {
  background: var(--paper-ivory);
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-top: 2px solid var(--gold);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: span 2; }
.field label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.field label .mal {
  font-family: var(--f-mal);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-quiet);
  margin-left: 8px;
}
.field input, .field select, .field textarea {
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  background: transparent;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s;
  font-weight: 400;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--beetroot);
}
.field textarea { min-height: 100px; resize: vertical; }
.field--full .submit {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.field--full .submit small {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-quiet);
  letter-spacing: .04em;
}
.appt__side {
  margin-top: 28px;
  background: var(--beetroot);
  color: var(--paper);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.appt__side div { display: flex; flex-direction: column; gap: 4px; }
.appt__side .lab {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-pale);
}
.appt__side .val {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--paper);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 110px; gap: 32px; }
  .hero__photo img { min-height: 60vh; }
  .hero__pallu { padding-left: 0; }

  .section__head { grid-template-columns: 1fr; gap: 18px; }
  .section__head-right { padding-bottom: 0; }

  .house__intro { grid-template-columns: 1fr; }
  .house__floors { grid-template-columns: 1fr; }

  .edit-feature { grid-template-columns: 1fr; min-height: 0; }
  .edit-feature__photo img { min-height: 60vh; }
  .edit-split, .edit-split--reverse { grid-template-columns: 1fr; }
  .edit-split--reverse { direction: ltr; }
  .edit-pair { grid-template-columns: 1fr; }

  .weave-map { grid-template-columns: 1fr; }
  .bridal-journey { grid-template-columns: 1fr; }
  .bridal-journey__photo { position: relative; top: auto; height: 60vh; }

  .voices { grid-template-columns: 1fr; gap: 50px; }

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

  .weave-chapter__inner { grid-template-columns: 1fr; }
  .weave-chapter--reverse .weave-chapter__inner { direction: ltr; }
  .trouss-step__inner { grid-template-columns: 1fr; gap: 30px; }
  .trouss-step--alt .trouss-step__inner { direction: ltr; }

  .page-hero__inner { grid-template-columns: 1fr; gap: 32px; }

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

  .appt__form { grid-template-columns: 1fr; }
  .field--full { grid-column: span 1; }
  .appt__side { grid-template-columns: 1fr; }

  /* lookbook reshape */
  .lb-tile[data-shape="hero"]   { grid-column: span 12; aspect-ratio: 1.2/1; }
  .lb-tile[data-shape="tall"]   { grid-column: span 6; }
  .lb-tile[data-shape="wide"]   { grid-column: span 12; }
  .lb-tile[data-shape="quad"]   { grid-column: span 6; }
  .lb-tile[data-shape="half"]   { grid-column: span 12; }
  .lb-tile[data-shape="square"] { grid-column: span 6; }
}

@media (max-width: 640px) {
  .nav { padding: 14px var(--gutter); }
  .nav__brand-en { font-size: 14px; }
  .nav__brand-mark { width: 26px; height: 26px; }

  .hero__title { font-size: clamp(2.4rem, 11vw, 4rem); }
  .hero__ctas .btn { padding: 12px 18px; font-size: 13px; }
  .hero__strip { gap: 12px; }
  .hero__strip .num { font-size: 22px; }
  .hero__photo-cap { left: 18px; bottom: 18px; }

  .floor { padding: 28px 22px; }
  .floor__num { font-size: 56px; }

  .edit-feature__copy { padding: 32px 24px; }
  .edit-feature__spec { gap: 8px 14px; }

  .visit-rows > li { grid-template-columns: 1fr; gap: 4px; }

  .voice-card__note { margin: -40px 16px 0; padding: 22px 20px; }

  .weave-chapter__spec { grid-template-columns: 1fr; }
  .trouss-step__detail dl { grid-template-columns: 1fr; }

  .foot__cols { grid-template-columns: 1fr; }
  .foot__bottom { flex-direction: column; align-items: flex-start; }

  .lb__nav--prev { left: 12px; }
  .lb__nav--next { right: 12px; }
  .lb__close { top: 12px; right: 12px; }

  .lb-tile[data-shape="hero"],
  .lb-tile[data-shape="wide"],
  .lb-tile[data-shape="half"],
  .lb-tile[data-shape="quad"],
  .lb-tile[data-shape="tall"],
  .lb-tile[data-shape="square"] { grid-column: span 12; aspect-ratio: 4/5; }
}

/* ─────────────────────────────────────────────────────────
   ENTRANCE ANIMATIONS — CSS-based (robust in background tabs,
   headless, and when JS/RAF is throttled). Base state is the
   FINAL visible state; the keyframes only add motion. Guarded
   by prefers-reduced-motion in the global reset above.
   ───────────────────────────────────────────────────────── */
@keyframes sm-rise {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes sm-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes sm-photo-in {
  from { opacity: 0; transform: scale(1.06); }
  to   { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__eyebrow { animation: sm-rise .7s var(--ease) both; }
  .hero__title   { animation: sm-rise .9s var(--ease) .08s both; }
  .hero__lede    { animation: sm-rise .8s var(--ease) .22s both; }
  .hero__ctas    { animation: sm-rise .7s var(--ease) .34s both; }
  .hero__strip   { animation: sm-rise .7s var(--ease) .44s both; }
  .hero__photo img { animation: sm-photo-in 1.3s var(--ease) both; }

  .page-hero__chapter { animation: sm-rise .7s var(--ease) both; }
  .page-hero__title   { animation: sm-rise .9s var(--ease) .08s both; }
  .page-hero__mal     { animation: sm-rise .8s var(--ease) .2s both; }
  .page-hero__lede    { animation: sm-rise .8s var(--ease) .3s both; }
  .page-hero__right img { animation: sm-photo-in 1.3s var(--ease) both; }
}

/* ─────────────────────────────────────────────────────────
   PREMIUM POLISH — "silk sheen" flourishes. All pure-CSS,
   hover/ambient only (never hides content). Reduced-motion
   safe via the global guard.
   ───────────────────────────────────────────────────────── */

/* Gold CTA: a slow light-sweep, like light catching zari thread */
.btn--gold { position: relative; overflow: hidden; }
.btn--gold::after {
  content: "";
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg);
  transition: none;
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .btn--gold:hover::after { animation: sm-sheen 1.05s var(--ease) forwards; }
}
@keyframes sm-sheen {
  from { left: -120%; }
  to   { left: 140%; }
}

/* Loom-thread: a flowing gold shimmer travelling along the woven progress */
@media (prefers-reduced-motion: no-preference) {
  .loom-thread__bar {
    background-image: linear-gradient(90deg,
      var(--gold) 0%, var(--gold-soft) 40%, #F0D9A6 50%, var(--gold-soft) 60%, var(--gold) 100%);
    background-size: 200% 100%;
    animation: sm-thread 3.5s linear infinite;
  }
}
@keyframes sm-thread {
  from { background-position: 200% 0; }
  to   { background-position: 0 0; }
}

/* Editorial photos: a soft zoom-settle on hover (weave + bridal + edits) */
.weave-chapter__photo img,
.trouss-step__photo img,
.house__intro figure img {
  transition: transform 1.4s var(--ease), filter .6s var(--ease);
  will-change: transform;
}
.weave-chapter__photo:hover img,
.trouss-step__photo:hover img,
.house__intro figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

/* Nav brand mark: gentle gold breathing so the monogram feels alive */
@media (prefers-reduced-motion: no-preference) {
  .nav__brand-mark { animation: sm-breathe 6s ease-in-out infinite; transform-origin: center; }
}
@keyframes sm-breathe {
  0%, 100% { opacity: .92; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.04); }
}

/* Weave rows + visit rows: gold leading rule grows on hover */
.weave-row { position: relative; }
.weave-row::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 0;
  background: var(--gold); transition: width .45s var(--ease);
}
.weave-row:hover::after { width: 100%; }

/* CTA-band gold buttons inherit the sheen too */
.cta-band .btn--gold::after { content: ""; }
