/* ==========================================================================
   The Shooting Lab — Chester, NJ  (design system carried from the Plumlee build)
   white canvas, warm-sand accent, maroon brand pops, gray body text,
   900-weight display type, full-bleed photo bands, hamburger nav, giant
   wordmark footer, outlined pill buttons.
   ========================================================================== */
/* Emblem logo is built for dark backgrounds — no plate, just a soft shadow so it
   reads over hero photos and the dark footer. */
.topbar .logo img, .footer__logo img { background: transparent; }
/* Footer sits on near-black; the transparent LAB shield's darker elements would
   flatten into it. A soft white glow behind it (no hard box) lifts it. */
.footer__logo { position: relative; }
.footer__logo::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 116%; height: 128%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.5), rgba(255,255,255,.22) 48%, transparent 72%);
  filter: blur(7px);
}
.footer__logo img { position: relative; z-index: 1; }

:root {
  --blue:   #ece4d6;   /* signature light SAND accent: chips, headings-over-photo, button borders */
  --blue-d: #dfd3bf;
  --ink:    #1a1a1a;   /* near-black neutral text */
  --gray:   #5c5c5c;   /* body text on white */
  --white:  #ffffff;
  --footer: #171717;   /* near-black footer */

  --brand:   #cc0000;  /* The Shooting Lab red (matches logo) — primary buttons/accents */
  --brand-d: #a00000;

  --pad: clamp(22px, 6vw, 88px);
  --gap: clamp(26px, 5vw, 56px);   /* white space around/between photo bands */
  --maxw: 1360px;

  --gold:   #cc0000;   /* brand red pop (kicker underlines, textlinks) */
  --display: 'Archivo', system-ui, sans-serif;   /* sharp modern grotesque for headings */
  --head:    'Anton', 'Archivo', system-ui, sans-serif; /* condensed athletic display for hero moments */
  --ui: 'Inter', system-ui, sans-serif;          /* body / buttons / nav / small UI */
}

* { box-sizing: border-box; }
/* The [hidden] attribute must always win, even against author display rules
   (.spotsbar/.payopt/.ebbar all set display:flex). Without !important, JS that
   sets el.hidden=true is a no-op and empty/blank UI leaks onto the page. */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ui);
  font-weight: 400;
  color: var(--gray);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Athletic condensed display for the big "poster" moments */
.hero__title, .stat__num, .footer__big, .sponsorcta .h2--light, .quote-band__mark { font-family: var(--head); font-weight: 400; }
.hero__title { letter-spacing: .005em; line-height: .92; }
.footer__big { letter-spacing: .01em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Display headings — Museo-like, heavy, tight */
h1, h2, h3 { font-family: var(--display); font-weight: 900; line-height: .95; margin: 0; letter-spacing: -.005em; }

/* Utility: the "Our PLACE" heading treatment — light word + bold caps word */
.kicker-word { font-weight: 700; }

/* ---------- Buttons (outlined pill, exactly like NKRC) ------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ui); font-weight: 500; font-size: .95rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 1.15rem 2.2rem;
  border: 2px solid var(--blue);
  border-radius: 300px;
  color: var(--blue);
  background: transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.btn:hover { background: var(--blue); color: var(--ink); }
/* Maroon primary for white backgrounds */
.btn--ink { border-color: var(--brand); color: var(--brand); }
.btn--ink:hover { background: var(--brand); color: var(--white); }
/* Public-page equivalents of the modifiers the admin defines inline, so pages
   that load only styles.css (gift, store, preseason) render them correctly. */
.btn--light { border-color: var(--ink); color: var(--ink); background: #fff; }
.btn--light:hover { background: var(--ink); color: var(--white); }
.btn--sm { padding: .55rem .95rem; font-size: .83rem; letter-spacing: .06em; }
.btn--block { width: 100%; }

.textlink { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Announcement bar ------------------------------------------- */
.announce {
  position: relative;
  background: var(--blue);
  color: var(--ink);
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  padding: 1rem 3rem;
  font-size: clamp(.95rem, 1.5vw, 1.2rem);
  line-height: 1.6;
}
.announce a { text-decoration: underline; text-underline-offset: 3px; }
.announce__title { font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.announce__close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; color: var(--ink);
  font-size: 1.5rem; line-height: 1; cursor: pointer; opacity: .8;
}
.announce__close:hover { opacity: 1; }
.announce.is-hidden { display: none; }

/* ---------- Top bar over hero (logo + hamburger) ----------------------- */
.topbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(1.2rem, 3vw, 2.2rem) var(--pad);
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: clamp(52px, 5.5vw, 70px); width: auto; display: block; transition: transform .3s ease; }
.logo:hover img { transform: scale(1.06) rotate(-2deg); }

/* Desktop inline top nav (over the hero, like nkrc) */
.topnav { display: flex; align-items: center; gap: clamp(1.1rem, 2.2vw, 2.4rem); }
.topnav a {
  font-family: var(--ui); font-weight: 500; font-size: .95rem; letter-spacing: .04em;
  color: var(--white); position: relative; padding-bottom: 3px;
  transition: color .2s ease;
  white-space: nowrap;
}
.topnav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--blue); transition: right .25s ease;
}
.topnav a:hover { color: var(--blue); }
.topnav a:hover::after { right: 0; }
.topnav__reg {
  border: 2px solid var(--blue); border-radius: 300px; padding: .55rem 1.3rem !important;
  color: var(--blue); text-transform: uppercase; letter-spacing: .1em; font-size: .82rem;
  transition: background .25s ease, color .25s ease;
}
.topnav__reg::after { display: none; }
.topnav a.topnav__reg:hover, .topnav a.topnav__reg:focus-visible { background: var(--blue); color: var(--footer); }

/* More dropdown */
.topnav__more { position: relative; }
.topnav__morebtn { background: none; border: none; cursor: pointer; font-family: var(--ui); font-weight: 500; font-size: .95rem; letter-spacing: .04em; color: var(--white); padding: 0; display: inline-flex; align-items: center; gap: .35rem; white-space: nowrap; }
.topnav__morebtn .caret { font-size: .7em; transition: transform .2s ease; }
.topnav__more:hover .topnav__morebtn, .topnav__more:focus-within .topnav__morebtn { color: var(--blue); }
.topnav__more:hover .caret, .topnav__more:focus-within .caret { transform: rotate(180deg); }
.topnav__more::after { content: ""; position: absolute; top: 100%; left: -10px; right: -10px; height: 16px; }
.topnav__dropdown { position: absolute; top: calc(100% + 14px); right: 0; min-width: 200px; background: var(--footer); border: 1px solid rgba(255,255,255,.15); border-radius: 14px; padding: .5rem; display: flex; flex-direction: column; box-shadow: 0 26px 54px -26px rgba(0,0,0,.65); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; z-index: 60; }
.topnav__more:hover .topnav__dropdown, .topnav__more:focus-within .topnav__dropdown { opacity: 1; visibility: visible; transform: none; }
.topnav__dropdown a { color: rgba(255,255,255,.85); padding: .6rem .8rem; border-radius: 9px; font-size: .9rem; letter-spacing: .02em; }
.topnav__dropdown a::after { display: none; }
.topnav__dropdown a:hover { background: rgba(255,255,255,.08); color: var(--blue); }

.burger {
  display: none; flex-direction: column; gap: 7px;
  width: 46px; background: none; border: none; cursor: pointer; padding: 8px 0;
}
.burger span { height: 2.5px; width: 46px; background: var(--white); border-radius: 3px; transition: transform .3s ease, opacity .3s ease; }

@media (max-width: 1000px) {
  .topnav { display: none; }
  .burger { display: flex; }
}

/* ---------- Full-screen overlay menu ----------------------------------- */
.menu {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(20,24,28,.97);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.1rem;
  opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease;
}
.menu.is-open { opacity: 1; visibility: visible; }
.menu a {
  font-family: var(--display); font-weight: 900; color: var(--white);
  font-size: clamp(1.7rem, 5vw, 3rem); line-height: 1.1; letter-spacing: -.01em;
  transition: color .2s ease;
}
.menu a:hover { color: var(--blue); }
.menu__close {
  position: absolute; top: 22px; right: 26px;
  background: none; border: none; color: var(--white); font-size: 2.4rem; cursor: pointer; line-height: 1;
}
.menu__social { margin-top: 1.4rem; font-family: var(--ui); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; font-size: .85rem; color: var(--blue); }

/* Overlay menu with many links: start at the top, allow scrolling, shrink the
   type so every link is reachable. Declared AFTER the base .menu block above so
   these win the cascade (equal specificity → source order decides). */
.menu { justify-content: flex-start; padding: clamp(4.5rem, 11vh, 6.5rem) 2rem 3rem; overflow-y: auto; gap: .9rem; }
.menu a { font-size: clamp(1.3rem, 4.2vw, 2.2rem); }
.menu__label { font-family: var(--ui); font-weight: 500; letter-spacing: .16em; text-transform: uppercase; font-size: .72rem; color: var(--blue); margin-top: .8rem; }

/* ---------- Hero -------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: var(--pad);
  padding-bottom: clamp(2.5rem, 6vw, 5.5rem);
  color: var(--white);
  isolation: isolate;
  overflow: hidden; /* the kenburns zoom on .hero__bg must never widen the page */
}
.hero__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center 30%; animation: kenburns 20s ease-out both; }
.hero__video { position: absolute; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.hero__video iframe { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(1.5); width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78vh; border: 0; }
.hero__video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,20,14,.45) 0%, rgba(12,20,14,.1) 32%, rgba(12,20,14,.4) 62%, rgba(12,20,14,.85) 100%); }
@keyframes kenburns { from { transform: scale(1.001); } to { transform: scale(1.09); } }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,20,14,.45) 0%, rgba(12,20,14,.08) 32%, rgba(12,20,14,.35) 62%, rgba(12,20,14,.82) 100%);
}
.hero__inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}
.hero__chip {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .5rem 1.05rem; margin: 0 0 1.2rem;
  border: 1.5px solid rgba(255,255,255,.4); border-radius: 300px;
  background: rgba(255,255,255,.08); backdrop-filter: blur(6px);
  font-family: var(--ui); font-weight: 500; font-size: .8rem; letter-spacing: .03em; color: #fff;
}
.hero__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 0 rgba(183,231,191,.7); animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(183,231,191,.6); } 70% { box-shadow: 0 0 0 10px rgba(183,231,191,0); } 100% { box-shadow: 0 0 0 0 rgba(183,231,191,0); } }
.hero__title { color: var(--blue); font-size: clamp(2.3rem, 6vw, 4.6rem); line-height: .95; }
.hero__right { max-width: 46ch; }
.hero__lede { font-size: clamp(1.05rem, 1.6vw, 1.45rem); font-weight: 600; color: var(--white); line-height: 1.5; margin: 0 0 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__right .btn { color: var(--blue); border-color: var(--blue); }
.hero__right .btn:hover, .hero__right .btn:focus-visible { background: var(--blue); color: var(--footer); border-color: var(--blue); }
.btn--plain { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--plain:hover { background: rgba(255,255,255,.14); color: #fff; }
.hero__meta { margin: 1.3rem 0 0; font-family: var(--ui); font-weight: 500; font-size: .85rem; letter-spacing: .03em; color: rgba(255,255,255,.8); }
.hero__scroll { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 2; }
.hero__mouse { display: block; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 20px; position: relative; }
.hero__mouse span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 3px; background: #fff; animation: scrollcue 1.6s ease-in-out infinite; }
@keyframes scrollcue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }
@media (prefers-reduced-motion: reduce) { .hero__bg { animation: none; } .hero__dot, .hero__mouse span { animation: none; } }

/* Register CTA "stomp" entrance (ported from the Island / COYBL sites),
   glowing in the brand accent. Flies in from above, accelerates like gravity,
   stomps down with a squash + glow flash, then a couple settling bounces. */
.reg-stomp {
  transform-origin: center bottom;
  box-shadow: 0 0 26px 5px rgba(122, 214, 140, .78);
  animation: plumlee-reg-stomp 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.4s backwards;
}
.reg-stomp:hover, .reg-stomp:focus-visible { box-shadow: 0 0 40px 10px rgba(122, 214, 140, 1); }
@keyframes plumlee-reg-stomp {
  0%   { opacity: 0; transform: translateY(-260px) scale(0.9); animation-timing-function: cubic-bezier(0.55, 0, 0.85, 0.25); }
  48%  { opacity: 1; transform: translateY(0) scale(1); animation-timing-function: ease-out; }
  64%  { transform: translateY(0) scale(1.2, 0.8); box-shadow: 0 0 60px 22px rgba(122, 214, 140, 1); }
  80%  { transform: translateY(0) scale(0.95, 1.07); }
  92%  { transform: translateY(0) scale(1.02, 0.98); }
  100% { transform: translateY(0) scale(1, 1); box-shadow: 0 0 26px 5px rgba(122, 214, 140, .78); }
}
@media (prefers-reduced-motion: reduce) { .reg-stomp { animation: none; } }

/* ---------- Feature photo bands (The PLACE / PEOPLE / PROGRAM) --------- */
/* Inset from the page edges with white gutters + gaps between, like nkrc */
.band {
  position: relative;
  min-height: clamp(430px, 62vh, 660px);
  margin: var(--gap) var(--pad);
  display: flex; align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 5rem);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.band__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; will-change: transform; }
.band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,20,14,.72) 0%, rgba(12,20,14,.34) 55%, rgba(12,20,14,.15) 100%); }
.band__inner { width: 100%; max-width: var(--maxw); margin: 0 auto; }
.band__content { max-width: 40ch; }
.band__kicker { font-family: var(--display); font-weight: 900; color: var(--blue); font-size: clamp(2rem, 4.5vw, 3.4rem); margin: 0 0 1.1rem; }
.band__kicker .light { font-weight: 900; font-style: italic; margin-right: .18em; color: var(--blue); }
.band p { color: var(--white); font-size: clamp(1rem, 1.4vw, 1.2rem); font-weight: 600; line-height: 1.55; margin: 0 0 1.4rem; }
.band .textlink { color: var(--blue); font-family: var(--ui); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; font-size: .85rem; }
.band--right .band__bg::after { background: linear-gradient(270deg, rgba(12,20,14,.72) 0%, rgba(12,20,14,.34) 55%, rgba(12,20,14,.15) 100%); }
.band--right .band__inner { display: flex; justify-content: flex-end; }
.band--right .band__content { text-align: left; }

/* ---------- Testimonial band ------------------------------------------- */
.quote-band {
  position: relative; min-height: clamp(400px, 56vh, 600px);
  margin: var(--gap) var(--pad);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(3.5rem, 9vw, 7rem) var(--pad);
  text-align: center; color: var(--white); isolation: isolate; overflow: hidden;
}
.quote-band__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; will-change: transform; }
.quote-band__bg::after { content: ""; position: absolute; inset: 0; background: rgba(12,16,20,.6); }
.quote-band blockquote { margin: 0; max-width: 20ch; }
.quote-band__mark { font-family: var(--display); font-weight: 900; font-size: clamp(3rem, 7vw, 5rem); line-height: .5; color: var(--white); display: block; margin-bottom: 1rem; }
.quote-band p { font-family: var(--display); font-weight: 900; font-size: clamp(1.8rem, 4.5vw, 3.4rem); line-height: 1.08; margin: 0; }
.quote-band cite { display: block; margin-top: 1.6rem; font-family: var(--ui); font-weight: 500; font-style: normal; letter-spacing: .12em; text-transform: uppercase; font-size: .85rem; color: var(--blue); }

/* ---------- White content sections ------------------------------------- */
.section { padding: clamp(3.5rem, 8vw, 7rem) var(--pad); }
.section__inner { max-width: var(--maxw); margin: 0 auto; }
.section__head { max-width: 60ch; margin: 0 auto clamp(2.4rem, 5vw, 3.6rem); text-align: center; }
.section__kicker { font-family: var(--ui); font-weight: 500; letter-spacing: .18em; text-transform: uppercase; font-size: .78rem; color: var(--gray); margin: 0 0 1rem; }
.section h2 { color: var(--ink); font-size: clamp(2rem, 5vw, 3.4rem); }
.section__sub { color: var(--gray); font-size: 1.1rem; margin: 1rem 0 0; }

/* ---- Quick facts strip ---- */
.factstrip { list-style: none; margin: 0 0 clamp(2.6rem, 5vw, 4rem); padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #e7e7e4; border: 1px solid #e7e7e4; border-radius: 16px; overflow: hidden; }
.factstrip li { background: var(--white); padding: 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .35rem; }
.factstrip__k { font-family: var(--ui); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; font-size: .68rem; color: var(--gray); }
.factstrip__v { color: var(--ink); font-weight: 800; font-size: 1.02rem; line-height: 1.2; }

.block-title { color: var(--ink); text-align: center; font-size: clamp(1.5rem, 3.2vw, 2.2rem); margin: 0 0 clamp(1.8rem, 3.5vw, 2.6rem); }

/* ---- What's included: bold green panel ---- */
.included {
  position: relative; overflow: hidden; isolation: isolate;
  margin: 0 0 clamp(3rem, 6vw, 5rem);
  background: var(--footer); color: #fff;
  border-radius: 26px;
  padding: clamp(2.2rem, 4vw, 3.6rem);
  display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 4vw, 3.6rem);
}
.included__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; opacity: .18; }
.included::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(115deg, var(--footer) 42%, rgba(36,53,42,.7)); }
.included__intro { align-self: center; }
.included .included__intro h3 { color: #fff; font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: .98; margin: .6rem 0 1rem; }
.included__intro > p { color: rgba(255,255,255,.82); margin: 0 0 1.7rem; max-width: 34ch; }
.included__intro .btn { border-color: var(--blue); color: var(--blue); }
.included__intro .btn:hover { background: var(--blue); color: var(--footer); }
.included__list { list-style: none; padding: 0; margin: 0; align-self: center; display: grid; grid-template-columns: 1fr 1fr; gap: .25rem 1.4rem; }
.incl-item { display: flex; gap: .9rem; align-items: flex-start; padding: .85rem .8rem; border-radius: 14px; transition: background .2s ease, transform .2s ease; }
.incl-item:hover { background: rgba(255,255,255,.07); transform: translateX(3px); }
.incl-check { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--blue); color: var(--footer); display: grid; place-items: center; margin-top: 1px; transition: transform .2s ease; }
.incl-check svg { width: 18px; height: 18px; }
.incl-item:hover .incl-check { transform: scale(1.12) rotate(-6deg); }
.incl-item h4 { color: #fff; margin: 0 0 .15rem; font-size: 1.02rem; font-weight: 800; }
.incl-item p { color: rgba(255,255,255,.68); margin: 0; font-size: .85rem; line-height: 1.42; }

/* ---- Good-to-know feature grid (register page) ---- */
.included__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); }
.gtk { grid-template-columns: repeat(4, 1fr); }
.feature { background: var(--white); border: 1px solid #ececea; border-radius: 18px; padding: 1.7rem; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.feature:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -30px rgba(20,50,30,.45); border-color: transparent; }
.feature__icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--blue); color: var(--footer); margin-bottom: 1.1rem; }
.feature__icon svg { width: 26px; height: 26px; }
.feature h4 { color: var(--ink); font-weight: 800; font-size: 1.12rem; margin: 0 0 .35rem; }
.feature p { color: var(--gray); font-size: .93rem; line-height: 1.5; margin: 0; }

/* ---- Pricing plans ---- */
.pricing__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 3vw, 2rem); align-items: stretch; max-width: 900px; margin: 0 auto; }
.plan { position: relative; display: flex; flex-direction: column; background: var(--white); border: 2px solid #e7e7e4; border-radius: 22px; padding: 2.1rem 1.9rem; }
.plan--featured { border-color: var(--footer); box-shadow: 0 34px 66px -36px rgba(20,50,30,.5); }
.plan__tag { position: absolute; top: -13px; left: 1.9rem; background: var(--footer); color: #fff; font-family: var(--ui); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; font-size: .68rem; padding: .35rem .85rem; border-radius: 300px; }
.plan__name { font-family: var(--display); font-weight: 900; color: var(--ink); font-size: 1.65rem; margin: 0; }
.plan__desc { color: var(--gray); font-size: .93rem; margin: .35rem 0 1.3rem; }
.plan__price { display: flex; align-items: baseline; gap: .45rem; margin-bottom: 1.3rem; }
.plan__from { color: var(--gray); font-size: .85rem; }
.plan__amt { font-family: var(--display); font-weight: 900; color: var(--footer); font-size: 2.7rem; line-height: 1; }
.plan__tiers { list-style: none; padding: 0; margin: 0 0 auto; }
.plan__tiers li { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem 0; border-top: 1px solid #efefec; color: var(--gray); }
.plan__tiers li b { color: var(--ink); }
.plan__fine { font-size: .78rem; color: var(--gray); margin: 1rem 0 0; }
.pricing__cta { text-align: center; max-width: 900px; margin: 2.2rem auto 0; }
.pricing__cta .btn { min-width: 260px; }
.pricing__note { color: var(--gray); font-size: .9rem; margin: 1.1rem 0 0; }

/* legacy (unused) */
.camp__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.camp h3 { color: var(--ink); font-size: 1.5rem; margin: 0 0 1.2rem; }
.facts { list-style: none; padding: 0; margin: 0 0 2rem; }
.facts li { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid #e6e6e6; }
.facts li span:first-child { font-family: var(--ui); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; font-size: .75rem; color: var(--gray); }
.facts li span:last-child { color: var(--ink); font-weight: 700; text-align: right; }
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { position: relative; padding: .5rem 0 .5rem 1.9rem; color: var(--gray); }
.checklist li::before { content: ""; position: absolute; left: 0; top: .95rem; width: 12px; height: 7px; border-left: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink); transform: rotate(-45deg); }

.price-card { border: 2px solid #e6e6e6; border-radius: 18px; padding: 1.6rem 1.7rem; margin-bottom: 1.1rem; }
.price-card__top { display: flex; align-items: baseline; justify-content: space-between; }
.price-card h4 { font-family: var(--display); font-weight: 900; color: var(--ink); font-size: 1.4rem; margin: 0; }
.price-card__note { font-family: var(--ui); font-weight: 500; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gray); }
.price-card ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.price-card li { display: flex; justify-content: space-between; padding: .4rem 0; border-top: 1px solid #efefef; }
.price-card li b { color: var(--ink); }
.price-fine { font-size: .8rem; color: var(--gray); margin: .5rem 0 0; }

/* Programs (new offerings) */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.4rem, 3vw, 2.2rem); }
.card { position: relative; border-radius: 18px; overflow: hidden; min-height: 420px; display: flex; align-items: flex-end; color: var(--white); isolation: isolate; }
.card__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.card__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,16,20,.1) 0%, rgba(12,16,20,.8) 100%); }
.card__body { padding: 1.8rem; }
.card__badge { display: inline-block; font-family: var(--ui); font-weight: 500; letter-spacing: .12em; text-transform: uppercase; font-size: .7rem; color: var(--ink); background: var(--blue); padding: .3rem .7rem; border-radius: 300px; margin-bottom: .8rem; }
.card h3 { font-size: 1.7rem; color: var(--white); }
.card p { margin: .6rem 0 0; font-weight: 600; color: rgba(255,255,255,.92); }
.card__meta { margin-top: .9rem !important; font-family: var(--ui); font-weight: 500; font-size: .82rem; color: var(--blue); }

/* The family — dark green section */
.family { background: var(--footer); color: #fff; }
.family .section__head h2 { color: #fff; }
.family .section__kicker { color: var(--blue); }
.family .section__sub { color: rgba(255,255,255,.78); }
.member__mono--lead { background: linear-gradient(150deg, #3a5c45 0%, #1c2d22 100%); }
.member__mono--lead span { color: var(--blue); }
.family__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); }
.member__photo { aspect-ratio: 4/5; border-radius: 18px; background-size: cover; background-position: center top; margin-bottom: 1.2rem; overflow: hidden; }
.member__mono { display: grid; place-items: center; background: linear-gradient(150deg, #2f4b38 0%, #16231a 100%); position: relative; }
.member__mono::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(125deg, rgba(255,255,255,.04) 0 2px, transparent 2px 26px); }
.member__mono span { font-family: var(--display); font-weight: 900; font-size: clamp(3.5rem, 7vw, 5.5rem); color: rgba(183,231,191,.92); position: relative; }
.member__role { font-family: var(--ui); font-weight: 500; letter-spacing: .09em; text-transform: uppercase; font-size: .72rem; color: var(--blue); }
.family .member h3 { color: #fff; font-size: 1.6rem; margin: .35rem 0 .7rem; }
.member__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0 0 1rem; }
.member__tags span { font-family: var(--ui); font-weight: 500; font-size: .72rem; padding: .3rem .65rem; border-radius: 300px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.9); transition: background .2s ease; }
.member:hover .member__tags span { background: rgba(183,231,191,.16); }
.family .member p { color: rgba(255,255,255,.72); font-size: .96rem; line-height: 1.55; }

/* Duo feature + two-brother bios */
.family__feature { margin: 0 auto clamp(2.4rem, 5vw, 3.6rem); max-width: 860px; }
.family__feature img { display: block; width: 100%; height: auto; border-radius: 20px; box-shadow: 0 34px 66px -36px rgba(0,0,0,.65); }
.family__feature figcaption { text-align: center; margin-top: .9rem; font-family: var(--ui); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; font-size: .74rem; color: rgba(255,255,255,.6); }
.family__bios { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); max-width: 1000px; margin: 0 auto; }
.fambio .member__role { display: block; margin-bottom: .2rem; }
.family .fambio h3 { color: #fff; font-size: 1.6rem; margin: .3rem 0 .7rem; }
.fambio p { color: rgba(255,255,255,.75); font-size: .98rem; line-height: 1.6; margin: 0; }

/* A day at camp — Morning / Afternoon / Evening cards */
.day__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2rem); align-items: start; }
.daycard { background: var(--white); border: 1px solid #ececea; border-radius: 20px; padding: 0; overflow: hidden; }
.daycard__head { display: flex; align-items: center; gap: .7rem; margin: 0; padding: 1.3rem 1.6rem; background: linear-gradient(135deg, var(--blue), #d9f2dd); }
.daycard__head svg { width: 28px; height: 28px; color: var(--footer); flex: none; }
.daycard__head h4 { font-family: var(--display); font-weight: 900; color: var(--footer); font-size: 1.35rem; margin: 0; }
.daycard ul { list-style: none; padding: .7rem .9rem 1.2rem; margin: 0; }
.daycard li { display: grid; grid-template-columns: 82px 1fr; gap: .7rem; padding: .6rem .7rem; align-items: center; border-radius: 10px; }
.daycard__t { justify-self: start; background: #eef7f0; color: var(--footer); font-family: var(--ui); font-weight: 500; font-size: .76rem; padding: .25rem .55rem; border-radius: 7px; white-space: nowrap; transition: background .2s ease, color .2s ease; }
.daycard__a { color: var(--gray); font-size: .95rem; line-height: 1.4; }
.daycard li:hover { background: #f3f9f4; }
.daycard li:hover .daycard__t { background: var(--footer); color: #fff; }

/* ---------- Gallery ---------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 14px; padding: 0 var(--pad); }
.gallery__item {
  position: relative; display: block; border-radius: 16px; overflow: hidden;
  background-size: 100%; background-position: center; background-repeat: no-repeat;
  transition: background-size .7s cubic-bezier(.16,.8,.3,1), box-shadow .35s ease;
  will-change: background-size;
}
.gallery__item:hover { background-size: 114%; box-shadow: 0 28px 55px -30px rgba(20,50,30,.55); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,20,14,.5), transparent 55%); opacity: 0; transition: opacity .35s ease; }
.gallery__item:hover::after { opacity: 1; }
.gallery__zoom { position: absolute; right: 14px; bottom: 14px; width: 42px; height: 42px; border-radius: 50%; background: var(--blue); display: grid; place-items: center; opacity: 0; transform: translateY(10px); transition: opacity .3s ease, transform .3s ease; z-index: 1; }
.gallery__zoom::before { content: "+"; color: var(--footer); font-family: var(--display); font-weight: 900; font-size: 1.5rem; line-height: 1; }
.gallery__item:hover .gallery__zoom { opacity: 1; transform: none; }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }

/* ---------- Contact ---------------------------------------------------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact__list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.contact__list li { display: flex; flex-direction: column; padding: .9rem 0; border-top: 1px solid #e6e6e6; }
.contact__list li span:first-child { font-family: var(--ui); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; font-size: .72rem; color: var(--gray); margin-bottom: .2rem; }
.contact__list a, .contact__list li span:last-child { color: var(--ink); font-weight: 700; }
.form label { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; font-family: var(--ui); font-weight: 500; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gray); }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form input, .form textarea { font-family: var(--display); font-weight: 600; font-size: 1rem; text-transform: none; letter-spacing: 0; color: var(--ink); padding: .8rem .9rem; border: 2px solid #e6e6e6; border-radius: 12px; background: #fafafa; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--ink); }
.form__fine { font-family: var(--display); font-weight: 600; text-transform: none; letter-spacing: 0; font-size: .8rem; color: var(--gray); text-align: center; margin: 1rem 0 0; }

/* ---------- Footer (Stay Updated + Contact + logo) --------------------- */
.footer { position: relative; background: var(--footer); color: #f2f0e8; padding: clamp(3rem, 6vw, 5rem) var(--pad) 2rem; overflow: hidden; }
.footer::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(125deg, rgba(255,255,255,.03) 0 2px, transparent 2px 30px); pointer-events: none; }
.footer__inner { position: relative; max-width: var(--maxw); margin: 0 auto; }
.footer__big { font-family: var(--display); font-weight: 900; color: var(--blue); font-size: clamp(2.2rem, 6vw, 4rem); letter-spacing: -.01em; text-transform: uppercase; line-height: .95; margin: 0 0 1rem; }

.footer__update { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.footer__lead { color: rgba(255,255,255,.78); max-width: 52ch; margin: 0; font-size: .98rem; line-height: 1.6; }
.footer__signup { display: flex; gap: .8rem; justify-content: flex-end; flex-wrap: wrap; align-items: stretch; }
.footer__signup input { flex: 1 1 260px; max-width: 340px; background: #fff; border: none; border-radius: 7px; padding: .95rem 1.1rem; font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--ink); }
.footer__signup input:focus { outline: none; box-shadow: 0 0 0 3px rgba(183,231,191,.55); }
.footer__signup button { border: 2px solid var(--blue); color: var(--blue); background: transparent; border-radius: 300px; padding: 0 1.9rem; font-family: var(--ui); font-weight: 500; letter-spacing: .04em; cursor: pointer; transition: background .2s ease, color .2s ease; }
.footer__signup button:hover { background: var(--blue); color: var(--footer); }

.footer__rule { border: none; border-top: 1px solid rgba(255,255,255,.22); margin: clamp(2rem, 5vw, 3.5rem) 0; }

.footer__contact { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.footer__clist { list-style: none; padding: 0; margin: 0; }
.footer__clist li { color: rgba(255,255,255,.82); font-size: .96rem; padding: .2rem 0; }
.footer__clist a { color: rgba(255,255,255,.82); text-decoration: underline; text-underline-offset: 3px; }
.footer__clist a:hover { color: var(--blue); }
.footer__clist span { font-weight: 700; }
.footer__logo { justify-self: end; display: block; transition: transform .3s ease; }
.footer__logo:hover { transform: scale(1.05) rotate(-2deg); }
.footer__logo img { height: clamp(88px, 12vw, 150px); width: auto; display: block; }

.footer__bottom { display: flex; flex-wrap: wrap; gap: 1rem 1.8rem; justify-content: space-between; align-items: center; margin-top: clamp(2rem, 4vw, 3rem); padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.14); }
.footer__nav { display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; font-family: var(--ui); font-weight: 500; font-size: .88rem; }
.footer__nav a { color: rgba(255,255,255,.8); position: relative; }
.footer__nav a:hover { color: var(--blue); }
.footer__copy { font-size: .8rem; color: rgba(255,255,255,.55); margin: 0; }
.footer__admin { color: rgba(255,255,255,.55); text-decoration: none; border-bottom: 1px dotted rgba(255,255,255,.35); transition: color .2s ease; }
.footer__admin:hover { color: #fff; }
.footer__credit { color: rgba(255,255,255,.72); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.3); transition: color .2s ease; }
.footer__credit:hover { color: #fff; }

/* ---------- Scroll progress bar --------------------------------------- */
.scrollbar { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 100; background: linear-gradient(90deg, var(--footer), #4fae6a); transition: width .08s linear; }

/* ---------- Back to top ----------------------------------------------- */
.totop { position: fixed; right: 22px; bottom: 22px; width: 50px; height: 50px; border-radius: 50%; background: var(--footer); color: #fff; border: none; display: grid; place-items: center; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .25s ease, transform .25s ease, background .2s ease, color .2s ease; z-index: 90; box-shadow: 0 14px 34px -14px rgba(0,0,0,.5); }
.totop.is-show { opacity: 1; visibility: visible; transform: none; }
.totop:hover { background: var(--blue); color: var(--footer); }
.totop svg { width: 22px; height: 22px; }

/* ---------- Stats band (count-up) ------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #e7e7e4; border-bottom: 1px solid #e7e7e4; }
.stat { background: var(--bg); padding: clamp(1.8rem, 4vw, 3rem) 1rem; text-align: center; }
.stat__num { display: block; font-family: var(--display); font-weight: 900; color: var(--footer); font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; letter-spacing: -.01em; }
.stat__label { display: block; margin-top: .55rem; font-size: .84rem; color: var(--gray); letter-spacing: .02em; }

/* ---------- Reveal + motion -------------------------------------------- */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .85s cubic-bezier(.16,.8,.3,1), transform .85s cubic-bezier(.16,.8,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
/* staggered children */
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }
.reveal-d3 { transition-delay: .36s; }
/* word-by-word headline reveal (hero + band kickers) */
.word { display: inline-block; opacity: 0; transform: translateY(40px); transition: opacity .7s cubic-bezier(.16,.8,.3,1), transform .7s cubic-bezier(.16,.8,.3,1); }
.word.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .word { opacity: 1 !important; transform: none !important; transition: none; }
  .band__bg, .hero__bg, .quote-band__bg, .gallery > div { transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Welcome / mission ----------------------------------------- */
.welcome__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.welcome__photo { aspect-ratio: 4/5; border-radius: 20px; background-size: cover; background-position: center; box-shadow: var(--shadow); }
.welcome__body h2 { color: var(--ink); font-size: clamp(1.8rem, 3.6vw, 2.9rem); margin: .6rem 0 1.4rem; }
.welcome__body .prose p { color: var(--gray); margin: 0 0 1rem; font-size: 1.03rem; line-height: 1.65; }
.signature { font-family: var(--display); font-weight: 900; color: var(--footer); font-size: 1.6rem; margin: 1.2rem 0 0; }

/* ---------- Testimonial rotator ---------------------------------------- */
.quote-rotator { position: relative; max-width: 34ch; margin: 0 auto; display: grid; min-height: clamp(240px, 34vh, 320px); }
.quote-rotator .quote-band__mark { position: absolute; top: -2.4rem; left: 50%; transform: translateX(-50%); }
.qrot { grid-area: 1 / 1; margin: 0; opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; pointer-events: none; }
.qrot.is-active { opacity: 1; transform: none; pointer-events: auto; }
.qrot p { font-family: var(--display); font-weight: 600; font-size: clamp(1.15rem, 2.3vw, 1.75rem); line-height: 1.4; margin: 0; }
.qrot cite { display: block; margin-top: 1.4rem; font-family: var(--ui); font-weight: 500; font-style: normal; letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; color: var(--blue); }
.quote-dots { display: flex; gap: .55rem; justify-content: center; margin-top: 1.8rem; position: relative; z-index: 1; }
.quote-dots button { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,.35); cursor: pointer; padding: 0; transition: background .2s ease, transform .2s ease; }
.quote-dots button.is-active { background: var(--blue); transform: scale(1.3); }
.quote-dots button:hover { background: rgba(255,255,255,.6); }

/* ---------- Press / news ---------------------------------------------- */
.press__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.4rem); }
.press-card { display: flex; flex-direction: column; gap: .5rem; background: var(--white); border: 1px solid #e7e7e4; border-radius: 16px; padding: 1.5rem; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.press-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px -30px rgba(20,50,30,.45); border-color: var(--footer); }
.press-card__src { font-family: var(--ui); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; font-size: .7rem; color: var(--gold, var(--footer)); color: var(--footer); }
.press-card__title { font-family: var(--display); font-weight: 800; color: var(--ink); font-size: 1.08rem; line-height: 1.25; flex: 1 1 auto; }
.press-card__cta { font-family: var(--ui); font-weight: 500; font-size: .82rem; color: var(--footer); opacity: .7; transition: opacity .2s ease, transform .2s ease; }
.press-card:hover .press-card__cta { opacity: 1; transform: translateX(3px); }

/* ---------- Gold accent + photo tone ---------------------------------- */
.section__head .section__kicker { display: inline-block; }
.section__head .section__kicker::after { content: ""; display: block; width: 34px; height: 3px; background: var(--gold); border-radius: 2px; margin: .7rem auto 0; }
.textlink { text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 3px; }
/* subtle, consistent tone across all photography */
.hero__bg, .subhead__bg, .band__bg, .quote-band__bg, .card__bg, .included__bg, .sponsorcta__bg,
.member__photo, .family__feature img, .wideshot img, .photogrid img, .marquee__track img,
.gallery__item, .welcome__photo { filter: saturate(1.06) contrast(1.03); }

/* ---------- Extra hover polish ----------------------------------------- */
.btn { position: relative; overflow: hidden; }
.btn::after { content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent); transform: skewX(-18deg); transition: left .6s ease; }
.btn:hover::after { left: 130%; }
.member__photo { overflow: hidden; }
.member__photo { transition: transform .35s ease, box-shadow .35s ease; }
.member:hover .member__photo { transform: translateY(-6px); box-shadow: 0 26px 50px -30px rgba(20,50,30,.5); }
.card { transition: transform .28s ease, box-shadow .28s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -32px rgba(20,50,30,.55); }
.card__bg { transition: transform .8s cubic-bezier(.16,.8,.3,1); }
.card:hover .card__bg { transform: scale(1.06); }
.plan { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.plan:hover { transform: translateY(-5px); border-color: var(--footer); box-shadow: 0 30px 60px -34px rgba(20,50,30,.5); }
.contact__list li { transition: padding-left .25s ease; }
.contact__list li:hover { padding-left: .5rem; }
.daycard { transition: transform .25s ease, box-shadow .25s ease; }
.daycard:hover { transform: translateY(-5px); box-shadow: 0 28px 54px -32px rgba(20,50,30,.45); }
.daycard li { transition: color .2s ease; border-radius: 8px; }
.daycard li:hover .daycard__a { color: var(--ink); }
.footer__nav a { position: relative; }
.footer__nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -3px; height: 2px; background: var(--blue); transition: right .25s ease; }
.footer__nav a:hover::after { right: 0; }

/* ---------- Testimonials grid (page) ---------------------------------- */
.quotegrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.qcard { margin: 0; background: var(--white); border: 1px solid #e7e7e4; border-radius: 18px; padding: 1.8rem; transition: transform .22s ease, box-shadow .22s ease; }
.qcard:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -30px rgba(20,50,30,.4); }
.qcard p { color: #34302a; font-size: 1.02rem; line-height: 1.6; margin: 0 0 1.1rem; }
.qcard cite { font-style: normal; font-family: var(--ui); font-weight: 500; letter-spacing: .04em; color: var(--gold-d, var(--footer)); color: var(--footer); font-size: .9rem; }
.qcard--cta { background: var(--footer); color: #fff; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: .3rem; }
.qcard--cta h3 { color: #fff; font-size: 1.5rem; margin: 0; }
.qcard--cta p { color: rgba(255,255,255,.8); }
.qcard--cta .btn { margin-top: .6rem; border-color: var(--blue); color: var(--blue); }
.qcard--cta .btn:hover { background: var(--blue); color: var(--footer); }

/* ---------- Wide feature photo ---------------------------------------- */
.wideshot { margin: 0 auto clamp(2rem, 4vw, 3rem); border-radius: 20px; overflow: hidden; box-shadow: 0 30px 60px -34px rgba(20,50,30,.45); line-height: 0; }
.wideshot img { display: block; width: 100%; height: auto; }

/* ---------- Map ------------------------------------------------------- */
.map { border-radius: 18px; overflow: hidden; min-height: 340px; box-shadow: 0 30px 60px -34px rgba(20,50,30,.4); }
.map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ---------- YouTube video --------------------------------------------- */
.video { position: relative; max-width: 900px; margin: 0 auto; aspect-ratio: 16 / 9; border-radius: 18px; overflow: hidden; background: #000; box-shadow: 0 30px 60px -34px rgba(20,50,30,.5); }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Instagram embeds ------------------------------------------- */
.ig-grid { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; align-items: flex-start; }
.ig-grid .instagram-media { min-width: 300px !important; max-width: 380px !important; margin: 0 !important; border-radius: 16px !important; box-shadow: 0 20px 44px -28px rgba(20,50,30,.4) !important; }
/* graceful fallback before embed.js renders */
.ig-grid blockquote:not(.instagram-media[id]) a { display: inline-block; }

/* ---------- Sponsor CTA band ------------------------------------------- */
.sponsorcta { position: relative; margin: var(--gap) var(--pad); padding: clamp(3.5rem, 8vw, 6.5rem) var(--pad); border-radius: 20px; overflow: hidden; text-align: center; color: var(--white); isolation: isolate; }
.sponsorcta__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transition: transform .8s ease; }
.sponsorcta:hover .sponsorcta__bg { transform: scale(1.05); }
.sponsorcta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(18,32,22,.85), rgba(18,32,22,.6)); }
.sponsorcta .h2--light { max-width: none; }
.sponsorcta p { max-width: 56ch; margin: 1rem auto 2rem; color: rgba(255,255,255,.9); font-size: 1.08rem; }
.sponsorcta .btn { color: var(--blue); border-color: var(--blue); }
.sponsorcta .btn:hover { background: var(--blue); color: var(--ink); }

/* ---------- Sub-page header (register / sponsors / photos) ------------- */
.subhead { position: relative; isolation: isolate; background: var(--footer); color: var(--white); }
.subhead__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center 20%; }
.subhead::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(18,36,24,.72) 0%, rgba(18,36,24,.9) 100%); }
.subhead .topbar { position: static; }
.subhead__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(1.5rem, 4vw, 3rem) var(--pad) clamp(2.5rem, 6vw, 4rem); text-align: center; }
.subhead__inner .eyebrow { color: var(--blue); }
.subhead h1 { color: var(--white); font-size: clamp(2.4rem, 6vw, 4.4rem); }
.subhead p { color: rgba(255,255,255,.85); max-width: 60ch; margin: 1rem auto 0; font-size: 1.1rem; }
.subhead .topnav a, .subhead .logo img { color: #fff; }
.subhead .burger span { background: #fff; }

/* ---------- Photo slideshow (marquee) ---------------------------------- */
.marquee { overflow: hidden; padding: 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.marquee__track { display: flex; gap: 16px; width: max-content; animation: marquee 60s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track img { height: clamp(220px, 34vw, 380px); width: auto; border-radius: 14px; object-fit: cover; flex: none; box-shadow: 0 16px 34px -24px rgba(0,0,0,.5); }
.marquee--rev .marquee__track { animation-direction: reverse; animation-duration: 72s; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* Masonry-ish photo grid for photos page */
.photogrid { columns: 4 240px; column-gap: 14px; padding: 0 var(--pad); }
.photogrid a { display: block; margin: 0 0 14px; border-radius: 14px; overflow: hidden; break-inside: avoid; position: relative; }
.photogrid img { width: 100%; display: block; transition: transform .6s cubic-bezier(.16,.8,.3,1); }
.photogrid a:hover img { transform: scale(1.06); }
.photogrid a::after { content: ""; position: absolute; inset: 0; background: rgba(18,32,22,.25); opacity: 0; transition: opacity .3s ease; }
.photogrid a:hover::after { opacity: 1; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(10,16,12,.94); display: none; align-items: center; justify-content: center; padding: 4vw; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: 0 30px 80px -30px #000; }
.lightbox__close { position: absolute; top: 20px; right: 26px; background: none; border: none; color: #fff; font-size: 2.6rem; cursor: pointer; line-height: 1; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: none; color: #fff; width: 54px; height: 54px; border-radius: 50%; font-size: 1.8rem; cursor: pointer; transition: background .2s ease; }
.lightbox__nav:hover { background: var(--blue); color: var(--ink); }
.lightbox__prev { left: 3vw; } .lightbox__next { right: 3vw; }

/* Sponsor tiers */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2rem); align-items: stretch; }
.tier { display: flex; flex-direction: column; background: var(--white); border: 2px solid #e7e7e4; border-radius: 22px; padding: 2.2rem 2rem; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.tier:hover { transform: translateY(-6px); box-shadow: 0 34px 66px -36px rgba(20,50,30,.5); border-color: var(--footer); }
.tier--featured { border-color: var(--footer); background: var(--footer); color: var(--white); }
.tier--featured .tier__name, .tier--featured .tier__price { color: #fff; }
.tier--featured .tier__list li { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.16); }
.tier--featured .tier__list li::before { border-color: var(--blue); }
.tier__badge { align-self: flex-start; background: var(--blue); color: var(--footer); font-family: var(--ui); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; font-size: .68rem; padding: .35rem .8rem; border-radius: 300px; margin-bottom: 1rem; }
.tier__name { font-family: var(--display); font-weight: 900; color: var(--ink); font-size: 1.6rem; margin: 0; }
.tier__price { font-family: var(--display); font-weight: 900; color: var(--footer); font-size: 2.4rem; margin: .3rem 0 1.3rem; }
.tier__list { list-style: none; padding: 0; margin: 0 0 auto; }
.tier__list li { position: relative; padding: .6rem 0 .6rem 1.8rem; border-top: 1px solid #efefec; color: var(--gray); font-size: .93rem; }
.tier__list li::before { content: ""; position: absolute; left: 0; top: 1.05rem; width: 11px; height: 6px; border-left: 2.5px solid var(--footer); border-bottom: 2.5px solid var(--footer); transform: rotate(-45deg); }
.tier .btn { margin-top: 1.6rem; }

/* Register page specifics */
.reg__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.reg__card { position: sticky; top: 20px; background: var(--white); border: 2px solid var(--footer); border-radius: 22px; padding: 2rem; box-shadow: 0 34px 66px -38px rgba(20,50,30,.5); }
.reg__price { font-family: var(--display); font-weight: 900; color: var(--footer); font-size: 2.6rem; line-height: 1; }
.reg__deadline { background: var(--blue); color: var(--footer); font-family: var(--ui); font-weight: 500; letter-spacing: .04em; border-radius: 12px; padding: .8rem 1rem; text-align: center; margin: 1.2rem 0; font-size: .92rem; }
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.steps li { position: relative; padding: 0 0 1.6rem 3.4rem; }
.steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: -2px; width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: var(--footer); font-family: var(--display); font-weight: 900; display: grid; place-items: center; }
.steps li:not(:last-child)::after { content: ""; position: absolute; left: 19px; top: 42px; bottom: 6px; width: 2px; background: #e2e2df; }
.steps h4 { color: var(--ink); margin: .3rem 0 .3rem; font-size: 1.1rem; }
.steps p { margin: 0; color: var(--gray); font-size: .95rem; }

/* ---------- Registration form ----------------------------------------- */
.regform { min-width: 0; }
.fs { border: none; margin: 0 0 1.8rem; padding: 0; }
.fs__legend { display: flex; align-items: center; gap: .7rem; font-family: var(--display); font-weight: 900; color: var(--ink); font-size: 1.25rem; margin-bottom: 1.1rem; }
.fs__num { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--footer); color: #fff; font-size: .95rem; flex: none; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.grid2 .span2, .regform .span2 { grid-column: 1 / -1; }
.regform label { display: flex; flex-direction: column; gap: .4rem; font-family: var(--ui); font-weight: 500; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; color: #4a4f4a; }
.regform input, .regform select, .regform textarea {
  font-family: var(--display); font-weight: 600; font-size: 1rem; text-transform: none; letter-spacing: 0; color: var(--ink);
  padding: .75rem .85rem; border: 2px solid #e4e4e0; border-radius: 12px; background: #fafafa; width: 100%;
}
.regform input:focus, .regform select:focus, .regform textarea:focus { outline: none; border-color: var(--footer); box-shadow: 0 0 0 3px var(--green-l); background: #fff; }
/* display:contents folds the asterisk into the label's text run — otherwise the
   flex-column label stacks "Name" / "*" / input on three lines */
.regform .req { color: #b23; display: contents; }
.check { flex-direction: row !important; align-items: flex-start; gap: .7rem !important; text-transform: none !important; letter-spacing: 0 !important; font-family: var(--display) !important; font-weight: 600 !important; font-size: .95rem !important; color: var(--gray) !important; margin-bottom: .8rem; }
.check input { width: 20px; height: 20px; flex: none; margin-top: 2px; accent-color: var(--footer); }

/* plan picker */
.planpick { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.planopt { cursor: pointer; position: relative; }
.planopt input { position: absolute; top: 0; left: 0; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.planopt__box { display: block; height: 100%; border: 2px solid #e4e4e0; border-radius: 16px; padding: 1.2rem 1.3rem; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; position: relative; }
.planopt__box::after { content: ""; position: absolute; top: 1.1rem; right: 1.1rem; width: 20px; height: 20px; border-radius: 50%; border: 2px solid #cfcfc9; transition: border-color .2s, background .2s; }
.planopt input:checked + .planopt__box { border-color: var(--footer); box-shadow: 0 18px 40px -28px rgba(20,50,30,.5); }
.planopt input:checked + .planopt__box::after { border-color: var(--footer); background: radial-gradient(circle, var(--footer) 0 45%, transparent 48%); }
.planopt:hover .planopt__box { transform: translateY(-3px); }
.planopt__name { display: block; font-family: var(--display); font-weight: 900; color: var(--ink); font-size: 1.15rem; }
.planopt__desc { display: block; color: var(--gray); font-size: .85rem; margin: .25rem 0 .8rem; }
.planopt__price { font-family: var(--display); font-weight: 900; color: var(--footer); font-size: 1.5rem; }
.planopt__price small { font-family: var(--ui); font-weight: 500; font-size: .72rem; color: var(--gray); }
.planopt__price .was { font-size: .95rem; color: var(--gray); font-weight: 700; margin-right: .1rem; text-decoration-thickness: 2px; }

/* Early-bird urgency banner */
.ebbanner { display: flex; align-items: center; gap: .6rem; background: var(--footer); color: #fff; border-radius: 14px; padding: .85rem 1.1rem; margin: 0 0 1.4rem; font-family: var(--ui); font-weight: 600; font-size: .95rem; box-shadow: 0 16px 36px -26px rgba(20,50,30,.6); }
.ebbanner__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); flex: 0 0 auto; box-shadow: 0 0 0 0 rgba(183,231,191,.7); animation: ebpulse 2s infinite; }
.ebbanner b { color: var(--blue); }
@keyframes ebpulse { 0%{box-shadow:0 0 0 0 rgba(183,231,191,.6);} 70%{box-shadow:0 0 0 10px rgba(183,231,191,0);} 100%{box-shadow:0 0 0 0 rgba(183,231,191,0);} }
@media (prefers-reduced-motion: reduce){ .ebbanner__dot { animation: none; } }
.summary__urgent { font-family: var(--ui); font-weight: 600; color: var(--footer); font-size: .84rem; text-align: center; margin: .1rem 0 0; }
.summary__row--addon span { color: var(--gray); font-size: .85rem; padding-left: .6rem; }
.summary__row--addon b { color: var(--gray); font-weight: 600; }
.sibtag { font-style: normal; font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; background: var(--green-l, #e7f0e9); color: #1a5c34; border-radius: 999px; padding: .12rem .5rem; margin-left: .35rem; vertical-align: 1px; }
.reg__deadline--warn { background: var(--gold, #cf9f4e); color: #3a2a08; }

/* Multi-camper blocks */
.camperblock { border: 1px solid #e4e4e0; border-radius: 16px; padding: clamp(1.1rem, 2.5vw, 1.6rem); margin-bottom: 1.1rem; background: #fcfdfc; }
.camperblock__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.camperblock__title { font-family: var(--display); font-weight: 900; color: var(--ink); font-size: 1.1rem; margin: 0; }
.camperblock__remove { background: none; border: none; color: var(--gray); font-family: var(--ui); font-weight: 600; font-size: .85rem; cursor: pointer; text-decoration: underline; }
.camperblock__remove:hover { color: #b23; }
.addcamper { background: none; border: 2px dashed #c9d3cb; color: var(--footer); font-family: var(--ui); font-weight: 700; font-size: .95rem; padding: .85rem 1.2rem; border-radius: 12px; cursor: pointer; width: 100%; transition: border-color .2s ease, background .2s ease; }
.addcamper:hover { border-color: var(--footer); background: #f3f7f4; }
.addcamper:disabled { color: var(--gray); border-style: solid; cursor: default; background: #f4f5f2; }

/* Add-ons */
.addons { margin-top: 1rem; padding-top: 1rem; border-top: 1px dashed #e0e3df; }
.addons__label { display: block; font-family: var(--ui); font-weight: 600; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; color: var(--gray); margin-bottom: .6rem; }
.addons__list { display: flex; flex-direction: column; gap: .5rem; }
.addonopt { display: flex; align-items: center; gap: .6rem; font-size: .95rem; color: var(--ink); cursor: pointer; }
.addonopt input { width: 18px; height: 18px; accent-color: var(--footer); }

/* Optional health details (collapsible) */
.healthbox { border: 1px dashed #d8dcd6; border-radius: 12px; padding: .3rem .9rem; margin-top: .2rem; }
.healthbox summary { cursor: pointer; font-family: var(--ui); font-weight: 600; color: var(--footer); font-size: .9rem; padding: .5rem 0; }
.healthbox .grid2 { margin: .6rem 0 .4rem; }

/* Waiver / e-signature */
.waiverdoc { max-height: 160px; overflow-y: auto; border: 1px solid #e4e4e0; border-radius: 12px; padding: 1rem 1.1rem; background: #fafbfa; font-size: .92rem; line-height: 1.55; color: #34302a; margin-bottom: 1rem; }
.signline { display: block; margin: .8rem 0; }
.signline input { font-family: 'Brush Script MT', 'Segoe Script', cursive; font-size: 1.3rem; }

/* Waitlist */
.waitlist { background: #fff; border: 1px solid #e4e4e0; border-radius: 18px; padding: clamp(1.5rem, 4vw, 2.4rem); }
.waitlist h2 { font-family: var(--display); font-weight: 900; color: var(--ink); font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 0 0 .3rem; }
.waitlist > p { color: var(--gray); margin: 0 0 1.4rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* Payment plan (deposit) chooser in the summary */
.payplan { margin-top: .9rem; display: flex; flex-direction: column; gap: .55rem; border-top: 1px solid #e4e4e0; padding-top: .9rem; }
.payopt { display: flex; gap: .55rem; align-items: flex-start; font-size: .92rem; color: var(--ink); cursor: pointer; }
.payopt input { margin-top: .25rem; accent-color: var(--footer); }
.payopt b { font-weight: 800; }
.payopt small { display: block; color: var(--gray); font-size: .8rem; }
.protopt { border-top: 1px solid #e4e4e0; padding-top: .9rem; margin-top: .3rem; }
.fs__sublabel { font-family: var(--ui); font-weight: 600; font-size: .8rem; letter-spacing: .02em; color: var(--gray); margin: 1rem 0 .5rem; }

/* Sponsor-a-camper / donate */
.donate { text-align: center; max-width: 760px; margin: clamp(2.5rem, 5vw, 4rem) auto 0; background: #f3f5f1; border-radius: 20px; padding: clamp(1.8rem, 4vw, 2.8rem); }
.donate__title { font-family: var(--display); font-weight: 900; color: var(--ink); font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 0 0 .4rem; }
.donate__lede { color: var(--gray); margin: 0 auto 1.4rem; max-width: 520px; }
.donate__thanks { background: var(--footer); color: #fff; border-radius: 12px; padding: .8rem 1rem; font-weight: 600; margin: 0 0 1.2rem; }
.donate__amts { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-bottom: 1rem; }
.donate__amt { border: 2px solid #d6ddd7; background: #fff; color: var(--ink); font-family: var(--display); font-weight: 900; font-size: 1.05rem; padding: .6rem 1.2rem; border-radius: 999px; cursor: pointer; transition: border-color .15s ease, background .15s ease, color .15s ease; }
.donate__amt:hover { border-color: var(--footer); }
.donate__amt.is-sel { background: var(--footer); color: #fff; border-color: var(--footer); }
.donate__custom { display: inline-flex; align-items: center; gap: .3rem; border: 2px solid #d6ddd7; border-radius: 999px; padding: .35rem .9rem; font-weight: 800; color: var(--ink); }
.donate__custom input { width: 84px; border: none; background: transparent; font: inherit; font-family: var(--display); font-weight: 900; }
.donate__custom input:focus { outline: none; }
.donate__fields { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; max-width: 520px; margin: 0 auto 1.2rem; }
.donate__fields input { flex: 1; min-width: 200px; padding: .7rem .9rem; border: 1px solid #d6ddd7; border-radius: 10px; font: inherit; background: #fff; color: var(--ink); }
.donate .estatus { font-size: .9rem; color: var(--gray); margin: .9rem 0 0; min-height: 1.1em; }
@media (max-width: 560px) { .donate__fields { flex-direction: column; } }

/* FAQ accordion */
.faq { max-width: 820px; margin: 0 auto; }
.faq__group { margin-bottom: clamp(1.6rem, 4vw, 2.4rem); }
.faq__cat { font-family: var(--ui); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; color: var(--gray); margin: 0 0 .7rem; }
.faq__item { border: 1px solid #e6e7e4; border-radius: 14px; margin-bottom: .7rem; background: #fff; overflow: hidden; transition: box-shadow .2s ease; }
.faq__item[open] { box-shadow: 0 16px 34px -28px rgba(20,50,30,.4); }
.faq__item summary { cursor: pointer; list-style: none; padding: 1.05rem 1.2rem; font-family: var(--display); font-weight: 700; color: var(--ink); font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--ui); font-weight: 400; color: var(--footer); font-size: 1.6rem; line-height: 1; transition: transform .2s ease; flex: 0 0 auto; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 1.2rem 1.15rem; color: #34302a; line-height: 1.6; font-size: .98rem; }
.faq__a p { margin: 0; }
.faq__cta { text-align: center; background: #f3f5f1; border-radius: 18px; padding: clamp(1.8rem, 4vw, 2.6rem); margin-top: clamp(1.5rem, 4vw, 2.4rem); }
.faq__cta h3 { font-family: var(--display); font-weight: 900; color: var(--ink); font-size: clamp(1.3rem, 3vw, 1.7rem); margin: 0 0 .3rem; }
.faq__cta p { color: var(--gray); margin: 0 0 1.2rem; }
.faq__cta .btn { margin-bottom: .5rem; }

/* Sponsor logos (homepage band, shown only when populated) */
.sponsors-band .section__inner { text-align: center; }
.sponsor-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 1.6rem; }
.sponsor-logo { display: inline-flex; }
.sponsor-logo img { height: 60px; width: auto; max-width: 180px; object-fit: contain; filter: grayscale(1); opacity: .72; transition: filter .2s ease, opacity .2s ease; }
.sponsor-logo:hover img { filter: none; opacity: 1; }

.regform__err { color: #b23; font-weight: 700; margin: 0 0 1rem; }
.regform__submit { margin-top: .5rem; }
.regform__fine { font-family: var(--display); font-weight: 600; text-transform: none; letter-spacing: 0; font-size: .82rem; color: var(--gray); text-align: center; margin: 1rem 0 0; }

/* order summary */
.summary__row { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; font-size: .95rem; }
.summary__row span { color: var(--gray); }
.summary__row b { color: var(--ink); }
.summary__hr { border: none; border-top: 1px solid #e4e4e0; margin: .6rem 0; }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; margin-top: .3rem; }
.summary__total span:first-child { font-family: var(--ui); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; font-size: .78rem; color: var(--gray); }
.summary__amt { font-family: var(--display); font-weight: 900; color: var(--footer); font-size: 2.2rem; }
.summary__fine { font-size: .76rem; color: var(--gray); margin: .2rem 0 0; text-align: right; }
.summary__perks { list-style: none; padding: 0; margin: 1.3rem 0 0; }
.summary__perks li { position: relative; padding: .45rem 0 .45rem 1.7rem; color: var(--gray); font-size: .88rem; border-top: 1px solid #f0f0ec; }
.summary__perks li::before { content: ""; position: absolute; left: 0; top: .8rem; width: 11px; height: 6px; border-left: 2.5px solid var(--footer); border-bottom: 2.5px solid var(--footer); transform: rotate(-45deg); }

/* success panel */
.regdone { text-align: center; padding: 2rem 1rem; }
.regdone__mark { width: 72px; height: 72px; border-radius: 50%; background: var(--blue); color: var(--footer); display: grid; place-items: center; margin: 0 auto 1.2rem; }
.regdone__mark svg { width: 38px; height: 38px; }
.regdone h2 { color: var(--ink); font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0 0 .6rem; }
.regdone p { color: var(--gray); max-width: 46ch; margin: 0 auto 1.6rem; }
.regdone .btn { min-width: 240px; }

/* ---------- Responsive ------------------------------------------------- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; align-items: start; }
  .hero__title { margin-bottom: 1.5rem; }
  .camp__grid, .contact__grid { grid-template-columns: 1fr; }
  .cards, .family__grid, .family__bios { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery .wide { grid-column: span 2; }
  .band { min-height: 78vh; }
  .factstrip { grid-template-columns: repeat(2, 1fr); }
  .included { grid-template-columns: 1fr; }
  .included__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__row { grid-template-columns: 1fr; max-width: 460px; }
  .day__cols { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .tiers { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .gtk { grid-template-columns: repeat(2, 1fr) !important; }
  .welcome__grid { grid-template-columns: 1fr; }
  .welcome__photo { max-width: 420px; }
  .footer__update { grid-template-columns: 1fr; }
  .footer__signup { justify-content: flex-start; }
  .footer__contact { grid-template-columns: 1fr; }
  .footer__logo { justify-self: start; }
  .press__grid { grid-template-columns: repeat(2, 1fr); }
  .quotegrid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .reg__grid { grid-template-columns: 1fr; }
  .reg__card { position: static; }
  .photogrid { columns: 2 160px; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery .tall, .gallery .wide { grid-row: auto; grid-column: auto; }
  .factstrip { grid-template-columns: 1fr; }
  .included__grid { grid-template-columns: 1fr; }
  .included__list { grid-template-columns: 1fr; }
  .press__grid { grid-template-columns: 1fr; }
  .form .row2 { grid-template-columns: 1fr; }
  /* register form: stack the two-up fields, plan cards, and good-to-know */
  .grid2 { grid-template-columns: 1fr; }
  .planpick { grid-template-columns: 1fr; }
  .gtk { grid-template-columns: 1fr !important; }
  /* footer: stack the bottom bar and signup */
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer__signup { flex-direction: column; align-items: stretch; }
  .footer__signup input { max-width: none; }
  .footer__signup button { width: 100%; padding: .9rem; }
  /* keep the back-to-top button clear of content */
  .totop { right: 16px; bottom: 16px; width: 46px; height: 46px; }
  /* overlay menu: shrink so long items (About Mason & Marshall) fit on a phone */
  .menu { gap: .55rem; padding: clamp(4rem, 9vh, 5.5rem) 1.4rem 2.5rem; }
  .menu a { font-size: clamp(1.35rem, 6.4vw, 1.7rem); line-height: 1.15; }
}

/* Early-bird messaging (auto-hidden after the cutoff) */
.ebird { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; background: #fdf6e8; border: 1.5px solid #e8cf9e; border-radius: 12px; padding: .65rem .8rem; margin: .9rem 0 .5rem; }
.ebird__badge { background: #b07818; color: #fff; font-size: .64rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; border-radius: 999px; padding: .22rem .6rem; }
.ebird__copy { font-size: .88rem; color: #5c430f; }
.ebird__copy b { color: #3d2c07; }
.ebird__count { margin-left: auto; background: #fff; border: 1px solid #e8cf9e; border-radius: 999px; padding: .2rem .6rem; font-size: .74rem; font-weight: 800; color: #8a5f13; white-space: nowrap; }
.ebbar { display: flex; align-items: center; justify-content: center; gap: .7rem; background: #cf9f4e; color: #241a06; text-decoration: none; font-weight: 700; font-size: .95rem; padding: .7rem 1rem; flex-wrap: wrap; }
.ebbar:hover { background: #c3923f; }
.ebbar__tag { background: #241a06; color: #f4e9d2; font-size: .64rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; border-radius: 999px; padding: .25rem .6rem; }
.ebbar b { white-space: nowrap; }

/* Live spots ticker (homepage; appears once capacity is configured) */
.spotsbar { display: flex; align-items: center; gap: .9rem; background: #16231a; color: #e8ede7; padding: .65rem clamp(1rem, 4vw, 2.5rem); font-size: .88rem; font-weight: 600; }
.spotsbar__track { flex: 1; max-width: 340px; height: 8px; background: rgba(255,255,255,.15); border-radius: 999px; overflow: hidden; }
.spotsbar__fill { height: 100%; width: 0; background: #cf9f4e; border-radius: 999px; transition: width .8s ease; }
