/* ===== Design tokens ===== */
:root {
  --green-950: #0c1915;
  --green-900: #12241d;
  --green-800: #1c352b;
  --green-700: #2c4a3c;
  --green-600: #3c6753;
  --green-500: #4f8069;
  --cream-50: #fbf9f4;
  --cream-100: #f4efe4;
  --cream-200: #e9e0cd;
  --ink: #171712;
  --ink-soft: #4a4a42;
  --gold-500: #c79a4b;
  --gold-600: #a97f39;
  --gold-700: #8a6024;
  --gold-100: #f1e3c4;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 50px -25px rgba(12, 25, 21, 0.45);
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Albert Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --header-h: 112px;
  --max-w: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; margin: 0 0 .5em; line-height: 1.15; }
h1 em, h2 em, h3 em { font-style: italic; font-weight: 500; }
p { margin: 0 0 1em; }
address { font-style: normal; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-900);
  color: #fff;
  padding: 12px 18px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin: 0 0 0.6em;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  line-height: 1.3;
}
.btn span { font-weight: 400; font-size: 0.78rem; opacity: 0.85; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--primary {
  background: var(--gold-500);
  color: var(--green-950);
}
.btn--primary:hover { background: var(--gold-600); }
.btn--outline {
  background: transparent;
  border-color: var(--green-700);
  color: var(--green-800);
}
.btn--outline:hover { background: var(--green-800); color: #fff; }
.btn--outline.btn--light {
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.btn--outline.btn--light:hover { background: #fff; color: var(--green-900); }
.btn--ghost {
  background: transparent;
  border-color: var(--cream-200);
  color: var(--ink);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(12,25,21,.55), rgba(12,25,21,0));
  transition: background-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  background: rgba(251, 249, 244, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -18px rgba(12,25,21,.35);
}
.site-header.is-scrolled .main-nav a,
.site-header.is-scrolled .header-meta__item,
.site-header.is-scrolled .header-meta__social a {
  color: var(--ink);
}
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }

.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 8px 24px;
}

.brand {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.brand__mark {
  display: block;
  height: min(88px, calc(var(--header-h) - 24px));
  width: auto;
  object-fit: contain;
  transition: height .3s ease;
}

.main-nav ul { display: flex; gap: 26px; }
.main-nav a {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gold-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }

.header-meta { display: flex; align-items: center; gap: 18px; }
.header-meta__item {
  display: flex; align-items: center; gap: 6px;
  color: #fff; font-size: 0.85rem; white-space: nowrap;
}
.header-meta__item svg { width: 16px; height: 16px; fill: currentColor; }
.header-meta__social { display: flex; gap: 10px; }
.header-meta__social a { color: #fff; }
.header-meta__social svg { width: 18px; height: 18px; fill: currentColor; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent; border: 0; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 24px; background: #fff; transition: transform .25s ease, opacity .25s ease; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,25,21,.55) 0%, rgba(12,25,21,.25) 38%, rgba(12,25,21,.85) 100%);
}
.hero__content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 100px;
  width: 100%;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  max-width: 16ch;
  margin-bottom: 0.4em;
}
.hero__lead { max-width: 46ch; font-size: 1.1rem; color: var(--cream-100); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 1.6em; }

/* ---- Google rating badge (real data, reused in hero + reviews) ---- */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.4em;
  padding: 10px 16px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  transition: background-color .2s ease, transform .2s ease;
}
.rating-badge:hover { background: rgba(255,255,255,.14); transform: translateY(-1px); }
.rating-badge__stars { position: relative; display: inline-block; font-size: 1rem; line-height: 1; letter-spacing: 2px; }
.rating-badge__stars--lg { font-size: 1.6rem; letter-spacing: 4px; margin-bottom: 14px; }
.rating-badge__stars-track { color: rgba(255,255,255,.3); }
.rating-badge__stars-fill {
  position: absolute; top: 0; left: 0;
  width: var(--rating, 100%);
  overflow: hidden; white-space: nowrap;
  color: var(--gold-500);
}
.rating-badge__text { font-size: 0.85rem; color: var(--cream-100); }
.rating-badge__text strong { color: #fff; font-weight: 700; }

.hero .eyebrow, .hero h1, .hero__lead, .hero__actions, .hero .rating-badge {
  opacity: 0;
  animation: hero-in .9s ease forwards;
}
.hero .eyebrow { animation-delay: .1s; }
.hero h1 { animation-delay: .25s; }
.hero__lead { animation-delay: .45s; }
.hero .rating-badge { animation-delay: .55s; }
.hero__actions { animation-delay: .7s; }
@keyframes hero-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__image {
  transform: scale(1.08);
  transition: transform 1.6s cubic-bezier(.2,.7,.2,1);
}

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: #fff;
  animation: bob 2.2s ease-in-out infinite;
}
.scroll-cue svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@keyframes bob { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,8px);} }

/* ===== Sections generic ===== */
section { padding: clamp(64px, 9vw, 120px) 24px; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.section-head__lead { color: var(--ink-soft); }

/* ===== About ===== */
.about { background: var(--cream-50); }
.about__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.about__images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about__images img:first-child { grid-row: span 2; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-md); }
.about__images img:last-child { aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-md); align-self: end; }
.about__text h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); }
.about__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--green-800);
  border-left: 3px solid var(--gold-500);
  padding-left: 18px;
  margin: 1.4em 0;
}

/* ===== Team ===== */
.team { background: var(--cream-100); overflow: hidden; }
.team-card__role { color: var(--gold-700); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.9em; }

/* ---- Team "Spotlight" carousel: one stylist centre-stage + avatar picker ---- */
.team-spotlight { max-width: var(--max-w); margin: 0 auto; }
.team-spotlight__stage { display: flex; align-items: center; gap: 18px; }
.team-spotlight__viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  touch-action: pan-y;
  cursor: grab;
}
.team-spotlight__viewport:active { cursor: grabbing; }
.team-spotlight__track { display: flex; transition: transform .6s cubic-bezier(.65,0,.35,1); }
.team-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 460px;
  background: var(--cream-50);
}
.team-slide__media { position: relative; overflow: hidden; background: var(--green-950); }
.team-slide__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; }
.team-slide__body { padding: clamp(28px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.team-slide__count {
  font-family: var(--font-display); font-style: italic;
  color: var(--gold-600); font-size: 1.05rem; margin-bottom: 0.9em;
}
.team-slide__count i { font-style: normal; opacity: 0.45; margin: 0 3px; }
.team-slide__body h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.2em; }
.team-slide__body ul li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}
.team-slide__body ul li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-500);
}

.team-spotlight__arrow {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-950);
  border: 1px solid var(--green-950);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .2s ease, transform .2s ease;
}
.team-spotlight__arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.team-spotlight__arrow:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--green-950); transform: scale(1.06); }

.team-spotlight__thumbs {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 30px;
}
.team-thumb {
  flex: 0 0 auto;
  width: 60px; height: 60px;
  border-radius: 50%;
  overflow: hidden;
  padding: 0;
  border: 3px solid transparent;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity .25s ease, border-color .25s ease, transform .25s ease;
}
.team-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; display: block; }
.team-thumb:hover { opacity: 0.85; }
.team-thumb.is-active { opacity: 1; border-color: var(--gold-500); transform: scale(1.1); }

/* ===== Gallery: cinematic stage + filmstrip carousel ===== */
.gallery { background: var(--cream-50); }
.gallery-carousel { max-width: var(--max-w); margin: 0 auto; }
.gallery-carousel__stage { display: flex; align-items: center; gap: 18px; }
.gallery-carousel__viewport {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16/9;
  touch-action: pan-y;
  cursor: grab;
}
.gallery-carousel__viewport:active { cursor: grabbing; }
.gallery-carousel__track { display: flex; height: 100%; transition: transform .6s cubic-bezier(.65,0,.35,1); }
.gallery-slide {
  flex: 0 0 100%; height: 100%;
  padding: 0; border: 0; background: var(--green-950); cursor: zoom-in;
  overflow: hidden; position: relative;
}
.gallery-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1);
  transition: transform 7s cubic-bezier(.2,.6,.2,1);
}
.gallery-slide.is-active img { transform: scale(1.12); }
.gallery-carousel__zoom-hint {
  position: absolute; bottom: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(12,25,21,.55);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.gallery-carousel__zoom-hint svg { width: 16px; height: 16px; fill: #fff; }

.gallery-carousel__arrow {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: background-color .2s ease, transform .2s ease, color .2s ease;
}
.gallery-carousel__arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.gallery-carousel__arrow:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--green-950); transform: scale(1.06); }

.gallery-carousel__filmstrip {
  display: flex; gap: 10px; margin-top: 18px;
  overflow-x: auto; padding: 4px 2px 8px;
  scroll-behavior: smooth;
}
.gallery-thumb {
  flex: 0 0 88px; aspect-ratio: 1;
  border-radius: 10px; overflow: hidden;
  padding: 0; border: 2px solid transparent;
  opacity: 0.5; cursor: pointer;
  transition: opacity .25s ease, border-color .25s ease, transform .25s ease;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb:hover { opacity: 0.85; }
.gallery-thumb.is-active { opacity: 1; border-color: var(--gold-500); transform: translateY(-3px); }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,14,12,.94);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 88vh; max-width: 88vw; border-radius: var(--radius-sm); }
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav:hover, .lightbox__close:hover { background: rgba(255,255,255,.22); }

/* ===== Video ===== */
.video { position: relative; padding: 0; min-height: 60vh; display: flex; align-items: center; overflow: hidden; }
.video__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video__scrim { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(12,25,21,.88), rgba(12,25,21,.45)); }
.video__content { position: relative; max-width: var(--max-w); margin: 0 auto; padding: 90px 24px; color: #fff; max-width: 560px; }
.video__content h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.video__content p { color: var(--cream-100); }

/* ===== Reviews carousel ===== */
.reviews { background: var(--green-950); color: #fff; }
.reviews .eyebrow { color: var(--gold-500); }
.reviews .section-head h2 { color: #fff; }

.google-reviews {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 56px);
}
.google-reviews__logo { width: 44px; height: 44px; margin: 0 auto 18px; }
.google-reviews__text { color: var(--cream-100); margin-bottom: 1.6em; }

/* ===== Location ===== */
.location { background: var(--cream-100); }
.location__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  margin-bottom: 60px;
}
.location__text h2 { font-size: clamp(2rem, 3.6vw, 2.6rem); }
.location__text address { color: var(--ink-soft); margin: 1.2em 0; line-height: 1.7; }
.location__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.2em; }
.location__map { border-radius: var(--radius-md); overflow: hidden; min-height: 320px; box-shadow: var(--shadow-soft); }
.location__map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

.contact-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow-soft);
}
.contact-form-wrap h3 { font-size: 1.5rem; margin-bottom: 0.8em; }
.contact-form__honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--ink-soft); }
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-sm);
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.field input:focus, .field textarea:focus { border-color: var(--gold-500); }
.field--checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--ink-soft); }
.field--checkbox input { width: auto; margin-top: 3px; }
.field--checkbox a { text-decoration: underline; }
.contact-form__status { margin-top: 14px; font-weight: 600; min-height: 1.4em; }
.contact-form__status.is-success { color: var(--green-700); }
.contact-form__status.is-error { color: #b3382c; }
.field.is-invalid input, .field.is-invalid textarea { border-color: #b3382c; }

/* ===== Footer ===== */
.site-footer { background: var(--green-950); color: var(--cream-200); padding: 48px 24px 32px; }
.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
}
.brand--footer img { height: 64px; width: auto; object-fit: contain; }
.site-footer nav { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.site-footer nav a, .site-footer nav button {
  font: inherit;
  font-size: 0.88rem;
  color: var(--cream-200);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.site-footer nav a:hover, .site-footer nav button:hover { color: var(--gold-500); }
.site-footer__copy { font-size: 0.8rem; color: rgba(255,255,255,.5); width: 100%; text-align: center; margin-top: 8px; }

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 300;
  display: flex; justify-content: center;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
  max-width: 640px;
  background: var(--cream-50);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,.4);
  padding: 26px 28px;
}
.cookie-banner__inner h2 { font-size: 1.05rem; font-family: var(--font-body); }
.cookie-banner__inner p { font-size: 0.88rem; color: var(--ink-soft); }
.cookie-banner__actions { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }

/* ===== Floating booking button ===== */
.fab-book {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  background: var(--gold-500); color: var(--green-950);
  padding: 14px 22px; border-radius: 999px;
  font-weight: 700; font-size: 0.9rem;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease;
}
.fab-book:hover { transform: translateY(-3px); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .about__grid, .location__grid { grid-template-columns: 1fr; }
  .about__images { order: -1; }
  .header-meta__item span { display: none; }
}

@media (max-width: 860px) {
  .main-nav, .header-meta__item, .header-meta__social { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.is-open {
    display: flex;
    position: fixed; inset: var(--header-h) 0 0 0;
    background: var(--cream-50);
    padding: 32px 24px;
  }
  .main-nav.is-open ul { flex-direction: column; gap: 4px; }
  .main-nav.is-open a { color: var(--ink); display: block; padding: 14px 4px; font-size: 1.1rem; border-bottom: 1px solid var(--cream-200); }
  .site-header.is-scrolled .nav-toggle span,
  .nav-toggle span { background: #fff; }
  .site-header:not(.is-scrolled) .nav-toggle span { background: #fff; }
  .fab-book { padding: 12px 18px; font-size: 0.82rem; }
}

@media (max-width: 680px) {
  .gallery-carousel__viewport { aspect-ratio: 4/5; }
  .gallery-carousel__arrow, .team-spotlight__arrow { display: none; }
  .gallery-thumb { flex-basis: 64px; }
  .team-thumb { width: 48px; height: 48px; }

  .contact-form__row { grid-template-columns: 1fr; }
  .site-footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 900px) {
  .team-slide { grid-template-columns: 1fr; min-height: auto; }
  .team-slide__media { aspect-ratio: 4/3; }
  .team-slide__body { padding: 28px 24px 32px; }
}
