/* =============================================================
   THAI·USA — makeover stylesheet
   Palette preserved from original: navy #1E3369, gold #B8860B, cream
   Editorial "fine-dining menu" aesthetic · mobile-first
   ============================================================= */

/* ---------- tokens ---------- */
:root {
  --navy:        #16264f;
  --navy-700:    #1e3369;   /* original brand navy */
  --navy-900:    #0d1730;
  --navy-950:    #091022;
  --gold:        #b8860b;   /* original gold */
  --gold-bright: #d8a83c;
  --gold-soft:   #e9d4a0;
  --cream:       #fbf6ea;
  --cream-pure:  #fffcf0;   /* original cream-light */
  --paper:       #f4ecd9;
  --ink:         #14213d;
  --ink-soft:    #41506e;

  --font-display: "Playfair Display", Georgia, serif;
  --font-serif:   "Cormorant Garamond", Georgia, serif;
  --font-sans:    "Inter", system-ui, -apple-system, sans-serif;

  --shell: min(92vw, 1280px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --radius: 18px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--cream-pure); }

.shell { width: var(--shell); margin-inline: auto; }

/* ---------- shared type ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-sans);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold);
}
.kicker.light { color: var(--gold-bright); }
.kicker::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .6; }

.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.01em;
  font-size: clamp(2.4rem, 7.5vw, 4.6rem);
  margin-top: .35em;
}
.display em { font-style: italic; color: var(--gold); font-weight: 500; }
.display.light { color: var(--cream-pure); }

.lead {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3.6vw, 1.7rem);
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ---------- grain + progress ---------- */
.grain {
  position: fixed; inset: -50%;
  pointer-events: none; z-index: 9000;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  z-index: 9500; background: transparent; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: width .1s linear;
}

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  padding: clamp(14px, 2.4vw, 22px) 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(13, 23, 48, .82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(232, 212, 160, .14);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.brand {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.35rem; letter-spacing: .02em;
  color: var(--cream-pure);
}
.brand-mark { color: var(--gold-bright); font-size: .7em; transform: translateY(-1px); }
.brand .dot { color: var(--gold-bright); }

.nav-desktop { display: none; }
.nav-desktop a {
  font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  color: rgba(251, 246, 234, .82); position: relative; padding: .2em 0;
  transition: color .3s var(--ease);
}
.nav-desktop a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--gold-bright); transition: width .35s var(--ease);
}
.nav-desktop a:not(.nav-cta):hover { color: var(--cream-pure); }
.nav-desktop a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  border: 1px solid rgba(216, 168, 60, .5); border-radius: 100px;
  padding: .55em 1.2em !important; color: var(--gold-bright) !important;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s;
}
.nav-cta:hover { background: var(--gold-bright); color: var(--navy-900) !important; border-color: var(--gold-bright); }

/* hamburger */
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 42px; height: 42px; align-items: center; justify-content: center;
  background: rgba(13,23,48,.5); border: 1px solid rgba(232,212,160,.2);
  border-radius: 50%; cursor: pointer; z-index: 850; position: relative;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.nav-toggle span { width: 18px; height: 1.6px; background: var(--cream-pure); transition: transform .35s var(--ease), opacity .25s; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* mobile nav overlay */
.mobile-nav {
  position: fixed; inset: 0; z-index: 820;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 0 9vw; gap: 1.6rem;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s;
}
body.nav-open .mobile-nav { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav nav { display: flex; flex-direction: column; gap: .2rem; }
.mobile-nav nav a {
  font-family: var(--font-display); font-size: clamp(2.2rem, 12vw, 3.4rem);
  font-weight: 500; color: var(--cream-pure); display: flex; align-items: baseline; gap: .6rem;
  opacity: 0; transform: translateY(20px);
}
body.nav-open .mobile-nav nav a { animation: navIn .6s var(--ease) forwards; }
body.nav-open .mobile-nav nav a:nth-child(1) { animation-delay: .12s; }
body.nav-open .mobile-nav nav a:nth-child(2) { animation-delay: .20s; }
body.nav-open .mobile-nav nav a:nth-child(3) { animation-delay: .28s; }
.mobile-nav nav a em { font-family: var(--font-sans); font-style: normal; font-size: .8rem; color: var(--gold-bright); letter-spacing: .2em; }
@keyframes navIn { to { opacity: 1; transform: translateY(0); } }
.mobile-call {
  font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold-bright);
  border-bottom: 1px solid rgba(216,168,60,.4); padding-bottom: .2em;
}
.mobile-social { display: flex; gap: 1.4rem; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(251,246,234,.6); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative; min-height: 100svh;
  background: radial-gradient(120% 120% at 50% -10%, var(--navy-700) 0%, var(--navy) 42%, var(--navy-900) 100%);
  color: var(--cream-pure);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 120px 0 clamp(40px, 8vh, 80px);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .orb {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5;
}
.orb-1 { width: 50vw; height: 50vw; top: -10%; right: -12%; background: radial-gradient(circle, rgba(184,134,11,.55), transparent 70%); animation: float1 14s ease-in-out infinite; }
.orb-2 { width: 42vw; height: 42vw; bottom: -16%; left: -10%; background: radial-gradient(circle, rgba(30,51,105,.9), transparent 70%); animation: float2 18s ease-in-out infinite; }
@keyframes float1 { 50% { transform: translate(-30px, 30px) scale(1.08); } }
@keyframes float2 { 50% { transform: translate(28px, -24px) scale(1.1); } }

.hero-thai {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(7rem, 38vw, 30rem); line-height: 1; white-space: nowrap;
  color: rgba(233, 212, 160, .05); user-select: none; letter-spacing: .02em;
}

.hero-inner { position: relative; z-index: 2; }

.hero-eyebrow {
  display: flex; align-items: center; gap: .8em; flex-wrap: wrap;
  font-size: clamp(.66rem, 2.6vw, .8rem); font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft);
  margin-bottom: clamp(18px, 4vh, 30px);
}
.hero-eyebrow .line { display: inline-block; width: clamp(28px, 8vw, 60px); height: 1px; background: var(--gold-bright); opacity: .7; }

/* oversized kinetic title */
.hero-title {
  font-family: var(--font-display); font-weight: 800;
  line-height: .82; letter-spacing: -.02em; text-transform: uppercase;
  font-size: clamp(4.6rem, 27vw, 22rem);
  display: flex; flex-direction: column;
}
.hero-title .word { display: block; overflow: hidden; }
.hero-title .w2 { font-size: .42em; }
.hero-title .amp {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  color: var(--gold-bright); display: inline-block; padding: .04em 0;
  text-transform: none;
}
.hero-title .w3 { color: transparent; -webkit-text-stroke: 1.4px var(--gold-soft); text-stroke: 1.4px var(--gold-soft); }
.hero-title .char-wrap { display: inline-flex; }
.hero-title .char {
  display: inline-block; transform: translateY(110%);
  animation: charUp .9s var(--ease) forwards;
}
.hero-title .w1 .char:nth-child(1) { animation-delay: .15s; }
.hero-title .w1 .char:nth-child(2) { animation-delay: .22s; }
.hero-title .w1 .char:nth-child(3) { animation-delay: .29s; }
.hero-title .w1 .char:nth-child(4) { animation-delay: .36s; }
.hero-title .w2 .amp { display: inline-block; transform: translateY(110%); animation: charUp .9s var(--ease) .44s forwards; }
.hero-title .w3 .char:nth-child(1) { animation-delay: .52s; }
.hero-title .w3 .char:nth-child(2) { animation-delay: .59s; }
.hero-title .w3 .char:nth-child(3) { animation-delay: .66s; }
@keyframes charUp { to { transform: translateY(0); } }

.hero-foot {
  display: flex; flex-direction: column; gap: 28px;
  margin-top: clamp(26px, 5vh, 46px);
}
.hero-tag {
  font-family: var(--font-serif); font-size: clamp(1.15rem, 4.2vw, 1.5rem);
  line-height: 1.45; color: rgba(251, 246, 234, .82); max-width: 38ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 1.05em 2.1em; border-radius: 100px; cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s, box-shadow .3s;
}
.btn-primary { background: var(--gold-bright); color: var(--navy-950); box-shadow: 0 10px 30px -10px rgba(216,168,60,.6); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(216,168,60,.7); }
.btn-ghost { border: 1px solid rgba(233,212,160,.45); color: var(--cream-pure); }
.btn-ghost:hover { background: rgba(233,212,160,.12); transform: translateY(-3px); }

.scroll-cue {
  position: absolute; right: max(4vw, 24px); bottom: 30px; z-index: 3;
  display: none; flex-direction: column; align-items: center; gap: 10px;
  color: var(--gold-soft); font-size: .66rem; letter-spacing: .25em; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue-line { width: 1px; height: 56px; background: linear-gradient(var(--gold-bright), transparent); animation: cue 2s ease-in-out infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* =============================================================
   MARQUEE
   ============================================================= */
.marquee {
  background: var(--navy-900); color: var(--gold-soft);
  padding: 18px 0; overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(233,212,160,.12); border-bottom: 1px solid rgba(233,212,160,.12);
}
.marquee-track { display: inline-flex; align-items: center; gap: 2.2rem; animation: scroll-x 32s linear infinite; will-change: transform; }
.marquee-track span { font-family: var(--font-display); font-style: italic; font-size: clamp(1.2rem, 4vw, 1.9rem); }
.marquee-track .sep { color: var(--gold); font-style: normal; font-size: .8em; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* =============================================================
   ABOUT
   ============================================================= */
.about { background: var(--cream); padding: clamp(70px, 12vw, 150px) 0; }
.about-grid { display: grid; gap: clamp(30px, 6vw, 60px); }
.about-left .display { color: var(--ink); }
.about-right { display: flex; flex-direction: column; gap: 34px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; border-top: 1px solid rgba(20,33,61,.14); padding-top: 30px; }
.about-stats li { display: flex; flex-direction: column; gap: 4px; }
.about-stats strong { font-family: var(--font-display); font-size: clamp(1.7rem, 5.5vw, 2.4rem); color: var(--gold); font-weight: 600; line-height: 1; }
.about-stats span { font-size: .76rem; letter-spacing: .04em; color: var(--ink-soft); }

/* =============================================================
   MENU
   ============================================================= */
.menu {
  background: var(--cream-pure);
  background-image: radial-gradient(rgba(184,134,11,.06) 1px, transparent 1px);
  background-size: 22px 22px;
  padding: clamp(60px, 10vw, 130px) 0 clamp(50px, 9vw, 110px);
  border-top: 1px solid rgba(184,134,11,.16);
}
.menu-head { text-align: center; max-width: 760px; margin-inline: auto; }
.menu-head .kicker { justify-content: center; }
.menu-head .kicker::before { display: none; }
.menu-head .display { color: var(--ink); }
.menu-sub { margin-top: 18px; color: var(--ink-soft); font-size: 1.02rem; }

/* sticky category bar */
.cat-bar {
  position: sticky; top: 64px; z-index: 400;
  margin: clamp(34px, 6vw, 56px) calc(50% - 50vw) clamp(30px, 5vw, 46px);
  padding: 12px calc(50vw - var(--shell) / 2);
  background: rgba(255, 252, 240, .86);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(184,134,11,.16); border-bottom: 1px solid rgba(184,134,11,.16);
}
.cat-bar-inner {
  display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch; padding-bottom: 2px;
}
.cat-bar-inner::-webkit-scrollbar { display: none; }
.cat-chip {
  flex: 0 0 auto; cursor: pointer; white-space: nowrap;
  font-family: var(--font-sans); font-size: .8rem; font-weight: 500; letter-spacing: .03em;
  padding: .62em 1.15em; border-radius: 100px;
  border: 1px solid rgba(184,134,11,.32); background: transparent; color: var(--ink-soft);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s;
}
.cat-chip:hover { border-color: var(--gold); color: var(--ink); }
.cat-chip.active { background: var(--navy-700); border-color: var(--navy-700); color: var(--cream-pure); }

/* menu sections */
.menu-section { scroll-margin-top: 130px; padding-top: clamp(30px, 5vw, 50px); }
.menu-section + .menu-section { border-top: 1px solid rgba(184,134,11,.16); }
.menu-section-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  margin-bottom: clamp(20px, 3.5vw, 36px); flex-wrap: wrap;
}
.menu-section-head h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.8rem, 6vw, 3rem); color: var(--ink); line-height: 1;
}
.menu-section-head .thai {
  font-family: var(--font-serif); font-size: clamp(1.4rem, 5vw, 2.2rem);
  color: var(--gold); font-style: italic;
}
.menu-section-count { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }

.menu-list { display: grid; gap: 2px; }
@media (min-width: 760px) { .menu-list.two-col { grid-template-columns: 1fr 1fr; column-gap: 56px; } }

.menu-row {
  padding: 16px 0; border-bottom: 1px dashed rgba(20,33,61,.14);
  transition: padding-left .35s var(--ease);
}
.menu-row:hover { padding-left: 8px; }
.menu-row-top { display: flex; align-items: baseline; gap: 10px; }
.menu-row-name {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.05rem, 3.4vw, 1.22rem); color: var(--ink);
  display: inline-flex; align-items: center; gap: .5em;
}
.veg-tag {
  font-family: var(--font-sans); font-size: .56rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: #4e7c3a; border: 1px solid rgba(78,124,58,.4); border-radius: 4px;
  padding: .15em .45em; transform: translateY(-1px);
}
.menu-row-leader { flex: 1; border-bottom: 1px dotted rgba(184,134,11,.5); transform: translateY(-3px); min-width: 16px; }
.menu-row-price { font-family: var(--font-serif); font-weight: 600; font-size: 1.18rem; color: var(--gold); white-space: nowrap; }
.menu-row-price.market { font-style: italic; font-size: .98rem; }
.menu-row-desc { margin-top: 5px; font-size: .92rem; color: var(--ink-soft); max-width: 60ch; line-height: 1.5; }

/* notes */
.menu-notes {
  margin-top: clamp(40px, 7vw, 70px); padding: clamp(24px, 4vw, 36px);
  background: var(--navy-700); color: rgba(251,246,234,.82); border-radius: var(--radius);
  display: grid; gap: 10px; font-size: .86rem;
}
.menu-notes li { position: relative; padding-left: 22px; }
.menu-notes li::before { content: "✦"; position: absolute; left: 0; color: var(--gold-bright); font-size: .7em; top: .25em; }

/* =============================================================
   VISIT
   ============================================================= */
.visit {
  background: radial-gradient(120% 100% at 80% 0%, var(--navy-700), var(--navy-900) 70%);
  color: var(--cream-pure); padding: clamp(70px, 12vw, 150px) 0;
}
.visit-grid { display: grid; gap: clamp(40px, 7vw, 70px); }
.visit-info { display: flex; flex-direction: column; gap: 22px; }
.visit-info .display { margin-bottom: 8px; }
.info-block h3 {
  font-family: var(--font-sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase; color: var(--gold-bright);
  margin-bottom: 10px;
}
.info-block p { font-family: var(--font-serif); font-size: 1.3rem; line-height: 1.45; color: rgba(251,246,234,.9); }
.link-underline { color: var(--gold-soft); border-bottom: 1px solid rgba(233,212,160,.4); padding-bottom: 2px; transition: color .3s, border-color .3s; display: inline-block; margin-top: 8px; }
.link-underline:hover { color: var(--cream-pure); border-color: var(--cream-pure); }

.hours { display: grid; gap: 0; max-width: 420px; }
.hours li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid rgba(233,212,160,.14); font-family: var(--font-serif); font-size: 1.18rem; }
.hours li span:first-child { color: rgba(251,246,234,.7); }
.hours li span:last-child { color: var(--cream-pure); font-weight: 500; }
.hours li.closed span:last-child { color: var(--gold-bright); font-style: italic; }
.hours li.today { padding-inline: 12px; margin-inline: -12px; background: rgba(216,168,60,.1); border-radius: 8px; border-bottom-color: transparent; }
.hours li.today span:first-child::after { content: " · Today"; color: var(--gold-bright); font-size: .8em; }

.socials { display: flex; gap: 18px; margin-top: 12px; }
.socials a { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(251,246,234,.7); transition: color .3s; }
.socials a:hover { color: var(--gold-bright); }

.visit-map { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 340px; border: 1px solid rgba(233,212,160,.22); box-shadow: 0 30px 70px -30px rgba(0,0,0,.6); }
.visit-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(.3) contrast(1.05); }
.map-badge {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(13,23,48,.9); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 12px 18px; border-radius: 12px; border: 1px solid rgba(233,212,160,.2);
  display: flex; flex-direction: column; gap: 2px;
}
.map-badge .map-thai { font-family: var(--font-serif); color: var(--gold-bright); font-size: 1.05rem; }
.map-badge span:last-child { font-size: .8rem; color: rgba(251,246,234,.8); }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer { background: var(--navy-950); color: rgba(251,246,234,.7); padding: clamp(50px, 8vw, 80px) 0 36px; overflow: hidden; }
.footer-big {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(3.4rem, 19vw, 16rem); line-height: .9; letter-spacing: -.02em;
  color: transparent; -webkit-text-stroke: 1px rgba(233,212,160,.18); text-stroke: 1px rgba(233,212,160,.18);
  text-align: center; margin-bottom: clamp(30px, 5vw, 50px); user-select: none;
}
.footer-grid { display: grid; gap: 30px; border-top: 1px solid rgba(233,212,160,.14); padding-top: 36px; }
.footer-tag { font-family: var(--font-serif); font-size: 1.4rem; color: rgba(251,246,234,.85); max-width: 30ch; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-nav a { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; transition: color .3s; }
.footer-nav a:hover { color: var(--gold-bright); }
.footer-meta p { font-size: .86rem; line-height: 1.7; }
.footer-credit { margin-top: 14px; color: rgba(251,246,234,.45); font-size: .76rem; }

/* =============================================================
   REVEAL
   ============================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-title .char, .hero-title .w2 .amp { animation: none; transform: none; }
  .orb-1, .orb-2, .marquee-track, .scroll-cue-line { animation: none; }
}

/* =============================================================
   RESPONSIVE — scale up from mobile
   ============================================================= */
@media (min-width: 700px) {
  .scroll-cue { display: flex; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; align-items: start; }
}
@media (min-width: 880px) {
  .site-header { padding: 26px 0; }
  .nav-toggle { display: none; }
  .nav-desktop { display: flex; align-items: center; gap: 30px; }
  .about-grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .visit-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .cat-bar { top: 74px; }
}
@media (min-width: 1100px) {
  .visit-grid { grid-template-columns: 1.05fr 1fr; }
}
