/* ==========================================================================
   The Hosting Guild — site.css
   Brand source of truth: ~/Claude/retreat-lab/brand/index.html
   Marcellus (display) + Public Sans (body). Fraunces is RETIRED.
   Palette: 15 MJ tokens + Ocean Deep. Lead with Ocean. No yellow/gold/purple.
   Spacing: 8pt system. 4px is the half-step, inside components only.
   Body copy: 18px floor, line-height >= 1.5.
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
  /* palette */
  --ocean:        #2E6B8E;
  --ocean-dk:     #234F69;
  --ocean-deep:   #223F55;
  --green:        #7FA05A;
  --green-dp:     #5E7D40;
  --sky:          #CFE2F0;
  --sky-soft:     #E7F1F8;
  --celery:       #CBDCA8;
  --tan:          #C49A66;
  --cream:        #F7F2E7;
  --paper:        #FCF9F1;
  --line:         #E4DAC6;
  --ink:          #26303A;
  --text:         #33312E;
  --text-soft:    #5B6B75;

  /* type */
  --display: "Marcellus", Georgia, "Times New Roman", serif;
  --body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* 8pt scale */
  --s1: 8px;   --s2: 16px;  --s3: 24px;  --s4: 32px;
  --s5: 40px;  --s6: 48px;  --s7: 56px;  --s8: 64px;
  --s10: 80px; --s12: 96px; --s16: 128px;

  --measure: 68ch;
  --shell: 1200px;
  --radius: 16px;

  --shadow-sm: 0 2px 8px rgba(34, 63, 85, .08);
  --shadow-md: 0 8px 32px rgba(34, 63, 85, .12);
  --shadow-lg: 0 24px 64px rgba(34, 63, 85, .18);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.556;          /* 28px — on the 4px grid */
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--ocean); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ocean-dk); }
button { font: inherit; }

/* ---------- type scale (sizes off-grid by design; line-heights on it) ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--ocean-deep);
  margin: 0 0 var(--s3);
  letter-spacing: -.01em;
}
h1 { font-size: clamp(44px, 6.2vw, 76px); line-height: 1.1; letter-spacing: -.02em; }
h2 { font-size: clamp(32px, 4vw, 48px);   line-height: 1.16; }
h3 { font-size: clamp(24px, 2.6vw, 32px); line-height: 1.25; }
h4 { font-size: 22px; line-height: 1.45; }
p  { margin: 0 0 var(--s3); max-width: var(--measure); }
.lede { font-size: clamp(20px, 2.1vw, 24px); line-height: 1.5; color: var(--text-soft); }

.eyebrow {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-dp);
  margin: 0 0 var(--s2);
  display: block;
}
.eyebrow--light { color: var(--celery); }

/* ---------- layout ---------- */
.shell { width: min(100% - 48px, var(--shell)); margin-inline: auto; }
.shell--narrow { width: min(100% - 48px, 880px); margin-inline: auto; }
section { position: relative; }
.band { padding-block: var(--s16); }
.band--tight { padding-block: var(--s10); }
.band--cream { background: var(--cream); --notch: var(--cream); }
.band--sky   { background: var(--sky-soft); --notch: var(--sky-soft); }
.band--deep  { background: var(--ocean-deep); color: var(--sky); }
.band--deep h1, .band--deep h2, .band--deep h3, .band--deep h4 { color: #fff; }
.band--deep a:not(.btn) { color: var(--celery); }   /* must not repaint button labels */
.band--deep .lede { color: var(--sky); }

.grid { display: grid; gap: var(--s6); }
@media (min-width: 900px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--split { grid-template-columns: 1.1fr .9fr; align-items: center; }
  /* image-first variant — keeps the image column the same width as .grid--split */
  .grid--split-rev { grid-template-columns: .9fr 1.1fr; align-items: center; }
}

/* ---------- decorative watercolour ---------- */
.wash {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: .06;          /* solid mark, quiet — never a smudge */
}
.wash--tr { top: -80px; right: -120px; width: 480px; transform: rotate(8deg); }
/* the solid crowned mark as a quiet hero backdrop — clean edges, no watercolour mess */
.wash--mark {
  top: 50%;
  right: -72px;
  width: 460px;
  transform: translateY(-50%);
  opacity: .07;
}
@media (max-width: 899px) { .wash--mark { width: 320px; right: -96px; opacity: .05; } }
.wash--bl { bottom: -120px; left: -140px; width: 520px; transform: rotate(-12deg); }
.band--deep .wash { opacity: .1; }
.shell, .shell--narrow { position: relative; z-index: 1; }

/* the balloon — decorative, drifts gently */
.balloon {
  position: absolute;
  width: 168px;
  z-index: 0;
  pointer-events: none;
  opacity: .9;
  animation: drift 14s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-24px) rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .balloon { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s1);
  min-height: 56px;
  padding: var(--s2) var(--s4);
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.334;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--ocean); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--ocean-dk); color: #fff; box-shadow: var(--shadow-md); }
.btn--ghost { border-color: var(--ocean); color: var(--ocean); background: transparent; }
.btn--ghost:hover { background: var(--ocean); color: #fff; }
.btn--onDeep { background: var(--celery); color: var(--ocean-deep); }
.btn--onDeep:hover { background: #fff; color: var(--ocean-deep); }
.btn--ghostLight { border-color: var(--sky); color: var(--sky); background: transparent; }
.btn--ghostLight:hover { background: var(--sky); color: var(--ocean-deep); }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s5); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 249, 241, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  min-height: 80px;
  padding-block: var(--s2);
}
.site-header__logo img { height: 40px; width: auto; }
.nav { display: flex; align-items: center; gap: var(--s4); }
.nav a {
  font-size: 17px;
  font-weight: 600;
  color: var(--ocean-deep);
  text-decoration: none;
  padding-block: var(--s1);
  border-bottom: 2px solid transparent;
}
.nav a:not(.btn):hover,
.nav a:not(.btn)[aria-current="page"] { border-bottom-color: var(--green); color: var(--ocean); }
.nav .btn { min-height: 48px; padding: var(--s1) var(--s3); font-size: 16px; }
@media (max-width: 899px) {
  .nav { display: none; }
  .nav--mobile {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s2) var(--s3);
    padding: 0 0 var(--s2);
    border-top: 1px solid var(--line);
    padding-top: var(--s2);
  }
  .nav--mobile a {
    font-size: 17px;
    font-weight: 600;
    color: var(--ocean-deep);
    text-decoration: none;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .nav--mobile a[aria-current="page"] { color: var(--ocean); border-bottom: 2px solid var(--green); }
}
@media (min-width: 900px) { .nav--mobile { display: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--ocean-deep);
  color: var(--sky);
  padding-block: var(--s16) var(--s12);
  overflow: hidden;
}
.hero h1 { color: #fff; }
.hero .lede { color: var(--sky); }        /* never inherit the light-ground grey onto navy */
.hero p { color: var(--sky); }
.hero a:not(.btn) { color: var(--celery); }
.hero__grid { display: grid; gap: var(--s8); align-items: center; }
@media (min-width: 1000px) { .hero__grid { grid-template-columns: 1.05fr .95fr; } }
.hero__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--cream);
  transform: rotate(-1.5deg);
}
.hero__photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.hero__caption {
  font-size: 15px;
  line-height: 1.6;
  color: var(--sky);
  opacity: .82;
  margin: var(--s2) 0 0;
  text-align: center;
  font-style: italic;
}

/* ---------- cards ---------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s5);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: var(--s2); }
.card p:last-child { margin-bottom: 0; }
.card--deep { background: var(--ocean-dk); border-color: var(--ocean); color: var(--sky); }
.card--deep h3 { color: #fff; }

/* ---------- ticket stubs (room tiers) ---------- */
.tickets { display: grid; gap: var(--s3); }
@media (min-width: 760px)  { .tickets { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .tickets { grid-template-columns: repeat(4, 1fr); } }

.ticket {
  position: relative;
  background: var(--paper);
  border: 2px solid var(--ocean-deep);
  border-radius: 12px;
  padding: var(--s4) var(--s3) var(--s3);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ticket:hover { transform: translateY(-4px) rotate(-.6deg); box-shadow: var(--shadow-md); }

/* The tear-off stub. The perforation and notches used to be pinned to a fixed
   px offset from the ticket's bottom edge, which broke the moment the stub
   gained a payment plan and a Book button. They now hang off the stub itself,
   so the ticket keeps its shape whatever the stub grows to. */
.ticket__stub {
  position: relative;
  margin-top: auto;
  padding-top: var(--s3);
  border-top: 2px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.ticket__stub::before {
  content: "";
  position: absolute;
  left: calc(var(--s3) * -1 - 10px);
  right: calc(var(--s3) * -1 - 10px);
  top: -10px;
  height: 20px;
  background:
    radial-gradient(circle at left center,  var(--notch, var(--paper)) 9px, transparent 10px),
    radial-gradient(circle at right center, var(--notch, var(--paper)) 9px, transparent 10px);
  background-repeat: no-repeat;
  background-size: 20px 20px, 20px 20px;
  background-position: left center, right center;
  pointer-events: none;
}
.ticket__tier {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.334;
  color: var(--ocean-deep);
}
.ticket__price {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1.1;
  color: var(--ocean);
}
.ticket__meta { font-size: 17px; line-height: 1.5; color: var(--text-soft); margin: 0; }
.ticket__seats {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-dp);
}
/* The payment plan in full: what leaves the buyer's account today, and what
   follows. Never abbreviated — a surprise instalment is how trust dies. */
.ticket__plan {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-soft);
  min-height: 48px;
}
.ticket__plan strong { color: var(--ocean-deep); }
.ticket__buy { width: 100%; min-height: 48px; }
.ticket__buy[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

.ticket--soldout { opacity: .72; }
.ticket--soldout .ticket__seats { color: var(--text-soft); }

.rooms__error {
  margin: var(--s4) auto 0;
  max-width: 56ch;
  padding: var(--s2) var(--s3);
  border: 2px solid var(--ocean-deep);
  border-radius: 12px;
  background: var(--paper);
  font-size: 17px;
  line-height: 1.5;
  text-align: center;
}

/* ---------- seat map ---------- */
/* One house on sale. Centred rather than stretched — a single card spanning the
   full shell reads as a layout mistake. */
.seatmap { display: grid; gap: var(--s5); justify-content: center; }
@media (min-width: 800px) { .seatmap { grid-template-columns: minmax(0, 520px); } }
.house {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: var(--s4);
}
.house__name {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.45;
  color: var(--ocean-deep);
  margin: 0 0 var(--s3);
}
.seats { display: flex; flex-wrap: wrap; gap: var(--s2); margin: 0; padding: 0; list-style: none; }
.seat {
  width: 48px;
  height: 48px;
  min-height: 48px;
  border-radius: 50%;
  border: 2px solid var(--ocean);
  background: var(--sky-soft);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--ocean-deep);
  cursor: default;
  transition: transform .15s ease, background .15s ease;
}
.seat:hover { transform: scale(1.12); background: var(--celery); }
.seat--king  { background: var(--ocean); color: #fff; border-color: var(--ocean-deep); }
.seat--queen { background: var(--sky); }
.seat--twin  { background: var(--sky-soft); }
.seat--shared{ background: var(--paper); border-style: dashed; }
.seat-legend { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s4); padding: 0; list-style: none; font-size: 16px; }
.seat-legend li { display: flex; align-items: center; gap: var(--s1); }
.swatch { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--ocean); display: inline-block; }

/* ---------- the pipeline (three principals) ---------- */
.pipeline { display: grid; gap: var(--s6); position: relative; }
@media (min-width: 900px) { .pipeline { grid-template-columns: repeat(3, 1fr); } }
.person { text-align: center; }
.person__frame {
  width: 200px;
  height: 200px;
  margin: 0 auto var(--s3);
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-md);
  background: var(--sky-soft);
}
.person__frame img { width: 100%; height: 100%; object-fit: cover; }

/* every portrait renders at one shape, whatever the source file's ratio */
.portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 8px solid var(--cream);
  box-shadow: var(--shadow-md);
}
.portrait--l { transform: rotate(-1.5deg); }
.portrait--r { transform: rotate(1.5deg); }
.person__name { font-family: var(--display); font-size: 28px; line-height: 1.28; color: var(--ocean-deep); margin: 0 0 var(--s1); }
.person__role { font-size: 16px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green-dp); margin: 0 0 var(--s2); }
.person__line { font-size: 19px; line-height: 1.5; color: var(--text); margin: 0 auto; max-width: 34ch; }
.band--deep .person__name { color: #fff; }
.band--deep .person__line { color: var(--sky); }
.band--deep .person__role { color: var(--celery); }

/* dotted flight path between the three */
.pipeline__path { display: none; }
@media (min-width: 900px) {
  .pipeline__path {
    display: block;
    position: absolute;
    top: 96px;
    left: 16%;
    width: 68%;
    height: 64px;
    z-index: 0;
    pointer-events: none;
  }
}

/* ---------- deliverables (luggage tags) ---------- */
.tags { display: grid; gap: var(--s2); padding: 0; margin: 0; list-style: none; }
@media (min-width: 700px)  { .tags { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1050px) { .tags { grid-template-columns: repeat(3, 1fr); } }
.tag {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 6px solid var(--green);
  border-radius: 8px;
  padding: var(--s3);
  font-size: 18px;
  line-height: 1.556;
}
.tag--soft { border-left-color: var(--tan); }
.tag__check {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  color: var(--green-dp);
}
.tag--soft .tag__check { color: var(--tan); }

/* ---------- callout ---------- */
.callout {
  border-left: 6px solid var(--green);
  background: var(--paper);
  border-radius: 0 12px 12px 0;
  padding: var(--s4) var(--s5);
  margin: var(--s6) 0 0;
  box-shadow: var(--shadow-sm);
}
.callout h3 { font-size: 24px; line-height: 1.334; margin-bottom: var(--s2); }
.callout p:last-child { margin-bottom: 0; }
.band--deep .callout { background: var(--ocean-dk); border-left-color: var(--celery); }
.band--deep .callout h3 { color: #fff; }
.band--deep .callout p { color: var(--sky); }

/* ---------- itinerary ---------- */
.days { display: grid; gap: var(--s3); padding: 0; margin: 0; list-style: none; }
.day {
  display: grid;
  gap: var(--s2);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s4);
}
@media (min-width: 800px) { .day { grid-template-columns: 200px 1fr; gap: var(--s5); align-items: start; } }
.day__label {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.45;
  color: var(--ocean);
  margin: 0;
}
.day__date { display: block; font-family: var(--body); font-size: 15px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); margin-top: var(--s1); }
.day__body { margin: 0; }

/* ---------- tier comparison (guild) ---------- */
.tiers { display: grid; gap: var(--s4); }
@media (min-width: 860px) { .tiers { grid-template-columns: 1fr 1fr; align-items: start; } }
.tier {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: var(--s5);
  position: relative;
}
.tier--featured { border-color: var(--ocean); box-shadow: var(--shadow-md); }
.tier__badge {
  position: absolute;
  top: -16px;
  left: var(--s5);
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: var(--s1) var(--s2);
  border-radius: 999px;
}
.tier__price { font-family: var(--display); font-size: 56px; line-height: 1.15; color: var(--ocean-deep); margin: 0 0 var(--s1); }
.tier__price span { font-family: var(--body); font-size: 18px; font-weight: 600; color: var(--text-soft); }
.tier__list { list-style: none; padding: 0; margin: var(--s3) 0 0; display: grid; gap: var(--s2); }
.tier__list li { display: flex; gap: var(--s2); align-items: flex-start; font-size: 18px; line-height: 1.556; }
.tier__list svg { flex: 0 0 auto; width: 24px; height: 24px; color: var(--green-dp); margin-top: 2px; }

/* ---------- pull quote ---------- */
.pull {
  border-left: 6px solid var(--green);
  padding: var(--s2) 0 var(--s2) var(--s5);
  margin: var(--s8) 0;
  max-width: 60ch;
}
.pull p {
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.32;
  color: var(--ocean-deep);
  margin: 0;
}
.band--deep .pull { border-left-color: var(--celery); }
.band--deep .pull p { color: #fff; }
.pull cite { display: block; margin-top: var(--s3); font-style: normal; font-size: 17px; color: var(--text-soft); }
.band--deep .pull cite { color: var(--sky); }

/* ---------- honest empty state ---------- */
.empty {
  text-align: center;
  border: 3px dashed var(--line);
  border-radius: var(--radius);
  padding: var(--s10) var(--s5);
  background: var(--paper);
  position: relative;
}
.empty img { width: 160px; margin: 0 auto var(--s4); opacity: .9; }
.empty h3 { margin-bottom: var(--s2); }
.empty p { margin-inline: auto; }

/* ---------- listing template (retreats) ---------- */
.filters { display: flex; flex-wrap: wrap; gap: var(--s2); margin-bottom: var(--s6); }
.filter {
  min-height: 48px;
  padding: var(--s1) var(--s3);
  border-radius: 999px;
  border: 2px solid var(--line);
  background: var(--paper);
  color: var(--text-soft);
  font-size: 16px;
  font-weight: 600;
  cursor: not-allowed;
}
.filter[aria-pressed="true"] { border-color: var(--ocean); color: var(--ocean); }

.listing {
  display: grid;
  gap: var(--s4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: var(--s4);
}
@media (min-width: 800px) { .listing { grid-template-columns: 280px 1fr; } }
.listing__media {
  background: var(--sky-soft);
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  color: var(--text-soft);
  font-size: 15px;
  text-align: center;
  padding: var(--s3);
  border: 2px dashed var(--line);
}
.listing__meta { display: flex; flex-wrap: wrap; gap: var(--s3); font-size: 16px; color: var(--text-soft); margin: 0 0 var(--s2); }
.skeleton { background: var(--line); border-radius: 6px; color: transparent; display: inline-block; }

/* ---------- form ---------- */
.form { display: grid; gap: var(--s4); max-width: 720px; }
.field { display: grid; gap: var(--s1); }
.field label { font-size: 17px; font-weight: 700; color: var(--ocean-deep); }
.field .hint { font-size: 16px; color: var(--text-soft); margin: 0; }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 18px;
  line-height: 1.556;
  min-height: 56px;
  padding: var(--s2);
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--text);
  width: 100%;
}
.field textarea { min-height: 144px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid var(--sky);
  outline-offset: 1px;
  border-color: var(--ocean);
}
.form__note { font-size: 16px; color: var(--text-soft); }
.honeypot { position: absolute; left: -9999px; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--ocean-deep);
  color: var(--sky);
  padding-block: var(--s10) var(--s6);
  position: relative;
  overflow: hidden;
}
.site-footer h4 { color: #fff; font-size: 20px; margin-bottom: var(--s2); }
.site-footer a { color: var(--sky); text-decoration: none; }
.site-footer a:hover { color: var(--celery); text-decoration: underline; }
.footer__grid { display: grid; gap: var(--s6); }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
/* keep the last column clear of the balloon */
@media (min-width: 1100px) { .footer__grid > div:last-child { padding-right: 160px; } }
.footer__logo img { height: 56px; width: auto; margin-bottom: var(--s3); }
/* the balloon drifts in the whitespace under the short link columns */
.site-footer .balloon { width: 128px; top: auto; right: 5%; bottom: 112px; opacity: .8; }
@media (max-width: 1099px) { .site-footer .balloon { display: none; } }
.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s1); font-size: 17px; }
.footer__bottom {
  margin-top: var(--s8);
  padding-top: var(--s4);
  border-top: 1px solid rgba(207, 226, 240, .24);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  justify-content: space-between;
  font-size: 15px;
  color: rgba(207, 226, 240, .8);
}

/* ---------- utility ---------- */
.stat { font-family: var(--display); font-size: 56px; line-height: 1.15; color: var(--ocean); margin: 0; }
.stat__label { font-size: 16px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); margin: 0; }
.band--deep .stat { color: var(--celery); }
.band--deep .stat__label { color: var(--sky); }
.center { text-align: center; }
.center p { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.seal-rule { display: block; width: 64px; height: 64px; margin: 0 auto var(--s4); }
.skip {
  position: absolute; left: -9999px;
  background: var(--ocean); color: #fff; padding: var(--s2) var(--s3); z-index: 100; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; top: 0; }

/* scroll reveal — only ever hidden when JS is running to bring it back */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .card:hover, .btn:hover, .ticket:hover { transform: none; }
}
