/* ============================================================
   SUKRIS SILK — Wine + Old-Gold + Ivory
   Cormorant Garamond / Noto Serif Kannada / Inter Tight
   ============================================================ */

:root {
  --ivory: #F5EFE0;
  --ivory-warm: #EDE3CE;
  --ivory-deep: #E3D6BC;
  --wine: #4A1223;
  --wine-mid: #6B1C30;
  --gold: #C4993A;
  --gold-deep: #8A6820;
  --taupe: #7A6A5C;
  --taupe-soft: #B6A99D;
  --rule: rgba(74,18,35,0.12);
  --rule-strong: rgba(74,18,35,0.24);
  --rule-light: rgba(245,239,224,0.18);

  --serif: "Cormorant Garamond", Georgia, serif;
  --kannada: "Noto Serif Kannada", serif;
  --sans: "Inter Tight", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "Inter Tight", monospace;

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

*, *::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(--wine);
  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; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 25% 35%, rgba(74,18,35,0.018) 1px, transparent 1.5px),
    radial-gradient(circle at 75% 65%, rgba(74,18,35,0.014) 1px, transparent 1.5px);
  background-size: 80px 80px, 120px 120px;
  mix-blend-mode: multiply;
  opacity: 0.7;
}

/* ---------- Typography ---------- */
.kannada { font-family: var(--kannada); }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  opacity: 0.65;
  font-weight: 500;
}
.eyebrow--gold { color: var(--gold-deep); opacity: 1; }
.plate-num {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 400;
}
.plate-num--light { color: rgba(245,239,224,0.55); }

h1, h2, h3 { font-family: var(--serif); font-weight: 300; line-height: 1.05; letter-spacing: -0.01em; color: var(--wine); }
.h-hero { font-size: clamp(48px, 8.5vw, 132px); line-height: 0.95; letter-spacing: -0.02em; }
.h-display { font-size: clamp(38px, 5.5vw, 80px); line-height: 1.0; font-weight: 300; }
.h-section { font-size: clamp(30px, 4vw, 60px); line-height: 1.05; font-weight: 300; }
.h-sub { font-size: clamp(20px, 2.2vw, 30px); line-height: 1.25; font-weight: 300; }

.lead { font-size: clamp(16px, 1.3vw, 20px); line-height: 1.6; color: var(--taupe); max-width: 60ch; }
.body { font-size: 16px; line-height: 1.75; color: var(--taupe); }

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

/* ---------- Layout ---------- */
.section { padding: var(--pad-y) var(--pad-x); position: relative; z-index: 2; }
.wrap { max-width: var(--max); margin: 0 auto; }
.section--wine { background: var(--wine); color: var(--ivory); }
.section--wine h2 { color: var(--ivory); }
.section--wine .eyebrow, .section--wine .plate-num { color: var(--gold); opacity: 0.85; }
.section--wine .lead, .section--wine .body { color: rgba(245,239,224,0.78); }
.section--ivory-deep { background: var(--ivory-deep); }

/* ---------- 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(74,18,35,0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,153,58,0.25);
  transition: background 240ms ease;
}
.nav__wordmark { font-family: var(--serif); font-size: 20px; font-weight: 400; letter-spacing: 0.06em; color: var(--ivory); }
.nav__links { display: flex; gap: 36px; list-style: none; }
.nav__links a {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(245,239,224,0.72);
  padding: 4px 0; transition: color 200ms ease; font-weight: 400;
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--wine);
  padding: 12px 22px; font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  transition: background 200ms ease, transform 200ms ease;
}
.nav__cta:hover { background: var(--gold-deep); color: var(--ivory); transform: translateY(-1px); }
.nav__toggle { display: none; }
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; background: var(--gold); color: var(--wine); padding: 10px 18px; font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }
}

/* ---------- Drawer ---------- */
.drawer { position: fixed; inset: 0; background: var(--wine); 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(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.drawer__logo { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--ivory); letter-spacing: 0.06em; margin-top: 30px; }
.drawer__links { list-style: none; margin-top: 48px; display: flex; flex-direction: column; gap: 22px; }
.drawer__links a { font-family: var(--serif); font-size: 34px; font-weight: 300; color: var(--ivory); }
.drawer__cta { margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--gold); color: var(--wine); padding: 18px 28px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px; font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  background: var(--wine); color: var(--ivory);
  border: 1px solid var(--wine); transition: all 220ms ease;
}
.btn:hover { background: var(--wine-mid); border-color: var(--wine-mid); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--wine); }
.btn--ghost:hover { background: var(--wine); color: var(--ivory); }
.btn--ghost-light { background: transparent; color: var(--ivory); border-color: rgba(245,239,224,0.4); }
.btn--ghost-light:hover { background: rgba(245,239,224,0.12); }
.btn--gold { background: var(--gold); color: var(--wine); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-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(--sans); 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: 64px; z-index: 2; }
.hero__copy {
  background: var(--wine); color: var(--ivory);
  padding: clamp(50px, 7vw, 110px) 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: 70px; padding-bottom: 16px; border-bottom: 1px solid rgba(196,153,58,0.3); }
.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.02em; font-weight: 300; color: var(--ivory); }
.hero__title em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero__sub { font-family: var(--sans); font-size: clamp(15px, 1.2vw, 18px); line-height: 1.7; color: rgba(245,239,224,0.72); max-width: 48ch; margin: 28px 0 36px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__meta { margin-top: 36px; display: flex; flex-direction: column; gap: 6px; font-family: var(--sans); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,239,224,0.45); }
.hero__image { position: relative; background: var(--ivory-deep); overflow: hidden; }
.hero__image img { width: 100%; height: 100%; object-fit: cover; transform-origin: center; }
.hero__badge {
  position: absolute; bottom: 36px; right: 36px;
  background: var(--gold); color: var(--wine);
  padding: 18px 22px; font-family: var(--serif); font-size: 13px;
  font-weight: 400; line-height: 1.3; text-align: center; z-index: 3;
  letter-spacing: 0.02em;
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__copy { min-height: 70vh; }
  .hero__image { min-height: 56vw; }
  .hero__badge { bottom: 20px; right: 20px; font-size: 11px; padding: 14px 16px; }
}

/* ---------- Heritage bar ---------- */
.heritage { background: var(--wine); padding: 36px var(--pad-x); border-top: 1px solid rgba(196,153,58,0.2); }
.heritage__grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(196,153,58,0.2); }
.heritage__cell { background: var(--wine); padding: 28px 24px; text-align: center; }
.heritage__cell .num { font-family: var(--serif); font-size: clamp(36px,5vw,72px); font-weight: 300; line-height: 1; color: var(--gold); letter-spacing: -0.02em; }
.heritage__cell .label { font-family: var(--sans); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,239,224,0.55); margin-top: 10px; font-weight: 400; }
@media (max-width: 600px) { .heritage__grid { grid-template-columns: repeat(2,1fr); } }

/* ---------- Story ---------- */
.story-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.story-split__image { position: relative; }
.story-split__image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.cap { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe-soft); margin-top: 12px; }
.story-split__copy { padding-top: 14px; }
.story-split__copy .h-display { margin-bottom: 28px; }
.story-split__copy .body + .body { margin-top: 18px; }
.body.dropcap::first-letter { font-family: var(--serif); font-size: 3.8em; line-height: 0.82; float: left; margin: 0.06em 0.14em 0 0; color: var(--wine); font-weight: 300; }
.signoff { font-family: var(--serif); font-size: 15px; font-weight: 300; color: var(--gold-deep); margin-top: 28px; letter-spacing: 0.04em; }
@media (max-width: 720px) { .story-split { grid-template-columns: 1fr; } }

/* ---------- Image reveal ---------- */
.img-reveal img { clip-path: inset(0 100% 0 0); transition: clip-path 1.1s cubic-bezier(0.16,1,0.3,1); }
.img-reveal.is-revealed img { clip-path: inset(0 0% 0 0); }

/* ---------- Reveal animations ---------- */
[data-reveal] { transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal--hidden { opacity: 0; transform: translateY(24px); }
.reveal--show, [data-reveal].reveal--show { opacity: 1; transform: none; }
[data-reveal-stagger] > * { transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal-stagger].is-staggered > * { animation: fadeUp 0.6s ease both; }
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }

/* ---------- Marquee ---------- */
.marquee { background: var(--gold); overflow: hidden; padding: 0; border-top: 1px solid rgba(74,18,35,0.15); border-bottom: 1px solid rgba(74,18,35,0.15); }
.marquee__track { display: flex; gap: 0; white-space: nowrap; animation: marquee-scroll 28s linear infinite; }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--wine); font-weight: 500; padding: 14px 32px; border-right: 1px solid rgba(74,18,35,0.18); }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Designer/Collection cards ---------- */
.designers { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); }
@media (max-width: 900px) { .designers { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .designers { grid-template-columns: 1fr; } }
.designer-card { background: var(--ivory); padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.designer-card__thumb { aspect-ratio: 3/4; overflow: hidden; }
.designer-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.designer-card:hover .designer-card__thumb img { transform: scale(1.04); }
.designer-card__top { display: flex; justify-content: space-between; align-items: flex-start; padding: 20px 20px 0; }
.designer-card__name { font-family: var(--serif); font-size: 20px; font-weight: 300; line-height: 1.1; color: var(--wine); }
.designer-card__origin { font-family: var(--sans); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin-top: 4px; font-weight: 400; }
.designer-card__sig { font-family: var(--sans); font-size: 13px; line-height: 1.6; color: var(--taupe); padding: 12px 20px; flex: 1; }
.designer-card__price { font-family: var(--serif); font-size: 16px; font-weight: 400; color: var(--wine); padding: 0 20px 20px; letter-spacing: 0.02em; }

/* ---------- Pain hook band ---------- */
.pain-band { background: var(--wine); color: var(--ivory); padding: var(--pad-y) var(--pad-x); position: relative; overflow: hidden; }
.pain-band::before { content: ""; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c4993a' fill-opacity='0.04'%3E%3Cpath d='M0 0h40v40H0z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.pain-band__inner { position: relative; z-index: 2; max-width: 820px; }
.pain-band__heading { font-family: var(--serif); font-size: clamp(30px, 4.5vw, 64px); font-weight: 300; line-height: 1.05; color: var(--ivory); margin: 18px 0 22px; letter-spacing: -0.015em; }
.pain-band__body { font-size: 17px; line-height: 1.7; color: rgba(245,239,224,0.78); margin-bottom: 32px; max-width: 60ch; }

/* ---------- Lookbook ---------- */
.lookbook { display: grid; grid-template-columns: repeat(5,1fr); gap: 6px; }
@media (max-width: 900px) { .lookbook { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 540px) { .lookbook { grid-template-columns: repeat(2,1fr); } }
.lookbook__item { position: relative; overflow: hidden; aspect-ratio: 2/3; }
.lookbook__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.lookbook__item:hover img { transform: scale(1.05); }
.lookbook__tag { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(74,18,35,0.75)); color: var(--ivory); font-family: var(--sans); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; padding: 28px 10px 10px; font-weight: 400; }

/* ---------- Visit ---------- */
.visit { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start; }
@media (max-width: 720px) { .visit { grid-template-columns: 1fr; } }
.visit__map iframe { width: 100%; aspect-ratio: 4/3; border: none; filter: sepia(30%) contrast(90%); }
.visit__info { padding-top: 8px; }
.visit__row { display: grid; grid-template-columns: 90px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(245,239,224,0.12); }
.visit__row .k { font-family: var(--sans); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 400; padding-top: 2px; }
.visit__row .v { font-family: var(--sans); font-size: 14px; line-height: 1.55; color: rgba(245,239,224,0.88); }
.visit__row .v a { color: rgba(245,239,224,0.88); text-decoration: underline; text-underline-offset: 3px; }
.visit__row .v .small { font-size: 12px; color: rgba(245,239,224,0.62); }

/* ---------- Footer ---------- */
.footer { background: var(--ivory-deep); color: var(--wine); padding: var(--pad-y) var(--pad-x) 40px; }
.footer--wine { background: var(--wine); color: var(--ivory); }
.footer__wordmark { font-family: var(--serif); font-size: clamp(28px,4vw,52px); font-weight: 300; color: var(--ivory); letter-spacing: 0.04em; }
.footer__tagline { font-family: var(--sans); font-size: 13px; color: rgba(245,239,224,0.52); letter-spacing: 0.06em; line-height: 1.5; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--rule-light); }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }
.footer__col h4 { font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 500; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__col ul li { font-family: var(--sans); font-size: 13px; color: rgba(245,239,224,0.62); }
.footer__col ul a { color: rgba(245,239,224,0.75); transition: color 200ms ease; }
.footer__col ul a:hover { color: var(--gold); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-family: var(--sans); font-size: 11px; letter-spacing: 0.1em; color: rgba(245,239,224,0.38); flex-wrap: wrap; gap: 12px; }
.footer__bottom a { color: rgba(245,239,224,0.62); transition: color 200ms ease; }
.footer__bottom a:hover { color: var(--gold); }
