/* ─────────────────────────────────────────────
   TOKENS
───────────────────────────────────────────── */
:root {
  --ink:    #0e0c09;
  --cream:  #f2ede4;
  --warm:   #e8dfd0;
  --red:    #c8281e;
  --red2:   #e03a2f;
  --gold:   #d4a827;
  --gold2:  #f0c84a;
  --muted:  #7a7060;
  --border: rgba(255,255,255,0.08);
  --font-display: 'Anton', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --font-mono:    'DM Mono', monospace;
}

/* ─────────────────────────────────────────────
   RESET / BASE
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-mono);
  overflow-x: hidden;
  cursor: default;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ─────────────────────────────────────────────
   TOP TICKER (La Cage style)
───────────────────────────────────────────── */
.ticker {
  background: var(--red);
  overflow: hidden;
  height: 36px;
  display: flex; align-items: center;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0 40px;
  display: flex; align-items: center; gap: 12px;
}
.ticker-dot {
  width: 5px; height: 5px;
  background: var(--gold2);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   NAV (Ruby's / Miss Lily's clean floating nav)
───────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,12,9,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  height: 80px;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--cream);
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo span { color: var(--red); }
.nav-center {
  display: flex; gap: 0; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-center a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.6);
  padding: 8px 10px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-center a:hover { color: var(--cream); }
.nav-right {
  display: flex; gap: 8px; align-items: center;
  flex-shrink: 0;
}
.nav-phone {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-right: 4px;
  white-space: nowrap;
}
.nav-phone a { color: var(--gold); }
.btn-nav {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-nav-ghost {
  border: 1px solid rgba(242,237,228,0.25);
  color: var(--cream);
}
.btn-nav-ghost:hover { border-color: var(--cream); }
.btn-nav-solid {
  background: var(--red);
  color: var(--cream);
  border: 1px solid var(--red);
}
.btn-nav-solid:hover { background: var(--red2); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--cream); transition: 0.3s; }

/* ─────────────────────────────────────────────
   HERO — LÜKS giant letters + Allinoro warmth
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: var(--ink);
}

/* Video hero — full bleed */
.hero-photo {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-photo video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-photo::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(14,12,9,0.55) 0%, rgba(14,12,9,0.2) 40%, rgba(14,12,9,0.78) 100%);
}
/* warm tint overlay */
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(180, 80, 20, 0.08);
  mix-blend-mode: multiply;
}

/* BIG LETTERS background — LÜKS style */
.hero-bg-word {
  position: absolute;
  bottom: -0.12em; left: -0.02em;
  font-family: var(--font-display);
  font-size: clamp(14vw, 20vw, 28rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(242,237,228,0.07);
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
  animation: bgWordIn 1.4s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes bgWordIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 6% 80px;
  min-height: 96vh;
}
.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
  animation: fadeUp 0.8s 0.2s both;
}
.hero-tag::before {
  content: '';
  display: block; width: 32px; height: 1px; background: var(--gold);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 8.5vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 28px;
  animation: fadeUp 0.9s 0.35s both;
}
.hero-headline em {
  font-style: normal;
  color: var(--red);
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-style: italic;
  color: rgba(242,237,228,0.75);
  max-width: 460px;
  line-height: 1.6;
  margin-bottom: 40px;
  animation: fadeUp 0.9s 0.5s both;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.9s 0.65s both;
}
.btn-lg {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-red { background: var(--red); color: var(--cream); border: 2px solid var(--red); }
.btn-red:hover { background: var(--red2); border-color: var(--red2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--cream); border: 2px solid rgba(242,237,228,0.4); }
.btn-outline:hover { border-color: var(--cream); transform: translateY(-2px); }

.hero-scroll {
  position: absolute; bottom: 28px; right: 6%;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 10px;
  z-index: 3;
  animation: fadeUp 1s 1s both;
}
.hero-scroll::after {
  content: '';
  display: block; width: 1px; height: 40px; background: var(--muted);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────── */
.stats-bar {
  background: var(--cream);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--red);
}
.stat-item {
  padding: 28px 24px;
  border-right: 1px solid rgba(14,12,9,0.1);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1;
}
.stat-num span { color: var(--red); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ─────────────────────────────────────────────
   SECTION UTILITIES
───────────────────────────────────────────── */
.section-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.section-tag::before {
  content: '';
  display: block; width: 24px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 0.95;
  color: var(--cream);
}
.section-title.dark { color: var(--ink); }

/* ─────────────────────────────────────────────
   OLO SECTION — Ruby's editorial grid feel
───────────────────────────────────────────── */
.olo-section {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.olo-photo {
  position: relative;
  overflow: hidden;
}
.olo-photo-inner {
  position: absolute; inset: 0;
  background: url('/images/IMG_5553-scaled.jpeg') center/cover;
  transition: transform 6s ease;
}
.olo-photo:hover .olo-photo-inner { transform: scale(1.04); }
.olo-photo-badge {
  position: absolute; top: 32px; left: 32px;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 1px;
}
.olo-body {
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--cream);
}
.olo-steps {
  margin: 36px 0;
  display: flex; flex-direction: column; gap: 0;
}
.olo-step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 20px; align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(14,12,9,0.1);
}
.olo-step:first-child { border-top: 1px solid rgba(14,12,9,0.1); }
.olo-step-n {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(14,12,9,0.12);
  line-height: 1;
}
.olo-step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.olo-step-desc {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────
   MVP MARQUEE — LÜKS animated letter style
───────────────────────────────────────────── */
.mvp-section {
  background: var(--ink);
  padding: 100px 0 0;
  overflow: hidden;
  position: relative;
}
.mvp-inner {
  padding: 0 6% 0;
  margin-bottom: 56px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 60px; align-items: center;
}
.mvp-body {}
.mvp-intro {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: rgba(242,237,228,0.55);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 36px;
}
.mvp-perks {
  display: flex; flex-direction: column; gap: 3px;
  margin-bottom: 40px;
}
.mvp-perk {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.25s, background 0.25s;
}
.mvp-perk:hover { border-color: rgba(212,168,39,0.35); background: rgba(212,168,39,0.04); }
.mvp-perk-icon { font-size: 1.3rem; }
.mvp-perk-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}
.mvp-perk-desc {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 1px;
}
.mvp-cta-side {
  display: flex; flex-direction: column; align-items: flex-end; gap: 16px;
  padding-bottom: 8px;
}
.mvp-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-style: italic;
  color: rgba(242,237,228,0.4);
  text-align: left;
  line-height: 1.35;
}
.mvp-quote em { color: var(--gold); font-style: normal; }

/* marquee strip */
.mvp-marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  background: rgba(255,255,255,0.02);
}
.mvp-marquee {
  display: flex; white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.mvp-marquee-item {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242,237,228,0.15);
  padding: 0 40px;
  line-height: 1.1;
}
.mvp-marquee-item.solid {
  color: var(--red);
  -webkit-text-stroke: 0;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   MENU SHOWCASE — Allinoro warmth + editorial
───────────────────────────────────────────── */
.menu-section {
  background: var(--ink);
  padding: 100px 6%;
}
.menu-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 32px;
}
.menu-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 8px;
  transition: gap 0.2s;
}
.menu-link:hover { gap: 16px; }
.menu-link::after { content: '→'; }

.menu-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
}
.menu-item {
  position: relative; overflow: hidden;
  cursor: pointer;
}
.menu-item-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.menu-item:hover .menu-item-photo { transform: scale(1.06); }
.menu-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,12,9,0.85) 0%, transparent 60%);
  transition: opacity 0.3s;
}
.menu-item:hover .menu-item-overlay { opacity: 0.7; }
.menu-item-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
}
.menu-item-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
}
.menu-item-desc {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(242,237,228,0.6);
  line-height: 1.5;
  margin-top: 4px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.menu-item:hover .menu-item-desc { max-height: 60px; }

/* grid layout variants */
.menu-item:nth-child(1) { grid-row: span 2; min-height: 520px; }
.menu-item:nth-child(2) { min-height: 254px; }
.menu-item:nth-child(3) { min-height: 254px; }
.menu-item:nth-child(4) { min-height: 254px; }
.menu-item:nth-child(5) { min-height: 254px; }

/* fake food photos via gradient placeholders */
.photo-panino {
  background: url('/images/IMG_3857.JPG') center/cover;
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  transition: transform 0.6s ease;
}
.photo-tots {
  background: url('/images/IMG_2106.jpeg') center/cover;
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  transition: transform 0.6s ease;
}
.photo-wrap {
  background: url('/images/IMG_3585.jpeg') center/cover;
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  transition: transform 0.6s ease;
}
.photo-drink {
  background: url('/images/IMG_4172.jpeg') center/cover;
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  transition: transform 0.6s ease;
}
.photo-special {
  background: url('/images/IMG_3968.jpeg') center/cover;
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  transition: transform 0.6s ease;
}
.menu-item:hover .photo-panino,
.menu-item:hover .photo-tots,
.menu-item:hover .photo-wrap,
.menu-item:hover .photo-drink,
.menu-item:hover .photo-special { transform: scale(1.06); }

/* ─────────────────────────────────────────────
   STORY — Allinoro warmth + La Cage authority
───────────────────────────────────────────── */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.story-photo-col {
  position: relative; overflow: hidden;
  background: url('/images/C9150435-E5AD-4DA1-9525-AA6D8D3CE299.jpeg') center/cover;
}
.story-photo-col::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,40,30,0.2), transparent 60%);
}
.story-year {
  position: absolute; bottom: 32px; right: 32px;
  font-family: var(--font-display);
  font-size: 7rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242,237,228,0.2);
  line-height: 1;
  z-index: 2;
}
.story-body {
  background: var(--warm);
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.story-body .section-tag { color: var(--red); }
.story-body .section-tag::before { background: var(--red); }
.story-body .section-title { color: var(--ink); font-size: clamp(2rem, 4vw, 3.5rem); }
.story-pull {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
  color: var(--red);
  margin: 24px 0 20px;
  line-height: 1.5;
}
.story-text {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: #5a5040;
  line-height: 1.85;
}
.story-text p { margin-bottom: 14px; }
.story-cta { margin-top: 36px; }
.btn-ink {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 32px;
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.2s;
}
.btn-ink:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }

/* ─────────────────────────────────────────────
   FUNDRAISING — La Cage bold promo section
───────────────────────────────────────────── */
.fund-section {
  background: var(--ink);
  padding: 100px 6%;
  position: relative;
  overflow: hidden;
}
.fund-section::before {
  content: 'COMMUNITY';
  position: absolute;
  right: -2%; bottom: -0.1em;
  font-family: var(--font-display);
  font-size: 18vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.03);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}
.fund-inner { max-width: 1200px; margin: 0 auto; }
.fund-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px;
}
.fund-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.fund-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
}
.fund-card:hover { background: rgba(200,40,30,0.06); border-color: rgba(200,40,30,0.3); }
.fund-card-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,168,39,0.2);
  line-height: 1;
  margin-bottom: 16px;
  transition: -webkit-text-stroke 0.3s;
}
.fund-card:hover .fund-card-num { -webkit-text-stroke-color: rgba(212,168,39,0.5); }
.fund-card-icon { font-size: 2rem; margin-bottom: 16px; }
.fund-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 12px;
}
.fund-card-text {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   FAQ — clean editorial
───────────────────────────────────────────── */
.faq-section {
  background: var(--cream);
  padding: 100px 6%;
}
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-section .section-tag { color: var(--red); }
.faq-section .section-tag::before { background: var(--red); }
.faq-section .section-title { color: var(--ink); }
.faq-list { margin-top: 48px; }
.faq-item { border-bottom: 1px solid rgba(14,12,9,0.12); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: left; gap: 20px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--red); }
.faq-q[aria-expanded="true"] { color: var(--red); }
.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: transform 0.3s;
  color: var(--red);
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: #5a5040;
  line-height: 1.85;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0;
}
.faq-a.open { max-height: 200px; padding-bottom: 24px; }

/* ─────────────────────────────────────────────
   CTA STRIP — La Cage full-bleed
───────────────────────────────────────────── */
.cta-strip {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex; align-items: center;
  background:
    linear-gradient(135deg, rgba(14,12,9,0.82), rgba(200,40,30,0.65)),
    url('/images/IMG_1129.jpeg') center/cover;
}
.cta-inner {
  position: relative; z-index: 2;
  padding: 80px 6%;
  max-width: 800px;
}
.cta-strip .section-tag { color: var(--gold2); }
.cta-strip .section-tag::before { background: var(--gold2); }
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 24px;
}
.cta-sub {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(242,237,228,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-cream {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 36px;
  background: var(--cream);
  color: var(--ink);
  border: 2px solid var(--cream);
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.2s;
}
.btn-cream:hover { background: var(--gold2); border-color: var(--gold2); color: var(--ink); transform: translateY(-2px); }

/* ─────────────────────────────────────────────
   MAP SECTION
───────────────────────────────────────────── */
.map-section {
  background: var(--cream);
  border-top: 3px solid var(--red);
}
.map-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  min-height: 480px;
}
.map-info {
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--cream);
}
.map-info .section-tag { color: var(--red); }
.map-info .section-tag::before { background: var(--red); }
.map-info .section-title { color: var(--ink); font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 36px; }
.map-details {
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 32px;
}
.map-detail-item {}
.map-detail-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.map-detail-value {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  line-height: 1.4;
}
.map-detail-value a { color: var(--red); }
.map-detail-value a:hover { text-decoration: underline; }
.map-embed {
  position: relative;
  min-height: 480px;
}
.map-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
@media (max-width: 860px) {
  .map-inner { grid-template-columns: 1fr; }
  .map-info { padding: 48px 32px; }
  .map-embed { min-height: 320px; }
}


footer {
  background: #080706;
  border-top: 1px solid var(--border);
  padding: 64px 6% 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 14px;
}
.footer-logo span { color: var(--red); }
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-contact {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.9;
  letter-spacing: 0.05em;
}
.footer-contact a { color: var(--gold); }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: rgba(242,237,228,0.45);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(242,237,228,0.2);
}
.footer-social {
  display: flex; gap: 20px;
}
.footer-social a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.3);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--gold); }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .menu-item:nth-child(1) { grid-column: span 2; min-height: 400px; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mvp-inner { grid-template-columns: 1fr; }
  .mvp-homer { order: -1; }
  .mvp-cta-side { align-items: flex-start; }
  .mvp-quote { text-align: left; }
}
@media (max-width: 1100px) {
  .nav-phone { display: none; }
  .nav-center a { padding: 8px 8px; font-size: 0.6rem; }
}
@media (max-width: 860px) {
  nav { padding: 0 24px; }
  .nav-center { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-right .btn-nav-ghost { display: none; }
  .olo-section { grid-template-columns: 1fr; }
  .olo-photo { min-height: 340px; }
  .olo-body { padding: 56px 32px; }
  .story-section { grid-template-columns: 1fr; }
  .story-photo-col { min-height: 380px; }
  .story-body { padding: 56px 32px; }
  .fund-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
}
@media (max-width: 600px) {
  .hero-content { padding: 0 5% 60px; }
  .hero-ctas { flex-direction: column; }
  .btn-lg { justify-content: center; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item:nth-child(1) { grid-column: span 1; min-height: 340px; }
  .menu-item:nth-child(n) { min-height: 240px; }
  .fund-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
}

/* mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(14,12,9,0.97);
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 28px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  background: none; border: none; cursor: pointer;
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
