/* ============================================================
   ROYAL WEDDING CENTRE — Ottapalam, Palakkad
   Bridal & silk house, est. 1991
   Palette: Magenta · Gold · Cream · Aubergine
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ivory: #FFF8F0;
  --ivory-warm: #F5EDE0;
  --ivory-deep: #EEE0CC;
  --ink: #1A0A1E;
  --ink-soft: #2D1A30;
  --champagne: #D4A850;
  --champagne-deep: #8A6520;
  --blush: #F7C4D0;
  --blush-soft: #FFF0F3;
  --taupe: #8A5C6A;
  --taupe-soft: #C4A0B0;
  --magenta: #C2185B;
  --magenta-deep: #880E4F;
  --rule: rgba(26, 10, 30, 0.12);
  --rule-strong: rgba(26, 10, 30, 0.24);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
  --script: "Caveat", cursive;
  --malayalam: "Manjari", "Noto Sans Malayalam", sans-serif;

  --pad-x: clamp(20px, 5vw, 80px);
  --pad-y: clamp(60px, 8vw, 140px);
  --max: 1440px;
}

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

/* ---------- Paper texture overlay ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 25% 35%, rgba(26,10,30,0.016) 1px, transparent 1.5px),
    radial-gradient(circle at 75% 65%, rgba(26,10,30,0.012) 1px, transparent 1.5px);
  background-size: 80px 80px, 120px 120px;
  mix-blend-mode: multiply;
  opacity: 0.7;
}

/* ---------- Typography ---------- */
.malayalam { font-family: var(--malayalam); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
}
.eyebrow--champagne { color: var(--champagne-deep); opacity: 1; }
.eyebrow--magenta { color: var(--magenta); opacity: 1; }

.plate-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -0.018em; color: var(--ink); }

.h-hero { font-size: clamp(48px, 8.5vw, 120px); line-height: 0.96; letter-spacing: -0.025em; }
.h-display { font-size: clamp(40px, 6vw, 88px); line-height: 1.0; }
.h-section { font-size: clamp(32px, 4.4vw, 64px); line-height: 1.05; }
.h-sub { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.2; }

.lead { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; color: var(--ink-soft); max-width: 60ch; }
.body { font-size: 16px; line-height: 1.7; color: var(--ink-soft); }

em, .em { font-style: italic; font-family: var(--serif); color: var(--magenta-deep); }

/* ---------- Layout ---------- */
.section { padding: var(--pad-y) var(--pad-x); position: relative; z-index: 2; }
.wrap { max-width: var(--max); margin: 0 auto; }
.section--dark { background: var(--ink); color: var(--ivory); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--ivory); }
.section--dark .eyebrow, .section--dark .plate-num { color: var(--blush); opacity: 0.85; }
.section--dark .lead, .section--dark .body { color: rgba(255,248,240,0.78); }
.section--blush { background: var(--blush-soft); }
.section--ivory-deep { background: var(--ivory-deep); }

.divider { border: none; border-top: 1px solid var(--rule); margin: 60px 0; }
.divider--dark { border-top-color: rgba(255,248,240,0.18); }

/* ---------- Section head ---------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}
.section-head__left { max-width: 600px; }
.section-head__left .eyebrow { margin-bottom: 14px; display: block; }
.section-head__right { text-align: right; flex-shrink: 0; }
.section-head__right .plate-num { display: block; margin-bottom: 4px; }
@media (max-width: 720px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-head__right { text-align: left; }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  background: rgba(255, 248, 240, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: background 240ms ease;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.nav__brand-mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--magenta);
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 200ms ease;
}
.nav__links a:hover { color: var(--magenta); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--magenta);
  color: var(--ivory);
  padding: 12px 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 200ms ease, transform 200ms ease;
}
.nav__cta:hover { background: var(--magenta-deep); transform: translateY(-1px); }
.nav__toggle { display: none; }
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle {
    display: block;
    background: var(--ink);
    color: var(--ivory);
    padding: 10px 18px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
}

/* ---------- Mobile drawer ---------- */
.drawer {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--ivory);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 60px var(--pad-x);
}
.drawer.is-open { display: flex; }
.drawer__close { align-self: flex-end; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ivory); }
.drawer__wordmark { font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--ivory); margin-bottom: 10px; }
.drawer__links { list-style: none; margin-top: 60px; display: flex; flex-direction: column; gap: 24px; }
.drawer__links a { font-family: var(--serif); font-size: 36px; color: var(--ivory); }
.drawer__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--magenta);
  color: var(--ivory);
  padding: 18px 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--ivory);
  border: 1px solid var(--ink);
  transition: all 220ms ease;
}
.btn:hover { background: var(--magenta); border-color: var(--magenta); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }
.btn--magenta { background: var(--magenta); color: var(--ivory); border-color: var(--magenta); }
.btn--magenta:hover { background: var(--magenta-deep); border-color: var(--magenta-deep); }
.btn--gold { background: var(--champagne); color: var(--ink); border-color: var(--champagne); }
.btn--gold:hover { background: var(--champagne-deep); border-color: var(--champagne-deep); color: var(--ivory); }
.btn--large { padding: 22px 36px; font-size: 12px; }
.btn__arrow { display: inline-block; width: 12px; height: 12px; position: relative; }
.btn__arrow::after { content: "→"; font-family: var(--mono); position: absolute; top: -3px; left: 0; transition: transform 200ms ease; }
.btn:hover .btn__arrow::after { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  padding-top: 72px;
  background: var(--ivory);
  z-index: 2;
}
.hero__copy {
  padding: clamp(60px, 8vw, 120px) clamp(28px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero__masthead {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.hero__masthead-left { display: flex; flex-direction: column; gap: 6px; }
.hero__masthead-right { text-align: right; display: flex; flex-direction: column; gap: 6px; }
.hero__title {
  font-family: var(--serif);
  font-size: clamp(46px, 7vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: var(--ink);
}
.hero__title em { font-style: italic; color: var(--magenta-deep); }
.hero__sub {
  margin-top: 36px;
  max-width: 40ch;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.hero__sub-ml {
  display: block;
  margin-top: 14px;
  font-family: var(--malayalam);
  font-size: 22px;
  color: var(--magenta);
  line-height: 1.5;
}
.hero__ctas { margin-top: 50px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__meta {
  position: absolute;
  bottom: 40px;
  left: clamp(28px, 5vw, 80px);
  right: clamp(28px, 5vw, 80px);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.hero__image {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: var(--ink);
}
/* CSS panel for hero (no photos needed for pitch) */
.hero__panel {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: linear-gradient(160deg, var(--magenta-deep) 0%, var(--magenta) 55%, #b5883c 100%);
  position: relative;
  overflow: hidden;
}
.hero__panel-grid {
  position: absolute;
  inset: 0;
  opacity: 0.10;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,248,240,0.6) 0px, rgba(255,248,240,0.6) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(255,248,240,0.6) 0px, rgba(255,248,240,0.6) 1px, transparent 1px, transparent 40px);
}
.hero__panel-ornament {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72%;
  max-width: 420px;
  opacity: 0.18;
}
.hero__panel-ml {
  position: absolute;
  bottom: 50px;
  left: 40px;
  right: 40px;
  font-family: var(--malayalam);
  font-size: clamp(20px, 2.5vw, 32px);
  color: rgba(255,248,240,0.85);
  line-height: 1.6;
}
.hero__badge {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 3;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--champagne);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  padding: 14px;
  animation: badgeRotate 32s linear infinite;
}
@keyframes badgeRotate { from { transform: rotate(-6deg); } to { transform: rotate(354deg); } }
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__image { min-height: 60vh; order: -1; }
  .hero__panel { min-height: 60vh; }
  .hero__copy { padding: 50px 24px 90px; }
  .hero__meta { position: static; margin-top: 60px; }
  .hero__masthead { margin-bottom: 50px; }
  .hero__badge { top: 80px; right: 24px; width: 96px; height: 96px; font-size: 9px; }
}

/* ---------- Heritage bar ---------- */
.heritage { background: var(--ink); color: var(--ivory); padding: 0; position: relative; z-index: 2; }
.heritage__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.heritage__cell {
  padding: 44px clamp(20px, 3vw, 40px);
  border-right: 1px solid rgba(255,248,240,0.12);
  display: flex; flex-direction: column; gap: 6px;
}
.heritage__cell:last-child { border-right: none; }
.heritage__cell .num {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  color: var(--champagne);
  line-height: 1;
}
.heritage__cell .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,248,240,0.7);
  margin-top: 8px;
}
@media (max-width: 720px) {
  .heritage__grid { grid-template-columns: repeat(2, 1fr); }
  .heritage__cell:nth-child(2) { border-right: none; }
  .heritage__cell:nth-child(1), .heritage__cell:nth-child(2) { border-bottom: 1px solid rgba(255,248,240,0.12); }
}

/* ---------- Story split ---------- */
.story-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.story-split__image { position: relative; }
.story-split__image .img-ph {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--magenta-deep) 0%, var(--magenta) 55%, var(--champagne-deep) 100%);
  position: relative;
  overflow: hidden;
  display: block;
}
.story-split__image .img-ph-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,248,240,0.8) 0px, rgba(255,248,240,0.8) 1px, transparent 1px, transparent 32px),
    repeating-linear-gradient(90deg, rgba(255,248,240,0.8) 0px, rgba(255,248,240,0.8) 1px, transparent 1px, transparent 32px);
}
.story-split__image .cap {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--ivory);
  padding: 6px 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.story-split__copy h2 { margin-bottom: 36px; }
.story-split__copy .dropcap::first-letter {
  font-family: var(--serif);
  font-size: 5.2em;
  float: left;
  line-height: 0.85;
  padding-right: 14px;
  padding-top: 6px;
  color: var(--magenta);
  font-weight: 600;
}
.story-split__copy .body + .body { margin-top: 18px; }
.story-split__copy .signoff {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-family: var(--script);
  font-size: 22px;
  color: var(--champagne-deep);
}
@media (max-width: 880px) { .story-split { grid-template-columns: 1fr; } }

/* ---------- Silk marquee ticker ---------- */
.marquee { background: var(--ink); color: var(--ivory); overflow: hidden; white-space: nowrap; border-top: 1px solid rgba(255,248,240,0.14); border-bottom: 1px solid rgba(255,248,240,0.14); padding: 22px 0; position: relative; z-index: 2; }
.marquee__track { display: inline-flex; gap: 0; animation: marqueeScroll 48s linear infinite; will-change: transform; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 32px);
  font-style: italic;
  letter-spacing: -0.01em;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 32px;
  color: var(--ivory);
}
.marquee__item::after { content: "✦"; font-size: 12px; color: var(--champagne); font-style: normal; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; white-space: normal; flex-wrap: wrap; justify-content: center; } }

/* ---------- Fabric / collection cards (replaces designers) ---------- */
.fabrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.fabric-card {
  background: var(--ivory);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 260px;
  transition: background 240ms ease;
  position: relative;
  overflow: hidden;
}
.fabric-card:hover { background: var(--blush-soft); }
.fabric-card__swatch {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0; transition: opacity 500ms ease;
  background: linear-gradient(135deg, var(--blush-soft), var(--blush));
}
.fabric-card:hover .fabric-card__swatch { opacity: 1; }
.fabric-card > * { position: relative; z-index: 1; }
.fabric-card__top { display: flex; justify-content: space-between; align-items: flex-start; }
.fabric-card__name { font-family: var(--serif); font-size: 30px; font-weight: 400; line-height: 1.05; letter-spacing: -0.01em; }
.fabric-card__origin { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); }
.fabric-card__desc { font-size: 14px; line-height: 1.55; color: var(--ink-soft); flex: 1; font-style: italic; font-family: var(--serif); }
.fabric-card__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--magenta); padding-top: 12px; border-top: 1px solid var(--rule); }
@media (max-width: 880px) { .fabrics { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .fabrics { grid-template-columns: 1fr; } }

/* ---------- Categories ---------- */
.categories { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cat-card {
  background: var(--ivory);
  border: 1px solid var(--rule);
  padding: 28px 24px 30px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all 240ms ease;
}
.cat-card:hover { border-color: var(--magenta); transform: translateY(-2px); }
.cat-card__icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; }
.cat-card__icon svg { width: 100%; height: 100%; color: var(--magenta); }
.cat-card__name { font-family: var(--serif); font-size: 22px; font-weight: 400; letter-spacing: -0.01em; }
.cat-card__sub { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--magenta); }
.cat-card__desc { font-size: 13px; line-height: 1.55; color: var(--ink-soft); }
.cat-card__label { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--rule); font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); }
@media (max-width: 980px) { .categories { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .categories { grid-template-columns: repeat(2, 1fr); gap: 16px; } }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.process__step { padding: 36px 22px 40px; border-right: 1px solid var(--rule); display: flex; flex-direction: column; gap: 14px; }
.process__step:last-child { border-right: none; }
.process__num { font-family: var(--serif); font-style: italic; font-size: 44px; color: var(--magenta); line-height: 1; }
.process__title { font-family: var(--serif); font-size: 19px; font-weight: 400; }
.process__desc { font-size: 13px; line-height: 1.55; color: var(--ink-soft); }
@media (max-width: 900px) { .process { grid-template-columns: repeat(3, 1fr); } .process__step:nth-child(3) { border-right: none; } .process__step:nth-child(1), .process__step:nth-child(2), .process__step:nth-child(3) { border-bottom: 1px solid var(--rule); } }
@media (max-width: 560px) { .process { grid-template-columns: repeat(2, 1fr); } .process__step { border-right-width: 1px !important; } .process__step:nth-child(2n) { border-right: none !important; } .process__step:not(:nth-last-child(-n+2)) { border-bottom: 1px solid var(--rule); } }

/* ---------- Visit panel (dark CTA) ---------- */
.tryon { background: var(--ink); color: var(--ivory); padding: var(--pad-y) var(--pad-x); position: relative; z-index: 2; }
.tryon__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.tryon__left h2 { margin-bottom: 32px; }
.tryon__list { list-style: none; margin-top: 36px; display: flex; flex-direction: column; }
.tryon__list li { padding: 22px 0; border-bottom: 1px solid rgba(255,248,240,0.14); display: grid; grid-template-columns: 90px 1fr; gap: 24px; align-items: baseline; }
.tryon__list li:last-child { border-bottom: none; }
.tryon__list .tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--champagne); }
.tryon__list .text { font-family: var(--serif); font-size: 19px; color: var(--ivory); line-height: 1.35; }
.tryon__card { background: rgba(255,248,240,0.06); border: 1px solid rgba(255,248,240,0.14); padding: 40px 36px; display: flex; flex-direction: column; gap: 22px; }
.tryon__card h3 { font-family: var(--serif); font-size: 32px; color: var(--ivory); }
.tryon__card .price-line { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--champagne); }
.tryon__card .body { color: rgba(255,248,240,0.78); }
@media (max-width: 880px) { .tryon__grid { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { border: 1px solid var(--rule); padding: 32px 28px; background: var(--ivory); display: flex; flex-direction: column; gap: 18px; }
.review__stars { color: var(--champagne); font-size: 16px; letter-spacing: 4px; }
.review__quote { font-family: var(--serif); font-size: 17px; line-height: 1.5; font-style: italic; color: var(--ink); flex: 1; }
.review__attr { display: flex; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--rule); font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); }
.review__src { color: var(--magenta); }
@media (max-width: 880px) { .reviews { grid-template-columns: 1fr; } }

/* ---------- Lookbook editorial ---------- */
.lookbook { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; margin-top: 50px; }
.lookbook__item { position: relative; overflow: hidden; }
.lookbook__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(26,10,30,0.55)); opacity: 0; transition: opacity 400ms ease; }
.lookbook__item:hover::after { opacity: 1; }
.lookbook__tag { position: absolute; left: 16px; bottom: 14px; z-index: 2; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ivory); opacity: 0; transform: translateY(8px); transition: opacity 400ms ease, transform 400ms ease; }
.lookbook__item:hover .lookbook__tag { opacity: 1; transform: translateY(0); }
.lookbook__item:nth-child(1) { grid-column: span 5; grid-row: span 2; aspect-ratio: 4/5; }
.lookbook__item:nth-child(2) { grid-column: span 4; aspect-ratio: 3/4; }
.lookbook__item:nth-child(3) { grid-column: span 3; aspect-ratio: 3/4; }
.lookbook__item:nth-child(4) { grid-column: span 4; aspect-ratio: 4/3; }
.lookbook__item:nth-child(5) { grid-column: span 3; aspect-ratio: 4/5; }
/* Gradient swatches as placeholder lookbook panels */
.lk-1 { background: linear-gradient(160deg, #5D0834 0%, var(--magenta) 60%, #D4A850 100%); }
.lk-2 { background: linear-gradient(160deg, var(--magenta-deep) 0%, #9C1754 100%); }
.lk-3 { background: linear-gradient(160deg, #8A6520 0%, var(--champagne) 100%); }
.lk-4 { background: linear-gradient(160deg, var(--ink) 0%, #2D1A30 100%); }
.lk-5 { background: linear-gradient(160deg, #3D0626 0%, var(--magenta-deep) 60%, var(--champagne-deep) 100%); }
@media (max-width: 760px) {
  .lookbook { grid-template-columns: repeat(2, 1fr); }
  .lookbook__item:nth-child(n) { grid-column: span 1; grid-row: auto; aspect-ratio: 3/4; }
  .lookbook__item:nth-child(1) { grid-column: span 2; aspect-ratio: 4/3; }
}

/* ---------- Visit teaser ---------- */
.visit { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--rule); }
.visit__map { background: var(--ivory-deep); min-height: 480px; position: relative; overflow: hidden; }
.visit__map iframe { width: 100%; height: 100%; min-height: 480px; border: 0; filter: grayscale(40%) contrast(0.95); }
.visit__info { padding: 60px 50px; display: flex; flex-direction: column; gap: 26px; background: var(--ivory); }
.visit__info h2 { margin-bottom: 4px; }
.visit__row { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--rule); align-items: baseline; }
.visit__row:last-of-type { border-bottom: none; }
.visit__row .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); }
.visit__row .v { font-family: var(--serif); font-size: 17px; line-height: 1.4; }
.visit__row .v.small { font-family: var(--sans); font-size: 14px; color: var(--ink-soft); }
@media (max-width: 880px) { .visit { grid-template-columns: 1fr; } .visit__info { padding: 40px 28px; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--ivory); padding: 80px var(--pad-x) 40px; position: relative; z-index: 2; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,248,240,0.18); }
.footer__brand { font-family: var(--serif); font-size: 36px; font-weight: 400; line-height: 1.05; margin-bottom: 4px; }
.footer__brand-ml { font-family: var(--malayalam); font-size: 22px; color: var(--blush); opacity: 0.9; margin-bottom: 4px; }
.footer__tagline { font-family: var(--serif); font-style: italic; color: var(--champagne); max-width: 36ch; margin-top: 14px; }
.footer__col h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne); margin-bottom: 18px; font-weight: 500; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: rgba(255,248,240,0.85); transition: color 200ms ease; }
.footer__col a:hover { color: var(--champagne); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,248,240,0.65); }
.footer__bottom a { color: var(--champagne); }
@media (max-width: 980px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 640px) { .footer__top { grid-template-columns: 1fr; } .footer__bottom { flex-direction: column; gap: 16px; text-align: center; } }

/* ---------- Reveals (fail-open) ---------- */
.reveal--hidden { opacity: 0; transform: translateY(24px); transition: opacity 900ms cubic-bezier(0.2,0.6,0.2,1), transform 900ms cubic-bezier(0.2,0.6,0.2,1); }
.reveal--show { opacity: 1; transform: translateY(0); }
@keyframes safetyReveal { to { opacity: 1; transform: translateY(0); } }
.reveal--hidden { animation: safetyReveal 0.01s linear 2.5s forwards; }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(22px); }
[data-reveal-stagger].is-staggered > * { opacity: 1; transform: translateY(0); transition: opacity 800ms cubic-bezier(0.2,0.6,0.2,1), transform 800ms cubic-bezier(0.2,0.6,0.2,1); }
@keyframes staggerSafety { to { opacity:1; transform:none; } }
[data-reveal-stagger] > * { animation: staggerSafety 0.01s linear 3s forwards; }

/* ---------- Magnetic & img-reveal ---------- */
.magnetic { transition: transform 180ms cubic-bezier(0.2,0.6,0.2,1); will-change: transform; }
.img-reveal { overflow: hidden; position: relative; }
.img-reveal::after { content: ""; position: absolute; inset: 0; background: var(--ivory); transform: scaleY(1); transform-origin: bottom; transition: transform 1100ms cubic-bezier(0.76,0,0.24,1); z-index: 2; }
.img-reveal.is-revealed::after { transform: scaleY(0); }

/* ---------- Utility ---------- */
.spacer-sm { height: 24px; }
.spacer-md { height: 60px; }
.center { text-align: center; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
