/* ============================================================
   BADSHA STORES — THE SILK EXPERIENCE
   KR Circle, Mysuru · Est. 1965
   Palette: imperial purple-black · gold zari · silk cream
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ivory: #FBF5E8;
  --ivory-warm: #F3E8D4;
  --ivory-deep: #E9DAC2;
  --ink: #1C0F35;
  --ink-soft: #2E1A4A;
  --champagne: #C89E28;
  --champagne-deep: #7A5A08;
  --blush: #6B2E99;
  --blush-soft: #F4EEF9;
  --taupe: #7A6878;
  --taupe-soft: #A49AAE;
  --rule: rgba(28, 15, 53, 0.12);
  --rule-strong: rgba(28, 15, 53, 0.24);

  --serif: "Playfair Display", "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;
  --kannada: "Noto Serif Kannada", 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(28,15,53,0.018) 1px, transparent 1.5px),
    radial-gradient(circle at 75% 65%, rgba(28,15,53,0.014) 1px, transparent 1.5px);
  background-size: 80px 80px, 120px 120px;
  mix-blend-mode: multiply;
  opacity: 0.7;
}

/* ---------- Typography ---------- */
.serif { font-family: var(--serif); }
.italic-serif { font-family: var(--serif); font-style: italic; }
.mono { font-family: var(--mono); }
.script { font-family: var(--script); }
.kannada { font-family: var(--kannada); }

.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; }

.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.015em; color: var(--ink); }

.h-hero { font-size: clamp(48px, 8.5vw, 132px); line-height: 0.96; letter-spacing: -0.022em; }
.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(--champagne-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(--champagne); opacity: 0.85; }
.section--dark .lead, .section--dark .body { color: rgba(251,245,232,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(251,245,232,0.18); }

/* ---------- Editorial chrome ---------- */
.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(251,245,232,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: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.nav__brand svg { width: 36px; height: 36px; }
.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);
  position: relative;
  padding: 4px 0;
  transition: color 200ms ease;
}
.nav__links a:hover { color: var(--champagne-deep); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--ivory);
  padding: 12px 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background 200ms ease, transform 200ms ease;
}
.nav__cta:hover { background: var(--champagne-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__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); font-weight: 400; }
.drawer__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--champagne);
  color: var(--ink);
  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(--champagne-deep); border-color: var(--champagne-deep); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }
.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.022em;
  font-weight: 400;
  color: var(--ink);
}
.hero__title em { font-style: italic; color: var(--champagne-deep); }
.hero__sub {
  margin-top: 40px;
  max-width: 38ch;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.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);
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 14s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.0); } }
.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(28,15,53,0) 50%, rgba(28,15,53,0.28));
  pointer-events: none;
}
.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: 70vh; order: -1; }
  .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(251,245,232,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(251,245,232,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(251,245,232,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 { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.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(--champagne-deep);
  font-weight: 700;
}
.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; } }

/* ---------- Weave strip (designer equiv) ---------- */
.designers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.designer-card {
  background: var(--ivory);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
  transition: background 240ms ease;
}
.designer-card:hover { background: var(--blush-soft); }
.designer-card__top { display: flex; justify-content: space-between; align-items: flex-start; }
.designer-card__name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.designer-card__origin {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
}
.designer-card__sig {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  flex: 1;
  font-style: italic;
  font-family: var(--serif);
}
.designer-card__price {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--champagne-deep);
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
@media (max-width: 880px) { .designers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .designers { grid-template-columns: 1fr; } }

/* ---------- Silk categories ---------- */
.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.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(--ink); transform: translateY(-2px); }
.cat-card__icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; }
.cat-card__icon svg { width: 100%; height: 100%; color: var(--ink); }
.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(--champagne-deep); }
.cat-card__desc { font-size: 13px; line-height: 1.55; color: var(--ink-soft); }
.cat-card__price { 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 (5-step) ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(5, 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(--champagne-deep);
  line-height: 1;
}
.process__title { font-family: var(--serif); font-size: 19px; font-weight: 400; letter-spacing: -0.005em; }
.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:nth-child(2n) { border-right: none !important; }
  .process__step:not(:nth-last-child(-n+2)) { border-bottom: 1px solid var(--rule); }
}

/* ---------- The Visit panel (dark) ---------- */
.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(251,245,232,0.14);
  display: grid;
  grid-template-columns: 100px 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;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.35;
}
.tryon__card {
  background: rgba(251,245,232,0.06);
  border: 1px solid rgba(251,245,232,0.14);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.tryon__card h3 { font-family: var(--serif); font-size: 32px; font-weight: 400; 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(251,245,232,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;
  position: relative;
}
.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(--champagne-deep); }
@media (max-width: 880px) { .reviews { grid-template-columns: 1fr; } }

/* ---------- 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; font-weight: 400; 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; } }

/* ---------- IG strip ---------- */
.ig-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.ig-tile { aspect-ratio: 1/1; background: var(--ivory-deep); position: relative; overflow: hidden; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.ig-tile:hover img { transform: scale(1.06); }
@media (max-width: 880px) { .ig-strip { grid-template-columns: repeat(3, 1fr); } }

/* ---------- 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(251,245,232,0.18);
}
.footer__brand {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 16px;
}
.footer__tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--champagne);
  max-width: 36ch;
  margin-top: 14px;
}
.footer__kannada {
  font-family: var(--kannada);
  font-size: 14px;
  color: rgba(251,245,232,0.55);
  margin-top: 10px;
  letter-spacing: 0.04em;
}
.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(251,245,232,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(251,245,232,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; }

/* ---------- Utility ---------- */
.spacer-sm { height: 24px; }
.spacer-md { height: 60px; }
.spacer-lg { height: 100px; }
.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; }

/* ============================================================
   PREMIUM LAYER
   ============================================================ */

.nav__brand img.brand-logo { height: 30px; width: auto; display: block; }
@media (max-width: 480px) { .nav__brand img.brand-logo { height: 24px; } }
.drawer__logo { height: 34px; width: auto; margin-bottom: 10px; }
.footer__logo { height: 46px; width: auto; margin-bottom: 18px; }

/* ---------- Silk marquee ticker ---------- */
.marquee {
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(251,245,232,0.14);
  border-bottom: 1px solid rgba(251,245,232,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; }
}

/* ---------- Magnetic CTA ---------- */
.magnetic { transition: transform 180ms cubic-bezier(0.2,0.6,0.2,1); will-change: transform; }

/* ---------- Hero parallax ---------- */
.hero__image img { will-change: transform; }

/* ---------- Image clip reveal ---------- */
.img-reveal { overflow: hidden; position: relative; }
.img-reveal img { transition: transform 1200ms cubic-bezier(0.16,1,0.3,1); }
.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); }
.img-reveal.is-revealed img { transform: scale(1.0); }

/* ---------- Weave cards with image hover ---------- */
.designer-card { position: relative; overflow: hidden; }
.designer-card__thumb {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 500ms ease;
}
.designer-card__thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); }
.designer-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251,245,232,0.92), rgba(251,245,232,0.78));
}
.designer-card:hover .designer-card__thumb { opacity: 1; }
.designer-card > * { position: relative; z-index: 1; }

/* ---------- Lookbook (silk floor) ---------- */
.lookbook {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 50px;
}
.lookbook__item { position: relative; overflow: hidden; background: var(--ivory-deep); }
.lookbook__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms cubic-bezier(0.16,1,0.3,1); display: block; }
.lookbook__item:hover img { transform: scale(1.05); }
.lookbook__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(28,15,53,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; }
@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; }
}

/* ---------- Stagger reveals ---------- */
[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; }

/* ---------- Kannada accent in hero ---------- */
.hero__kannada {
  font-family: var(--kannada);
  font-size: 13px;
  color: var(--champagne-deep);
  letter-spacing: 0.06em;
  opacity: 0.85;
}
