/* ============================================================
   Cooper Barnes Tennis — charcoal + brass, editorial
   ============================================================ */

:root {
  --bg: #0F0F11;
  --surface: #17171B;
  --surface-2: #202027;
  --bone: #F4F1E9;
  --muted: #9A9AA2;
  --brass: #C6A05A;
  --brass-bright: #E6C77E;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

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

  --wrap: 1180px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--brass); color: #17130A; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(4.5rem, 10vw, 8.5rem); }

/* ---------- type helpers ---------- */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.section__head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__lead { color: var(--muted); font-size: 1.08rem; margin-top: 1.1rem; }
.section__lead strong, .about strong, .hero__sub strong { color: var(--bone); font-weight: 600; }
.stars { color: var(--brass); letter-spacing: 0.12em; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn--brass { background: var(--brass); color: #16120A; }
.btn--brass:hover { background: var(--brass-bright); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--line-strong); color: var(--bone); }
.btn--ghost:hover { border-color: var(--brass); color: var(--brass); transform: translateY(-2px); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(15, 15, 17, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; gap: 1.5rem; height: 74px; }
.wordmark {
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.wordmark__dot { color: var(--brass); }
.nav__links { display: flex; gap: 2rem; margin-left: auto; }
.nav__links a {
  font-size: 0.9rem;
  color: var(--muted);
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--brass); transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--bone); }
.nav__links a:hover::after { width: 100%; }
.nav__book { padding-block: 0.6rem; }
.nav__menu { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav__menu span { width: 22px; height: 2px; background: var(--bone); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }

/* ---------- hero (split: copy left, portrait right) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 104px;
  padding-bottom: clamp(2.5rem, 6vh, 4.5rem);
  overflow: hidden;
  background: radial-gradient(115% 85% at 82% 18%, rgba(198, 160, 90, 0.08), transparent 58%), var(--bg);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  width: 100%;
}
.hero__copy { max-width: 640px; }
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.6vw, 4.9rem);
  line-height: 0.99;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}
.hero__sub { font-size: clamp(1.02rem, 1.5vw, 1.22rem); color: #CFCCC5; max-width: 560px; margin-bottom: 2.1rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.9rem; }
.hero__trust { font-size: 0.9rem; color: var(--muted); letter-spacing: 0.01em; }
.hero__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.hero__portrait::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  border-radius: 18px; box-shadow: inset 0 0 0 1px rgba(198, 160, 90, 0.35);
  background: linear-gradient(to top, rgba(15, 15, 17, 0.5) 0%, transparent 34%);
}
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }

/* ---------- proof bar ---------- */
.proof { border-block: 1px solid var(--line); background: var(--surface); }
.proof__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding-block: clamp(2rem, 4vw, 3rem);
}
.proof__item { text-align: center; display: flex; flex-direction: column; gap: 0.35rem; position: relative; }
.proof__item:not(:last-child)::after {
  content: ""; position: absolute; right: -0.5rem; top: 15%; height: 70%; width: 1px; background: var(--line);
}
.proof__num { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.7rem); color: var(--brass); line-height: 1; }
.proof__label { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* ---------- about ---------- */
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about__media { aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); position: relative; }
.about__media::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(198,160,90,0.35);
  border-radius: var(--radius);
}
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__body p { color: #CFCCC5; margin-top: 1.1rem; }
.about__body .section__title { margin-bottom: 0.4rem; }
.checklist { list-style: none; padding: 0; margin: 1.8rem 0; display: grid; gap: 0.8rem; }
.checklist li { position: relative; padding-left: 1.9rem; color: #CFCCC5; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--brass); font-weight: 700;
  width: 1.3rem; height: 1.3rem;
}
.about__body .btn { margin-top: 0.5rem; }

/* ---------- lessons ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--line-strong); background: var(--surface-2); }
.card--feature { border-color: rgba(198,160,90,0.5); box-shadow: 0 0 0 1px rgba(198,160,90,0.15); }
.card__tag {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brass); border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.3rem 0.7rem; margin-bottom: 1.2rem;
}
.card--feature .card__tag { background: var(--brass); color: #16120A; border-color: var(--brass); }
.card__title { font-family: var(--serif); font-weight: 500; font-size: 1.7rem; margin-bottom: 0.7rem; }
.card > p { color: var(--muted); font-size: 0.98rem; }
.card__list { list-style: none; padding: 0; margin-top: 1.3rem; display: grid; gap: 0.6rem; border-top: 1px solid var(--line); padding-top: 1.3rem; }
.card__list li { font-size: 0.92rem; color: #CFCCC5; padding-left: 1.3rem; position: relative; }
.card__list li::before { content: "›"; position: absolute; left: 0; color: var(--brass); }

.included {
  margin-top: 1.25rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.included__item { background: var(--surface); padding: 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.3rem; }
.included__k { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.included__v { color: var(--bone); font-weight: 500; font-size: 0.98rem; }

/* ---------- locations ---------- */
.locations__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.locations__media { aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.locations__media img { width: 100%; height: 100%; object-fit: cover; }
.venues { list-style: none; padding: 0; margin-top: 1.8rem; display: grid; gap: 1rem; }
.venues li { display: flex; align-items: center; gap: 0.9rem; font-size: 1.05rem; color: #CFCCC5; }
.venues__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brass); flex: none; box-shadow: 0 0 0 4px rgba(198,160,90,0.15); }

/* ---------- reviews ---------- */
.reviews { background: var(--surface); border-block: 1px solid var(--line); }
.reviews .section__head { margin-inline: auto; text-align: center; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.quote {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: 1rem;
}
.quote .stars { font-size: 1.05rem; }
.quote p { font-family: var(--serif); font-size: 1.18rem; line-height: 1.45; color: var(--bone); }
.quote cite { font-style: normal; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: auto; }
.reviews__link { text-align: center; margin-top: 2.5rem; }
.reviews__link a { color: var(--brass); font-weight: 500; border-bottom: 1px solid transparent; transition: border-color 0.2s var(--ease); }
.reviews__link a:hover { border-bottom-color: var(--brass); }

/* ---------- cta band ---------- */
.cta-band { text-align: center; }
.cta-band__inner { max-width: 720px; margin-inline: auto; }
.cta-band__title { font-family: var(--serif); font-weight: 400; font-size: clamp(2.3rem, 6vw, 4.2rem); line-height: 1; letter-spacing: -0.02em; margin-bottom: 1.4rem; }
.cta-band__sub { color: var(--muted); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2.2rem; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding-top: clamp(3rem, 6vw, 4.5rem); padding-bottom: 2.5rem; }
.footer__inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line); }
.footer__brand .wordmark { font-size: 1.4rem; }
.footer__brand p { color: var(--muted); font-size: 0.9rem; margin-top: 0.5rem; }
.footer__contact { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.footer__contact a { color: var(--brass); transition: color 0.2s var(--ease); }
.footer__contact a:hover { color: var(--brass-bright); }
.footer__contact span { color: var(--muted); }
.footer__book { color: var(--muted); font-size: 0.9rem; transition: color 0.2s var(--ease); }
.footer__book:hover { color: var(--brass); }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.footer__links a { color: var(--muted); font-size: 0.9rem; transition: color 0.2s var(--ease); }
.footer__links a:hover { color: var(--brass); }
.footer__base { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; color: var(--muted); font-size: 0.82rem; }

/* ---------- image placeholder (before real photos added) ---------- */
.ph { position: relative; background: linear-gradient(135deg, #1b1b20 0%, #121216 100%); }
.ph::after {
  content: attr(data-label);
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 1rem;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(198,160,90,0.55);
}
.ph img { position: relative; z-index: 2; }
.ph img.is-missing { display: none; }   /* failed image reveals the placeholder underneath */

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- booking modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: clamp(0.75rem, 3vw, 2rem); }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(6,6,8,0.72); backdrop-filter: blur(4px); animation: fade 0.3s var(--ease); }
.modal__panel {
  position: relative; z-index: 1; width: 100%; max-width: 560px; max-height: min(90vh, 860px);
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: 18px;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6); animation: pop 0.35s var(--ease);
}
.modal__bar { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--line); }
.modal__eyebrow { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); }
.modal__title { font-family: var(--serif); font-weight: 500; font-size: 1.4rem; }
.modal__close { font-size: 1.8rem; line-height: 1; color: var(--muted); width: 40px; height: 40px; border-radius: 50%; transition: background 0.2s, color 0.2s; }
.modal__close:hover { background: var(--surface-2); color: var(--bone); }
.modal__body { position: relative; flex: 1; overflow-y: auto; padding: 1.5rem 1.4rem; }
.modal__foot { padding: 0.8rem 1.4rem; border-top: 1px solid var(--line); }
.linkbtn { color: var(--muted); font-size: 0.9rem; transition: color 0.2s var(--ease); }
.linkbtn:hover { color: var(--brass); }
.spinner { width: 34px; height: 34px; border: 3px solid var(--line-strong); border-top-color: var(--brass); border-radius: 50%; animation: spin 0.9s linear infinite; }

/* ---- booking steps ---- */
.bstep { display: flex; flex-direction: column; gap: 0.9rem; animation: stepin 0.35s var(--ease); }
.bstep[hidden] { display: none; }
@keyframes stepin { from { opacity: 0; transform: translateX(14px); } }
.bstep__fine { font-size: 0.8rem; color: var(--muted); text-align: center; margin-top: 0.4rem; }
.bstep__err { background: rgba(180, 60, 60, 0.12); border: 1px solid rgba(220, 90, 90, 0.35); color: #E8A9A9; border-radius: 10px; padding: 0.7rem 1rem; font-size: 0.9rem; }
.bstep__err[hidden] { display: none; }
.bstep__submit { width: 100%; margin-top: 0.4rem; }
.bloader { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 3rem 1rem; color: var(--muted); }
.bloader[hidden] { display: none; }

/* option cards (step 1) */
.opt { display: block; text-align: left; background: var(--surface-2); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 1.25rem 1.3rem; transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease); }
.opt:hover { border-color: var(--brass); transform: translateY(-2px); }
.opt__head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.opt__name { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.opt__price { font-family: var(--serif); font-size: 1.35rem; color: var(--brass); }
.opt__was { text-decoration: line-through; color: var(--muted); font-size: 0.82em; margin-right: 0.2em; }
.opt__desc { display: block; color: var(--muted); font-size: 0.92rem; margin-top: 0.35rem; }

/* month calendar + slots (step 2) */
.cal__bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.9rem; }
.cal__title { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; }
.cal__nav { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-strong); color: var(--bone); font-size: 1.25rem; line-height: 1; display: flex; align-items: center; justify-content: center; transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease); }
.cal__nav:hover:not(:disabled) { border-color: var(--brass); color: var(--brass); }
.cal__nav:disabled { opacity: 0.3; cursor: default; }
.cal__dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.3rem; margin-bottom: 0.4rem; }
.cal__dow span { text-align: center; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.3rem; }
.cal__day {
  aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; font-size: 0.95rem; border: 1px solid transparent;
  background: transparent; color: var(--bone); position: relative;
  transition: border-color .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
}
.cal__day--blank { border: 0; }
.cal__day.is-closed { color: rgba(154, 154, 162, 0.32); cursor: default; }
.cal__day.is-open { border-color: var(--line-strong); cursor: pointer; }
.cal__day.is-open::after { content: ""; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--brass); }
.cal__day.is-open:hover { border-color: var(--brass); color: var(--brass); }
.cal__day.is-today { box-shadow: inset 0 0 0 1px rgba(198, 160, 90, 0.45); }
.cal__day.is-selected { background: var(--brass); border-color: var(--brass); color: #16120A; }
.cal__day.is-selected::after { background: #16120A; }
.cal__times { margin-top: 1.3rem; }
.cal__times-label { font-size: 0.8rem; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 0.7rem; }
.slotgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.slot { padding: 0.75rem 0.5rem; text-align: center; border: 1px solid var(--line-strong); border-radius: 10px; font-size: 0.95rem; font-weight: 500; transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease); }
.slot:hover { border-color: var(--brass); color: var(--brass); }
.slot.is-sel { background: var(--brass); border-color: var(--brass); color: #16120A; }
.slotgrid__empty { grid-column: 1 / -1; color: var(--muted); text-align: center; padding: 1rem 0; font-size: 0.95rem; }

/* details form (step 3) */
.picked { font-size: 0.92rem; color: var(--brass); border: 1px solid rgba(198,160,90,0.35); background: rgba(198,160,90,0.08); border-radius: 10px; padding: 0.65rem 1rem; }
#bookForm { display: flex; flex-direction: column; gap: 0.9rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.fld { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.8rem; color: var(--muted); min-width: 0; }
.fld em { font-style: normal; opacity: 0.7; }
.fld input, .fld select, .fld textarea {
  font: inherit; color: var(--bone); background: var(--surface-2);
  border: 1px solid var(--line-strong); border-radius: 10px; padding: 0.7rem 0.9rem; outline: none;
  width: 100%; min-width: 0; box-sizing: border-box; max-width: 100%;
  transition: border-color 0.2s var(--ease);
}
.fld input:focus, .fld select:focus, .fld textarea:focus { border-color: var(--brass); }
.fld input::placeholder, .fld textarea::placeholder { color: rgba(154,154,162,0.5); }
/* confirmation (step 4) */
.bstep--done { align-items: center; text-align: center; padding: 1rem 0.5rem; }
.done__mark { width: 58px; height: 58px; border-radius: 50%; background: var(--brass); color: #16120A; font-size: 1.7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.done__title { font-family: var(--serif); font-weight: 500; font-size: 1.8rem; }
.done__when { color: var(--bone); font-size: 1.05rem; }
.done__actions { display: flex; gap: 0.7rem; margin-top: 0.4rem; }
.booksum { list-style: none; padding: 0; margin: 0.4rem 0 0; width: 100%; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.booksum li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 1rem; font-size: 0.9rem; color: var(--muted); }
.booksum li + li { border-top: 1px solid var(--line); }
.booksum__v { color: var(--bone); font-weight: 500; text-align: right; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(0.98); } }

body.modal-open { overflow: hidden; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__book { display: none; }
  .nav__menu { display: flex; }
  .nav.is-open .nav__links {
    display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column;
    gap: 0; background: rgba(15,15,17,0.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); padding: 0.5rem var(--pad) 1.25rem;
  }
  .nav.is-open .nav__links a { padding: 0.85rem 0; border-bottom: 1px solid var(--line); color: var(--bone); }
  .hero { min-height: auto; padding-top: 108px; }
  .hero__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero__portrait { order: -1; width: 100%; max-width: 340px; margin-inline: auto; aspect-ratio: 4 / 5; }
  .hero__cta .btn { flex: 1; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; }
  .locations__grid { grid-template-columns: 1fr; }
  .locations__media { max-width: 460px; order: -1; }
  .cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .included { grid-template-columns: repeat(2, 1fr); }
  .proof__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem 1rem; }
  .proof__item:nth-child(3)::after { display: none; }
}

@media (max-width: 560px) {
  /* booking modal: stack the paired fields so nothing runs off-screen */
  .frow { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
  .proof__item::after { display: none !important; }
  .included { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1; }
  /* roomier booking modal on phones */
  .modal { padding: 0; }
  .modal__panel { max-width: 100%; max-height: 100svh; height: 100svh; border-radius: 0; border: 0; }
  .modal__body { padding: 1.25rem 1.15rem; }
  .modal__bar { padding: 1rem 1.15rem; }
  .slotgrid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
