/* ===================================================================
   THE HILLTOP SAUNA — Design System
   Rustic Nordic: charred cedar, birch, ember & glacier.
   Signature device: the "ridge line" — an elevation profile that
   carries the site's hot-to-cold ritual from sauna peak to plunge pool.
   =================================================================== */

:root {
  /* ---- Color tokens ---- */
  --char: #1B1815;        /* primary background — charred cedar */
  --char-2: #221D18;       /* slightly raised dark surface */
  --cedar: #4A3526;        /* warm wood surface, cards on dark */
  --cedar-light: #6E5239;  /* borders / hover on cedar */
  --birch: #EDE5D8;        /* warm cream — text on dark, light bg */
  --birch-dim: #C9BCA8;     /* muted birch — secondary text on dark */
  --ember: #D9714A;        /* firelight — heat accent */
  --ember-dim: #B85A38;     /* ember hover/active */
  --glacier: #8FB4C0;       /* plunge water — cold accent */
  --glacier-dim: #6E96A3;   /* glacier hover/active */
  --moss: #8B9574;          /* sage — tertiary / nature accent */
  --ink: #2B241D;           /* dark text on light surfaces */

  /* ---- Type ---- */
  --font-display: 'Zilla Slab', Georgia, serif;
  --font-body: 'Schibsted Grotesk', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* ---- Spacing scale ---- */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 5rem;
  --space-7: 8rem;

  /* ---- Layout ---- */
  --max-width: 1220px;
  --radius: 3px;
  --radius-lg: 6px;
}

/* ---- Reset ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  font-family: var(--font-body);
  background: var(--char);
  color: var(--birch);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

img, svg { max-width: 100%; display: block; }

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

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; color: inherit; }

input, textarea, select { font-family: inherit; font-size: 1rem; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--birch);
}

.section--light h1, .section--light h2, .section--light h3, .section--light h4 { color: var(--ink); }

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { color: var(--birch-dim); }
.section--light p { color: #6B5E4F; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: var(--space-2);
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 1.4em;
  height: 1px;
  background: var(--ember);
}

.eyebrow--glacier { color: var(--glacier); }
.eyebrow--glacier::before { background: var(--glacier); }

/* ===================================================================
   LAYOUT
   =================================================================== */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (max-width: 640px) {
  .container { padding: 0 var(--space-3); }
}

.section {
  padding: var(--space-6) 0;
}

@media (max-width: 768px) {
  .section { padding: var(--space-5) 0; }
}

.section--char { background: var(--char); }
.section--char-2 { background: var(--char-2); }
.section--cedar { background: var(--cedar); }
.section--light { background: var(--birch); color: var(--ink); }

.section__head {
  max-width: 640px;
  margin-bottom: var(--space-5);
}

.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__head p {
  font-size: 1.05rem;
}

/* ===================================================================
   NAVIGATION
   =================================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(27, 24, 21, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(237, 229, 216, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

@media (max-width: 640px) {
  .nav__inner { padding-left: var(--space-3); padding-right: var(--space-3); }
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--birch);
}

.nav__logo svg { width: 28px; height: 28px; flex-shrink: 0; }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: 0.92rem;
}

.nav__links a {
  color: var(--birch-dim);
  transition: color 0.2s ease;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--birch);
  border-bottom-color: var(--ember);
}

.nav__cta {
  display: inline-flex;
}

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--cedar-light);
  border-radius: var(--radius);
  color: var(--birch);
  width: 42px;
  height: 38px;
  align-items: center;
  justify-content: center;
}

.nav__toggle svg { width: 20px; height: 20px; }

@media (max-width: 860px) {
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--char-2);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-2) var(--space-3) var(--space-3);
    border-bottom: 1px solid rgba(237, 229, 216, 0.08);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__links a {
    padding: var(--space-2) 0;
    border-bottom: 1px solid rgba(237, 229, 216, 0.06);
  }

  .nav__links .nav__cta { margin-top: var(--space-2); }
  .nav__links .btn { width: 100%; justify-content: center; }

  .nav__toggle { display: flex; }
}

/* ===================================================================
   BUTTONS
   =================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--ember);
  color: var(--char);
}
.btn--primary:hover { background: var(--ember-dim); }

.btn--ghost {
  border-color: var(--birch-dim);
  color: var(--birch);
}
.btn--ghost:hover { border-color: var(--birch); background: rgba(237,229,216,0.06); }

.btn--ghost-dark {
  border-color: var(--cedar-light);
  color: var(--ink);
}
.btn--ghost-dark:hover { border-color: var(--ink); background: rgba(43,36,29,0.05); }

.btn--glacier {
  background: var(--glacier);
  color: var(--char);
}
.btn--glacier:hover { background: var(--glacier-dim); }

.btn--block { width: 100%; justify-content: center; }

/* ===================================================================
   RIDGE LINE — signature graphic device
   =================================================================== */

.ridge {
  display: block;
  width: 100%;
  height: auto;
}

.ridge-divider {
  position: relative;
  line-height: 0;
}

.ridge-divider svg { width: 100%; height: auto; display: block; }

/* ===================================================================
   PAGE HERO (non-home pages)
   =================================================================== */

.page-hero {
  padding: var(--space-6) 0 var(--space-5);
  background: var(--char);
  position: relative;
}

.page-hero__title { margin-bottom: var(--space-2); }

.page-hero p {
  max-width: 560px;
  font-size: 1.1rem;
}

/* ===================================================================
   HOME HERO
   =================================================================== */

.hero {
  position: relative;
  background: linear-gradient(180deg, var(--char) 0%, #1F1A16 100%);
  overflow: hidden;
}

.hero__inner {
  padding: var(--space-6) 0 0;
  display: grid;
  gap: var(--space-4);
}

.hero__eyebrow-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-3);
}

.hero__title {
  max-width: 820px;
}

.hero__title .accent { color: var(--ember); }
.hero__title .accent--glacier { color: var(--glacier); }

.hero__lede {
  max-width: 540px;
  font-size: 1.15rem;
  margin: var(--space-3) 0 var(--space-4);
}

.hero__actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.hero__ridge-wrap {
  position: relative;
}

.hero__readout {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(237,229,216,0.18);
  border-radius: var(--radius);
  background: rgba(27,24,21,0.6);
  backdrop-filter: blur(4px);
}

.hero__readout--peak {
  left: 6%;
  top: 4%;
  border-color: rgba(217,113,74,0.45);
}

.hero__readout--base {
  right: 6%;
  bottom: 22%;
  border-color: rgba(143,180,192,0.45);
  text-align: right;
}

/* Steam wisps drifting above the peak marker */
@keyframes steam-drift {
  0%, 100% { transform: translateY(0) scaleY(1); opacity: 0.45; }
  50% { transform: translateY(-6px) scaleY(1.08); opacity: 0.12; }
}

.steam {
  animation: steam-drift 4s ease-in-out infinite;
  transform-origin: bottom center;
}

.steam--2 { animation-delay: 1.3s; }
.steam--3 { animation-delay: 2.6s; }

.hero__readout .label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  color: var(--birch-dim);
}

.hero__readout--peak .value { color: var(--ember); font-size: 1.3rem; }
.hero__readout--base .value { color: var(--glacier); font-size: 1.3rem; }

@media (max-width: 640px) {
  .hero__readout { font-size: 0.72rem; padding: 0.45rem 0.65rem; }
  .hero__readout--peak .value, .hero__readout--base .value { font-size: 1.05rem; }
}

/* ===================================================================
   THE RITUAL — three-step timeline along the ridge
   =================================================================== */

.ritual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.ritual--four { grid-template-columns: repeat(4, 1fr); }

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

@media (max-width: 760px) {
  .ritual { grid-template-columns: 1fr; gap: var(--space-5); }
}

.ritual__step {
  border-top: 2px solid var(--cedar-light);
  padding-top: var(--space-3);
  position: relative;
}

.ritual__step::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 2.4rem;
  height: 2px;
  background: var(--ember);
}

.ritual__step--cold::before { background: var(--glacier); }
.ritual__step--soak::before { background: var(--ember-dim); }
.ritual__step--rest::before { background: var(--moss); }

.ritual__temp {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ember);
  margin-bottom: var(--space-1);
  display: block;
}

.ritual__step--cold .ritual__temp { color: var(--glacier); }
.ritual__step--soak .ritual__temp { color: var(--ember-dim); }
.ritual__step--rest .ritual__temp { color: var(--moss); }

.ritual__step h3 { margin-bottom: var(--space-1); }

/* ===================================================================
   CARDS — services / offerings
   =================================================================== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

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

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

.card {
  background: var(--cedar);
  border: 1px solid var(--cedar-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--ember);
}

.card__icon {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--ember);
  margin-bottom: var(--space-1);
}

.card__icon--glacier { color: var(--glacier); }

.card h3 { margin-bottom: 0; }

.card p { font-size: 0.95rem; margin-bottom: var(--space-1); }

.card__link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--birch);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.card__link svg { width: 14px; height: 14px; }

/* ===================================================================
   PRICING
   =================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  align-items: stretch;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.pricing-card {
  background: var(--char-2);
  border: 1px solid var(--cedar-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.pricing-card--featured {
  border-color: var(--ember);
  background: linear-gradient(165deg, var(--cedar) 0%, var(--char-2) 100%);
  position: relative;
}

.pricing-card--featured::after {
  content: 'MOST BOOKED';
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--ember);
  border: 1px solid var(--ember);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
}

.pricing-card__name { font-size: 1.05rem; }

.pricing-card__price {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  color: var(--birch);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.pricing-card__price span {
  font-size: 0.9rem;
  color: var(--birch-dim);
  font-family: var(--font-body);
}

.pricing-card__desc { font-size: 0.92rem; flex-grow: 1; }

.pricing-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--birch-dim);
  margin: var(--space-1) 0;
}

.pricing-card ul li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.pricing-card ul li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--ember);
}

.pricing-card--featured ul li svg,
.pricing-card--cold ul li svg { color: var(--glacier); }

.pricing-note {
  margin-top: var(--space-4);
  font-size: 0.9rem;
  color: var(--birch-dim);
  text-align: center;
}

/* Generic check list (services page feature lists) */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.95rem;
  margin: var(--space-2) 0;
}

.check-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.check-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--ember);
}

.check-list--glacier li svg { color: var(--glacier); }

/* ===================================================================
   TESTIMONIALS
   =================================================================== */

.rating-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--birch-dim);
  margin-top: var(--space-1);
}

.rating-badge strong {
  color: var(--ember);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.rating-badge a { color: var(--birch-dim); text-decoration: underline; }
.rating-badge a:hover { color: var(--birch); }

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

@media (max-width: 900px) {
  .testimonials { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

.testimonial {
  border-top: 2px solid var(--ember);
  padding-top: var(--space-2);
}

.testimonial:nth-child(2) { border-top-color: var(--glacier); }
.testimonial:nth-child(3) { border-top-color: var(--moss); }

.testimonial p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--birch);
  margin-bottom: var(--space-2);
  font-weight: 400;
}

.section--light .testimonial p { color: var(--ink); }

.testimonial cite {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--birch-dim);
  font-style: normal;
}

.section--light .testimonial cite { color: #8A7B68; }

/* ===================================================================
   GALLERY
   =================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}

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

.gallery__item,
.gallery-preview__item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: none;
  padding: 0;
  background: var(--cedar);
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.gallery__item:hover,
.gallery-preview__item:hover { transform: translateY(-3px); }

.gallery__item--tall { aspect-ratio: 4 / 5; }

.gallery__item img,
.gallery__item .ph,
.gallery-preview__item img,
.gallery-preview__item .ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__item .ph,
.gallery-preview__item .ph {
  display: flex;
  align-items: flex-end;
  padding: var(--space-2);
}

.gallery__caption {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--birch);
  text-align: left;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.gallery__item > .gallery__caption,
.gallery-preview__item > .gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-2);
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
}

.lightbox__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Generated placeholder textures for gallery tiles */
.ph--1 { background: linear-gradient(135deg, #5A4030 0%, #2E2319 100%); }
.ph--2 { background: linear-gradient(135deg, #3E5A63 0%, #1B2D32 100%); }
.ph--3 { background: linear-gradient(135deg, #6E5239 0%, #3A2A1C 100%); }
.ph--4 { background: linear-gradient(135deg, #8FB4C0 0%, #3E5A63 100%); }
.ph--5 { background: linear-gradient(135deg, #7E8A6C 0%, #3A3F2E 100%); }
.ph--6 { background: linear-gradient(135deg, #D9714A 0%, #4A3526 100%); }
.ph--7 { background: linear-gradient(135deg, #2E2319 0%, #6E96A3 100%); }
.ph--8 { background: linear-gradient(135deg, #4A3526 0%, #8B9574 100%); }
.ph--9 { background: linear-gradient(135deg, #1B2D32 0%, #D9714A 100%); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(27, 24, 21, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: var(--space-4);
}

.lightbox.is-open { display: flex; }

.lightbox__panel {
  max-width: 640px;
  width: 100%;
  background: var(--cedar);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cedar-light);
}

.lightbox__media {
  aspect-ratio: 4/3;
  width: 100%;
}

.lightbox__body {
  padding: var(--space-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
}

.lightbox__caption {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--birch);
}

.lightbox__close {
  background: none;
  border: 1px solid var(--cedar-light);
  color: var(--birch);
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lightbox__close svg { width: 16px; height: 16px; }

.gallery-note {
  margin-top: var(--space-4);
  font-size: 0.88rem;
  color: var(--birch-dim);
}

/* ===================================================================
   FORMS — booking & contact
   =================================================================== */

.acuity-embed {
  background: var(--birch);
  border: 1px solid var(--cedar-light);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  overflow: hidden;
}

.acuity-embed iframe {
  display: block;
  width: 100%;
  min-height: 800px;
  border: 0;
}

.booking-note {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  background: var(--cedar);
  border: 1px solid var(--cedar-light);
  border-radius: var(--radius);
  padding: var(--space-3);
  margin-bottom: var(--space-4);
}

.booking-note svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--ember);
  margin-top: 0.1rem;
}

.booking-note p { margin-bottom: 0; font-size: 0.92rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-5);
  align-items: start;
}

@media (max-width: 900px) {
  .form-grid { grid-template-columns: 1fr; gap: var(--space-5); }
}

.field {
  margin-bottom: var(--space-3);
}

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--birch-dim);
  margin-bottom: 0.5rem;
}

.section--light .field label { color: #8A7B68; }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--char-2);
  border: 1px solid var(--cedar-light);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  color: var(--birch);
}

.section--light .field input,
.section--light .field select,
.section--light .field textarea {
  background: #fff;
  border-color: #D9CDBC;
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--ember);
  outline-offset: 1px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

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

/* Session type picker */
.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}

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

.option-card {
  background: var(--char-2);
  border: 1px solid var(--cedar-light);
  border-radius: var(--radius);
  padding: var(--space-2);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.option-card:hover { border-color: var(--ember); }

.option-card.is-selected {
  border-color: var(--ember);
  background: rgba(217, 113, 74, 0.1);
}

.option-card__name { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.2rem; }
.option-card__meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--birch-dim);
}

/* Calendar */
.calendar {
  background: var(--char-2);
  border: 1px solid var(--cedar-light);
  border-radius: var(--radius);
  padding: var(--space-3);
}

.calendar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2);
}

.calendar__head button {
  background: none;
  border: 1px solid var(--cedar-light);
  color: var(--birch);
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar__head button svg { width: 14px; height: 14px; }

.calendar__month {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.calendar__dow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--birch-dim);
  padding-bottom: 0.4rem;
  text-transform: uppercase;
}

.calendar__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.85rem;
  border: 1px solid transparent;
  background: none;
  color: var(--birch);
}

.calendar__day:disabled {
  color: var(--cedar-light);
  cursor: default;
}

.calendar__day:not(:disabled):hover {
  border-color: var(--ember);
}

.calendar__day.is-selected {
  background: var(--ember);
  color: var(--char);
  font-weight: 600;
}

.calendar__day--empty { visibility: hidden; }

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: var(--space-3);
}

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

.time-slot {
  background: var(--char-2);
  border: 1px solid var(--cedar-light);
  color: var(--birch);
  border-radius: var(--radius);
  padding: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-align: center;
}

.time-slot:hover { border-color: var(--ember); }

.time-slot.is-selected {
  background: var(--ember);
  color: var(--char);
  border-color: var(--ember);
}

.time-slot:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Booking summary side panel */
.summary {
  background: var(--cedar);
  border: 1px solid var(--cedar-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  position: sticky;
  top: 100px;
}

.summary h3 { margin-bottom: var(--space-2); }

.summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(237,229,216,0.08);
}

.summary__row:last-of-type { border-bottom: none; }

.summary__row .label { color: var(--birch-dim); }
.summary__row .value { font-family: var(--font-mono); }

.summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: var(--space-3) 0;
  font-family: var(--font-mono);
  font-size: 1.6rem;
}

.summary__total .label {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--birch-dim);
}

.form-success {
  display: none;
  background: rgba(143, 180, 192, 0.1);
  border: 1px solid var(--glacier);
  border-radius: var(--radius);
  padding: var(--space-3);
  margin-top: var(--space-3);
}

.form-success.is-visible { display: block; }

.form-success h4 { color: var(--glacier); margin-bottom: 0.4rem; }
.form-success p { font-size: 0.9rem; }

/* ===================================================================
   CONTACT / LOCATION
   =================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

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

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-3) 0 var(--space-4);
  font-size: 0.95rem;
}

.hours-table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(237,229,216,0.08);
}

.section--light .hours-table td { border-bottom-color: #E2D8C9; }

.hours-table td:last-child {
  text-align: right;
  font-family: var(--font-mono);
  color: var(--birch);
}

.section--light .hours-table td:last-child { color: var(--ink); }

.info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.info-list__item {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
}

.info-list__item svg {
  width: 20px;
  height: 20px;
  color: var(--ember);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.info-list__item strong { display: block; font-size: 0.95rem; }
.info-list__item span { font-size: 0.9rem; color: var(--birch-dim); }
.section--light .info-list__item span { color: #8A7B68; }

.map-frame {
  border: 1px solid var(--cedar-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cedar);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: sepia(15%) saturate(85%);
}

/* ===================================================================
   FOOTER
   =================================================================== */

.footer {
  background: var(--char-2);
  padding-top: var(--space-5);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-4);
  padding-bottom: var(--space-5);
}

@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  margin-bottom: var(--space-2);
}

.footer__brand svg { width: 26px; height: 26px; }

.footer p { font-size: 0.92rem; max-width: 320px; }

.footer h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--birch-dim);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.92rem;
}

.footer__links a:hover { color: var(--ember); }

.footer__bottom {
  border-top: 1px solid rgba(237,229,216,0.08);
  padding: var(--space-3) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--birch-dim);
  flex-wrap: wrap;
  gap: var(--space-2);
}

.footer__bottom a:hover { color: var(--ember); }

/* ===================================================================
   MISC
   =================================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: center;
}

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

.split--reverse .split__media { order: -1; }

@media (min-width: 861px) {
  .split--reverse .split__media { order: 2; }
}

.split__media {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cedar-light);
}

.tag-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: var(--space-2) 0 var(--space-3);
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--cedar-light);
  color: var(--birch-dim);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.section--light .tag { border-color: #E2D8C9; color: #8A7B68; }

.stat-row {
  display: flex;
  gap: var(--space-5);
  margin-top: var(--space-3);
  flex-wrap: wrap;
}

.stat-row .stat-num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  color: var(--ember);
  display: block;
}

.stat-row .stat-label {
  font-size: 0.82rem;
  color: var(--birch-dim);
}

.cta-band {
  text-align: center;
}

.cta-band h2 { margin-bottom: var(--space-2); }

.cta-band p {
  max-width: 480px;
  margin: 0 auto var(--space-4);
}

.cta-band .hero__actions { justify-content: center; margin-bottom: 0; }
