/* ============================================================
   FIREFLY PC CLUB — styles.css
   LAYOUT SYSTEM (fixed): Container B — narrow-880 · Spacing scale — airy
   Do not mix container schemes. Section rhythm: 128 / 72 (64 mobile).
   ============================================================ */

:root {
  /* palette */
  --c-bg:        #f4efe6;   /* light, used sparingly (one contrast section) */
  --c-bg-dark:   #151a14;   /* garden at night, primary */
  --c-bg-dark-2: #1c241a;   /* raised dark surface */
  --c-ink:       #f4efe6;   /* text on dark */
  --c-ink-inv:   #151a14;   /* text on light */
  --c-a1:        #fde68a;   /* firefly amber */
  --c-a2:        #86a86b;   /* foliage green */
  --c-line:      rgba(253, 230, 138, 0.35);
  --c-muted:     rgba(244, 239, 230, 0.72);

  /* type */
  --f-display: "Yeseva One", Georgia, serif;
  --f-body:    "Karla", system-ui, sans-serif;

  /* radius */
  --r-card: 18px;

  /* spacing scale (8px step) */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 64px;

  /* section rhythm — airy */
  --sec-y: 128px;
  --blk-y: 72px;

  /* container — narrow-880 */
  --w-container: 880px;
  --w-bleed: 1080px;
}

@media (max-width: 768px) {
  :root { --sec-y: 64px; --blk-y: 40px; }
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--c-ink);
  background: var(--c-bg-dark);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(38px, 6vw, 78px); margin: 0 0 var(--s-3); }
h2 { font-size: clamp(28px, 4.5vw, 48px); margin: 0 0 var(--s-3); }
h3 { font-size: clamp(20px, 2.6vw, 26px); margin: 0 0 var(--s-1); }
p  { margin: 0 0 var(--s-2); }

.container {
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: var(--s-3);
}

/* rail offsets content on desktop */
@media (min-width: 769px) {
  body { padding-left: 88px; }
}

.u-skip {
  position: absolute; left: -9999px;
  background: var(--c-a1); color: var(--c-ink-inv);
  padding: var(--s-1) var(--s-2); border-radius: 8px; z-index: 200;
}
.u-skip:focus { left: var(--s-2); top: var(--s-2); }

/* ---------- firefly dot motif ---------- */
.firefly-dot {
  position: absolute; top: var(--s-3); right: var(--s-3);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-a1);
  box-shadow: 0 0 0 6px rgba(253, 230, 138, 0.16), 0 0 14px 3px rgba(253, 230, 138, 0.5);
}

/* ---------- logo lockup ---------- */
.logo-lockup { display: inline-flex; flex-direction: column; line-height: 1; }
.logo-lockup__main {
  font-family: var(--f-display); font-size: 22px; letter-spacing: .5px; color: var(--c-ink);
}
.logo-lockup__i { position: relative; }
.logo-lockup__i::before {
  content: ""; position: absolute; left: 50%; top: -0.42em; width: 5px; height: 5px;
  transform: translateX(-50%); border-radius: 50%; background: var(--c-a1);
  box-shadow: 0 0 8px 2px rgba(253, 230, 138, 0.7);
}
.logo-lockup__sub {
  font-family: var(--f-body); font-weight: 700; font-size: 10px;
  letter-spacing: 3px; color: var(--c-a2); margin-top: 3px;
}
.logo-lockup--center { align-items: center; text-align: center; }

/* ============================================================
   NAV — nav-vertical-rail
   ============================================================ */
.nav--rail {
  position: fixed; left: 0; top: 0; height: 100vh; width: 88px; z-index: 100;
  display: flex; flex-direction: column; align-items: center;
  padding: var(--s-3) var(--s-1);
  background: rgba(21, 26, 20, 0.92);
  border-right: 1px solid var(--c-line);
  backdrop-filter: blur(8px);
}
.nav__logo { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: var(--s-2); }
.nav__logo .logo-lockup { writing-mode: vertical-rl; align-items: center; }
.nav__logo .logo-lockup__main { writing-mode: horizontal-tb; }
.nav__logo .logo-lockup__sub { writing-mode: horizontal-tb; }
.nav__badge {
  writing-mode: vertical-rl; text-orientation: mixed;
  font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--c-muted); margin-top: var(--s-2);
}
.nav__rail-links {
  display: flex; flex-direction: column; align-items: center; gap: var(--s-3);
  margin: auto 0; writing-mode: vertical-rl;
}
.nav__rail-links a {
  text-decoration: none; font-weight: 600; font-size: 14px; letter-spacing: 1px;
  color: var(--c-muted); transition: color .25s;
}
.nav__rail-links a:hover, .nav__rail-links a.is-active { color: var(--c-a1); }
.nav__cta.btn { writing-mode: vertical-rl; padding: var(--s-3) var(--s-1); font-size: 13px; }

@media (max-width: 768px) {
  .nav--rail {
    flex-direction: row; height: auto; width: 100%; bottom: auto; top: 0;
    justify-content: space-between; align-items: center;
    padding: var(--s-2) var(--s-3);
    border-right: none; border-bottom: 1px solid var(--c-line);
  }
  .nav__logo { flex-direction: row; gap: var(--s-1); }
  .nav__logo .logo-lockup { writing-mode: horizontal-tb; align-items: flex-start; }
  .nav__badge { display: none; }
  .nav__rail-links {
    position: fixed; left: 0; right: 0; bottom: 0; margin: 0;
    flex-direction: row; writing-mode: horizontal-tb; justify-content: space-around;
    background: rgba(21, 26, 20, 0.96); border-top: 1px solid var(--c-line);
    padding: var(--s-2) 0; gap: 0; z-index: 100;
  }
  .nav__cta.btn { writing-mode: horizontal-tb; padding: var(--s-1) var(--s-2); font-size: 13px; }
  body { padding-bottom: 60px; }
}

/* ============================================================
   BUTTONS — warm pills
   ============================================================ */
.btn {
  --fly-x: 0; --fly-y: 0;
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-body); font-weight: 700; font-size: 15px; letter-spacing: .3px;
  text-decoration: none; cursor: pointer; border: 0;
  padding: 14px 26px; border-radius: 999px;
  transition: transform .2s ease, background .2s ease;
}
.btn--primary { background: var(--c-a1); color: var(--c-ink-inv); }
.btn--primary:hover { transform: translateY(-2px); }
.btn--ghost {
  background: transparent; color: var(--c-ink);
  border: 1px solid var(--c-line);
}
.btn--ghost:hover { border-color: var(--c-a1); color: var(--c-a1); }
/* firefly sparks that fly to the button on hover */
.btn--primary::before, .btn--primary::after {
  content: ""; position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-a1); opacity: 0; pointer-events: none;
  box-shadow: 0 0 10px 3px rgba(253, 230, 138, 0.8);
}
.btn--primary::before { left: -14px; top: 20%; }
.btn--primary::after  { right: -16px; bottom: 20%; }
.btn--primary:hover::before { animation: fly-in-a .9s ease forwards; }
.btn--primary:hover::after  { animation: fly-in-b 1.1s ease forwards; }
@keyframes fly-in-a {
  0% { opacity: 0; transform: translate(-8px, 6px); }
  40% { opacity: 1; }
  100% { opacity: .9; transform: translate(14px, -4px); }
}
@keyframes fly-in-b {
  0% { opacity: 0; transform: translate(10px, -8px); }
  40% { opacity: 1; }
  100% { opacity: .9; transform: translate(-14px, 6px); }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
main > section { padding-block: var(--sec-y); position: relative; }
.section-eyebrow {
  font-weight: 700; font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--c-a2); margin-bottom: var(--s-1);
}
.section-intro { color: var(--c-muted); max-width: 62ch; margin-bottom: var(--blk-y); }

/* branch dividers */
.branch-divider { display: flex; justify-content: center; padding: var(--s-2) 0; }
.branch-divider svg { width: 240px; height: 24px; overflow: visible; }
.branch-divider__line {
  fill: none; stroke: var(--c-a2); stroke-width: 1.6; opacity: .6;
  stroke-dasharray: 240; stroke-dashoffset: 240;
}
.branch-divider__leaf { fill: var(--c-a2); opacity: 0; }
.branch-divider__fly {
  fill: var(--c-a1); opacity: 0;
  filter: drop-shadow(0 0 5px rgba(253, 230, 138, 0.9));
}
.branch-divider.is-in .branch-divider__line { animation: draw-branch 1.1s ease forwards; }
.branch-divider.is-in .branch-divider__leaf { animation: fade-leaf .5s ease .9s forwards; }
.branch-divider.is-in .branch-divider__fly:nth-of-type(1) { animation: wake-fly .6s ease .5s forwards; }
.branch-divider.is-in .branch-divider__fly:nth-of-type(2) { animation: wake-fly .6s ease .7s forwards; }
@keyframes draw-branch { to { stroke-dashoffset: 0; } }
@keyframes fade-leaf { to { opacity: .7; } }
@keyframes wake-fly { from { opacity: 0; } to { opacity: .95; } }

/* ============================================================
   HERO — hero-quote-framed + Firefly Gather canvas
   ============================================================ */
.s-hero {
  min-height: 92vh; display: flex; align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(21,26,20,0.72), rgba(21,26,20,0.92)),
    url("images/bg1.jpg") center / cover no-repeat;
}
.s-hero__bg { position: absolute; inset: 0; z-index: 0; }
#fireflyCanvas { width: 100%; height: 100%; display: block; }
.s-hero__inner { position: relative; z-index: 1; }
.s-hero__eyebrow {
  font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--c-a1); margin-bottom: var(--s-3);
}
.s-hero__eyebrow span { color: var(--c-muted); }
.quote-frame {
  border: 1px solid var(--c-line); border-radius: var(--r-card);
  padding: var(--s-4) var(--s-4) var(--s-3);
  background: rgba(21, 26, 20, 0.55); position: relative;
}
.quote-frame__mark {
  font-family: var(--f-display); color: var(--c-a1);
  font-size: clamp(20px, 3vw, 30px); margin: 0 0 var(--s-2);
  opacity: .9;
}
.quote-frame h1 { margin: 0; }
.s-hero__lede { color: var(--c-ink); max-width: 60ch; margin-top: var(--s-4); }
.s-hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-3); }
.s-hero__corner {
  width: 220px; border-radius: var(--r-card); border: 1px solid var(--c-line);
  margin-top: var(--s-5);
}

/* ============================================================
   STATIONS
   ============================================================ */
.station-grid { display: grid; gap: var(--s-3); }
.station-card {
  position: relative; background: var(--c-bg-dark-2);
  border: 1px solid var(--c-line); border-radius: var(--r-card);
  overflow: hidden;
}
.station-card__body { padding: var(--s-3); position: relative; }
.station-card--wide { display: grid; }
.station-card__media { margin: 0; position: relative; }
.station-card__media img { aspect-ratio: 16 / 10; object-fit: cover; }
.spec {
  list-style: none; padding: 0; margin: var(--s-2) 0 0;
  display: flex; flex-wrap: wrap; gap: var(--s-1);
}
.spec li {
  font-size: 13px; font-weight: 600; color: var(--c-a1);
  border: 1px solid var(--c-line); border-radius: 999px; padding: 3px 12px;
}
@media (min-width: 700px) {
  .station-grid { grid-template-columns: 1fr 1fr; }
  .station-card--wide { grid-column: 1 / -1; grid-template-columns: 1.2fr 1fr; }
  .station-card--wide .station-card__media img { height: 100%; aspect-ratio: auto; }
}

/* ============================================================
   THE VERANDA — signature band, bg2 tinted
   ============================================================ */
.s-veranda { overflow: hidden; }
.s-veranda__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(21,26,20,0.86), rgba(21,26,20,0.9)),
    url("images/band-1.jpg") center / cover no-repeat;
  opacity: .9;
}
.s-veranda__inner { position: relative; z-index: 1; }
.s-veranda__lead { font-size: 18px; color: var(--c-ink); max-width: 62ch; }
.lantern-path { margin-top: var(--blk-y); }
.lantern-path svg { width: 100%; max-width: 520px; height: auto; overflow: visible; }
.lantern-path__trail {
  fill: none; stroke: var(--c-a2); stroke-width: 2; stroke-linecap: round;
  stroke-dasharray: 2 5;
  stroke-dashoffset: 100;
}
.lantern-path.is-in .lantern-path__trail { animation: draw-path 2s ease forwards; }
@keyframes draw-path { to { stroke-dashoffset: 0; } }
.lantern-path__lamp circle { fill: var(--c-a1); opacity: 0; filter: drop-shadow(0 0 6px rgba(253,230,138,0.9)); }
.lantern-path__lamp line { stroke: var(--c-a2); stroke-width: 1.6; }
.lantern-path.is-in .lantern-path__lamp:nth-of-type(2) circle { animation: wake-fly .5s ease 1s forwards; }
.lantern-path.is-in .lantern-path__lamp:nth-of-type(3) circle { animation: wake-fly .5s ease 1.6s forwards; }
.lantern-path__label {
  fill: var(--c-muted); font-family: var(--f-body); font-size: 11px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}

/* ============================================================
   HARDWARE — the single LIGHT section
   ============================================================ */
.s-hardware { background: var(--c-bg); color: var(--c-ink-inv); }
.s-hardware .section-eyebrow { color: var(--c-a2); }
.s-hardware .section-intro { color: rgba(21, 26, 20, 0.72); }
.hardware-grid { display: grid; gap: var(--s-3); }
.hardware-card {
  background: #fffdf7; border: 1px solid rgba(21, 26, 20, 0.12);
  border-radius: var(--r-card); padding: var(--s-3);
}
.hardware-card h3 { color: var(--c-ink-inv); }
.hardware-card p { color: rgba(21, 26, 20, 0.78); margin: 0; }
@media (min-width: 640px) { .hardware-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   RATES — bg tinted
   ============================================================ */
.s-rates { overflow: hidden; }
.s-rates__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(21,26,20,0.9), rgba(21,26,20,0.94)),
    url("images/bg.jpg") center / cover no-repeat;
}
.s-rates__inner { position: relative; z-index: 1; }
.rate-grid { display: grid; gap: var(--s-3); }
.rate-card {
  position: relative; background: var(--c-bg-dark-2);
  border: 1px solid var(--c-line); border-radius: var(--r-card);
  padding: var(--s-4) var(--s-3);
}
.rate-card--feature { border-color: var(--c-a1); background: rgba(253, 230, 138, 0.06); }
.rate-card__price { margin: var(--s-1) 0 var(--s-2); display: flex; align-items: baseline; gap: var(--s-1); }
.rate-num {
  font-family: var(--f-display); font-size: 46px; color: var(--c-a1);
  text-shadow: 0 0 18px rgba(253, 230, 138, 0.3);
}
.rate-num::before { content: "$"; font-size: 26px; vertical-align: super; }
.rate-unit { color: var(--c-muted); font-size: 14px; font-weight: 600; }
.rate-card__note { color: var(--c-muted); margin: 0; font-size: 15px; }
@media (min-width: 640px) { .rate-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   GARDEN LOG
   ============================================================ */
.log-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-3); }
.log-item {
  position: relative; padding: var(--s-3) var(--s-3) var(--s-3) var(--s-5);
  background: var(--c-bg-dark-2); border: 1px solid var(--c-line); border-radius: var(--r-card);
}
.log-item .firefly-dot { left: var(--s-3); right: auto; top: var(--s-4); }
.log-item p { margin: 0; color: var(--c-muted); }

/* ============================================================
   GLOW GALLERY
   ============================================================ */
.gallery-grid { display: grid; gap: var(--s-3); grid-template-columns: 1fr 1fr; }
.gallery-figure { margin: 0; }
.gallery-figure img {
  border-radius: var(--r-card); border: 1px solid var(--c-line);
  aspect-ratio: 1 / 1; object-fit: cover; width: 100%;
}
.gallery-figure--wide { grid-column: 1 / -1; }
.gallery-figure--wide img { aspect-ratio: 16 / 7; }
.gallery-figure figcaption { margin-top: var(--s-1); font-size: 14px; color: var(--c-muted); }
.gallery-figure figcaption em { font-style: italic; color: var(--c-a1); opacity: .85; }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ============================================================
   REGULARS — testimonials-side-photo
   ============================================================ */
.regulars-feature { display: grid; gap: var(--s-4); align-items: center; }
.regulars-feature__media { margin: 0; }
.regulars-feature__media img {
  border-radius: var(--r-card); border: 1px solid var(--c-line);
  aspect-ratio: 3 / 2; object-fit: cover; width: 100%;
}
.regulars-feature__media figcaption {
  margin-top: var(--s-1); font-size: 14px; color: var(--c-muted);
}
.regulars-feature__media figcaption em { font-style: italic; color: var(--c-a1); opacity: .85; }
.regulars-feature__quote {
  margin: 0; padding: var(--s-3) 0 0; position: relative;
}
.regulars-feature__quote p {
  font-family: var(--f-display); font-size: clamp(20px, 2.8vw, 28px);
  line-height: 1.35; color: var(--c-ink); margin: 0 0 var(--s-2);
}
.regulars-feature__quote cite {
  font-style: normal; font-weight: 700; font-size: 14px;
  letter-spacing: 1px; text-transform: uppercase; color: var(--c-a2);
}
.regulars-notes { list-style: none; padding: 0; margin: var(--blk-y) 0 0; display: grid; gap: var(--s-3); }
.regulars-note {
  position: relative; padding: var(--s-3) var(--s-3) var(--s-3) var(--s-5);
  background: var(--c-bg-dark-2); border: 1px solid var(--c-line); border-radius: var(--r-card);
}
.regulars-note .firefly-dot { left: var(--s-3); right: auto; top: var(--s-4); }
.regulars-note p { margin: 0; color: var(--c-muted); }
.regulars-note strong { color: var(--c-ink); }
@media (min-width: 700px) {
  .regulars-feature { grid-template-columns: 1fr 1fr; }
  .regulars-notes { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   HOW TO BOOK — timeline-vertical-connected
   ============================================================ */
.timeline--vertical { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline--vertical::before {
  content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--c-a1), var(--c-a2));
  opacity: .5;
}
.timeline__step {
  position: relative; padding: 0 0 var(--s-5) var(--s-5);
}
.timeline__step:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute; left: 0; top: 4px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--c-a1);
  box-shadow: 0 0 0 4px rgba(253, 230, 138, 0.14), 0 0 12px 3px rgba(253, 230, 138, 0.55);
}
.timeline__body h3 { margin: 0 0 var(--s-1); }
.timeline__body p { margin: 0; color: var(--c-muted); }

/* ============================================================
   POINTS & HOURS BOARD — stats-icon-paired
   ============================================================ */
.grid--board { display: grid; gap: var(--s-3); grid-template-columns: 1fr 1fr; }
.board-card {
  position: relative; background: var(--c-bg-dark-2);
  border: 1px solid var(--c-line); border-radius: var(--r-card);
  padding: var(--s-4) var(--s-3); text-align: center;
}
.board-card__icon {
  display: block; font-size: 24px; color: var(--c-a2); margin-bottom: var(--s-1);
}
.board-card__num {
  display: block; font-family: var(--f-display); font-size: clamp(30px, 5vw, 44px);
  color: var(--c-a1); line-height: 1; text-shadow: 0 0 18px rgba(253, 230, 138, 0.3);
  margin-bottom: var(--s-2);
}
.board-card p { margin: 0; color: var(--c-muted); font-size: 14.5px; }
.board-note {
  margin: var(--blk-y) 0 0; color: var(--c-muted); font-size: 14px;
  text-align: center; font-style: italic;
}
@media (min-width: 720px) { .grid--board { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 460px) { .grid--board { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: grid; gap: var(--s-2); }
.faq-item {
  background: var(--c-bg-dark-2); border: 1px solid var(--c-line);
  border-radius: var(--r-card); padding: var(--s-2) var(--s-3);
}
.faq-item summary {
  cursor: pointer; font-family: var(--f-display); font-size: 20px; list-style: none;
  padding: var(--s-1) 0; position: relative; padding-left: var(--s-3);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--c-a1);
  box-shadow: 0 0 8px 2px rgba(253, 230, 138, 0.6);
}
.faq-item p { color: var(--c-muted); margin: var(--s-1) 0 var(--s-1) var(--s-3); }

/* ============================================================
   BOOK FORM — bg2 tinted
   ============================================================ */
.s-book { overflow: hidden; }
.s-book__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(21,26,20,0.9), rgba(21,26,20,0.95)),
    url("images/bg2.jpg") center / cover no-repeat;
}
.s-book__inner { position: relative; z-index: 1; }
.book-form { display: grid; gap: var(--s-3); grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: var(--s-1); position: relative; }
.field label {
  font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--c-muted); position: relative; padding-left: 14px;
}
.field label::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: transparent;
  transition: background .25s, box-shadow .25s;
}
.field:focus-within label::before {
  background: var(--c-a1); box-shadow: 0 0 8px 2px rgba(253, 230, 138, 0.7);
}
.field input, .field select {
  font-family: var(--f-body); font-size: 15px; color: var(--c-ink);
  background: rgba(21, 26, 20, 0.6); border: 1px solid var(--c-line);
  border-radius: 12px; padding: 12px 14px;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--c-a1); }
.field select { appearance: none; }
.field:nth-child(1), .field:nth-child(3) { grid-column: 1 / -1; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.book-form__submit {
  grid-column: 1 / -1; display: flex; align-items: center; gap: var(--s-2);
}
.form-status { grid-column: 1 / -1; margin: 0; font-weight: 600; }
.form-status.success { color: var(--c-a1); }
.form-status.error { color: #e6a17a; }
.book-check { width: 40px; height: 40px; opacity: 0; }
.book-check__path {
  fill: none; stroke: var(--c-a1); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 60; stroke-dashoffset: 60;
  filter: drop-shadow(0 0 6px rgba(253, 230, 138, 0.8));
}
.book-check.is-on { opacity: 1; }
.book-check.is-on .book-check__path { animation: draw-check .6s ease forwards; }
@keyframes draw-check { to { stroke-dashoffset: 0; } }
@media (max-width: 560px) {
  .book-form { grid-template-columns: 1fr; }
  .field:nth-child(1), .field:nth-child(3) { grid-column: auto; }
}

/* ============================================================
   FOOTER — footer-minimal-centered
   ============================================================ */
.footer--minimal {
  background: var(--c-bg-dark); border-top: 1px solid var(--c-line);
  padding-block: var(--blk-y); text-align: center;
}
.footer--minimal .container { display: flex; flex-direction: column; align-items: center; gap: var(--s-2); }
.footer__logo { text-decoration: none; }
.footer__links, .footer__legal { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; }
.footer__links a, .footer__legal a { text-decoration: none; color: var(--c-muted); font-weight: 600; font-size: 14px; }
.footer__links a:hover, .footer__legal a:hover { color: var(--c-a1); }
.footer__hours { color: var(--c-muted); font-size: 14px; margin: 0; }
.footer__disclaimer {
  color: var(--c-a1); font-weight: 700; font-size: 15px; margin: var(--s-2) 0 0;
  letter-spacing: .3px;
}
.footer__copy { color: var(--c-muted); font-size: 13px; margin: 0; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s ease; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal { padding: var(--sec-y) 0; }
.legal .container { max-width: 720px; }
.legal__home { text-decoration: none; display: inline-block; margin-bottom: var(--s-5); }
.legal h1 { position: relative; padding-left: 44px; }
.legal h1::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 22px; height: 26px;
  border-radius: 6px 6px 8px 8px;
  background: radial-gradient(circle at 50% 40%, var(--c-a1), rgba(253,230,138,0.15));
  box-shadow: 0 0 14px 2px rgba(253, 230, 138, 0.4);
}
.legal h2 { font-size: clamp(22px, 3vw, 30px); margin-top: var(--blk-y); }
.legal ul { list-style: none; padding: 0; }
.legal li { position: relative; padding-left: var(--s-3); margin-bottom: var(--s-1); color: var(--c-muted); }
.legal li::before {
  content: ""; position: absolute; left: 0; top: 10px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--c-a1);
  box-shadow: 0 0 7px 2px rgba(253, 230, 138, 0.6);
}
.legal p { color: var(--c-muted); }

/* ============================================================
   REDUCED MOTION — static, interactivity off
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .branch-divider__line { stroke-dashoffset: 0; }
  .branch-divider__fly, .branch-divider__leaf { opacity: .8; }
  .lantern-path__trail { stroke-dashoffset: 0; }
  .lantern-path__lamp circle { opacity: 1; }
  .book-check__path { stroke-dashoffset: 0; }
}


/* === adjust: fit hero in one screen (smaller h1) === */
.s-hero h1{ font-size:clamp(28px,3.2vw,46px); line-height:1.12; }
.s-hero .s-hero__lede{ font-size:clamp(15px,1.3vw,18px); }
