/* ==========================================================================
   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; }
/* Who owns this. Sits above the copyright row and takes over the divider,
   so the two lines read as one block rather than two rules stacked. */
.footer__jv {
  /* override the global p measure, or the divider stops halfway across */
  max-width: none;
  margin: var(--s8) 0 0;
  padding-top: var(--s4);
  border-top: 1px solid rgba(207, 226, 240, .24);
  font-size: 17px;
  line-height: 28px;
  color: rgba(207, 226, 240, .88);
}
.footer__jv a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.footer__jv a:hover { color: #fff; }
.footer__jv + .footer__bottom { margin-top: var(--s3); padding-top: 0; border-top: 0; }

.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; }
}


/* ---------- founding rate ---------- */
/* The launch offer. Sits UNDER each price so the real number anchors first —
   a discount only reads as value when the thing it discounts is visible.
   NOTE: this used to follow .tier__price directly and carried a negative top
   margin to close that gap. It now follows .tier__alt, which has its own
   negative top margin — two of them stacked made the lines overlap. Positive
   margin here, and don't reintroduce the negative one. */
.tier__founding {
  margin: var(--s2) 0 var(--s3);
  font-size: 17px;
  line-height: 1.5;
  color: var(--green-dp);
}
.tier__founding strong { font-size: 19px; }

.founding {
  margin-top: var(--s8);
  padding: var(--s4);
  border: 2px solid var(--ocean-deep);
  border-radius: 12px;
  background: var(--paper);
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
}
.founding h3 { margin-top: 0; color: var(--ocean-deep); }
.founding p { font-size: 18px; line-height: 1.556; }
.founding p:last-child { margin-bottom: 0; }

.house__note {
  margin: var(--s1) 0 var(--s2);
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-soft);
}

.tier__alt {
  margin: calc(var(--s2) * -1) 0 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-soft);
}

/* =========================================================================
   PHOTOGRAPHY — Anna's Traverse City archive, 2021–2023 (added 2026-08-10)
   Three components: a full-bleed band, a captioned single shot, and a row.
   All spacing on the 8pt scale; captions are the only sub-18px type here
   and they are captions, not body copy.
   ========================================================================= */

/* --- full-bleed photographic band ------------------------------------- */
.photoband {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.photoband img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}
@media (max-width: 700px) {
  .photoband img { aspect-ratio: 4 / 3; }
}
.photoband figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--s8) var(--s5) var(--s4);
  background: linear-gradient(to top, rgba(11,32,48,.82), rgba(11,32,48,0));
  color: #fff;
  font-size: 17px;
  line-height: 1.5;
  text-align: center;
}
.photoband figcaption span {
  display: block;
  max-width: 60ch;
  margin: 0 auto;
}

/* --- a single captioned shot ------------------------------------------ */
.shot { margin: 0; }
.shot > img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.shot--tall > img { aspect-ratio: 4 / 5; }
.shot figcaption {
  margin-top: var(--s2);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-soft);
  font-style: italic;
}
.band--deep .shot figcaption { color: var(--sky); opacity: .85; }

/* --- a row of shots ---------------------------------------------------- */
.shots {
  display: grid;
  gap: var(--s4);
  grid-template-columns: 1fr;
  margin-top: var(--s8);
}
@media (min-width: 760px)  { .shots { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .shots--3 { grid-template-columns: repeat(3, 1fr); } }

/* --- photo credit line ------------------------------------------------- */
.credit {
  margin-top: var(--s5);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-soft);
  text-align: center;
}
.band--deep .credit { color: var(--sky); opacity: .8; }

/* Floor plans: contain rather than crop, and hold one shared box so the three
   levels line up as a row instead of stepping. */
.shot > img.plan {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
  padding: var(--s2);
}

/* =========================================================================
   CONSENT PANEL (added 2026-08-10)
   Carries both regimes: GDPR wants per-purpose switches and a refuse option
   as easy as the accept one; CCPA wants a labelled way to stop the Meta
   Pixel. One component does both. Body type holds the 18px floor; the
   checkbox rows are the 4px half-step inside a component.
   ========================================================================= */
.consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: var(--ocean-deep);
  color: var(--sky);
  border-top: 4px solid var(--celery);
  box-shadow: 0 -8px 32px rgba(11, 32, 48, .28);
  max-height: 88vh;
  overflow-y: auto;
}
.consent__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--s5);
  display: grid;
  gap: var(--s5);
  align-items: start;
}
@media (min-width: 1000px) {
  .consent__inner { grid-template-columns: 1fr auto; }
}
.consent__text p {
  margin: 0 0 var(--s2);
  font-size: 18px;
  line-height: 1.556;
  color: var(--sky);
  max-width: 80ch;
}
.consent__text strong { color: #fff; }
.consent__text a { color: var(--celery); }

.consent__gpc {
  border-left: 3px solid var(--celery);
  padding-left: var(--s2);
  font-style: italic;
}

.consent__opts {
  display: grid;
  gap: var(--s2);
  margin-top: var(--s4);
}
@media (min-width: 760px) {
  .consent__opts { grid-template-columns: 1fr 1fr; gap: var(--s4); }
}
.consent__opt {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: var(--s2);
  align-items: start;
  padding: var(--s3);
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 17px;
  line-height: 1.5;
}
.consent__opt:hover { border-color: rgba(255, 255, 255, .45); }
.consent__opt input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--celery); }
.consent__opt strong { color: #fff; }
.consent__opt--off { opacity: .55; cursor: not-allowed; }

.consent__actions {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
}
@media (min-width: 1000px) {
  .consent__actions { flex-direction: column; min-width: 208px; }
  .consent__actions .btn { width: 100%; }
}
.consent__actions .btn { min-height: 48px; }
/* The ghost button sits on navy here, so it needs the light treatment — the
   default ghost is drawn for a cream ground and would vanish. */
.consent__actions .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
  background: transparent;
}
.consent__actions .btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

/* =========================================================================
   REAL LISTINGS (2026-08-10)
   The .listing block above was built for the empty template — a dashed box
   that says "Your photograph". These are the modifiers for a listing that
   has an actual host, an actual date and an actual booking link.
   ========================================================================= */
.listing + .listing { margin-top: var(--s5); }

.listing__photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.listing__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing__tag {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ocean-deep);
  background: var(--celery);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: var(--s2);
}
.listing__tag--ours { background: var(--sky-soft); }

.listing h3 { margin: 0 0 var(--s1); }
.listing__host {
  font-size: 17px;
  color: var(--text-soft);
  margin: 0 0 var(--s3);
}
.listing__host strong { color: var(--ocean-deep); }
.listing__body { font-size: 18px; line-height: 1.556; margin: 0 0 var(--s3); }
.listing__facts {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s4);
  display: grid;
  gap: var(--s1);
  font-size: 17px;
  line-height: 1.5;
}
.listing__facts strong { color: var(--ocean-deep); }
.listing__note { font-size: 16px; color: var(--text-soft); margin: var(--s3) 0 0; }

/* The founding-price window. The rate is permanent; the chance to get it is
   not — and that distinction has to survive being read on its own in a tier
   card, away from the explainer block below. */
.tier__window {
  display: block;
  margin-top: var(--s1);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-soft);
}

/* =========================================================================
   THE DATA-USE BAR (2026-08-10)
   The first thing a visitor meets: one discreet strip, one sentence, one
   Accept, and an X. The full two-switch panel (.consent, above) is behind
   "Manage" and both footer links.

   Deliberately quieter than .consent — this is a notice, not a decision
   screen. Body still holds the 18px floor; the X is a 44px touch target
   even though its visible glyph is smaller.
   ========================================================================= */
.cbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9998;
  background: var(--ocean-deep);
  color: var(--sky);
  border-top: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 -4px 24px rgba(11, 32, 48, .22);
}
.cbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--s3) var(--s5);
  display: grid;
  gap: var(--s3);
  align-items: center;
  grid-template-columns: 1fr auto;
}
@media (min-width: 900px) {
  .cbar__inner { grid-template-columns: 1fr auto auto; gap: var(--s5); }
}
.cbar__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.556;
  color: var(--sky);
  max-width: 92ch;
  grid-column: 1 / -1;
}
@media (min-width: 900px) {
  .cbar__text { grid-column: auto; }
}
.cbar__text strong { color: #fff; }
.cbar__text a { color: var(--celery); }

.cbar__actions { display: flex; align-items: center; gap: var(--s3); }
.cbar__accept { min-height: 44px; padding-inline: var(--s4); }
.cbar__link {
  font: inherit;
  font-size: 17px;
  color: var(--celery);
  background: none;
  border: 0;
  padding: 0;
  min-height: 44px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.cbar__link:hover { color: #fff; }

.cbar__x {
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
  color: var(--sky);
  background: none;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  justify-self: end;
}
.cbar__x:hover { color: #fff; background: rgba(255, 255, 255, .1); }

/* ==========================================================================
   BREADCRUMBS
   Sits directly under the header on every page but the home page. Small,
   quiet, and a real <nav> so screen readers announce it as one.
   ========================================================================== */
.crumbs {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s1);
  margin: 0;
  padding: var(--s2) 0;
  list-style: none;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-soft);
}
.crumbs a {
  color: var(--ocean-dk);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.crumbs a:hover { border-bottom-color: var(--ocean); }
.crumbs li + li::before {
  content: "›";
  margin-right: var(--s1);
  color: var(--tan);
}
.crumbs [aria-current="page"] { color: var(--text); }

/* ==========================================================================
   STICKY MOBILE CTA
   Phone only. The nav scrolls away on these long pages, so the one action
   that matters rides along the bottom. Sits above the consent bar's z-index
   only after the bar is dismissed — see js/sticky-cta.js.
   ========================================================================== */
.stickycta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  align-items: center;
  gap: var(--s2);
  padding: var(--s2);
  background: var(--ocean-deep);
  border-top: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 -8px 32px rgba(34, 63, 85, .28);
  padding-bottom: calc(var(--s2) + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform .28s ease;
}
.stickycta.is-in { transform: translateY(0); }
.stickycta__text {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: var(--sky);
  font-size: 15px;
  line-height: 1.4;
}
.stickycta__text strong {
  color: #fff;
  display: block;
  font-size: 17px;
  line-height: 1.4;
}
/* One line each, no matter how narrow the phone — the bar must never grow
   into a second block of page. */
.stickycta__text strong,
.stickycta__text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.stickycta .btn {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 12px var(--s3);
}
@media (max-width: 720px) {
  .stickycta { display: flex; }
  body.has-stickycta .site-footer { padding-bottom: 96px; }
}

/* ==========================================================================
   FAQ — <details> accordion. No JS; it works with the tab key and it prints.
   ========================================================================== */
.faq { max-width: 76ch; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  padding: var(--s3) 0;
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.4;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  min-height: 44px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  margin-left: auto;
  flex: 0 0 auto;
  font-family: var(--body);
  font-size: 26px;
  line-height: 1;
  color: var(--ocean);
  transition: transform .2s ease;
}
.faq__item[open] summary::after { content: "–"; }
.faq__item summary:hover { color: var(--ocean); }
.faq__item summary:focus-visible { outline: 2px solid var(--ocean); outline-offset: 4px; }
.faq__item > div {
  padding: 0 0 var(--s3);
}
.faq__item > div > p {
  margin: 0 0 var(--s2);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  max-width: 68ch;
}
.faq__item > div > p:last-child { margin-bottom: 0; }
