/* ============================================================
   Blue Hills at Round Top — redesign experiment
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink:        #1b2832;   /* warm blue-black text            */
  --ink-soft:   #51606c;   /* muted body / captions           */
  --blue:       #2b6c9a;   /* signature cornflower (brand)    */
  --blue-deep:  #1f5780;   /* hover / pressed                 */
  --blue-tint:  #eaf1f6;   /* faint blue wash                 */
  --cream:      #f7f2e8;   /* warm paper — primary surface    */
  --sand:       #efe7d8;   /* deeper warm neutral — alt band  */
  --white:      #fffdf8;   /* warm white                      */
  --line:       rgba(27, 40, 50, 0.12);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 11vw, 9rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, dl { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font: inherit; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 2px; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 5.2vw, 3.5rem); color: var(--ink); }
h3 { font-size: clamp(1.3rem, 2.6vw, 1.6rem); }
p  { color: var(--ink-soft); }

.overline {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95rem 1.7rem;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(31,87,128,.7); }
.btn--ghost { color: #fff; border: 1.5px solid rgba(255,255,255,.7); }
.btn--ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; transform: translateY(-2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; color: var(--blue); font-size: .98rem;
  width: fit-content;
}
.link-arrow::after {
  content: "→"; transition: transform .25s var(--ease);
}
.link-arrow:hover { color: var(--blue-deep); }
.link-arrow:hover::after { transform: translateX(5px); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .09s; }
[data-reveal-delay="2"] { transition-delay: .18s; }
[data-reveal-delay="3"] { transition-delay: .27s; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), color .4s var(--ease);
  color: #fff;
}
.nav:not(.is-scrolled) { text-shadow: 0 1px 14px rgba(8,16,24,.45); }
.nav:not(.is-scrolled) .nav__toggle,
.nav:not(.is-scrolled) .nav__logo--white { filter: drop-shadow(0 1px 8px rgba(8,16,24,.5)); }
.nav__inner {
  max-width: 1340px; margin-inline: auto;
  padding: 1.1rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav__brand { display: flex; align-items: center; }
.nav__logo { width: auto; display: block; }
.nav__logo--white { height: 33px; }
.nav__logo--blue { height: 50px; display: none; }
.nav.is-scrolled .nav__logo--white { display: none; }
.nav.is-scrolled .nav__logo--blue { display: block; }

.nav__links { display: none; align-items: center; gap: 2rem; }
.nav__links a { font-weight: 500; font-size: .98rem; position: relative; transition: opacity .2s; }
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1.5px; width: 0;
  background: currentColor; transition: width .3s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  border: 1.5px solid currentColor; padding: .55rem 1.2rem; border-radius: 999px;
  transition: background-color .25s, color .25s;
}

/* scrolled state — solid warm bar with dark text */
.nav.is-scrolled { background: rgba(247,242,232,.92); backdrop-filter: blur(10px); color: var(--ink); box-shadow: 0 1px 0 var(--line); }
.nav.is-scrolled .nav__brand-name { color: var(--ink); }
.nav.is-scrolled .nav__cta { background: var(--blue); color: #fff; border-color: var(--blue); }
.nav.is-scrolled .nav__cta:hover { background: var(--blue-deep); border-color: var(--blue-deep); }

.nav__toggle { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { display: block; width: 26px; height: 2px; background: currentColor; transition: transform .3s var(--ease), opacity .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  background: rgba(247,242,232,.98); backdrop-filter: blur(10px);
  color: var(--ink);
  display: flex; flex-direction: column;
  padding: .5rem var(--gutter) 1.5rem;
  border-top: 1px solid var(--line);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 1rem 0; font-size: 1.1rem; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border-bottom: none; color: var(--blue); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; height: 100svh; min-height: 600px; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 70%;
  animation: kenburns 24s var(--ease) forwards;
}
@keyframes kenburns { from { transform: scale(1.0); } to { transform: scale(1.09); } }

/* Looping background video — layers over the photo, fades in once playing.
   The photo beneath stays as instant first paint + fallback wherever the
   video is unavailable (reduced motion, still mode, autoplay blocked). */
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 70%;
  opacity: 0; transition: opacity 1.2s var(--ease);
}
.hero__video.is-playing { opacity: 1; }
.is-still .hero__video { display: none; }
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}

.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(15,28,40,.42) 0%, rgba(15,28,40,0) 20%),
    linear-gradient(to top, rgba(9,18,28,.9) 0%, rgba(9,18,28,.74) 20%, rgba(9,18,28,.4) 40%, rgba(9,18,28,.1) 60%, rgba(9,18,28,0) 76%);
}
.hero__content {
  position: relative; z-index: 2; color: #fff;
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding: 0 var(--gutter) clamp(3rem, 7vh, 5rem);
  text-shadow: 0 1px 18px rgba(8,16,24,.45);
}
.hero__eyebrow {
  font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  font-size: .8rem; color: rgba(255,255,255,.95);
}
.hero__dates {
  font-family: var(--serif); font-weight: 600; color: #fff;
  font-size: clamp(2rem, 4.6vw, 2.9rem); line-height: 1;
  margin: .3rem 0 1.5rem; letter-spacing: -0.01em;
  text-shadow: 0 1px 2px rgba(0,0,0,.85), 0 2px 28px rgba(0,0,0,.55);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.hero__scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.6); border-radius: 14px;
  display: none;
}
.hero__scroll span {
  position: absolute; top: 8px; left: 50%; width: 3px; height: 8px; border-radius: 2px;
  background: #fff; transform: translateX(-50%); animation: scrolldot 1.8s infinite;
}
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,12px)} 100%{opacity:0} }

/* ============================================================
   WELCOME
   ============================================================ */
.welcome { padding: var(--section-y) 0; background: var(--cream); }
.welcome__inner { max-width: 880px; text-align: center; margin-inline: auto; }
.welcome__statement { margin: 1rem auto 1.5rem; max-width: 18ch; }
.welcome__lede { font-size: clamp(1.05rem, 2vw, 1.22rem); max-width: 60ch; margin-inline: auto; }

.stats {
  display: grid; grid-template-columns: 1fr; gap: 0;
  margin-top: 3.5rem; border-top: 1px solid var(--line);
}
.stats__item { padding: 1.6rem 1rem; border-bottom: 1px solid var(--line); }
.stats__item dt { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .35rem; order: 2; }
.stats__item dd { font-family: var(--serif); font-size: clamp(2.2rem, 6vw, 3rem); color: var(--blue); line-height: 1; order: 1; }

/* ============================================================
   FEATURE (The Show)
   ============================================================ */
.feature { display: grid; grid-template-columns: 1fr; }
.feature__media img { width: 100%; height: clamp(280px, 60vw, 520px); object-fit: cover; }
.feature__text {
  background: var(--sand);
  padding: clamp(3rem, 9vw, 5.5rem) var(--gutter);
  display: flex; flex-direction: column; gap: 1.1rem; justify-content: center;
}
.feature__text h2 { max-width: 14ch; }
.feature__text p { max-width: 48ch; font-size: 1.08rem; }

/* ============================================================
   VENUE  (parallax band + amenities)
   ============================================================ */
.venue { background: var(--cream); }
.venue__band { height: clamp(320px, 56vw, 560px); position: relative; overflow: hidden; }
.venue__band-img {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(12,24,36,.18), rgba(12,24,36,.18)), url("../img/venue-aerial.jpg");
  background-size: cover; background-position: center;
}
.venue__body {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  padding-block: var(--section-y);
}
.venue__intro h2 { margin: 1rem 0; }
.venue__intro p { max-width: 42ch; font-size: 1.08rem; }

.amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.amenities li {
  display: flex; flex-direction: column; gap: .25rem;
  padding: 1.5rem 1.25rem 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.amenities__k { font-family: var(--serif); font-size: 1.7rem; color: var(--blue); line-height: 1; }
.amenities__v { font-size: .95rem; color: var(--ink-soft); }

/* ============================================================
   POP-UP (Sézane at the Fall Show)
   ============================================================ */
.popup { display: grid; grid-template-columns: 1fr; background: #a7bd78; }
.popup__media { overflow: hidden; }
.popup__media img { width: 100%; height: clamp(280px, 60vw, 520px); object-fit: cover; }
.popup__panel {
  padding: clamp(3.5rem, 9vw, 6rem) var(--gutter);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.popup__overline { color: #45521e; }
.popup__heading { margin-top: 2rem; width: 100%; display: flex; justify-content: center; }
.popup__logo { width: min(300px, 70%); }
.popup__dates {
  margin-top: 1.9rem;
  font-size: clamp(1.15rem, 2.3vw, 1.45rem); font-weight: 400;
  color: #2c341d; letter-spacing: .03em;
}
.popup__copy { margin-top: 2.1rem; display: flex; flex-direction: column; gap: 1.05rem; }
.popup__copy p { color: #3b452a; font-size: .98rem; line-height: 1.7; max-width: 38ch; margin-inline: auto; }
.popup__btn {
  margin-top: 2.5rem;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 210px; padding: .78rem 2.4rem;
  background: var(--white); color: #b8912f;
  border: 1px solid #d9bc6a;
  font-size: .92rem; font-weight: 500; letter-spacing: .1em;
  transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.popup__btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-2px); }

/* ============================================================
   GALLERY (A Designer's Paradise)
   ============================================================ */
.gallery { background: var(--white); padding: var(--section-y) 0; }
.gallery__head { max-width: 720px; text-align: center; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }
.gallery__head h2 { margin: 1rem 0 .9rem; }
.gallery__lede { max-width: 52ch; margin-inline: auto; font-size: 1.08rem; }
.gallery__grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.gallery__item { overflow: hidden; border-radius: 6px; box-shadow: 0 24px 48px -30px rgba(27,40,50,.4); }
.gallery__item img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .7s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__follow { text-align: center; margin-top: clamp(2rem, 5vw, 3rem); }
.gallery__insta {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue);
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.gallery__insta:hover { color: var(--blue-deep); transform: translateY(-2px); }
.gallery__insta svg { display: block; }

/* ============================================================
   STORY
   ============================================================ */
.story { background: var(--blue-tint); padding: var(--section-y) 0; }
.story__inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.story__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 6px; box-shadow: 0 30px 60px -30px rgba(27,40,50,.45); }
.story__text { display: flex; flex-direction: column; gap: 1.1rem; }
.story__text h2 { margin-top: .4rem; }
.story__text p { font-size: 1.08rem; max-width: 50ch; }

/* ============================================================
   VISIT
   ============================================================ */
.visit { background: var(--ink); color: var(--cream); padding: var(--section-y) 0; }
.visit .overline { color: #8fc0e0; }
.visit__head { text-align: center; max-width: 700px; margin: 0 auto clamp(2.5rem, 6vw, 4rem); }
.visit__head h2 { color: var(--white); margin-top: 1rem; }

.visit__grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); border-radius: 8px; overflow: hidden; }
.visit__card { background: var(--ink); padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: .6rem; }
.visit__card h3 { color: #8fc0e0; font-family: var(--sans); font-size: .8rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.visit__big { font-family: var(--serif); font-size: clamp(1.7rem, 4vw, 2.2rem); color: var(--white); line-height: 1.05; }
.visit__big--sm { font-size: clamp(1.3rem, 3vw, 1.6rem); }
.visit__muted { color: rgba(247,242,232,.62); font-size: .95rem; }
.visit__muted span { font-size: .85rem; }
.visit__contact { display: flex; flex-direction: column; gap: .55rem; }
.visit__contact a { color: var(--white); font-size: 1.05rem; width: fit-content; border-bottom: 1px solid transparent; transition: border-color .2s; }
.visit__contact a:hover { border-color: #8fc0e0; }
.visit__card .link-arrow { color: #8fc0e0; margin-top: .2rem; }
.visit__card .link-arrow:hover { color: #bcdcf0; }

/* future dates strip */
.visit__future {
  margin-top: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgba(255,255,255,.14); border-radius: 8px;
  padding: 1.75rem 2rem;
}
.visit__future-title {
  color: #8fc0e0; font-size: .8rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
}
.visit__future-list { display: grid; grid-template-columns: 1fr; gap: 1.25rem 3rem; margin-top: 1.1rem; }
.visit__future-list li { display: flex; flex-direction: column; gap: .25rem; }
.visit__future-show { color: rgba(247,242,232,.62); font-size: .95rem; font-weight: 500; }
.visit__future-date { font-family: var(--serif); font-size: clamp(1.35rem, 3vw, 1.7rem); color: var(--white); line-height: 1.1; }

/* free guide strip */
.guide {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(120deg, #24414f, #1f3744);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  padding: clamp(2rem, 5vw, 3rem);
  align-items: center;
}
.guide__text { display: flex; flex-direction: column; gap: .8rem; order: 1; }
.guide__text h3 { color: var(--white); font-size: clamp(1.5rem, 3.5vw, 2rem); }
.guide__text p { color: rgba(247,242,232,.72); }
.guide__form { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: .5rem; }
.guide__form input {
  flex: 1 1 220px; padding: .9rem 1.2rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06); color: #fff; min-width: 0;
}
.guide__form input::placeholder { color: rgba(255,255,255,.5); }
.guide__form[hidden] { display: none; }
.guide__note[hidden] { display: none; }
.guide__text .guide__note { font-size: .85rem; color: rgba(247,242,232,.55); }
.guide__error { color: #f2b8a2; font-size: .9rem; }
.guide__error[hidden] { display: none; }
.guide__success { display: flex; flex-direction: column; gap: 1.1rem; align-items: flex-start; margin-top: .4rem; }
.guide__success[hidden] { display: none; }
.guide__success p { color: rgba(247,242,232,.85); }
.guide__cover { order: 0; display: flex; justify-content: center; }
.guide__cover img { width: clamp(150px, 40vw, 210px); border-radius: 4px; box-shadow: 0 30px 50px -20px rgba(0,0,0,.55); transform: rotate(-3deg); }

/* ============================================================
   MAP & VENDORS PAGE
   ============================================================ */
.page-head {
  background: var(--cream);
  padding: clamp(7.5rem, 15vw, 10.5rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.page-head h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); color: var(--ink); margin-top: 1rem; }

.map-section { background: var(--cream); padding-bottom: clamp(2rem, 5vw, 3rem); }
.map-figure { max-width: 920px; margin-inline: auto; }
.map-figure img { width: 100%; }
.map-figure figcaption { text-align: center; font-size: .85rem; color: var(--ink-soft); padding-top: .9rem; }

/* full-bleed color bands — palette lifted from the original site */
.directions-band { background: var(--ink); text-align: center; padding: clamp(3rem, 7vw, 4.5rem) 0; }
.directions-band__addr { margin-top: 1.5rem; color: var(--white); font-weight: 600; font-size: 1.05rem; }
.directions-band__addr span { display: block; }
.directions-band__hours { margin-top: .5rem; color: rgba(247,242,232,.62); font-size: .95rem; }

.vendors-intro { background: var(--cream); text-align: center; padding: clamp(3rem, 7vw, 4.5rem) 0; }
.vendors-intro h2 { margin-top: 1rem; }

.vband { padding: clamp(3.25rem, 8vw, 5.5rem) 0; }
.vband__title {
  font-family: var(--sans); font-size: clamp(1.15rem, 2.6vw, 1.6rem); font-weight: 600;
  letter-spacing: .32em; text-indent: .32em; text-transform: uppercase;
  text-align: center; color: #fff;
}
.vband__title::after {
  content: ""; display: block; width: 74px; height: 2px;
  background: rgba(255,255,255,.9); margin: 1.1rem auto 0;
}
.vband--barns    { background: #9bd9f5; --band-deep: #17648f; }
.vband--newbarns { background: #4993d0; --band-deep: #1d5687; }
.vband--tents    { background: #bfcf84; --band-deep: #5d7024; }
.vband--pavilion { background: #c5a0cb; --band-deep: #7d4f86; }
.vband--food     { background: #ee7041; --band-deep: #b23c14; }

.vendors__grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; margin-top: clamp(2rem, 4.5vw, 3rem); }
.vendor-card {
  background: var(--white); border-radius: 10px; text-align: center;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 18px 36px -24px rgba(27,40,50,.5);
}
.vendor-card h3 { font-size: 1.18rem; color: var(--band-deep, var(--blue)); margin-bottom: .7rem; }
.vendor-card ul { display: flex; flex-direction: column; }
.vendor-card li { padding: .34rem 0; font-size: .95rem; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.vendor-card li:last-child { border-bottom: none; }
.vendor-card p { font-size: .95rem; }
.vendor-card a {
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: rgba(27,40,50,.22); text-decoration-thickness: 1px;
  transition: color .2s var(--ease), text-decoration-color .2s var(--ease);
}
.vendor-card a:hover { color: var(--band-deep, var(--blue)); text-decoration-color: currentColor; }

/* floating home button */
.home-fab {
  position: fixed; z-index: 90;
  left: 50%; transform: translateX(-50%);
  bottom: calc(1.2rem + env(safe-area-inset-bottom, 0px));
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.6rem; border-radius: 999px;
  background: var(--blue); color: #fff;
  font-weight: 600; font-size: .95rem;
  box-shadow: 0 12px 30px -8px rgba(27,40,50,.55);
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.home-fab:hover { background: var(--blue-deep); transform: translateX(-50%) translateY(-2px); }
.home-fab svg { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--cream); padding-top: clamp(3rem, 7vw, 4.5rem); }
.footer__inner { display: grid; grid-template-columns: 1fr; gap: 2.25rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line); }
.footer__logo { height: 44px; width: auto; display: block; }
.footer__tag { margin-top: 1.1rem; max-width: 34ch; font-size: .98rem; }
.footer__nav { display: flex; flex-direction: column; gap: .8rem; }
.footer__nav a { font-weight: 500; width: fit-content; position: relative; }
.footer__nav a:hover { color: var(--blue); }
.footer__social { display: flex; gap: .8rem; align-items: flex-start; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink); transition: background-color .25s, color .25s, transform .25s;
}
.footer__social a:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-2px); }
.footer__base { padding: 1.5rem var(--gutter); text-align: center; }
.footer__base p { font-size: .85rem; color: var(--ink-soft); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 600px) {
  .vendors__grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stats__item { border-bottom: none; border-right: 1px solid var(--line); }
  .stats__item:last-child { border-right: none; }
  .visit__grid { grid-template-columns: repeat(3, 1fr); }
  .visit__future-list { grid-template-columns: repeat(2, max-content); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
}

@media (min-width: 860px) {
  .nav__links { display: flex; }
  .nav__toggle { display: none; }
  .mobile-menu { display: none !important; }
  .hero__scroll { display: block; }

  .feature { grid-template-columns: 1.05fr 1fr; }
  .feature--show .feature__media { order: 0; }
  .feature__media img { height: 100%; min-height: 480px; }

  .venue__body { grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(3rem, 6vw, 6rem); }
  .amenities { grid-template-columns: 1fr 1fr; }

  .popup { grid-template-columns: 1.05fr 1fr; }
  .popup__media img { height: 100%; min-height: 540px; }

  .vendors__grid { grid-template-columns: repeat(3, 1fr); }

  .story__inner { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 5rem); }

  .guide { grid-template-columns: 1.4fr 1fr; }
  .guide__text { order: 0; }
  .guide__cover { order: 1; justify-content: flex-end; }

  .footer__inner { grid-template-columns: 1.6fr 1fr auto; gap: 3rem; align-items: start; }
}

@media (min-width: 1024px) {
  .venue__band-img { background-attachment: fixed; }
  .vband--pavilion .vendors__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Still mode (static screenshots via ?still=1) ---------- */
.is-still { scroll-behavior: auto; }
.is-still .hero { height: 720px; min-height: 0; }
.is-still section[id] { scroll-margin-top: 64px; }
.is-still .hero__media img { animation: none; transform: scale(1.02); }
.is-still .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
.is-still .venue__band-img { background-attachment: scroll !important; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__media img { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero__scroll span { animation: none; }
  * { transition-duration: .01ms !important; }
}
