/* =========================================================
   V-Light — single-page site
   Font: Montserrat · Light, warm "lighting brand" theme
   White & cream surfaces · warm gold accents · soft glow
   ========================================================= */

/* ---------------- Tokens ---------------- */
:root {
  --bg:       #ffffff;   /* page (white) */
  --bg-2:     #fbe3cd;   /* alternating section (brand peach) */
  --bg-deep:  #fbe3cd;   /* vision/footer (brand peach) */
  --surface:  #ffffff;   /* cards */
  --surface-2:#faf7f2;   /* raised */

  --ink:      #1c1917;   /* warm near-black */
  --ink-2:    #57534e;   /* muted warm gray */
  --ink-3:    #79716b;   /* faint */
  --white:    #ffffff;

  --border:   rgba(28,25,23,.10);
  --border-2: rgba(28,25,23,.18);

  --gold:     #ef7f1a;
  --gold-600: #c96000;
  --gold-400: #ff9124;
  --gold-200: #ffc98a;
  --gold-text: #a85000;  /* contrast-safe accent for text on light bg (5.5:1) */
  --gold-soft: rgba(239,127,26,.10);
  --glow:     rgba(239,127,26,.30);

  --radius:   18px;
  --radius-sm: 12px;
  --shadow:   0 24px 60px -22px rgba(60,42,10,.20);
  --shadow-sm: 0 12px 30px -16px rgba(60,42,10,.16);

  --container: 1480px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------------- Reset / base ---------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.12; font-weight: 700; letter-spacing: -.01em; color: var(--ink); }
:focus-visible { outline: 3px solid var(--gold-600); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--gold-text); color: #fff; padding: 10px 16px; border-radius: 10px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------------- Buttons ---------------- */
.btn {
  --pad: 15px 26px;
  display: inline-flex; align-items: center; gap: 9px;
  padding: var(--pad); border-radius: 999px;
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease),
              box-shadow .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { transition: transform .25s var(--ease); }
.btn-sm { --pad: 10px 20px; font-size: .9rem; }

.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 12px 30px -8px rgba(239,127,26,.45); }
.btn-gold:hover { background: var(--gold-600); transform: translateY(-2px); box-shadow: 0 20px 40px -8px rgba(239,127,26,.55); }
.btn-gold:hover svg { transform: translateX(3px); }

.btn-ghost { background: rgba(255,255,255,.65); color: var(--ink); border-color: var(--border-2); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: #fff; transform: translateY(-2px); border-color: var(--gold); }

/* solid dark button (contrast anchor on the light theme) */
.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: #000; transform: translateY(-2px); border-color: #000; color: #fff; }

/* ---------------- Header ---------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { position: relative; display: inline-flex; align-items: center; }
.brand-logo { width: 138px; height: auto; }
.brand-logo--light { display: none; }

.site-header.scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: rgba(28,25,23,.85); font-weight: 500; font-size: .95rem; position: relative; transition: color .2s var(--ease); }
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold); box-shadow: 0 0 8px var(--glow); transition: width .25s var(--ease);
}
.nav a:not(.btn):hover { color: var(--ink); }
.nav a:not(.btn):hover::after { width: 100%; }
.nav a.active:not(.btn) { color: var(--gold-text); font-weight: 600; }
.nav a.active:not(.btn)::after { width: 100%; }
.nav .nav-cta { color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }

/* ---------------- Reveal animation ---------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: var(--ink); background: var(--bg); overflow: hidden;
  padding: 120px 0 90px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-glow { /* soft ambient glow (used by the Vision section) */
  position: absolute; left: 50%; top: 32%; width: 900px; height: 900px; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(239,127,26,.20) 0%, rgba(239,127,26,.09) 34%, transparent 66%);
  filter: blur(10px); animation: glowPulse 7s var(--ease) infinite;
}
/* WebGL orb (ReactBits-style) centered behind the hero content */
.hero-orb {
  position: absolute; left: 50%; top: 50%; z-index: 1;
  transform: translate(-50%, -52%);
  width: min(68vmin, 720px); aspect-ratio: 1 / 1;
  pointer-events: none;
}
.hero-orb canvas { width: 100%; height: 100%; display: block; }
.hero-grain {
  position: absolute; inset: 0; z-index: 2; opacity: .25; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
}
@keyframes glowPulse { 0%,100% { opacity: .85; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.08); } }
@media (prefers-reduced-motion: reduce) { .hero-glow { animation: none; } }

.hero-inner { position: relative; z-index: 4; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-text);
  padding: 8px 16px; border: 1px solid var(--border-2); border-radius: 999px;
  background: rgba(255,255,255,.6); margin-bottom: 26px;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px 2px var(--gold-400); }
.hero-title { font-size: clamp(2.6rem, 7vw, 5.2rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.03; margin-bottom: 24px; }
.grad {
  background: linear-gradient(100deg, var(--gold-600), var(--gold) 60%, var(--gold-text));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: clamp(1.02rem, 1.6vw, 1.22rem); color: var(--ink-2); max-width: 640px; margin-inline: auto; margin-bottom: 38px; font-weight: 400; }
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 30px; }
.hero-trust { font-size: .86rem; color: var(--ink-3); letter-spacing: .02em; }

.scroll-cue { position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); z-index: 5; width: 26px; height: 42px; border: 2px solid rgba(28,25,23,.35); border-radius: 20px; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: var(--gold); border-radius: 3px; transform: translateX(-50%); animation: scrollDot 1.7s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translate(-50%,14px); } }
@media (prefers-reduced-motion: reduce) { .scroll-cue span { animation: none; } }

/* ---------------- Sections base ---------------- */
.section { padding: clamp(64px, 9vw, 118px) 0; position: relative; }
.section-eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 14px; }
.section-title { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; letter-spacing: -.02em; max-width: 18ch; }
.section-lead { color: var(--ink-2); font-size: 1.08rem; margin-top: 18px; max-width: 56ch; }
.section-lead.center { margin-inline: auto; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.floors .section-head, .experience .section-head, .values .section-head, .visit .section-head, .faq .section-head { text-align: center; margin-inline: auto; }
.floors .section-title, .experience .section-title, .values .section-title, .visit .section-title, .faq .section-title { max-width: none; }

/* simple divider under titles */
.section-head::after {
  content: ""; display: block; width: 70px; height: 3px; margin-top: 22px;
  background: var(--gold); border-radius: 999px;
}
.floors .section-head::after, .experience .section-head::after,
.values .section-head::after, .visit .section-head::after, .faq .section-head::after { margin-inline: auto; }

/* ---------------- Stats ---------------- */
.stats { background: var(--bg); padding: 20px 0 8px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 24px;
  background: linear-gradient(180deg, #ffffff, var(--surface-2)); box-shadow: var(--shadow);
  margin-top: -70px; position: relative; z-index: 6; }
.stat { text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: -12px; top: 12%; height: 76%; width: 1px; background: var(--border); }
.stat-num { font-size: clamp(2rem, 3.6vw, 2.9rem); font-weight: 800; letter-spacing: -.02em; color: var(--ink); text-shadow: 0 0 22px rgba(239,127,26,.15); }
.stat-num small, .stat-suffix { color: var(--gold-text); }
.stat-label { font-size: .86rem; color: var(--ink-2); margin-top: 6px; font-weight: 500; }

/* ---------------- About / timeline ---------------- */
.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-cta { margin-top: 30px; }
.timeline { list-style: none; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--gold), var(--border)); }
.tl-item { position: relative; padding: 0 0 34px 46px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--gold); }
.tl-item--future::before { background: var(--surface); border: 2px solid var(--gold); box-shadow: none; }
.tl-year { font-weight: 800; color: var(--gold-text); font-size: 1.05rem; letter-spacing: .02em; }
.tl-body h3 { font-size: 1.16rem; margin: 4px 0 6px; }
.tl-body p { color: var(--ink-2); font-size: .97rem; }

/* ---------------- Experience grid ---------------- */
.experience { background: var(--bg-2); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 30px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature-card::before { /* warm glow that "switches on" */
  content: ""; position: absolute; top: -40%; left: 50%; width: 220px; height: 220px; transform: translateX(-50%);
  background: radial-gradient(circle, var(--glow), transparent 70%); opacity: 0; transition: opacity .35s var(--ease); pointer-events: none;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(239,127,26,.4); }
.feature-card:hover::before { opacity: .35; }
.feature-icon {
  position: relative; display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px;
  border-radius: 14px; background: var(--gold-soft); color: var(--gold-text); margin-bottom: 20px;
  transition: box-shadow .35s var(--ease);
}
.feature-card:hover .feature-icon { box-shadow: 0 0 22px 2px var(--glow); }
.feature-card h3 { position: relative; font-size: 1.18rem; margin-bottom: 8px; }
.feature-card p { position: relative; color: var(--ink-2); font-size: .96rem; }

/* ---------------- Floors ---------------- */
.floors { background: var(--bg); }
.floor-list { display: flex; flex-direction: column; gap: 40px; }
.floor { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; }
.floor--rev .floor-media { order: 2; }
.floor-media { position: relative; }
.floor-num { font-size: .95rem; font-weight: 800; color: var(--gold-text); letter-spacing: .1em; }
.floor-text h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin: 10px 0 12px; }
.floor-text p { color: var(--ink-2); font-size: 1.03rem; max-width: 46ch; }

/* Showroom floor photos */
.floor-img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* ---------------- Vision (deep cream) ---------------- */
.vision { background: var(--bg-deep); color: var(--ink); text-align: center; overflow: hidden; }
.vision-bg { position: absolute; inset: 0; z-index: 0; }
.vision-bg .hero-glow { top: 20%; opacity: .7; }
.vision-inner { position: relative; z-index: 2; max-width: 900px; margin-inline: auto; }
.vision .section-eyebrow { text-align: center; }
.vision-quote { font-size: clamp(1.5rem, 3.6vw, 2.7rem); font-weight: 700; line-height: 1.28; letter-spacing: -.015em; margin: 20px auto 0; max-width: 20ch; }
.bhag { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border-2); }
.bhag-label { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 600; color: var(--ink-3); margin-bottom: 28px; }
.bhag-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bhag-item { display: flex; flex-direction: column; gap: 6px; }
.bhag-num { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -.02em; background: linear-gradient(120deg, var(--gold-text), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bhag-num small { font-size: .45em; margin-left: 2px; }
.bhag-cap { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }

/* ---------------- Values ---------------- */
.values { background: var(--bg); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; position: relative; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.value-card::before { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px; background: var(--gold); box-shadow: 0 0 14px var(--glow); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease); }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(239,127,26,.35); }
.value-card:hover::before { transform: scaleY(1); }
.value-no { font-size: .82rem; font-weight: 800; letter-spacing: .1em; color: var(--gold-text); }
.value-card h3 { font-size: 1.18rem; margin: 8px 0 8px; }
.value-card p { color: var(--ink-2); font-size: .95rem; }

/* ---------------- Working ---------------- */
.working { background: var(--bg-2); }
.working-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.working-list { list-style: none; padding: 0; display: grid; gap: 14px; }
.working-list li { display: flex; align-items: flex-start; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 20px; font-weight: 500; color: var(--ink); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.working-list li:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); border-color: rgba(239,127,26,.35); }
.check { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--gold-soft); position: relative; margin-top: 2px; box-shadow: 0 0 12px var(--glow); }
.check::after { content: ""; position: absolute; left: 8px; top: 5px; width: 6px; height: 11px; border: solid var(--gold-text); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }

/* ---------------- Brands slider ---------------- */
.brands { background: var(--bg); }
.brands .section-head { text-align: center; margin-inline: auto; margin-bottom: 44px; }
.brands .section-title { max-width: none; }
.brands .section-head::after { margin-inline: auto; }
.brands-slider { position: relative; overflow: hidden; }
.brands-slider::before, .brands-slider::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.brands-slider::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.brands-slider::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.brands-track { display: flex; align-items: stretch; width: max-content; animation: marquee 36s linear infinite; }
.brands-slider:hover .brands-track { animation-play-state: paused; }
.brand-item {
  flex: none; display: flex; align-items: center; justify-content: center;
  width: 220px; height: 96px; padding: 20px 26px; margin-right: 18px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.brand-item img { max-width: 100%; max-height: 52px; width: auto; height: auto; object-fit: contain; }
@media (max-width: 760px) {
  .brand-item { width: 180px; height: 84px; padding: 16px 20px; margin-right: 14px; }
  .brand-item img { max-height: 44px; }
  .brands-slider::before, .brands-slider::after { width: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  .brands-track { animation: none; }
  .brands-slider { overflow-x: auto; }
}

/* ---------------- FAQ ---------------- */
.faq { background: var(--bg-2); }
.faq-list { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .25s var(--ease); }
.faq-item[open] { border-color: rgba(239,127,26,.4); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 22px; font-weight: 600; font-size: 1.04rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: none; width: 12px; height: 12px; border-right: 2px solid var(--gold-600);
  border-bottom: 2px solid var(--gold-600); transform: rotate(45deg); transition: transform .3s var(--ease); margin-top: -4px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 2px; }
.faq-item summary:hover { color: var(--gold-text); }
.faq-a { padding: 0 22px 20px; color: var(--ink-2); font-size: .98rem; }
.faq-a a { color: var(--gold-text); }
.faq-a a:hover { text-decoration: underline; }

/* ---------------- Visit / contact ---------------- */
.visit { background: var(--bg); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.visit-info { display: flex; flex-direction: column; gap: 14px; }
.contact-row { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease); }
a.contact-row:hover { border-color: rgba(239,127,26,.4); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.contact-ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--gold-soft); color: var(--gold-text); display: flex; align-items: center; justify-content: center; }
.contact-k { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); font-weight: 600; }
.contact-v { display: block; font-size: 1.08rem; font-weight: 600; color: var(--ink); }
.hours { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); padding: 20px; margin-top: 2px; }
.hours-title { font-weight: 700; margin-bottom: 12px; }
.hours-row { display: flex; justify-content: space-between; padding: 8px 0; border-top: 1px dashed var(--border-2); font-size: .97rem; }
.hours-row:first-of-type { border-top: 0; }
.hours-row .open { color: var(--gold-text); font-weight: 600; }
.hours-row .closed { color: var(--ink-3); font-weight: 600; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.visit-map { display: flex; flex-direction: column; gap: 14px; }
.map-embed {
  width: 100%; flex: 1; min-height: 420px; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow); display: block;
  filter: grayscale(.25) contrast(1.05) brightness(1);
  transition: filter .35s var(--ease);
}
.map-embed:hover { filter: none; }
.map-directions { align-self: stretch; justify-content: center; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--bg-deep); color: var(--ink-2); padding-top: 64px; border-top: 1px solid var(--border); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-brand img { width: 150px; margin-bottom: 18px; }
.footer-brand p { max-width: 42ch; font-size: .95rem; }
.footer-nav h4, .footer-contact h4 { color: var(--ink); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.footer-nav a, .footer-contact a { display: block; padding: 5px 0; color: var(--ink-2); font-size: .96rem; transition: color .2s var(--ease); }
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold-text); }
.footer-contact p { margin-top: 10px; font-size: .9rem; color: var(--ink-3); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 0 30px; border-top: 1px solid var(--border-2); font-size: .85rem; color: var(--ink-3); }
.footer-bottom .credit-link { font-weight: 600; color: var(--ink-2); transition: color .2s var(--ease); }
.footer-bottom .credit-link:hover { color: var(--gold-text); }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  .about-grid, .working-grid { grid-template-columns: 1fr; gap: 44px; }
  .feature-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr; }
  .map-embed { min-height: 340px; }
  .floor, .floor--rev { grid-template-columns: 1fr; gap: 22px; }
  .floor--rev .floor-media { order: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  /* mobile nav */
  .nav {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255,255,255,.97); backdrop-filter: blur(14px);
    padding: 12px 24px 26px; transform: translateY(-120%); transition: transform .4s var(--ease);
    border-bottom: 1px solid var(--border); max-height: calc(100svh - 78px); overflow-y: auto;
  }
  .site-header.nav-open .nav { transform: translateY(0); }
  .nav a { color: var(--ink) !important; padding: 15px 0; border-bottom: 1px solid var(--border); font-size: 1.05rem; }
  .nav a.active:not(.btn) { color: var(--gold-text) !important; }
  .nav a:not(.btn)::after { display: none; }
  .nav .nav-cta { margin-top: 16px; justify-content: center; border-bottom: 0; color: #fff !important; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; margin-top: -40px; }
  .stat:nth-child(3)::before, .stat:nth-child(2)::before { display: none; }
  .feature-grid, .values-grid { grid-template-columns: 1fr; }
  .bhag-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 104px; }
}

@media (max-width: 420px) {
  .container { padding-inline: 18px; }
  .btn { --pad: 14px 22px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* =========================================================
   Premium motion layer (award-winning polish)
   ========================================================= */

/* ---- Scroll progress beam ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 150;
  background: linear-gradient(90deg, var(--gold-600), var(--gold));
  box-shadow: 0 0 12px var(--glow); transition: width .1s linear;
}

/* ---- Hero headline: masked line reveal ---- */
.hero-title .line { display: block; overflow: hidden; padding: 0 .1em .4em; margin: 0 -.1em -.4em; }
.hero-title .line-inner { display: block; transform: translateY(115%); animation: lineUp .95s var(--ease) forwards; }
.hero-title .line:nth-child(1) .line-inner { animation-delay: .12s; }
.hero-title .line:nth-child(2) .line-inner { animation-delay: .30s; }
@keyframes lineUp { to { transform: translateY(0); } }

/* ---- Shimmer on gradient text ---- */
.grad {
  background: linear-gradient(100deg, var(--gold-600), var(--gold) 42%, var(--gold-text) 66%, var(--gold-600));
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 6.5s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }

/* ---- Button shine sweep ---- */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg); pointer-events: none;
}
.btn:hover::after { animation: shine .8s var(--ease); }
@keyframes shine { to { left: 150%; } }

/* ---- Cursor-tracking glow inside cards ---- */
.feature-card > *, .value-card > * { position: relative; z-index: 1; }
.feature-card::before, .value-card::before { z-index: 0; }
.feature-card .spot-glow, .value-card .spot-glow {
  content: ""; position: absolute; inset: 0; z-index: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(200px circle at var(--cx, 50%) var(--cy, 0%), rgba(239,127,26,.12), transparent 60%);
  opacity: 0; transition: opacity .3s var(--ease);
}
.feature-card:hover .spot-glow, .value-card:hover .spot-glow { opacity: 1; }

/* ---- 3D tilt targets ---- */
[data-tilt] { transition: transform .35s var(--ease); transform-style: preserve-3d; will-change: transform; }

/* ---- Kinetic marquee ---- */
.marquee { background: var(--bg-2); border-block: 1px solid var(--border); overflow: hidden; padding: 20px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 30px; padding: 0 30px;
  font-size: clamp(1.15rem, 2.4vw, 1.8rem); font-weight: 800; letter-spacing: -.02em;
  color: var(--ink); white-space: nowrap; text-transform: uppercase;
}
.marquee-item .m-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 14px var(--glow); flex: none; }
.marquee-item.alt { color: var(--gold-text); }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .hero-title .line-inner { transform: none; animation: none; }
  .grad { animation: none; }
  .btn:hover::after { animation: none; }
  .marquee-track { animation: none; }
  [data-tilt] { transition: none; }
}
