/* ==========================================================================
   Champions Weekend — Eureka, Montana — September 24–27, 2026
   Tokens and rationale: docs/design.md
   ========================================================================== */

/* --- Tokens -------------------------------------------------------------- */
:root {
  --ink: #0B0B0B;
  --ink-warm: #141210;
  --ink-raised: #1A1714;
  --bone: #F2EDE5;
  --bone-muted: #9A9188;
  --brass: #B4884F;
  --brass-dim: #6E5532;
  --line: rgba(242, 237, 229, 0.12);
  --line-strong: rgba(242, 237, 229, 0.24);
  --on-bone: #0B0B0B;
  --danger: #D9705C;
  --success: #7E9B6E;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --r-sm: 2px;
  --r-md: 3px;

  --max: 1160px;
  --prose: 620px;
  --gutter: 32px;
  --section-y: 120px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fast: 180ms;
  --slow: 700ms;
}

@media (max-width: 768px) {
  :root {
    --gutter: 20px;
    --section-y: 72px;
  }
}

/* --- Reset --------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1, h2, h3, p, figure, blockquote { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

/* --- Type ---------------------------------------------------------------- */
.display,
.h1,
.h2,
.statement {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 96;
  text-wrap: balance;
}

.display {
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.h1 {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.statement {
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  line-height: 1.28;
  letter-spacing: -0.015em;
}

.eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0;
}

.lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--bone-muted);
  max-width: var(--prose);
}

.small {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--bone-muted);
}

/* --- Layout -------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
  position: relative;
}

.section--warm { background: var(--ink-warm); }

.section-head { margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 20px; }

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--fast) var(--ease),
              color var(--fast) var(--ease),
              border-color var(--fast) var(--ease),
              opacity var(--fast) var(--ease);
}

.btn--primary {
  background: var(--bone);
  color: var(--on-bone);
  border-color: var(--bone);
}

.btn--primary:hover:not(:disabled) { background: #fff; border-color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: var(--line-strong);
}

.btn--ghost:hover:not(:disabled) { border-color: var(--bone); }

.btn:disabled { opacity: 0.45; cursor: not-allowed; }

.btn--block { width: 100%; }

/* --- Header -------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  height: 76px;
  transition: background var(--slow) var(--ease),
              border-color var(--slow) var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(11, 11, 11, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
}

.brand span { color: var(--bone-muted); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-meta {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-muted);
}

.site-header .btn {
  padding: 12px 24px;
  font-size: 0.6875rem;
}

@media (max-width: 768px) {
  .site-header { height: 60px; }
  .header-meta { display: none; }
}

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(56px, 9vh, 104px);
  padding-top: 100px;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Vertical for the type at the bottom, horizontal so the headline holds
     against the bright fairway on the right, plus a top band for the header. */
  background:
    linear-gradient(to top, rgba(11,11,11,0.94) 0%, rgba(11,11,11,0.70) 32%, rgba(11,11,11,0.22) 64%, rgba(11,11,11,0.10) 100%),
    linear-gradient(to right, rgba(11,11,11,0.72) 0%, rgba(11,11,11,0.34) 42%, rgba(11,11,11,0) 78%),
    linear-gradient(to bottom, rgba(11,11,11,0.66) 0%, rgba(11,11,11,0.22) 9%, rgba(11,11,11,0) 16%);
}

.hero__inner { max-width: 900px; }

.hero .eyebrow { margin-bottom: 26px; }

.hero .display { margin-bottom: 28px; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 0.9375rem;
  color: var(--bone);
  margin-bottom: 40px;
}

.hero__meta .dot { color: var(--brass); }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 84px;
    padding-bottom: 48px;
  }
  .hero .eyebrow { margin-bottom: 20px; }
  .hero .display { margin-bottom: 22px; }
  .hero__meta { margin-bottom: 30px; font-size: 0.875rem; }
  .hero__cta { gap: 14px; }
  .hero__cta .btn { width: 100%; }
}

.hide-sm { display: inline; }

@media (max-width: 768px) {
  .hide-sm { display: none; }
}

/* Live spot counter */
.spots {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(11, 11, 11, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.spots__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
  flex: none;
}

.spots.is-low .spots__dot { background: var(--danger); }
.spots.is-out .spots__dot { background: var(--bone-muted); }

.spots[data-state="loading"] { color: var(--bone-muted); }

/* --- Statement ----------------------------------------------------------- */
.statement-section { text-align: center; }
.statement-section .statement { max-width: 21ch; margin-inline: auto; }

@media (min-width: 769px) {
  .statement-section { padding-block: 160px; }
  .statement-section .statement { max-width: 24ch; }
}

/* --- Included grid ------------------------------------------------------- */
.included {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.included__item {
  padding: 40px 32px 44px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.included__item::before {
  content: attr(data-n);
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--brass-dim);
  margin-bottom: 18px;
}

.included__item h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 24;
}

.included__note {
  margin-top: 44px;
  font-size: 1.0625rem;
  color: var(--bone-muted);
}

.included__note strong {
  color: var(--bone);
  font-weight: 400;
}

@media (max-width: 900px) {
  .included { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .included { grid-template-columns: 1fr; }
  .included__item { padding: 28px 0 30px; }
}

/* --- Full-bleed feature -------------------------------------------------- */
.feature {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  padding-block: var(--section-y);
  isolation: isolate;
}

.feature__media { position: absolute; inset: 0; z-index: -2; }

.feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(11,11,11,0.92) 0%, rgba(11,11,11,0.55) 45%, rgba(11,11,11,0.28) 100%);
}

.feature__inner { max-width: 640px; }
.feature .eyebrow { margin-bottom: 22px; }
.feature .h2 { margin-bottom: 22px; }

.feature--center { align-items: center; justify-content: center; text-align: center; }
.feature--center .feature__inner { max-width: 760px; }
.feature--center .feature__scrim {
  background: linear-gradient(to top, rgba(11,11,11,0.90) 0%, rgba(11,11,11,0.74) 50%, rgba(11,11,11,0.86) 100%);
}

/* Course stat row */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.stats__n {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 8px;
}

.stats__l {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-muted);
}

/* --- The place (two-up) -------------------------------------------------- */
.place-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 4px;
  margin-top: 56px;
}

.place-grid figure { position: relative; overflow: hidden; }

.place-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.place-grid figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 22px 24px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(to top, rgba(11,11,11,0.86), transparent);
}

@media (max-width: 900px) {
  .place-grid { grid-template-columns: 1fr 1fr; }
  .place-grid figure:first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .place-grid { grid-template-columns: 1fr; }
  .place-grid figure:first-child { grid-column: auto; }
}

/* --- Schedule ------------------------------------------------------------ */
.days {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.day {
  background: var(--ink);
  padding: 32px 26px 36px;
}

.section--warm .day { background: var(--ink-warm); }

.day__n {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 6px;
}

.day__date {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}

.day li {
  font-size: 0.875rem;
  color: var(--bone-muted);
  padding-block: 7px;
}

.day li + li { border-top: 1px solid var(--line); }

/* Stay 2×2 all the way down — the whole weekend stays visible at a glance
   instead of becoming four tall cards you have to scroll through. */
@media (max-width: 900px) {
  .days { grid-template-columns: repeat(2, 1fr); }
  .day { padding: 22px 16px 26px; }
  .day__date { font-size: 1.25rem; margin-bottom: 16px; }
  .day li { font-size: 0.8125rem; padding-block: 6px; }
}

@media (max-width: 360px) {
  .days { grid-template-columns: 1fr; }
}

/* --- Reserve ------------------------------------------------------------- */
.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

@media (max-width: 900px) {
  .reserve-grid { grid-template-columns: 1fr; }
}

.reserve-aside .h2 { margin-bottom: 24px; }
.reserve-aside .lead { margin-bottom: 32px; }

.fine {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.fine li {
  font-size: 0.8125rem;
  color: var(--bone-muted);
  padding-block: 6px;
  padding-left: 18px;
  position: relative;
}

.fine li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 1px;
  background: var(--brass);
}

/* Form panel */
.panel {
  background: var(--ink-raised);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(24px, 3.5vw, 40px);
}

.rooms {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.room {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  cursor: pointer;
  text-align: left;
  transition: border-color var(--fast) var(--ease),
              background var(--fast) var(--ease);
}

.room:hover:not(:disabled) { border-color: var(--bone-muted); }

.room.is-active {
  border-color: var(--brass);
  background: rgba(180, 136, 79, 0.07);
}

.room:disabled { opacity: 0.4; cursor: not-allowed; }

.room__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 4px;
}

.room__sub {
  font-size: 0.75rem;
  color: var(--bone-muted);
  display: block;
}

.room__price {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.field { margin-bottom: 16px; }

.field label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-muted);
  margin-bottom: 8px;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--bone);
  /* Must stay >= 16px. iOS Safari zooms the whole page in when you focus an
     input smaller than that, and it never zooms back out. */
  font-size: 16px;
  line-height: 1.3;
  transition: border-color var(--fast) var(--ease);
}

.field input::placeholder { color: #6A635C; }

.field input:focus {
  outline: none;
  border-color: var(--brass);
}

.field input:read-only {
  opacity: 0.62;
  cursor: default;
}

.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 420px) {
  .field--row { grid-template-columns: 1fr; }
}

.check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-block: 18px 22px;
  cursor: pointer;
}

.check input {
  margin: 2px 0 0;
  width: 15px;
  height: 15px;
  accent-color: var(--brass);
  flex: none;
}

.check span {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--bone-muted);
}

.pay-step { margin-top: 24px; }

#payment-element { margin-bottom: 18px; }

.msg {
  padding: 12px 15px;
  border-radius: var(--r-sm);
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-bottom: 16px;
  border: 1px solid;
}

.msg--error {
  color: var(--danger);
  border-color: rgba(217, 112, 92, 0.4);
  background: rgba(217, 112, 92, 0.08);
}

.trust {
  margin-top: 18px;
  text-align: center;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--bone-muted);
}

/* Sold out / waitlist */
.soldout-head { margin-bottom: 24px; }

.soldout-head .h2 { margin-bottom: 12px; }

/* --- FAQ ----------------------------------------------------------------- */
.faq { max-width: 820px; }

.faq details {
  border-top: 1px solid var(--line);
}

.faq details:last-of-type { border-bottom: 1px solid var(--line); }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 26px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1875rem;
  letter-spacing: -0.01em;
  transition: color var(--fast) var(--ease);
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brass); }

.faq summary::after {
  content: "";
  flex: none;
  width: 11px;
  height: 11px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform var(--fast) var(--ease);
}

.faq details[open] summary::after {
  transform: rotate(225deg) translate(-3px, -3px);
}

.faq__a {
  padding-bottom: 28px;
  max-width: var(--prose);
  color: var(--bone-muted);
}

.faq__a p + p { margin-top: 12px; }

/* --- Footer -------------------------------------------------------------- */
.site-footer {
  padding-block: 80px 48px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 56px);
  margin-bottom: 52px;
}

.countdown__n {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}

.countdown__l {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-muted);
}

.footer-meta {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  font-size: 0.75rem;
  color: var(--bone-muted);
}

.footer-meta a:hover { color: var(--bone); }

/* --- Success overlay ----------------------------------------------------- */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  background: rgba(11, 11, 11, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  animation: fade var(--slow) var(--ease) both;
}

.overlay__inner { max-width: 480px; }

.overlay__mark {
  width: 52px;
  height: 52px;
  margin: 0 auto 28px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brass);
}

.overlay .h2 { margin-bottom: 16px; }
.overlay .lead { margin-inline: auto; margin-bottom: 32px; }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* --- Reveal on scroll ---------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--slow) var(--ease),
              transform var(--slow) var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Mobile
   Most of the layout is fluid already; this handles the things phones do that
   desktop never surfaces — notches, chrome that appears and disappears, fat
   fingers, and landscape.
   ========================================================================== */

/* Honour the notch and home indicator (index.html sets viewport-fit=cover). */
@supports (padding: max(0px)) {
  .wrap {
    padding-left: max(var(--gutter), env(safe-area-inset-left));
    padding-right: max(var(--gutter), env(safe-area-inset-right));
  }
  .hero { padding-bottom: max(48px, env(safe-area-inset-bottom)); }
  .site-footer { padding-bottom: max(48px, env(safe-area-inset-bottom)); }
}

/* 100svh is the visible viewport excluding browser chrome; fall back for
   anything that doesn't know it. */
.hero { min-height: 100vh; min-height: 100svh; }

@media (hover: none) {
  /* Kill the grey flash on tap — it looks cheap over photography. */
  a, button, summary, label { -webkit-tap-highlight-color: transparent; }

  /* Hover styles stick after a tap on touch devices, so opt out of them. */
  .btn--primary:hover:not(:disabled) { background: var(--bone); border-color: var(--bone); }
  .btn--ghost:hover:not(:disabled) { border-color: var(--line-strong); }
  .room:hover:not(:disabled) { border-color: var(--line-strong); }
  .room.is-active { border-color: var(--brass); }
  .faq summary:hover { color: inherit; }
}

@media (max-width: 768px) {
  /* Comfortable thumb targets everywhere that takes a tap. */
  .btn { padding: 18px 28px; min-height: 52px; }
  .site-header .btn { padding: 13px 20px; min-height: 44px; }
  .room { padding: 18px 18px; min-height: 64px; }
  .faq summary { padding-block: 22px; min-height: 56px; }
  .check { padding-block: 4px; }
  .check input { width: 20px; height: 20px; }

  /* Three stats side by side is too tight; two rows reads better. */
  .stats { gap: 26px 34px; margin-top: 30px; padding-top: 24px; }
  .stats__n { font-size: 1.875rem; }

  /* Photo sections shouldn't eat a whole screen each on a phone. */
  .feature { min-height: 68vh; padding-block: 88px; }
  .feature--center { min-height: 60vh; }

  .statement-section { padding-block: 88px; }

  .place-grid { gap: 3px; margin-top: 40px; }
  .place-grid figcaption { padding: 16px 18px; }

  .panel { padding: 22px 18px 26px; }

  .countdown { gap: 0; justify-content: space-between; }
  .countdown > div { flex: 1; }

  .footer-meta { gap: 8px 16px; }

  .included__note { margin-top: 32px; font-size: 1rem; }
}

/* Very narrow phones (SE, older Androids). */
@media (max-width: 380px) {
  .spots { padding: 10px 14px; font-size: 0.625rem; letter-spacing: 0.1em; }
  .countdown__n { font-size: 1.75rem; }
  .countdown__l { font-size: 0.5625rem; letter-spacing: 0.12em; }
  .btn { padding: 17px 20px; font-size: 0.6875rem; letter-spacing: 0.1em; }
  .room__price { font-size: 1.25rem; }
  .room__name { font-size: 1.125rem; }
}

/* Phone held sideways: the hero can't be a full screen or nothing fits. */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 520px) {
  .hero {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 44px;
  }
  .hero .display { font-size: 2.5rem; }
  .hero .eyebrow { margin-bottom: 14px; }
  .hero .display { margin-bottom: 16px; }
  .hero__meta { margin-bottom: 20px; }
  .hero__cta { flex-direction: row; }
  .hero__cta .btn { width: auto; }
  .feature { min-height: auto; padding-block: 72px; }
}

/* --- Utilities ----------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

[hidden] { display: none !important; }
