/* ============================================================
   FAIRWAYLAB — brand palette · bold & energetic
   Orange #EC691A · Dark gray #191919 · Gray #414141 · Light gray #C1C1C1
   Oswald (display) + Inter (body)
   ============================================================ */

:root {
  /* Brand palette */
  --bg:          #141414;   /* darkest — page canvas */
  --surface:     #202020;   /* raised bands — clearly lifted */
  --surface-2:   #2A2A2A;   /* cards — sit above both tones */
  --line:        #414141;   /* gray — hairlines / borders */
  --text:        #FFFFFF;   /* primary */
  --muted:       #C1C1C1;   /* light gray — secondary */
  --faint:       #8A8A8A;   /* captions (derived) */
  --accent:      #EC691A;   /* orange — the signal color */
  --accent-hover:#FF7A2E;
  --accent-ink:  #191919;   /* dark text on orange */

  /* Type */
  --display: "Oswald", system-ui, sans-serif;
  --body:    "Inter", system-ui, sans-serif;

  /* Metrics */
  --wrap: 1120px;
  --radius: 10px;
  --pad-section: clamp(3.5rem, 8vw, 7rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
main { background: var(--bg); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 {
  font-family: var(--display); font-weight: 600; line-height: 1.05;
  margin: 0; letter-spacing: 0.01em; text-transform: uppercase;
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }

/* ---------- Shared bits ---------- */
.eyebrow {
  font-family: var(--display);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 1rem;
}
.section-title { font-size: clamp(2rem, 5vw, 3.4rem); }
.live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(236,105,26,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(236,105,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(236,105,26,0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.72rem 1.5rem; border-radius: 12px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 120ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.btn:active { transform: scale(0.97); }
.btn--solid { background: var(--accent); color: var(--accent-ink); }
.btn--solid:hover { background: var(--accent-hover); }
.btn--ghost { border-color: var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--lg { padding: 0.95rem 2rem; font-size: 1.05rem; }
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.82rem; }

/* ---------- Brand mark ---------- */
.brand__mark { font-family: var(--display); font-weight: 700; letter-spacing: 0.04em; font-size: 1.3rem; text-transform: uppercase; color: var(--text); }
.brand__lab { color: var(--accent); }
.brand__dot { color: var(--accent); }

/* ============================================================
   HEADER + DESKTOP NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(20,20,20,0.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-desktop { display: none; }
.nav-desktop__list { display: flex; gap: 1.6rem; }
/* With eight items the bar runs flush against the logo and the Book-a-bay
   button just above the 900px breakpoint. Tighten the spacing until there's
   room for the full 1.6rem. */
@media (min-width: 900px) and (max-width: 1130px) {
  .nav-desktop { margin-inline: 1.25rem; }
  .nav-desktop__list { gap: 0.95rem; }
  .nav-desktop__item > a { font-size: 0.85rem; }
}
.nav-desktop__item { position: relative; }
.nav-desktop__item > a {
  font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 0.92rem; color: var(--muted); padding: 0.5rem 0; position: relative;
  transition: color 140ms ease;
}
.nav-desktop__item > a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--accent); transition: width 200ms ease;
}
.nav-desktop__item > a:hover, .nav-desktop__item > a[aria-current] { color: var(--text); }
.nav-desktop__item > a:hover::after, .nav-desktop__item > a[aria-current]::after { width: 100%; }
.nav-desktop__sub {
  position: absolute; top: 100%; left: -0.75rem; min-width: 190px;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.4rem; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}
.has-children:hover .nav-desktop__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-desktop__sub a { display: block; padding: 0.5rem 0.75rem; font-size: 0.88rem; color: var(--muted); border-radius: 3px; }
.nav-desktop__sub a:hover { background: var(--surface); color: var(--text); }
.site-header__actions { display: flex; align-items: center; gap: 0.75rem; }
.site-header__actions .btn--sm { display: none; }
.menu-toggle {
  background: none; border: 1px solid var(--line); color: var(--text);
  width: 42px; height: 42px; border-radius: var(--radius); font-size: 1.3rem;
  display: grid; place-items: center; cursor: pointer;
}
@media (min-width: 900px) {
  .nav-desktop { display: block; }
  .site-header__actions .btn--sm { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* ============================================================
   MOBILE NAV — off-canvas accordion
   ============================================================ */
.mobile-nav { position: fixed; inset: 0; z-index: 60; visibility: hidden; }
.mobile-nav.is-open { visibility: visible; }
.mobile-nav__scrim {
  position: absolute; inset: 0; background: rgba(0,0,0,0.6);
  opacity: 0; transition: opacity 240ms ease;
}
.mobile-nav.is-open .mobile-nav__scrim { opacity: 1; }
.mobile-nav__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(360px, 88vw);
  background: var(--surface); border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 280ms cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.25rem; border-bottom: 1px solid var(--line);
}
.menu-close { background: none; border: none; color: var(--muted); font-size: 1.5rem; cursor: pointer; }
.mobile-nav__list { flex: 1; padding: 0.25rem 0; }
.mobile-nav__row {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  background: none; border: none; border-bottom: 1px solid var(--line);
  padding: 0.95rem 1.25rem; color: var(--text);
  font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.03em;
  font-size: 1.02rem; text-align: left; cursor: pointer;
  transition: background 120ms ease;
}
.mobile-nav__row:hover { background: var(--surface-2); }
.mobile-nav__label { display: flex; align-items: center; gap: 0.85rem; }
.mobile-nav__label i { font-size: 1.2rem; color: var(--accent); }
.mobile-nav__chev { color: var(--faint); transition: transform 220ms ease; }
.mobile-nav__row[aria-expanded="true"] .mobile-nav__chev { transform: rotate(180deg); }
.mobile-nav__sub { max-height: 0; overflow: hidden; background: var(--bg); transition: max-height 240ms ease; }
.mobile-nav__subrow {
  display: block; padding: 0.8rem 1.25rem 0.8rem 3.35rem;
  font-family: var(--body); text-transform: none; letter-spacing: 0;
  font-size: 0.92rem; color: var(--muted); border-bottom: 1px solid var(--line);
}
.mobile-nav__subrow:hover { color: var(--accent); }
.mobile-nav__cta { margin: 1rem 1.25rem 0.5rem; justify-content: center; }
.mobile-nav__contact { padding: 1rem 1.25rem 1.75rem; display: grid; gap: 0.6rem; }
.mnav-contact { display: flex; align-items: center; gap: 0.75rem; padding: 0.8rem 1rem; border: 1px solid var(--line); border-radius: 12px; color: var(--text); font-size: 0.95rem; transition: border-color 160ms ease, background 160ms ease; }
.mnav-contact:hover { border-color: var(--accent); background: var(--surface-2); }
.mnav-contact i { color: var(--accent); font-size: 1.2rem; }
.mobile-nav__socials { display: flex; gap: 0.6rem; margin-top: 0.35rem; }
.mobile-nav__socials a { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; display: grid; place-items: center; font-size: 1.35rem; color: var(--text); transition: border-color 160ms ease, color 160ms ease, background 160ms ease; }
.mobile-nav__socials a:hover { border-color: var(--accent); color: var(--accent); background: var(--surface-2); }
body.is-locked { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(2.5rem, 5vw, 4rem); position: relative; overflow: hidden; }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(20,20,20,0.92) 0%, rgba(20,20,20,0.72) 45%, rgba(20,20,20,0.45) 100%),
    radial-gradient(120% 80% at 85% -10%, rgba(236,105,26,0.18), transparent 55%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; }
.hero__eyebrow {
  font-family: var(--display); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); display: inline-flex; align-items: center; gap: 0.6rem; margin: 0 0 1.5rem;
}
.hero__title { font-size: clamp(2.8rem, 8.5vw, 6rem); letter-spacing: 0.01em; line-height: 0.98; }
.hero__accent { color: var(--accent); }
.hero__lede { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--muted); max-width: 36ch; margin: 1.75rem 0 2.25rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
/* Mobile: make the hero tall so the portrait video fills most of the phone
   screen while leaving a sliver of the next section to hint at scrolling.
   Flex-center the content so it sits balanced within the video rather than
   hugging the top. */
@media (max-width: 700px) {
  .hero { min-height: 86vh; min-height: 86svh; display: flex; align-items: center; }
  .hero__inner { width: 100%; }
}

/* ============================================================
   READOUT STRIP (signature)
   ============================================================ */
.readout { border-block: 1px solid var(--line); background: var(--surface); }
.readout__inner { display: grid; grid-template-columns: repeat(2, 1fr); }
.readout__cell {
  padding: 1.7rem 1rem; text-align: center;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.readout__cell:nth-child(2n) { border-right: none; }
.readout__val { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 5vw, 2.9rem); color: var(--accent); }
.readout__label { display: block; font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem; color: var(--muted); margin-top: 0.35rem; }
@media (min-width: 720px) {
  .readout__inner { grid-template-columns: repeat(4, 1fr); }
  .readout__cell { border-bottom: none; }
  .readout__cell:last-child { border-right: none; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { padding: var(--pad-section) clamp(1.25rem,4vw,2.5rem); border-block: 1px solid var(--line); background: var(--surface); }
.how__steps { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
.how__step { border-top: 2px solid var(--accent); padding-top: 1.5rem; }
.how__num { font-family: var(--display); font-weight: 700; font-size: 1.4rem; color: var(--accent); }
.how__step h3 { font-size: 1.5rem; margin: 0.6rem 0 0.5rem; }
.how__step p { color: var(--muted); margin: 0; }
@media (min-width: 720px) { .how__steps { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }

/* ============================================================
   TECHNOLOGY
   ============================================================ */
/* ============================================================
   GOOGLE REVIEWS (carousel, made to pop)
   ============================================================ */
.reviews { background: var(--bg); border-block: 1px solid var(--line); position: relative; overflow: hidden; }
.reviews::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 340px; background: radial-gradient(60% 100% at 50% 0%, rgba(236,105,26,0.16), transparent 70%); pointer-events: none; }
.reviews__inner { position: relative; padding-block: var(--pad-section); }
.reviews__head { text-align: center; max-width: 680px; margin: 0 auto; }
.reviews__stars { color: #FFC233; font-size: 2.5rem; letter-spacing: 0.12em; line-height: 1; text-shadow: 0 0 26px rgba(255,194,51,0.5); }
.reviews__rating { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.03em; font-size: clamp(1.5rem, 4vw, 2.3rem); margin: 1rem 0 0; }
.reviews__rating strong { color: var(--accent); }
.ggl { text-transform: none; font-family: var(--body); font-weight: 700; letter-spacing: -0.5px; }
.ggl b { font-weight: 700; }
.reviews__count { color: var(--muted); margin: 0.6rem 0 0; font-size: 1.05rem; }
.reviews__track { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 0.5rem; }
.reviews__track::-webkit-scrollbar { display: none; }
.review-card { min-width: min(85%, 360px); scroll-snap-align: start; border: 2px solid transparent; border-radius: 14px; background: linear-gradient(var(--surface-2), var(--surface-2)) padding-box, linear-gradient(130deg, #4285F4, #EA4335 38%, #FBBC05 68%, #34A853) border-box; padding: 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.9rem; }
.review-card__top { display: flex; align-items: center; justify-content: space-between; }
.review-card__stars { color: #FFC233; letter-spacing: 0.08em; }
.gicon { width: 18px; height: 18px; display: block; }
.review-card__text { color: var(--text); margin: 0; line-height: 1.6; font-size: 0.98rem; flex: 1; }
.review-card__author { display: flex; align-items: center; gap: 0.75rem; }
.review-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 0.95rem; flex-shrink: 0; }
.review-card__author strong { display: block; font-size: 0.95rem; }
.review-card__author span { color: var(--faint); font-size: 0.8rem; }
.reviews__more { text-align: center; margin-top: 2.25rem; }

/* ============================================================
   OUR FACILITY (grid on desktop, carousel on mobile)
   ============================================================ */
.facility { background: var(--bg); border-top: 1px solid var(--line); }
.facility__inner { padding-block: var(--pad-section); }
.facility__head p { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; max-width: 70ch; }
.facility__track {
  display: flex; gap: 1rem; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none;
  margin-inline: calc(-1 * clamp(1.25rem, 4vw, 2.5rem));
  padding: 0.25rem clamp(1.25rem, 4vw, 2.5rem) 1rem;
}
.facility__track::-webkit-scrollbar { display: none; }
.facility-card { min-width: 80%; scroll-snap-align: start; background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; }
@media (min-width: 560px) {
  .facility__track { margin-inline: 0; padding: 0.25rem 0 1rem; }
  .facility-card { min-width: calc((100% - 1rem) / 2); }
}
@media (min-width: 960px) {
  .facility-card { min-width: calc((100% - 2rem) / 3); }
}
.facility-card__img { aspect-ratio: 16/10; }
.facility-card__img img { width: 100%; height: 100%; object-fit: cover; }
.facility-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.facility-card__body h3 { font-size: 1.4rem; margin: 0 0 0.6rem; color: var(--accent); }
.facility-card__body p { color: var(--muted); font-size: 0.93rem; margin: 0; line-height: 1.6; }
.facility-card__coffee { margin-top: 1.1rem; border-top: 1px solid var(--line); padding-top: 1.1rem; }
.facility-card__coffee strong { display: block; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.8rem; color: var(--text); margin-bottom: 0.6rem; }
.facility-card__coffee strong .free { color: var(--accent); }
.facility-card__chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.facility-card__chip { font-size: 0.72rem; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.04em; color: var(--accent); background: rgba(236,105,26,0.12); border: 1px solid rgba(236,105,26,0.4); border-radius: 999px; padding: 0.3rem 0.75rem; }
.facility__hint { display: block; margin-top: 0.75rem; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; color: var(--faint); }
@media (min-width: 560px) { .facility__hint { display: none; } }

/* ============================================================
   CAROUSEL ARROWS (shared: reviews + facility)
   ============================================================ */
.carousel { position: relative; margin-top: 2.75rem; }
.carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface-2); color: var(--text);
  border: 1.5px solid var(--line);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}
.carousel__btn:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.carousel__btn svg { width: 22px; height: 22px; }
.carousel__btn--prev { left: -23px; }
.carousel__btn--next { right: -23px; }
.carousel__btn:disabled { opacity: 0.3; cursor: default; pointer-events: none; }
/* Touch / small screens: hide arrows and let users swipe */
@media (max-width: 700px) { .carousel__btn { display: none; } }

/* ============================================================
   MEMBERSHIPS TEASER CAROUSEL (homepage)
   ============================================================ */
.mteaser { margin-top: 0; min-width: 0; }
.mteaser__track { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 0.25rem 0 0.5rem; }
.mteaser__track::-webkit-scrollbar { display: none; }
.mteaser-card { position: relative; overflow: hidden; min-width: min(85%, 300px); scroll-snap-align: start; background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 1.4rem 1.4rem 1.25rem; display: flex; flex-direction: column; gap: 0.55rem; text-decoration: none; transition: border-color 0.15s ease, transform 0.15s ease; }
.mteaser-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--tier); }
.mteaser-card:hover { border-color: var(--tier); transform: translateY(-2px); }
.mteaser-card__badge { position: absolute; top: 0.8rem; right: 0.8rem; background: var(--tier); color: #191919; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.58rem; font-weight: 600; padding: 0.25rem 0.55rem; border-radius: 999px; }
.mteaser-card__name { display: flex; align-items: center; gap: 0.5rem; font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--text); line-height: 1.25; }
.mteaser-card__dot { width: 10px; height: 10px; border-radius: 3px; background: var(--tier); flex-shrink: 0; }
.mteaser-card__price { font-family: var(--display); font-weight: 700; font-size: 1.8rem; color: var(--tier); line-height: 1; }
.mteaser-card__price small { font-size: 0.8rem; color: var(--faint); font-weight: 400; margin-left: 0.15rem; }
.mteaser-card__tag { color: var(--muted); font-size: 0.85rem; line-height: 1.5; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mteaser-card__more { font-family: var(--display); font-size: 0.85rem; color: var(--tier); margin-top: 0.35rem; }
.mteaser__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* ============================================================
   MERCH CAROUSEL (homepage — products from Shopify)
   ============================================================ */
.merch { padding-block: var(--pad-section); background: var(--surface); border-block: 1px solid var(--line); }
.merch__head { max-width: 60ch; }
.merch__lede { color: var(--muted); margin-top: 0.75rem; line-height: 1.6; }
.merch__carousel { margin-top: 2rem; }
.merch__track { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 0.5rem; }
.merch__track::-webkit-scrollbar { display: none; }
.merch-card { min-width: min(66%, 230px); scroll-snap-align: start; background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; transition: border-color 0.15s ease, transform 0.15s ease; }
.merch-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.merch-card__img { aspect-ratio: 1 / 1; background: #f3f2ef; }
.merch-card__img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.merch-card__body { padding: 0.85rem 1rem 1rem; display: flex; flex-direction: column; gap: 0.25rem; }
.merch-card__name { font-family: var(--display); font-weight: 500; color: var(--text); font-size: 0.98rem; line-height: 1.3; }
.merch-card__price { color: var(--accent); font-family: var(--display); font-weight: 700; font-size: 1.05rem; display: inline-flex; align-items: center; gap: 0.35rem; }
.merch__more { margin-top: 1.5rem; }

/* ============================================================
   RATES CALCULATOR (rates page)
   ============================================================ */
.rates-calc { padding-block: 0.5rem 3rem; }
.rates-calc__controls { display: grid; gap: 1.75rem; margin-bottom: 2rem; }
.rates-field { display: grid; gap: 0.7rem; }
.rates-field__label { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; color: var(--faint); }
.rates-seg { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.rates-seg__btn {
  font-family: var(--display); font-weight: 500; font-size: 0.95rem;
  color: var(--muted); background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 10px; padding: 0.6rem 1.05rem; cursor: pointer;
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.1rem; line-height: 1.25;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.rates-seg__btn small { font-family: var(--body); font-size: 0.72rem; color: var(--faint); font-weight: 400; }
.rates-seg__btn:hover:not(:disabled) { color: var(--text); border-color: var(--faint); }
.rates-seg__btn.is-active { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.rates-seg__btn.is-active small { color: rgba(25, 25, 25, 0.72); }
.rates-seg__btn:disabled { opacity: 0.4; cursor: not-allowed; }
.rates-seg--wide { display: grid; grid-template-columns: repeat(3, 1fr); }
.rates-note { margin: 0.5rem 0 0; font-size: 0.9rem; color: var(--muted); }
.rates-note strong { color: var(--accent); }

.rates-summary { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.1rem; color: var(--text); margin: 0 0 1.1rem; }
.rates-summary strong { color: var(--accent); }
.rates-summary span { color: var(--faint); text-transform: none; letter-spacing: 0; }

.rates-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.rates-card { background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 1.5rem; display: flex; flex-direction: column; gap: 0.3rem; }
.rates-card__name { font-family: var(--display); font-weight: 600; font-size: 1.35rem; margin: 0; color: var(--text); }
.rates-card__desc { color: var(--faint); font-size: 0.85rem; margin: 0 0 0.9rem; }
.rates-card__price { font-family: var(--display); font-weight: 700; font-size: 2.7rem; line-height: 1; color: var(--accent); margin: auto 0 0; }
.rates-card__price [data-price] { display: inline-block; transform-origin: left center; }
.rates-card__price [data-price].is-bump { animation: ratesBump 0.34s ease; }
.rates-card__unit { font-size: 1rem; color: var(--muted); font-weight: 500; margin-left: 0.2rem; }
@keyframes ratesBump { 0% { transform: scale(1); } 40% { transform: scale(1.14); } 100% { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .rates-card__price [data-price].is-bump { animation: none; } }

.rates-calc__foot { color: var(--faint); font-size: 0.9rem; margin-top: 1.25rem; }
.rates-calc a:not(.btn), .rates-ref a:not(.btn), .rates-events a:not(.btn) { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.rates-ref, .rates-events, .rates-guide { padding-bottom: var(--pad-section); }
.rates-ref .section-title, .rates-events .section-title, .rates-guide .section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.rates-ref__lede { color: var(--muted); max-width: 62ch; margin: 0.9rem 0 1.5rem; }
.rates-ref__lede strong, .rates-ref__note strong { color: var(--text); }
.rates-table__scroll { overflow-x: auto; }
.rates-table { width: 100%; border-collapse: collapse; min-width: 460px; }
.rates-table th, .rates-table td { text-align: center; padding: 0.9rem 1rem; border-bottom: 1px solid var(--line); }
.rates-table thead th { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.82rem; color: var(--text); font-weight: 600; }
.rates-table thead th span { display: block; font-family: var(--body); text-transform: none; letter-spacing: 0; font-size: 0.72rem; color: var(--faint); margin-top: 0.25rem; font-weight: 400; }
.rates-table tbody th { text-align: left; font-family: var(--display); font-weight: 500; color: var(--text); }
.rates-table tbody td { color: var(--muted); font-variant-numeric: tabular-nums; font-size: 1.05rem; }
.rates-table tbody tr:last-child th, .rates-table tbody tr:last-child td { border-bottom: none; }
.rates-ref__note { color: var(--faint); font-size: 0.9rem; margin-top: 1rem; }
.rates-events p { color: var(--muted); max-width: 62ch; margin-top: 0.75rem; line-height: 1.6; }

.rates-guide__lede { color: var(--muted); max-width: 62ch; margin: 0.9rem 0 1.5rem; line-height: 1.6; }
.rates-guide__lede strong { color: var(--text); }
.rates-guide__list { list-style: none; padding: 0; margin: 0 0 1.25rem; display: grid; gap: 0.55rem; max-width: 300px; }
.rates-guide__list li { display: flex; align-items: center; gap: 0.9rem; font-family: var(--display); font-size: 1.15rem; color: var(--muted); }
.rates-guide__list span { min-width: 6rem; }
.rates-guide__list i { color: var(--accent); font-style: normal; font-weight: 700; }
.rates-guide__list strong { color: var(--text); margin-left: auto; }
.rates-guide__note { color: var(--faint); font-size: 0.9rem; margin: 0; }
.rates-guide__cta { margin-top: 1.6rem; }

@media (max-width: 720px) {
  .rates-cards { grid-template-columns: 1fr; }
  .rates-card { flex-direction: row; align-items: baseline; justify-content: space-between; gap: 1rem; }
  .rates-card__desc { display: none; }
  .rates-card__price { margin: 0; }
}

/* ============================================================
   COURSES
   ============================================================ */
.courses { background: var(--surface); border-block: 1px solid var(--line); }
.courses__inner { padding-block: var(--pad-section); }
.courses__head p { color: var(--muted); max-width: 60ch; margin-top: 1rem; }
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 2rem 0 2.25rem; }
.filter-pill {
  font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 0.82rem; color: var(--muted); background: transparent; border: 1px solid var(--line);
  border-radius: 999px; padding: 0.55rem 1.15rem; cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.filter-pill:hover { color: var(--text); border-color: var(--faint); }
.filter-pill.is-active { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.courses__carousel { margin-top: 0.5rem; }
.courses__track { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 0.5rem; }
.courses__track::-webkit-scrollbar { display: none; }
.course-card { flex: 0 0 auto; min-width: min(78%, 250px); scroll-snap-align: start; position: relative; aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); transition: transform 180ms ease, border-color 180ms ease; }
.course-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.course-card.is-hidden { display: none; }
.course-card__wm { position: absolute; right: 10px; top: 8px; font-size: 2rem; color: rgba(255,255,255,0.14); }
.course-card__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.course-card__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 0.9rem; background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.15) 55%, transparent 100%); }
.course-card__name { font-size: 1.02rem; line-height: 1.12; margin: 0; color: #fff; text-transform: none; letter-spacing: 0; }
.course-card__meta { font-size: 0.75rem; color: rgba(255,255,255,0.82); margin: 0.35rem 0 0; font-family: var(--body); }
.course-card__diff { display: flex; gap: 3px; margin-top: 0.55rem; }
.course-card__diff span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.course-card__diff span.on { background: var(--accent); }
.courses__more { margin-top: 2.5rem; text-align: center; }
.course-grad-1 { background: linear-gradient(150deg, #2f5a2b, #16351f); }
.course-grad-2 { background: linear-gradient(150deg, #22503f, #123028); }
.course-grad-3 { background: linear-gradient(150deg, #3a5722, #1e3312); }
.course-grad-4 { background: linear-gradient(150deg, #245049, #132f34); }

/* ============================================================
   GAMES — fun for the whole family
   ============================================================ */
.games { background: var(--surface); border-block: 1px solid var(--line); }
.games__inner { padding-block: var(--pad-section); }
.games__head p { color: var(--muted); max-width: 60ch; margin-top: 1rem; }
.games__grid { margin-top: 2.5rem; display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; margin-inline: calc(-1 * clamp(1.25rem,4vw,2.5rem)); padding: 0.25rem clamp(1.25rem,4vw,2.5rem) 1rem; }
.games__grid::-webkit-scrollbar { display: none; }
@media (min-width: 560px) { .games__grid { display: grid; grid-template-columns: repeat(2, 1fr); overflow: visible; margin-inline: 0; padding: 0; } }
@media (min-width: 900px) { .games__grid { grid-template-columns: repeat(3, 1fr); } }
.game-card { min-width: 80%; scroll-snap-align: start; background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: transform 180ms ease, border-color 180ms ease; }
@media (min-width: 560px) { .game-card { min-width: 0; } }
.game-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.game-card__img { position: relative; aspect-ratio: 16/10; }
.game-card__img img { width: 100%; height: 100%; object-fit: cover; }
.game-card__wm { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-size: 3rem; color: rgba(255,255,255,0.22); }
.game-card__tag { position: absolute; left: 12px; top: 12px; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.66rem; padding: 0.28rem 0.7rem; border-radius: 999px; background: rgba(20,20,20,0.72); border: 1px solid rgba(255,255,255,0.18); color: #fff; }
.game-card__body { padding: 1.1rem 1.15rem 1.25rem; flex: 1; }
.game-card__body h3 { font-size: 1.3rem; margin: 0 0 0.5rem; }
.game-card__body p { color: var(--muted); font-size: 0.92rem; margin: 0; line-height: 1.6; }
.game-grad-pond { background: linear-gradient(150deg, #1f6f6a, #3a2a6b); }
.game-grad-sands { background: linear-gradient(150deg, #c98a2e, #6b3f14); }
.game-grad-scrap { background: linear-gradient(150deg, #4a5560, #b5491f); }
.game-grad-neon { background: linear-gradient(150deg, #b01f7a, #2a1f7a); }
.game-grad-bulls { background: linear-gradient(150deg, #c0392b, #e0791a); }

/* ============================================================
   TECHNOLOGY
   ============================================================ */
.tech { background: var(--bg); border-block: 1px solid var(--line); }
.tech__inner { padding-block: var(--pad-section); }
.tech__head p { color: var(--muted); max-width: 60ch; margin-top: 1rem; }
.tech__list { margin-top: 1.75rem; display: grid; gap: 0.85rem; }
.tech__list li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--muted); }
.tech__list i { color: var(--accent); font-size: 1.2rem; margin-top: 2px; }

/* Shared TrackMan screenshot with tab-linked split highlight */
.tech__shot { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); margin: 2.5rem 0; line-height: 0; }
.tech__shot img { width: 100%; display: block; }
.tech__shot-half { position: absolute; top: 0; bottom: 0; width: 50%; border: none; background: transparent; cursor: pointer; padding: 0; z-index: 3; }
.tech__shot-half--left { left: 0; }
.tech__shot-half--right { right: 0; }
.tech__shot-dim { position: absolute; top: 0; bottom: 0; width: 50%; background: rgba(20,20,20,0.62); transition: opacity 320ms ease; pointer-events: none; z-index: 2; }
.tech__shot-dim--left { left: 0; }
.tech__shot-dim--right { right: 0; }
.tech__shot[data-active="swing"] .tech__shot-dim--left { opacity: 0; }
.tech__shot[data-active="swing"] .tech__shot-dim--right { opacity: 1; }
.tech__shot[data-active="body"] .tech__shot-dim--left { opacity: 1; }
.tech__shot[data-active="body"] .tech__shot-dim--right { opacity: 0; }
.tech__shot-label { position: absolute; bottom: 14px; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; line-height: 1; padding: 0.4rem 0.85rem; border-radius: 999px; background: rgba(20,20,20,0.85); border: 1px solid var(--line); color: var(--muted); pointer-events: none; z-index: 4; transition: color 220ms ease, border-color 220ms ease; }
.tech__shot-label--left { left: 14px; }
.tech__shot-label--right { right: 14px; }
.tech__shot[data-active="swing"] .tech__shot-label--left { color: var(--accent); border-color: var(--accent); }
.tech__shot[data-active="body"] .tech__shot-label--right { color: var(--accent); border-color: var(--accent); }
.tech__placeholder {
  aspect-ratio: 4/3; border: 1px dashed var(--line); border-radius: var(--radius);
  display: grid; place-items: center; color: var(--faint); font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.9rem;
  background: var(--surface-2);
}
.tab-panel__chips { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tab-chip { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.72rem; color: var(--muted); background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; padding: 0.32rem 0.85rem; }

/* Technology tabs */
.tabs__nav { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.tab-btn {
  flex: 1; font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 0.88rem; padding: 0.85rem 1rem; background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 12px; color: var(--muted); cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.tab-btn:hover { color: var(--text); border-color: var(--faint); }
.tab-btn.is-active { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeup 320ms ease; }
@keyframes fadeup { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.tab-panel__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; font-size: 1.6rem; color: var(--accent); margin-bottom: 1rem; }
.tab-panel h3 { font-size: 1.5rem; margin: 0 0 0.75rem; }
.tab-panel p { color: var(--muted); margin: 0; line-height: 1.7; }

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.who { padding: var(--pad-section) clamp(1.25rem,4vw,2.5rem); border-top: 1px solid var(--line); background: var(--bg); }
.xp-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 2.5rem; }
@media (min-width: 760px) { .xp-grid { grid-template-columns: repeat(3, 1fr); } }
.xp-card { display: flex; flex-direction: column; text-align: center; }
.xp-card__img { aspect-ratio: 3/2; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); max-width: 300px; margin: 0 auto; width: 100%; }
@media (min-width: 760px) { .xp-card__img { aspect-ratio: 9/10; max-width: none; } }
.xp-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.xp-card:hover .xp-card__img img { transform: scale(1.04); }
.xp-card__title { color: var(--accent); font-family: var(--display); text-transform: uppercase; font-size: 1.5rem; letter-spacing: 0.02em; margin: 1.25rem 0 0.6rem; }
.xp-card__desc { color: var(--muted); margin: 0 auto 1.5rem; max-width: 36ch; line-height: 1.6; flex: 1; }
.xp-card__cta { align-self: center; margin-top: auto; }
.btn--wide { min-width: 190px; justify-content: center; }
.who__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.who__card { background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 1.5rem; transition: border-color 180ms ease, transform 180ms ease; }
.who__card:hover { border-color: var(--accent); transform: translateY(-3px); }
.who__card i { font-size: 1.7rem; color: var(--accent); }
.who__card h3 { font-size: 1.3rem; margin: 0.85rem 0 0.4rem; }
.who__card p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ============================================================
   LEADERBOARD (manual, data-driven)
   ============================================================ */
.lb { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.lb__head { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid var(--line); background: var(--surface-2); }
.lb__title { display: flex; align-items: center; gap: 0.7rem; font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.98rem; }
.lb__title i { color: var(--accent); }
.lb__stamp { font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.09em; font-size: 0.72rem; color: var(--faint); white-space: nowrap; }
.lb__cols { display: grid; grid-template-columns: 52px 1fr auto; gap: 1rem; padding: 0.65rem 1.25rem; border-bottom: 1px solid var(--line); font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; color: var(--faint); }
.lb__cols span:last-child { text-align: right; }
.lb__row { display: grid; grid-template-columns: 52px 1fr auto; gap: 1rem; align-items: center; padding: 0.95rem 1.25rem; border-bottom: 1px solid var(--line); transition: background 120ms ease; }
.lb__row:last-child { border-bottom: none; }
.lb__row:hover { background: var(--surface-2); }
.lb__rank { font-family: var(--display); font-weight: 700; font-size: 1.3rem; color: var(--muted); }
.lb__row--top .lb__rank { color: var(--accent); }
.lb__name { font-weight: 500; font-size: 1.05rem; }
.lb__score { font-family: var(--display); font-weight: 700; font-size: 1.35rem; text-align: right; font-variant-numeric: tabular-nums; min-width: 56px; }
.score--under { color: var(--accent); }
.score--over { color: var(--muted); }
.score--even { color: var(--text); }

/* Leaderboard SECTION (homepage, made to pop) */
.lbsection { background: var(--bg); border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.lbsection::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 300px; background: radial-gradient(70% 100% at 50% 0%, rgba(236,105,26,0.14), transparent 70%); pointer-events: none; }
.lbsection__inner { position: relative; padding-block: var(--pad-section); }
.lbsection__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-top: 1rem; }
.lb-chip { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.72rem; padding: 0.32rem 0.8rem; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line); color: var(--muted); }
.lb-chip--accent { background: rgba(236,105,26,0.14); border-color: rgba(236,105,26,0.5); color: var(--accent); }
.lb-dates { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.72rem; color: var(--faint); margin-left: 0.25rem; }

/* ============================================================
   LEADERBOARD BROWSER (competitions page)
   ============================================================ */
.lbboard { padding-block: 1rem var(--pad-section); }
.lbboard__lede { color: var(--muted); max-width: 60ch; margin: 0.75rem 0 0; line-height: 1.6; }

.lbboard__toggle { display: inline-flex; gap: 0.3rem; background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; padding: 0.3rem; margin: 1.75rem 0 1.5rem; }
.lbboard__tab { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--display); font-weight: 500; font-size: 0.9rem; color: var(--muted); background: transparent; border: 0; border-radius: 999px; padding: 0.55rem 1.15rem; cursor: pointer; transition: color 0.15s ease, background 0.15s ease; }
.lbboard__tab:hover { color: var(--text); }
.lbboard__tab.is-active { background: var(--accent); color: var(--accent-ink); }
.lbboard__tab.is-active .live-dot { background: var(--accent-ink); animation: none; }
.lbboard__count { font-size: 0.75rem; opacity: 0.75; font-variant-numeric: tabular-nums; }

.lbboard__grid { display: grid; grid-template-columns: minmax(220px, 300px) 1fr; gap: 1.25rem; align-items: start; }
.lbboard__menu { display: flex; flex-direction: column; gap: 0.5rem; }
.lbboard__item { display: flex; align-items: center; gap: 0.75rem; text-align: left; background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; padding: 0.85rem 1rem; cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease; }
.lbboard__item:hover { border-color: var(--faint); }
.lbboard__item.is-active { border-color: var(--accent); background: rgba(236, 105, 26, 0.08); }
.lbboard__item[hidden] { display: none; }
.lbboard__item-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.lbboard__item-dot--live { background: var(--accent); animation: pulse 2s infinite; }
.lbboard__item-dot--past { background: var(--faint); }
.lbboard__item-body { display: grid; gap: 0.15rem; min-width: 0; }
.lbboard__item-name { font-family: var(--display); font-weight: 500; color: var(--text); font-size: 1rem; line-height: 1.2; }
.lbboard__item-dates { font-size: 0.78rem; color: var(--faint); }

.lbboard__viewer { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--surface-2); }
.lbboard__viewer[hidden] { display: none; }
.lbboard__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.lbboard__bar-title { font-family: var(--display); font-size: 1.3rem; margin: 0; color: var(--text); }
.lbboard__bar-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-top: 0.45rem; }
.lbboard__bar-meta .lbboard__dates { font-size: 0.85rem; color: var(--faint); }
.lbboard__bar-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.lbboard__badge { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.72rem; padding: 0.35rem 0.75rem; border-radius: 999px; }
.lbboard__badge--live { background: rgba(236, 105, 26, 0.14); border: 1px solid rgba(236, 105, 26, 0.5); color: var(--accent); }
.lbboard__badge--live .live-dot { width: 7px; height: 7px; }
.lbboard__badge--past { background: var(--surface); border: 1px solid var(--line); color: var(--muted); }
.lbboard__expand { font-family: var(--display); font-size: 0.8rem; color: var(--muted); text-decoration: none; white-space: nowrap; }
.lbboard__expand:hover { color: var(--accent); }
.lbboard__frame { position: relative; height: clamp(520px, 68vh, 760px); background: var(--bg); }
.lbboard__iframe { width: 100%; height: 100%; border: 0; display: block; opacity: 0; transition: opacity 0.25s ease; }
.lbboard__loading { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 0.6rem; color: var(--faint); font-size: 0.9rem; background: var(--bg); }
.lbboard__loading[hidden] { display: none; }
.lbboard__spinner { width: 18px; height: 18px; border: 2px solid var(--line); border-top-color: var(--accent); border-radius: 50%; animation: lbspin 0.8s linear infinite; }
@keyframes lbspin { to { transform: rotate(360deg); } }
.lbboard__empty { color: var(--faint); padding: 2rem 0; }
.lbboard__empty[hidden] { display: none; }

@media (max-width: 820px) {
  .lbboard__grid { grid-template-columns: 1fr; }
  .lbboard__menu { flex-direction: row; overflow-x: auto; padding-bottom: 0.4rem; scrollbar-width: none; }
  .lbboard__menu::-webkit-scrollbar { display: none; }
  .lbboard__item { flex: 0 0 auto; max-width: 250px; }
  .lbboard__frame { height: clamp(460px, 64vh, 620px); }
}

/* ============================================================
   MEMBERSHIPS (memberships page)
   ============================================================ */
.mships { padding-block: 0.5rem var(--pad-section); }

/* Monthly / annual billing toggle above the membership cards */
.mbill-toggle { display: inline-flex; gap: 0.4rem; background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 0.35rem; margin: 0 0 1rem; flex-wrap: wrap; }
.mbill-toggle__btn { display: flex; flex-direction: column; align-items: flex-start; gap: 0.1rem; background: transparent; border: 0; border-radius: 10px; padding: 0.6rem 1.2rem; color: var(--muted); cursor: pointer; font-family: var(--display); text-align: left; transition: background 0.15s ease, color 0.15s ease; }
.mbill-toggle__btn b { font-weight: 600; font-size: 0.98rem; }
.mbill-toggle__btn small { font-family: var(--body); font-size: 0.75rem; color: var(--faint); }
.mbill-toggle__btn.is-active { background: var(--accent); color: var(--accent-ink); }
.mbill-toggle__btn.is-active small { color: rgba(25, 25, 25, 0.72); }
.mbill-note { color: var(--muted); font-size: 0.88rem; margin: 0 0 1.5rem; }

.mships__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .mships__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .mships__grid { grid-template-columns: 1fr; } }

.mcard { position: relative; background: var(--surface-2); border: 1px solid var(--line); border-radius: 16px; padding: 1.9rem 1.6rem 1.6rem; display: flex; flex-direction: column; overflow: hidden; }
.mcard::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--tier); }
.mcard--featured { border-color: var(--tier); box-shadow: 0 0 0 1px var(--tier), 0 14px 40px rgba(0, 0, 0, 0.35); }
.mcard__badge { position: absolute; top: 0.9rem; right: 0.9rem; background: var(--tier); color: #191919; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.62rem; font-weight: 600; padding: 0.3rem 0.6rem; border-radius: 999px; }
.mcard__top { display: flex; align-items: center; gap: 0.6rem; }
.mcard__dot { width: 12px; height: 12px; border-radius: 4px; background: var(--tier); flex-shrink: 0; }
.mcard__name { font-family: var(--display); font-size: 1.25rem; margin: 0; color: var(--text); }
.mcard__price { margin: 1rem 0 0.5rem; display: flex; align-items: baseline; gap: 0.25rem; }
.mcard__amount { font-family: var(--display); font-weight: 700; font-size: 2.2rem; color: var(--tier); line-height: 1; }
.mcard__per { color: var(--faint); font-size: 0.9rem; }
.mcard__billmeta { color: var(--tier); font-size: 0.8rem; margin: 0 0 0.5rem; line-height: 1.4; }
.mcard__tagline { color: var(--muted); font-size: 0.9rem; margin: 0 0 1.2rem; line-height: 1.5; }
.mcard__benefits { list-style: none; padding: 0; margin: 0 0 1.1rem; display: grid; gap: 0.6rem; flex: 1; }
.mcard__benefits li { position: relative; padding-left: 1.6rem; color: var(--text); font-size: 0.9rem; line-height: 1.45; }
.mcard__benefits li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--tier); font-weight: 700; }
.mcard__note { color: var(--faint); font-size: 0.76rem; font-style: italic; margin: 0 0 1.1rem; }
.mcard__cta { display: block; text-align: center; background: var(--tier); color: #191919; font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.88rem; padding: 0.8rem; border-radius: 10px; text-decoration: none; margin-top: auto; transition: filter 0.15s ease; }
.mcard__cta:hover { filter: brightness(1.08); }

.mquiz { padding-block: 1rem var(--pad-section); }
.mquiz .section-title, .mcompare .section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.mquiz__lede { color: var(--muted); margin: 0.75rem 0 0; max-width: 55ch; }
.mquiz__box { background: var(--surface-2); border: 1px solid var(--line); border-radius: 16px; padding: 1.75rem; max-width: 680px; margin-top: 1.5rem; }
.mquiz__progress { height: 4px; background: var(--line); border-radius: 2px; overflow: hidden; margin-bottom: 1.5rem; }
.mquiz__progress > i { display: block; height: 100%; width: 0; background: var(--accent); border-radius: 2px; transition: width 0.3s ease; }
.mquiz__q { font-family: var(--display); font-size: 1.35rem; color: var(--text); margin: 0 0 1.25rem; line-height: 1.3; }
.mquiz__options { display: grid; gap: 0.6rem; }
.mquiz__opt { text-align: left; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 1rem 1.2rem; color: var(--text); font-family: var(--body); font-size: 1rem; cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease; }
.mquiz__opt:hover { border-color: var(--accent); background: rgba(236, 105, 26, 0.07); }
.mquiz__nav { display: flex; align-items: center; gap: 1.25rem; }
.mquiz__nav:empty { display: none; }
.mquiz__back,
.mquiz__restart { margin-top: 1.25rem; background: none; border: 0; color: var(--faint); font-family: var(--display); font-size: 0.85rem; cursor: pointer; padding: 0; }
.mquiz__back:hover,
.mquiz__restart:hover { color: var(--accent); }
.mquiz__back[hidden],
.mquiz__restart[hidden] { display: none; }
.mquiz__result-label { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.75rem; color: var(--faint); margin: 0; }
.mquiz__result-name { font-family: var(--display); font-size: 1.9rem; color: var(--tier); margin: 0.35rem 0 0.2rem; }
.mquiz__result-price { font-family: var(--display); font-weight: 700; font-size: 1.3rem; color: var(--text); margin: 0 0 0.75rem; }
.mquiz__result-price span { color: var(--faint); font-weight: 400; font-size: 0.9rem; }
.mquiz__result-meta { color: var(--tier); font-size: 0.82rem; margin: -0.5rem 0 0.75rem; }
.mquiz__result-why { color: var(--muted); margin: 0 0 1rem; line-height: 1.5; }
.mquiz__result-benefits { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: 0.5rem; }
.mquiz__result-benefits li { position: relative; padding-left: 1.5rem; color: var(--text); font-size: 0.92rem; }
.mquiz__result-benefits li::before { content: "✓"; position: absolute; left: 0; color: var(--tier); font-weight: 700; }
.mquiz__result-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; }
.mquiz__result-cta { display: inline-block; padding: 0.7rem 1.6rem; margin: 0; }
.mquiz__seelink { color: var(--tier); font-family: var(--display); font-size: 0.9rem; text-decoration: none; }
.mquiz__seelink:hover { text-decoration: underline; }

.mcompare { padding-block: 1rem var(--pad-section); }
.mcompare__scroll { overflow-x: auto; margin-top: 1.5rem; border: 1px solid var(--line); border-radius: 14px; }
.mtable { width: 100%; border-collapse: collapse; min-width: 860px; }
.mtable th, .mtable td { padding: 0.85rem 1rem; text-align: center; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
.mtable thead th { background: var(--surface); vertical-align: top; font-family: var(--display); font-weight: 600; color: var(--text); }
.mtable thead th .mtable__dot { display: inline-block; width: 10px; height: 10px; border-radius: 3px; background: var(--tier); margin-right: 0.4rem; vertical-align: middle; }
.mtable thead th .mtable__price { display: block; color: var(--faint); font-size: 0.75rem; font-weight: 400; margin-top: 0.25rem; }
.mtable tbody th { text-align: left; font-family: var(--display); font-weight: 500; color: var(--text); white-space: nowrap; background: var(--surface-2); }
.mtable tbody td { color: var(--muted); }
.mtable__corner { background: var(--surface); }
.mtable__yes { color: var(--accent); font-weight: 700; }
.mtable tbody tr:last-child th, .mtable tbody tr:last-child td { border-bottom: none; }
.mcompare__note { color: var(--faint); font-size: 0.85rem; margin-top: 1rem; }
.lbsection .lb { margin-top: 2rem; }
.lbsection__more { margin-top: 1.5rem; }

/* Full board variant: # / Team / Thru / Total / Score */
.lb__cols--full, .lb__row--full { grid-template-columns: 44px 1fr auto; }
@media (min-width: 560px) { .lb__cols--full, .lb__row--full { grid-template-columns: 52px 1fr 54px 62px auto; } }
.lb-hide { display: none; }
@media (min-width: 560px) { .lb-hide { display: block; } }
.lb__cols--full span:nth-child(3), .lb__cols--full span:nth-child(4), .lb__cols--full span:last-child { text-align: right; }
.lb__thru, .lb__total { text-align: right; font-variant-numeric: tabular-nums; color: var(--muted); font-size: 0.92rem; }
.lb__rank--full { display: flex; align-items: center; }
.lb__row--full .lb__rank--1 { color: #F5C518; }
.lb__row--full .lb__rank--2 { color: #D6D6D6; }
.lb__row--full .lb__rank--3 { color: #CD7F32; }
.lb__row--top { background: rgba(236,105,26,0.06); }
.lb__pill { font-family: var(--display); font-weight: 700; font-size: 1.05rem; border-radius: 8px; padding: 0.22rem 0.55rem; min-width: 46px; text-align: center; justify-self: end; font-variant-numeric: tabular-nums; }
.lb__pill--under { background: var(--accent); color: var(--accent-ink); }
.lb__pill--even { background: var(--line); color: var(--text); }
.lb__pill--over { background: transparent; border: 1px solid var(--line); color: var(--muted); }

/* ============================================================
   TEASERS
   ============================================================ */
.teaser { border-top: 1px solid var(--line); background: var(--bg); }
.teaser__inner { display: grid; gap: 2.5rem; padding-block: var(--pad-section); align-items: center; }
.teaser__copy p { color: var(--muted); }
.teaser--comp { background: var(--surface); }
@media (min-width: 860px) { .teaser--comp .teaser__inner { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.board-preview { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.board-preview__head { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 1.1rem; border-bottom: 1px solid var(--line); font-family: var(--display); font-weight: 500; font-size: 0.82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.board-preview__row { display: flex; justify-content: space-between; padding: 0.9rem 1.1rem; border-bottom: 1px solid var(--line); font-size: 0.98rem; }
.board-preview__row span:last-child { color: var(--accent); font-family: var(--display); font-weight: 600; }
.board-preview__row--muted { color: var(--faint); }
.board-preview__row--muted span:last-child { color: var(--faint); }

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.proof { padding: var(--pad-section) clamp(1.25rem,4vw,2.5rem); text-align: center; display: grid; justify-items: center; gap: 1.5rem; background: var(--surface); border-block: 1px solid var(--line); }
.proof__quote { font-family: var(--display); font-weight: 500; text-transform: none; font-size: clamp(1.5rem, 3.8vw, 2.3rem); max-width: 24ch; line-height: 1.25; margin: 0; }
.proof__social { color: var(--muted); display: inline-flex; align-items: center; gap: 0.5rem; }
.proof__social:hover { color: var(--accent); }
.review-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--muted); }
.review-badge__stars { color: var(--accent); letter-spacing: 0.1em; }
.review-badge--lg { font-size: 1.05rem; }
.review-badge--lg .review-badge__stars { font-size: 1.3rem; }

/* ============================================================
   LATEST FROM BLOG
   ============================================================ */
.latest { padding: var(--pad-section) clamp(1.25rem,4vw,2.5rem); border-top: 1px solid var(--line); background: var(--bg); }
.latest__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.latest__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.post-card { background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; transition: border-color 180ms ease, transform 180ms ease; }
.post-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.post-card time { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 0.78rem; color: var(--faint); letter-spacing: 0.08em; }
.post-card h3 { font-size: 1.3rem; }
.post-card p { color: var(--muted); font-size: 0.95rem; margin: 0; flex: 1; }
.post-card__more { color: var(--accent); font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 0.4rem; }

/* ============================================================
   FAQ (accordion)
   ============================================================ */
.faq { padding: var(--pad-section) clamp(1.25rem,4vw,2.5rem); background: var(--surface); border-block: 1px solid var(--line); }
.faq__grid { max-width: 820px; margin: 2.5rem auto 0; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%;
  background: none; border: none; padding: 1.4rem 0.25rem; color: var(--text);
  font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.02em;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem); text-align: left; cursor: pointer; transition: color 140ms ease;
}
.faq__q:hover { color: var(--accent); }
.faq__icon {
  flex-shrink: 0; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; font-size: 1.1rem; color: var(--accent);
  transition: transform 240ms ease, border-color 160ms ease;
}
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); border-color: var(--accent); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 300ms ease; }
.faq__a-inner { padding: 0 0.25rem 1.5rem; color: var(--muted); line-height: 1.7; max-width: 70ch; }
.faq__a-inner ul { margin: 0.75rem 0 0; padding-left: 1.1rem; display: grid; gap: 0.5rem; list-style: none; }
.faq__a-inner li { position: relative; padding-left: 1.1rem; }
.faq__a-inner li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 6px; height: 6px; background: var(--accent); border-radius: 1px; }
.faq__a-inner strong { color: var(--text); font-weight: 600; }
.faq__a-inner p { margin: 1rem 0 0; }

/* ============================================================
   FINAL CTA — full orange band
   ============================================================ */
.final-cta { background: var(--accent); }
.final-cta__inner { padding-block: var(--pad-section); text-align: center; display: grid; justify-items: center; gap: 1.75rem; }
.final-cta h2 { font-size: clamp(2rem, 5.5vw, 3.4rem); max-width: 18ch; color: var(--accent-ink); }
.final-cta .btn--solid { background: var(--accent-ink); color: #fff; }
.final-cta .btn--solid:hover { background: #000; }

/* ============================================================
   PROMO POPUP
   ============================================================ */
.promo { position: fixed; inset: 0; z-index: 70; visibility: hidden; }
.promo.is-open { visibility: visible; }
.promo__scrim { position: absolute; inset: 0; background: rgba(0,0,0,0.65); opacity: 0; transition: opacity 220ms ease; }
.promo.is-open .promo__scrim { opacity: 1; }
.promo__card {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -46%) scale(0.96);
  width: min(440px, 90vw); background: var(--surface-2); border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: 18px; padding: 2.25rem; text-align: center;
  opacity: 0; transition: opacity 240ms ease, transform 240ms ease;
}
.promo.is-open .promo__card { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.promo__close { position: absolute; top: 0.85rem; right: 0.85rem; background: none; border: none; color: var(--muted); font-size: 1.3rem; cursor: pointer; }
.promo__eyebrow { font-family: var(--display); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin: 0 0 0.75rem; }
.promo__heading { font-size: 2rem; margin: 0 0 0.85rem; }
.promo__body { color: var(--muted); margin: 0 0 1.25rem; }
.promo__code { font-family: var(--display); font-weight: 500; letter-spacing: 0.05em; font-size: 0.95rem; color: var(--text); margin: 0 0 1.5rem; text-transform: uppercase; }
.promo__code strong { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); background: var(--surface); }
.site-footer__inner { display: grid; gap: 2.5rem; padding-block: 3.5rem; }
.site-footer__brand p { color: var(--muted); margin: 0.75rem 0 1.25rem; max-width: 30ch; }
.site-footer__nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
.site-footer__nav a { font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); font-size: 0.9rem; }
.site-footer__nav a:hover { color: var(--accent); }
/* flex-start (not center) so the pin stays on line 1 when the address wraps. */
.site-footer__contact p { color: var(--muted); font-size: 0.92rem; margin: 0 0 0.55rem; display: flex; align-items: flex-start; gap: 0.6rem; }
.site-footer__contact i { color: var(--accent); line-height: 1.5; }
/* A postal code must never break across lines. */
.nowrap { white-space: nowrap; }
.socials { display: flex; gap: 0.75rem; margin-top: 1rem; font-size: 1.35rem; }
.socials a { color: var(--muted); }
.socials a:hover { color: var(--accent); }
.site-footer__legal { padding-block: 1.5rem; border-top: 1px solid var(--line); font-size: 0.82rem; color: var(--faint); }
@media (min-width: 780px) { .site-footer__inner { grid-template-columns: 1.4fr 1fr 1.2fr; } }

/* ============================================================
   PAGE / POST / PROSE
   ============================================================ */
.page__head, .post__head { padding-block: clamp(3rem, 7vw, 5rem) 2rem; }
.page__title, .post__title { font-size: clamp(2.4rem, 6vw, 4rem); max-width: 20ch; }
.page__lede { color: var(--muted); font-size: 1.2rem; margin-top: 1.25rem; max-width: 55ch; }
.post__back { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem; color: var(--muted); display: inline-flex; align-items: center; gap: 0.4rem; margin-bottom: 1.5rem; }
.post__back:hover { color: var(--accent); }
.post__meta { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem; color: var(--faint); margin-top: 1rem; display: flex; gap: 1rem; align-items: center; }
.tag { background: var(--surface-2); border: 1px solid var(--line); border-radius: 3px; padding: 0.15rem 0.6rem; color: var(--muted); }
.prose { padding-bottom: var(--pad-section); max-width: 68ch; }
.prose h2 { font-size: 1.9rem; margin: 2.5rem 0 1rem; }
.prose h3 { font-size: 1.4rem; margin: 2rem 0 0.75rem; }
.prose p, .prose li { color: #e4e4e4; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose ul { list-style: disc; padding-left: 1.25rem; margin: 1rem 0; display: grid; gap: 0.4rem; }
.prose img { border-radius: var(--radius); margin: 1.5rem 0; }
/* Tables in posts. Wrapped in its own scroller so a wide table never makes the
   page scroll sideways on a phone. */
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.95rem; display: block; overflow-x: auto; }
.prose thead th { text-align: left; font-family: var(--display); font-weight: 600; color: var(--text); background: var(--surface-2); white-space: nowrap; }
.prose th, .prose td { border: 1px solid var(--line); padding: 0.6rem 0.85rem; }
.prose tbody tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

/* Standalone call-to-action row inside prose (e.g. the gift-card buy button). */
.cta-row { margin: 1.75rem 0; }

/* Buttons inside prose. `.prose a` (0,1,1) outranks `.btn--solid` (0,1,0), so
   without these a solid button renders orange-on-orange and the label
   disappears. Scoped as `.prose a.btn--*` (0,2,1) to win it back. */
.prose a.btn { text-decoration: none; }
.prose a.btn--solid { color: var(--accent-ink); }
.prose a.btn--ghost { color: var(--text); }
.prose a.btn--ghost:hover { color: var(--accent); }

/* Contact form (Netlify Forms). */
.cform { display: grid; gap: 1rem; margin: 1.5rem 0 0; max-width: 34rem; }
.cform__row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.cform__field { display: grid; gap: 0.4rem; }
.cform__field > span { font-family: var(--display); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.cform__field > span em { font-style: normal; text-transform: none; letter-spacing: 0; color: var(--faint); }
.cform input, .cform select, .cform textarea {
  font-family: var(--body); font-size: 1rem; color: var(--text);
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px;
  padding: 0.75rem 0.9rem; width: 100%; transition: border-color 0.15s ease;
}
.cform textarea { resize: vertical; min-height: 8rem; }
.cform input:focus, .cform select:focus, .cform textarea:focus { outline: none; border-color: var(--accent); }
.cform button { justify-self: start; cursor: pointer; border: 0; }
.cform__note { font-size: 0.88rem; color: var(--faint); margin: 0; }
.cform__note a { color: var(--accent); }
/* Honeypot: hidden from people, still filled in by bots. */
.cform__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 600px) { .cform__row { grid-template-columns: 1fr; } }

/* Google Maps embed. Left visually unmodified on purpose — recolouring the
   tiles to match the dark theme hurts legibility and alters Maps content. */
.map-embed { margin: 1.5rem 0 1.25rem; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface-2); }
.map-embed iframe { display: block; width: 100%; height: clamp(280px, 45vh, 420px); border: 0; }
.map-embed__actions { margin: 0; }
.map-embed__actions .btn { text-decoration: none; }
.post__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 2rem; border-top: 1px solid var(--line); }
.share { display: flex; align-items: center; gap: 0.85rem; font-size: 1.3rem; color: var(--muted); }
.share span { font-family: var(--display); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }
.share a:hover { color: var(--accent); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 620ms ease, transform 620ms ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:active { transform: none; }
}
