/* ═══════════════════════════════════════════════════════════
   THE VINTAGE STORE — PROGRESSLAND
   1964 World's Fair retro-futurism · GE-pavilion night blues
   ═══════════════════════════════════════════════════════════ */

:root {
  color-scheme: only light; /* block browser auto-dark from repainting the palette */
  --ge-blue: #18b7fe;
  --midnight: #081527;
  --navy: #0d2240;
  --navy-2: #12305c;
  --cream: #f7f2e6;
  --cream-dim: #e9e1cd;
  --ink: #12294a;
  --gold: #ffd98a;
  --font-main: "Jost", sans-serif;
  --font-script: "Yellowtail", cursive;
  --font-serif: "Libre Caslon Text", Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--ge-blue); color: var(--midnight); }

/* ── Reveal-on-scroll ── */
.reveal-up {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 120ms);
}
.reveal-up.in { opacity: 1; transform: none; }

/* ═══════════ NAV ═══════════ */
#nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 5vw;
  background: rgba(8, 21, 39, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow .4s, padding .4s;
}
#nav.scrolled {
  box-shadow: 0 1px 0 rgba(24,183,254,.25);
  padding: 8px 5vw;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.nav-logo { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.nav-logo img {
  width: 46px; height: 46px; border-radius: 12px;
  transition: transform .5s cubic-bezier(.3,1.6,.4,1);
}
.nav-logo:hover img { transform: rotate(-8deg) scale(1.08); }
.nav-logo span {
  font-weight: 500; letter-spacing: .14em; text-transform: uppercase; font-size: .95rem;
}
.nav-logo b { color: var(--ge-blue); font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  color: var(--cream); font-size: .8rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  position: relative; padding: 4px 0;
}
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--ge-blue);
  transform: scaleX(0); transform-origin: right; transition: transform .35s;
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  border: 2px solid var(--ge-blue); border-radius: 999px;
  padding: 8px 20px !important; color: var(--ge-blue) !important;
  white-space: nowrap;
  transition: background .3s, color .3s, box-shadow .3s;
}
.nav-cta:hover {
  background: var(--ge-blue); color: var(--midnight) !important;
  box-shadow: 0 0 24px rgba(24,183,254,.55);
}
.nav-cta .spark { display: inline-block; animation: sparkle 2.4s ease-in-out infinite; }

/* ═══════════ HERO — clean pavilion art, live overlaid type ═══════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 6vw 90px;
  overflow: hidden;
  background: #eaf4fb;
  text-align: center;
}
.hero-art {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 78%;
  animation: heroDrift 30s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
/* soft glow so the dome stays airy behind the type */
.hero-haze {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 62% 52% at 50% 36%, rgba(255,253,245,.8) 0%, rgba(255,253,245,.35) 55%, transparent 78%),
    linear-gradient(to bottom, rgba(234,244,251,.55), transparent 30%);
}
.hero-content { position: relative; z-index: 2; max-width: 1100px; }
.hero-eyebrow {
  color: var(--ink); letter-spacing: .42em; text-transform: uppercase;
  font-size: clamp(.7rem, 1.4vw, .95rem); font-weight: 600; margin-bottom: 20px;
}
.hero-eyebrow b { color: var(--ge-blue); font-weight: 800; }
.hero-title {
  font-weight: 800; color: var(--ink); line-height: .95;
  font-size: clamp(2.7rem, 8.6vw, 7.4rem);
  letter-spacing: .015em; text-transform: uppercase;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: .05em; }
.hero-title .word {
  display: inline-block;
  transform: translateY(115%);
  animation: riseUp .9s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes riseUp { to { transform: translateY(0); } }
.hero-title .accent .word {
  font-family: var(--font-script); font-weight: 400;
  color: var(--ge-blue); text-transform: none;
  font-size: clamp(3.1rem, 9.8vw, 8.6rem); line-height: 1.05;
  text-shadow: 0 2px 26px rgba(24,183,254,.35);
}
.hero-sub {
  color: var(--ink); max-width: 640px; margin: 22px auto 0;
  font-size: clamp(.95rem, 1.8vw, 1.2rem); font-weight: 600; line-height: 1.6;
}
.hero-cta-row { margin-top: 36px; display: flex; justify-content: center; }
.reveal-load {
  opacity: 0;
  animation: fadeRise .9s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fadeRise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.35) rotate(20deg); opacity: .7; }
}

/* marquee-light CTA */
.marquee-btn {
  position: relative; display: inline-block;
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
  border: 3px solid var(--ge-blue); border-radius: 14px;
  padding: 20px 44px 20px;
  box-shadow: 0 0 34px rgba(24,183,254,.35), inset 0 0 22px rgba(24,183,254,.12);
  transition: transform .3s, box-shadow .3s;
}
.marquee-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 54px rgba(24,183,254,.65), inset 0 0 30px rgba(24,183,254,.2);
}
.marquee-label {
  font-family: var(--font-main); font-weight: 800;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--cream); font-size: clamp(.8rem, 1.6vw, 1rem);
  text-shadow: 0 0 12px rgba(24,183,254,.8);
}
.bulbs { position: absolute; inset: 5px; pointer-events: none; }
.bulb {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 8px var(--gold);
  animation: chase 1.2s steps(2) infinite;
}
.bulbs.big .bulb { width: 9px; height: 9px; }
.bulb:nth-child(odd) { animation-delay: .6s; }
@keyframes chase { 0%, 49% { opacity: 1; } 50%, 100% { opacity: .25; } }

/* ═══════════ TICKER — starburst marquee ═══════════ */
.ticker {
  background: var(--midnight); color: var(--cream);
  overflow: hidden; padding: 15px 0;
  border-top: 1px solid rgba(24,183,254,.35); border-bottom: 1px solid rgba(24,183,254,.35);
}
.ticker-track {
  display: flex; align-items: center; gap: 34px;
  white-space: nowrap; width: max-content; padding-right: 34px;
  animation: tick 36s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes tick { to { transform: translateX(-50%); } }
.tick-item {
  font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  font-size: .82rem; color: var(--cream);
}
.tick-star { width: 17px; height: 17px; color: var(--ge-blue); flex: none; }

/* ═══════════ SECTIONS SHARED ═══════════ */
section { padding: 110px 6vw; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.kicker {
  color: var(--ge-blue); font-weight: 700; letter-spacing: .4em;
  text-transform: uppercase; font-size: .78rem; margin-bottom: 14px;
}
.kicker.light { color: var(--ge-blue); }
.section-head h2, .why h2, .visit h2 {
  font-weight: 800; font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: .02em; line-height: 1.04;
}
.lede { margin-top: 18px; font-size: 1.05rem; line-height: 1.6; color: #3f5477; }
.lede.light { color: var(--cream-dim); }

/* ═══════════ THE SEVEN ACTS ═══════════ */
.acts { background: var(--cream); position: relative; }
.acts::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(18,41,74,.08) 1px, transparent 1.4px);
  background-size: 26px 26px;
}
/* expanding aisles — hover/tap accordion */
.acts-accordion {
  position: relative;
  display: flex; gap: 10px;
  height: 560px; max-width: 1240px; margin: 0 auto;
}
.act-slat {
  position: relative; flex: 1; overflow: hidden;
  border-radius: 16px; border: 3px solid var(--ink);
  background: var(--navy); cursor: pointer; padding: 0;
  font-family: var(--font-main); text-align: left;
  transition: flex .55s cubic-bezier(.22,1,.36,1);
}
.act-slat.is-active { flex: 4.2; }
.act-slat img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .55; transform: scale(1.12);
  transition: opacity .6s, transform .8s cubic-bezier(.22,1,.36,1);
}
.act-slat.is-active img { opacity: 1; transform: scale(1); }
.slat-scrim {
  position: absolute; inset: 0;
  background: rgba(8,21,39,.55);
  transition: background .5s;
}
.act-slat.is-active .slat-scrim {
  background: linear-gradient(to top, rgba(8,21,39,.92) 8%, rgba(8,21,39,.15) 45%, transparent 70%);
}
/* collapsed vertical label */
.slat-label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  color: var(--cream); font-weight: 700; text-transform: uppercase;
  letter-spacing: .3em; font-size: .82rem; white-space: nowrap;
  writing-mode: vertical-rl; transform: rotate(180deg);
  transition: opacity .3s;
}
.slat-label i { font-style: normal; color: var(--ge-blue); font-size: .72rem; letter-spacing: .2em; }
.act-slat.is-active .slat-label { opacity: 0; }
/* expanded info */
.slat-info {
  position: absolute; inset: auto 0 0 0; padding: 26px;
  color: var(--cream);
  transform: translateY(26px); opacity: 0;
  transition: transform .5s cubic-bezier(.22,1,.36,1) .12s, opacity .5s .12s;
}
.act-slat.is-active .slat-info { transform: none; opacity: 1; }
.act-num {
  display: inline-block; font-size: .66rem; font-weight: 700;
  letter-spacing: .34em; text-transform: uppercase; color: var(--ge-blue);
  border: 1px solid rgba(24,183,254,.5); border-radius: 999px;
  padding: 3px 10px; margin-bottom: 10px;
}
.slat-info h3 {
  font-size: clamp(1.4rem, 2.6vw, 2.1rem); font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
}
.slat-info p {
  font-size: .95rem; color: var(--cream-dim); margin-top: 6px;
  line-height: 1.5; max-width: 420px;
}

/* ═══════════ WHY ═══════════ */
.why {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(24,183,254,.16), transparent),
    linear-gradient(180deg, var(--midnight), var(--navy));
  color: var(--cream);
}
.why-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start;
}
.why-copy h2 { color: var(--cream); }
.why-photo {
  display: block; width: 100%;
  margin-top: 34px; border-radius: 18px;
  border: 3px solid var(--ge-blue);
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 40px rgba(24,183,254,.25);
  transform: rotate(-1.2deg);
  transition: transform .5s;
}
.why-photo:hover { transform: rotate(0deg) scale(1.02); }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 8px; padding-top: 10px; }
.why-list li {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 26px 26px;
  border-radius: 16px;
  border: 1px solid rgba(24,183,254,.18);
  background: rgba(255,255,255,.03);
  transition: background .35s, border-color .35s, transform .35s;
}
.why-list li:hover {
  background: rgba(24,183,254,.09);
  border-color: rgba(24,183,254,.55);
  transform: translateX(8px);
}
.burst {
  color: var(--ge-blue); font-size: 1.6rem; line-height: 1;
  animation: sparkle 3s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * .5s);
  text-shadow: 0 0 16px rgba(24,183,254,.8);
}
.why-list h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: .03em; }
.why-list p { margin-top: 6px; color: var(--cream-dim); font-size: .93rem; line-height: 1.55; }

/* ═══════════ RECENTLY ON THE FLOOR ═══════════ */
.floor { background: var(--midnight); color: var(--cream); }
.floor-head {
  max-width: 1240px; margin: 0 auto 48px;
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 24px;
}
.floor-head h2 { color: var(--cream); font-weight: 800; font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: .02em; line-height: 1.04; }
.floor-note {
  max-width: 320px; font-family: var(--font-serif); font-style: italic;
  color: rgba(232,245,253,.75); font-size: .95rem; line-height: 1.6;
}
.floor-masonry {
  max-width: 1240px; margin: 0 auto;
  columns: 3; column-gap: 16px;
}
.floor-masonry figure {
  position: relative; overflow: hidden; border-radius: 14px;
  border: 1px solid rgba(232,245,253,.2);
  margin-bottom: 16px; break-inside: avoid;
}
.floor-masonry img {
  width: 100%; display: block;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.floor-masonry figure:nth-child(3n+1) img { aspect-ratio: 4/5; object-fit: cover; }
.floor-masonry figure:nth-child(3n+2) img { aspect-ratio: 1/1; object-fit: cover; }
.floor-masonry figure:nth-child(3n) img { aspect-ratio: 4/3; object-fit: cover; }
.floor-masonry figure:hover img { transform: scale(1.05); }
.floor-masonry figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 42px 18px 16px;
  background: linear-gradient(to top, rgba(8,21,39,.95), transparent);
  font-family: var(--font-serif); font-style: italic;
  font-size: .88rem; color: #e8f5fd;
  transform: translateY(8px); opacity: 0;
  transition: transform .45s, opacity .45s;
}
.floor-masonry figure:hover figcaption { transform: none; opacity: 1; }

/* ═══════════ OUR STORY ═══════════ */
.story { background: var(--cream); position: relative; }
.story::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(18,41,74,.07) 1px, transparent 1.4px);
  background-size: 26px 26px;
}
.story-inner {
  position: relative;
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 70px; align-items: center;
}
.story-copy h2 { font-weight: 800; font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: .02em; line-height: 1.04; }
.story-copy p { margin-top: 20px; color: #3f5477; line-height: 1.7; font-size: 1.02rem; max-width: 620px; }
.story-points { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.story-points li { display: flex; gap: 12px; font-weight: 600; color: var(--ink); }
.story-points span { color: var(--ge-blue); }
.story-photo {
  border-radius: 18px; border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 rgba(24,183,254,.45);
  transform: rotate(1.4deg);
  transition: transform .5s;
}
.story-photo:hover { transform: rotate(0deg) scale(1.02); }

/* ═══════════ WE BUY ═══════════ */
.webuy {
  background: var(--ge-blue); color: var(--navy);
  padding: 90px 6vw;
  background-image: radial-gradient(rgba(13,34,64,.14) 1.4px, transparent 1.8px);
  background-size: 18px 18px;
}
.webuy-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 40px;
}
.webuy .kicker.dark { color: var(--navy); }
.webuy h2 { font-weight: 800; font-size: clamp(1.9rem, 4.6vw, 3.2rem); letter-spacing: .02em; line-height: 1.06; }
.webuy p { margin-top: 16px; max-width: 640px; line-height: 1.65; font-weight: 500; }
.ticket-btn.navy { background: var(--navy); color: var(--cream); margin-top: 0; flex: none; }
.ticket-btn.navy .ticket-tear { border-color: rgba(247,242,230,.5); }

/* ═══════════ GUEST BOOK ═══════════ */
.guestbook { background: var(--cream); position: relative; }
.quotes {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
}
.quote-hero {
  background: var(--navy);
  color: var(--cream); border-radius: 22px;
  padding: 60px 50px;
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 rgba(24,183,254,.55);
  position: relative;
}
.quote-hero::before {
  content: "“"; position: absolute; top: -14px; left: 30px;
  font-family: var(--font-script); font-size: 6rem; color: var(--ge-blue);
  line-height: 1;
}
.quote-hero p {
  font-weight: 700; font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.25; letter-spacing: .01em;
}
.quote-hero cite, .quote-stack cite {
  display: block; margin-top: 22px; font-style: normal;
  color: var(--ge-blue); font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; font-size: .74rem;
}
.quote-stack { display: flex; flex-direction: column; gap: 24px; }
.quote-stack blockquote {
  background: #fffdf6; border: 2px solid rgba(18,41,74,.22); border-radius: 16px;
  padding: 30px 32px;
  box-shadow: 6px 6px 0 rgba(18,41,74,.1);
  transition: transform .35s, box-shadow .35s;
}
.quote-stack blockquote:hover { transform: translateY(-4px); box-shadow: 8px 10px 0 rgba(24,183,254,.35); }
.quote-stack p { font-size: 1.05rem; line-height: 1.5; font-weight: 500; }
.quote-stack cite { margin-top: 14px; color: #3f5477; }

/* ═══════════ FAQ ═══════════ */
.faq { background: var(--cream); position: relative; }
.faq::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(18,41,74,.07) 1px, transparent 1.4px);
  background-size: 26px 26px;
}
.faq-list { position: relative; max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-list details {
  background: #fffdf6; border: 2px solid rgba(18,41,74,.25); border-radius: 14px;
  box-shadow: 5px 5px 0 rgba(18,41,74,.1);
  transition: box-shadow .3s;
  overflow: hidden;
}
.faq-list details[open] { box-shadow: 7px 8px 0 rgba(24,183,254,.4); border-color: var(--ink); }
.faq-list summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  cursor: pointer; list-style: none;
  padding: 20px 24px;
  font-weight: 700; font-size: 1.05rem; letter-spacing: .02em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-star { color: var(--ge-blue); transition: transform .35s; flex: none; }
.faq-list details[open] .faq-star { transform: rotate(135deg) scale(1.25); }
.faq-list details p {
  padding: 0 24px 22px; color: #3f5477; line-height: 1.65; font-size: .98rem;
  max-width: 700px;
}

/* ═══════════ VISIT — pavilion backdrop CTA ═══════════ */
.visit {
  position: relative; overflow: hidden;
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  padding: 150px 6vw;
}
.visit-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .35;
}
.visit-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--navy) 0%, rgba(13,34,64,.55) 40%, rgba(13,34,64,.7) 75%, var(--navy) 100%);
}
.visit-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.bulb-string { display: flex; justify-content: center; gap: 13px; margin-bottom: 34px; }
.bulb-string i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ge-blue);
  box-shadow: 0 0 6px rgba(24,183,254,.9), 0 0 14px rgba(24,183,254,.45);
  animation: blink 1.6s steps(2, start) infinite;
}
.bulb-string i:nth-child(3n) { animation-delay: .5s; }
.bulb-string i:nth-child(3n+1) { animation-delay: 1s; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
.visit-heading {
  font-weight: 800; text-transform: uppercase; line-height: .95;
  font-size: clamp(2.8rem, 7.4vw, 5.8rem); letter-spacing: .02em;
  color: #f6ecd2;
  text-shadow: 0 0 30px rgba(246,236,210,.35);
}
.visit-heading span {
  color: var(--ge-blue);
  text-shadow: 0 0 34px rgba(24,183,254,.6);
}
.visit-lede {
  font-family: var(--font-serif); font-style: italic;
  color: rgba(232,245,253,.92);
  max-width: 560px; margin: 26px auto 0;
  font-size: 1.08rem; line-height: 1.7;
}
.ticket-btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 40px;
  background: var(--ge-blue); color: var(--navy);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: .24em; font-size: .92rem;
  padding: 19px 42px;
  -webkit-mask-image:
    radial-gradient(circle 8px at 0 50%, transparent 97%, #000 100%),
    radial-gradient(circle 8px at 100% 50%, transparent 97%, #000 100%);
  mask-image:
    radial-gradient(circle 8px at 0 50%, transparent 97%, #000 100%),
    radial-gradient(circle 8px at 100% 50%, transparent 97%, #000 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  transition: transform .3s;
}
.ticket-btn:hover { transform: translateY(-3px); }
.ticket-tear { height: 16px; border-left: 2px dashed rgba(13,34,64,.5); }
.ticket-arrow { transition: transform .3s; }
.ticket-btn:hover .ticket-arrow { transform: translateX(5px); }
.visit-grid {
  margin: 70px auto 0; max-width: 820px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(232,245,253,.25);
  border: 1px solid rgba(232,245,253,.25); border-radius: 14px;
  overflow: hidden; text-align: left;
}
.visit-cell { background: rgba(13,34,64,.96); padding: 26px 24px; }
.cell-kicker {
  color: var(--ge-blue); font-weight: 700; letter-spacing: .34em;
  text-transform: uppercase; font-size: .7rem; margin-bottom: 12px;
}
.visit-cell p:last-child { font-size: .95rem; line-height: 1.7; color: #e8f5fd; }
.visit-map { max-width: 820px; margin: 26px auto 0; }
.visit-map iframe {
  display: block; width: 100%; height: 330px; border: 0;
  border-radius: 14px; border: 2px solid rgba(24,183,254,.45);
  filter: saturate(.85);
}

/* ═══════════ FOOTER ═══════════ */
footer { background: var(--cream); }
.footer-banner { width: 100%; max-width: 1000px; margin: 0 auto; border-radius: 0; }
.footer-bar {
  background: var(--midnight); color: var(--cream-dim);
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 5vw; font-size: .8rem; letter-spacing: .12em;
  flex-wrap: wrap; gap: 8px;
}
.footer-bar b { color: var(--ge-blue); }
.footer-tag { color: var(--ge-blue); letter-spacing: .26em; text-transform: uppercase; font-size: .7rem; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 980px) {
  .why-inner, .quotes, .visit-inner, .story-inner { grid-template-columns: 1fr; }
  .visit-inner { text-align: center; }
  .nav-links a:not(.nav-cta) { display: none; }
  .floor-masonry { columns: 2; }
  .story-photo { max-width: 480px; }
}
@media (max-width: 860px) {
  /* accordion stacks vertically; active slat grows tall */
  .acts-accordion { flex-direction: column; height: auto; }
  .act-slat { flex: none; height: 72px; transition: height .55s cubic-bezier(.22,1,.36,1); }
  .act-slat.is-active { flex: none; height: 330px; }
  .slat-label { writing-mode: horizontal-tb; transform: none; justify-content: flex-start; padding-left: 22px; }
  .slat-info { padding: 20px 22px; }
}
@media (max-width: 700px) {
  .hero { padding: 110px 6vw 70px; }
  .visit { padding: 100px 6vw; }
  .visit-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { font-size: .95rem; }
  .marquee-btn { padding: 16px 28px; }
  .hero-cta-row .marquee-label { font-size: .78rem; letter-spacing: .2em; }
}
@media (max-width: 560px) {
  section { padding: 80px 6vw; }
  .floor-masonry { columns: 1; }
  .floor-masonry figcaption { transform: none; opacity: 1; }
  .webuy-inner { justify-content: center; text-align: center; }
  .nav-logo span { font-size: .78rem; letter-spacing: .1em; }
  .nav-logo img { width: 38px; height: 38px; }
  .big-marquee { padding: 28px 8vw 22px; }
  .quote-hero { padding: 44px 30px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-title .word { transform: none; }
  .reveal-up, .reveal-load { opacity: 1; transform: none; }
}
