/* =========================================================
   Sundarban Ristorante — Roma
   ========================================================= */

:root {
  --bg:        #14100a;
  --bg-2:     #1a140e;
  --surface:  #221811;
  --surface-2:#2a1d14;
  --ink:      #f0e0c0;
  --ink-soft: #b9a684;
  --ink-dim:  #7a6c54;
  --gold:     #e8b94a;
  --gold-2:   #c89343;
  --saffron:  #d97a1a;
  --red:      #a4321e;
  --red-deep: #6e1f12;
  --green:    #1f3a2a;
  --green-2:  #284a36;
  --rule:     rgba(240, 224, 192, 0.08);

  --serif-display: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --serif-body:    "Lora", Georgia, "Times New Roman", serif;
  --mono:          "JetBrains Mono", ui-monospace, monospace;

  --pad: clamp(20px, 4vw, 56px);
  --maxw: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html { overflow-x: clip; }
body {
  font-family: var(--serif-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ----------- Ambient warmth + grain ----------- */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,185,74,0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(164,50,30,0.10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(31,58,42,0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.92  0 0 0 0 0.73  0 0 0 0 0.29  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

main, header, footer { position: relative; z-index: 2; }

/* ---------------- Nav ---------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  z-index: 50;
  transition: background-color .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(20,16,10,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px var(--pad);
  border-bottom-color: var(--rule);
}
.nav .brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--gold);
}
.nav .brand .brand-mark {
  height: 36px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(232,185,74,0.25));
  transition: transform .4s ease;
}
.nav.scrolled .brand .brand-mark { height: 30px; }
.nav .brand:hover .brand-mark { transform: rotate(-2deg) scale(1.05); }
.nav .links {
  display: flex; align-items: center; gap: 28px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav .links a {
  position: relative;
  padding: 6px 0;
  transition: color .3s;
}
.nav .links a::after {
  content: "";
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s ease;
}
.nav .links a:hover { color: var(--ink); }
.nav .links a:hover::after { width: 100%; }
.lang {
  display: inline-flex; align-items: center;
  border: 1px solid var(--rule);
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}
.lang button {
  background: transparent;
  border: 0;
  color: var(--ink-dim);
  padding: 6px 12px;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  transition: color .3s, background-color .3s;
}
.lang button.active {
  background: var(--gold);
  color: var(--bg);
}
@media (max-width: 720px) {
  .nav .links { display: none; }
}

/* ---------------- Section scaffolding ---------------- */
section.section {
  position: relative;
  padding: clamp(80px, 12vh, 140px) var(--pad);
}
.section-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.eyebrow .line {
  width: 28px; height: 1px;
  background: var(--gold);
}
h1, h2, h3 { font-family: var(--serif-display); font-weight: 500; letter-spacing: -0.005em; }
h2 {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.96;
  color: var(--ink);
  text-wrap: balance;
  margin-bottom: 36px;
}
h2 em, .rh .em, .em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

/* word reveal: no clipping (avoids italic-overhang issues) */
.word-wrap {
  display: inline-block;
  vertical-align: baseline;
  line-height: inherit;
}

/* ---------------- HERO — pinned set piece ---------------- */
.hero-pinned {
  position: relative;
  /* 200vh: stage is 100vh sticky, leaves 100vh of pin/scrub range */
  height: 200vh;
  /* overflow: clip (not hidden) so position:sticky inside still works */
  overflow: clip;
}
/* Scroll-driven media stage — sticky so it stays put through the pin. */
.hero-pinned > [data-scroll-stage] {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}
/* Hero content — second sticky sibling, overlaid via negative margin-top */
.hero-pinned > .hero-content {
  position: sticky;
  top: 0;
  margin-top: -100vh;
  height: 100vh;
  z-index: 2;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 120px var(--pad) 100px;
  pointer-events: none;
  gap: 28px;
  justify-items: center;
  align-content: center;
}
.hero-pinned > .hero-content > * { pointer-events: auto; }

.hero-logo {
  width: clamp(220px, 32vw, 420px);
  margin: 0 auto;
  filter: drop-shadow(0 30px 80px rgba(232,185,74,0.18)) drop-shadow(0 10px 30px rgba(0,0,0,0.5));
  will-change: transform, opacity;
}
.hero-tag {
  font-family: var(--serif-display);
  font-size: clamp(28px, 4.6vw, 64px);
  line-height: 1.12;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 0;
  word-spacing: 0.18em;
  max-width: 20ch;
  margin-top: 8px;
}
.hero-tag .em {
  padding: 0 0.04em;
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-family: var(--mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-sub .dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
  display: inline-block;
}
.hero-cta {
  display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}

.btn {
  --c: var(--gold);
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--c);
  border-radius: 999px;
  border: 1px solid var(--c);
  cursor: pointer;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, background-color .3s, color .3s;
}
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4), transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s ease;
  pointer-events: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(217,122,26,0.32);
  background: var(--saffron);
  border-color: var(--saffron);
}
.btn:hover::after { transform: translateX(100%); }
.btn.ghost {
  background: transparent;
  color: var(--gold);
  border-color: rgba(232,185,74,0.4);
}
.btn.ghost:hover {
  background: rgba(217,122,26,0.10);
  color: var(--saffron);
  border-color: rgba(217,122,26,0.55);
  box-shadow: none;
}
.btn .arrow {
  width: 14px; height: 14px;
  display: inline-block;
  position: relative;
  top: 1px;
}

.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--ink-dim);
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 3;
}
.scroll-cue .line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes pulse {
  0%,100% { transform: scaleY(0.3); opacity: 0.4; }
  50%     { transform: scaleY(1);   opacity: 1; }
}

/* ---------- Drifting embers ---------- */
.embers {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.ember {
  position: absolute;
  bottom: -10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold), 0 0 24px rgba(232,185,74,0.4);
  display: block;
}
.ember.warm {
  background: rgba(255,180,120,0.9);
  box-shadow: 0 0 14px rgba(255,140,80,0.7), 0 0 24px rgba(255,140,80,0.3);
}

/* ---------------- WELCOME ---------------- */
.welcome.section { padding-top: 80px; padding-bottom: 60px; }
.welcome-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.welcome .mark {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(120px, 18vw, 240px);
  line-height: 0.7;
  color: var(--gold);
  letter-spacing: -0.05em;
  text-align: center;
  will-change: transform;
}
.welcome-lead, .welcome p {
  font-family: var(--serif-display);
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.35;
  color: var(--ink);
  text-wrap: pretty;
  font-weight: 400;
}
.welcome-lead .em {
  color: var(--gold);
  font-style: italic;
}
.welcome .meta {
  margin-top: 32px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.welcome .meta .sep {
  width: 24px; height: 1px; background: var(--rule);
  display: inline-block;
}
@media (max-width: 800px) {
  .welcome-inner { grid-template-columns: 1fr; }
  .welcome .mark { text-align: left; }
}

/* ---------------- STORY ---------------- */
.story.section {
  padding-top: 60px;
  padding-bottom: 100px;
  overflow: hidden;
}
.story-text { max-width: 540px; }
.story-text > *:first-child { margin-top: 0; }
.story-p {
  font-family: var(--serif-display);
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 20px;
  text-wrap: pretty;
}
.story-p:last-of-type { margin-bottom: 32px; }
.story-p .em { color: var(--gold); font-style: italic; font-weight: 500; }
.story-credit {
  display: grid;
  gap: 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.story-credit > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}
.story-credit > div:last-child { border-bottom: 0; }
.story-credit .k { color: var(--gold); }
.story-credit .v { color: var(--ink); }

.story-photos {
  /* legacy class kept for compatibility — v3 uses .story-column */
}
.story-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  margin-top: 12px;
}
@media (max-width: 900px) {
  .story-head { grid-template-columns: 1fr; }
}
.story-head h2 {
  font-size: clamp(40px, 6.4vw, 72px);
  margin-bottom: 0;
}

.story-column {
  display: flex;
  flex-direction: column;
  gap: clamp(72px, 12vh, 140px);
  margin-top: clamp(80px, 12vh, 140px);
}
.story-shot {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: end;
  margin: 0;
}
.story-shot.right {
  grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
}
.story-shot.right .shot-frame { grid-column: 2; grid-row: 1; }
.story-shot.right .shot-cap   { grid-column: 1; grid-row: 1; text-align: right; align-items: flex-end; }

.shot-frame {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  background: var(--surface);
}
.shot-frame img {
  position: absolute;
  top: -8%; left: 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.shot-cap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.shot-num {
  color: var(--gold);
  font-size: 12px;
  font-feature-settings: "tnum";
}
.shot-label {
  color: var(--ink);
  font-family: var(--serif-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-style: italic;
  letter-spacing: -0.005em;
  text-transform: none;
}

@media (max-width: 720px) {
  .story-shot,
  .story-shot.right {
    grid-template-columns: 1fr;
  }
  .story-shot.right .shot-frame,
  .story-shot.right .shot-cap {
    grid-column: 1; grid-row: auto; text-align: left; align-items: flex-start;
  }
  .shot-frame { aspect-ratio: 4 / 3; }
  .shot-cap { padding-bottom: 0; }
}

.story-pull {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.15;
  color: var(--ink);
  text-align: center;
  max-width: 22ch;
  margin: 100px auto 0;
  padding: 0 20px;
  position: relative;
}
.story-pull::before,
.story-pull::after {
  content: "";
  display: block;
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 24px auto;
  opacity: 0.5;
}

/* ---------------- MARQUEE ---------------- */
.marquee-strip {
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-2);
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 56px;
  white-space: nowrap;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(48px, 7vw, 96px);
  color: var(--ink);
  will-change: transform;
}
.marquee-track .m-item {
  display: inline-flex; align-items: center; gap: 56px;
  flex-shrink: 0;
}
.marquee-track .m-item em {
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
}
.marquee-track .m-item:nth-child(2n) em { color: var(--gold); }
.marquee-track .m-sep {
  display: inline-block;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  vertical-align: middle;
  flex-shrink: 0;
  opacity: 0.6;
}

/* ---------------- ORDER ---------------- */
.order.section { padding-bottom: clamp(80px, 12vh, 140px); overflow: hidden; }
.order-bg-word {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(160px, 26vw, 360px);
  line-height: 1;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: -0.04em;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  will-change: transform, opacity;
}
.order .section-inner { position: relative; z-index: 2; }

.order-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 64px;
}
.order-head p {
  max-width: 420px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.order-head h2 { margin-bottom: 0; }
.order-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 800px) {
  .order-head { grid-template-columns: 1fr; }
  .order-grid { grid-template-columns: 1fr; }
}

.platform-card {
  position: relative;
  background: var(--surface);
  border: none;
  border-radius: 12px;
  overflow: hidden;
  padding: 40px;
  display: flex; flex-direction: column;
  min-height: 380px;
  transition: transform .4s ease, box-shadow .4s ease, background-color .4s ease;
}
.platform-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
  z-index: 3;
}
.platform-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, var(--accent, rgba(232,185,74,0.15)), transparent 60%);
  pointer-events: none;
  opacity: 0.8;
  transition: opacity .4s;
}
.platform-card:hover {
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  background: var(--surface-2);
}
.platform-card:hover::before { opacity: 1; }
.platform-card:hover::after  { transform: scaleX(1); }
.platform-card.justeat { --accent: rgba(255, 140, 0, 0.22); }
.platform-card.glovo   { --accent: rgba(255, 198, 51, 0.22); }

.platform-card .top {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 36px;
}
.platform-card .platform-icon {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.platform-card .top .ext { color: var(--gold); font-size: 16px; }
.platform-card .platform-name {
  position: relative; z-index: 2;
  font-family: var(--serif-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 16px;
}
.platform-card .platform-desc {
  position: relative; z-index: 2;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
  max-width: 360px;
  margin-bottom: auto;
}
.platform-card .platform-cta {
  position: relative; z-index: 2;
  margin-top: 32px;
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .3s, color .3s;
}
.platform-card:hover .platform-cta { gap: 22px; }
.platform-card .platform-cta .arrow {
  width: 28px; height: 1px; background: var(--gold);
  position: relative;
  transition: width .3s;
  display: inline-block;
}
.platform-card .platform-cta .arrow::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
  transform: rotate(45deg);
}
.platform-card:hover .platform-cta .arrow { width: 42px; }
.platform-card .glyph {
  position: absolute;
  right: -30px; bottom: -60px;
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 500;
  font-size: 320px;
  line-height: 0.8;
  color: rgba(232,185,74,0.06);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* ---------------- HOURS ---------------- */
.hours.section {
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hours-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 820px) { .hours-inner { grid-template-columns: 1fr; } }

.hours-desc {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  margin-top: 28px;
  max-width: 380px;
}

.hours-list {
  display: grid;
  gap: 0;
  font-family: var(--serif-display);
}
.hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}
.hours-row:last-child { border-bottom: 0; }
.hours-row.today { color: var(--gold); }
.hours-row .day {
  font-style: italic;
  letter-spacing: 0.01em;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
}
.hours-row .time {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}
.hours-row.today .time { color: var(--gold); }

.hours-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px;
  background: rgba(31,58,42,0.5);
  border: 1px solid rgba(31,58,42,1);
  color: #4ade80;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  margin: 0 0 8px 0;
}
.hours-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.7);
  animation: livePulse 2s ease-out infinite;
}
.hours-badge.closed {
  color: var(--ink-soft);
  background: rgba(110,31,18,0.3);
  border-color: rgba(164,50,30,0.5);
}
.hours-badge.closed .pulse { background: var(--red); animation: none; }
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* ---------------- VISIT / MAP ---------------- */
.visit-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: stretch;
}
@media (max-width: 900px) { .visit-inner { grid-template-columns: 1fr; } }

.visit-text { display: flex; flex-direction: column; justify-content: center; }
.visit-text .addr {
  font-family: var(--serif-display);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 32px;
}
.visit-text .addr .city {
  display: block;
  color: var(--gold);
  font-style: italic;
}
.visit-text .visit-meta {
  display: grid; gap: 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.visit-text .visit-meta div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.visit-text .visit-meta div:last-child { border-bottom: 0; }
.visit-text .visit-meta .k { color: var(--gold); }
.visit-text .btn { align-self: flex-start; }

.map-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  min-height: 520px;
  background: var(--surface);
}
.map-inner {
  position: absolute;
  inset: -5%;
  will-change: transform;
}
.map-inner iframe {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.55) contrast(0.88) brightness(0.85);
  border: 0;
}
.map-frame .map-pin {
  position: absolute;
  top: 24px; left: 24px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: rgba(20,16,10,0.85);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  backdrop-filter: blur(8px);
}
.map-frame .map-pin .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 12px var(--red);
  display: inline-block;
}

/* ---------------- CONTACT ---------------- */
.contact.section { padding-bottom: 100px; }
.contact-title { max-width: 16ch; }
.contact-inner {
  display: grid;
  gap: 0;
  margin-top: 40px;
}
.contact-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-row:first-child { border-top: 1px solid var(--rule); }
.contact-row .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding-top: 14px;
}
.contact-row .value {
  font-family: var(--serif-display);
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.contact-row .value a:not(.social-chip) {
  position: relative;
  display: inline-block;
  transition: color .3s;
}
.contact-row .value > a::after {
  content: "";
  position: absolute; left: 0; bottom: 4px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.contact-row .value > a:hover { color: var(--gold); }
.contact-row .value > a:hover::after { transform: scaleX(1); }
.contact-row .socials {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.contact-row .social-chip {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 22px 10px 10px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  transition: border-color .3s, transform .3s, background-color .3s;
}
.contact-row .social-chip:hover {
  border-color: rgba(232,185,74,0.5);
  transform: translateY(-2px);
  background: var(--surface-2);
}
.contact-row .social-chip svg {
  flex-shrink: 0;
  display: block;
}
.contact-row .social-chip .brand-badge { flex-shrink: 0; }

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.brand-badge img { display: block; }
@media (max-width: 720px) {
  .contact-row { grid-template-columns: 1fr; }
}

/* ---------------- FOOTER ---------------- */
footer {
  border-top: 1px solid var(--rule);
  padding: 56px var(--pad) 48px;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  text-align: center;
}
.foot-logos {
  display: flex; align-items: center; gap: 28px;
}
.foot-logo {
  display: block;
  width: auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
  transition: transform .4s ease;
}
.foot-logo.sundarban { height: 64px; }
.foot-logo.x3ro      { height: 56px; }
.foot-divider {
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, transparent, var(--rule), var(--rule), transparent);
}
.foot-x3ro-link { display: inline-flex; }
.foot-x3ro-link:hover .foot-logo { transform: translateY(-2px) scale(1.04); }

.foot-copy {
  font-family: var(--serif-display);
  font-size: clamp(15px, 1.4vw, 17px);
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  margin-top: 4px;
}
.foot-credit {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color .3s;
  padding: 8px 4px;
}
.foot-credit:hover { color: var(--ink); }
.foot-credit-brand {
  color: var(--gold);
  letter-spacing: 0.28em;
  position: relative;
}
.foot-credit-brand::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.foot-credit:hover .foot-credit-brand::after { transform: scaleX(1); }

@media (max-width: 600px) {
  footer { padding: 40px var(--pad) 32px; gap: 18px; }
  .foot-logos { gap: 20px; }
  .foot-logo.sundarban { height: 52px; }
  .foot-logo.x3ro      { height: 44px; }
  .foot-divider { height: 52px; }
  .foot-copy { font-size: 14px; }
  .foot-credit { font-size: 10px; letter-spacing: 0.18em; }
}

/* ---------------- Mobile refinements ---------------- */
@media (max-width: 720px) {
  :root { --pad: 20px; }
  section.section { padding: clamp(56px, 9vh, 96px) var(--pad); }

  .nav { padding: 12px var(--pad); }
  .nav .brand { font-size: 12px; }
  .nav .brand .brand-mark { height: 28px; }
  .nav.scrolled .brand .brand-mark { height: 24px; }

  .hero { padding: 88px var(--pad) 60px; }
  .hero-inner { gap: 18px; }
  .hero-logo { width: clamp(200px, 60vw, 280px); }
  .hero-tag { font-size: clamp(22px, 7vw, 32px); max-width: 14ch; }
  .hero-sub { font-size: 10px; letter-spacing: 0.2em; gap: 10px; }
  .hero-cta .btn { padding: 14px 22px; font-size: 11px; letter-spacing: 0.18em; }

  h2 { font-size: clamp(32px, 8vw, 44px); margin-bottom: 24px; }

  .welcome .mark { font-size: clamp(80px, 22vw, 140px); }
  .welcome-lead, .welcome p { font-size: clamp(19px, 4.4vw, 24px); }

  .story-text h2 { font-size: clamp(28px, 7vw, 40px); }
  .story-p { font-size: clamp(17px, 4vw, 20px); }
  .story-credit > div { grid-template-columns: 110px 1fr; }
  .story-pull { font-size: clamp(24px, 6vw, 36px); margin-top: 64px; }

  .marquee-track { font-size: clamp(40px, 11vw, 60px); gap: 36px; }
  .marquee-track .m-item { gap: 36px; }

  .order-head { gap: 12px; margin-bottom: 36px; }
  .order-head p { font-size: 15px; }
  .order-bg-word { font-size: clamp(120px, 32vw, 200px); }
  .platform-card { padding: 28px; min-height: 280px; }
  .platform-card .platform-name { font-size: clamp(34px, 9vw, 48px); }
  .platform-card .top { margin-bottom: 24px; }

  .hours-row { grid-template-columns: 1fr auto; gap: 16px; padding: 18px 0; }
  .hours-row .day { font-size: clamp(20px, 5vw, 26px); }
  .hours-row .time { font-size: 13px; }

  .visit-text .addr { font-size: clamp(18px, 4.4vw, 22px); margin-bottom: 24px; }
  .visit-text .visit-meta div { grid-template-columns: 90px 1fr; }
  .map-frame { min-height: 360px; }

  .contact.section { padding-bottom: 72px; }
  .contact-row { padding: 24px 0; }
  .contact-row .label { font-size: 10px; padding-top: 0; }
  .contact-row .value { font-size: clamp(26px, 7vw, 38px); }
  .contact-row .social-chip { font-size: 11px; padding: 8px 16px 8px 8px; }

  footer { padding: 32px var(--pad); gap: 16px; }

  .scroll-cue { bottom: 18px; }
  .scroll-cue .line { height: 36px; }
}

@media (max-width: 480px) {
  .nav .lang { font-size: 10px; }
  .nav .lang button { padding: 4px 10px; }
}
@media (max-height: 700px) {
  .scroll-cue { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------------- v3 HERO STAGE — scroll-driven media (hand-wired) ---------------- */
.hero-pinned > [data-scroll-stage] > .hero-stage-video,
.hero-pinned > [data-scroll-stage] > .hero-stage-canvas,
.hero-pinned > [data-scroll-stage] > .hero-stage-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--bg);
}
.hero-pinned > [data-scroll-stage]::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 25%, rgba(20,16,10,0.55) 80%),
    linear-gradient(180deg, rgba(20,16,10,0.35) 0%, transparent 25%, transparent 75%, rgba(20,16,10,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
/* Keep hero-content readable on top of the scrubbed video */
.hero-pinned > .hero-content { z-index: 2; }
.hero-pinned > .hero-content .hero-logo { filter: drop-shadow(0 8px 24px rgba(0,0,0,0.55)); }
.hero-pinned > .hero-content .hero-tag,
.hero-pinned > .hero-content .hero-sub { text-shadow: 0 2px 18px rgba(0,0,0,0.55); }
