/* ═══════════════════════════════════════════════════════
   Dr. Bee. Inc – Style Sheet
   Design system: deep navy + warm gold + soft cream
═══════════════════════════════════════════════════════ */

/* ──────────────────  TOKENS  ────────────────── */
:root {
  --navy:   #0d1b2a;
  --navy-80:#14263b;
  --gold:   #c9a84c;
  --gold-lt:#e2c97e;
  --cream:  #faf6f0;
  --white:  #ffffff;
  --muted:  #6b7785;
  --border: rgba(201, 168, 76, 0.2);
  --shadow: 0 4px 32px rgba(13,27,42,.12);
  --radius: 12px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --container: 1200px;
  --gap: 2rem;
}

/* ──────────────────  RESET  ────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ──────────────────  UTILITIES  ────────────────── */
.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}
.section { padding-block: 6rem; }
.center  { text-align: center; }

/* ──────────────────  TYPOGRAPHY  ────────────────── */
.section__eyebrow {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section__sub {
  color: var(--muted);
  max-width: 55ch;
  margin-inline: auto;
  margin-bottom: 3rem;
}

/* ──────────────────  BUTTONS  ────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn--ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.22);
}
.btn--full { width: 100%; justify-content: center; }

/* ──────────────────  NAV  ────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding-block: 1.1rem;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-mark {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -.01em;
}
.logo-sub {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--gold); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ──────────────────  HERO  ────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1629909615184-74f495363b67?w=1800&q=80')
    center/cover no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,.92) 0%,
    rgba(13,27,42,.65) 60%,
    rgba(13,27,42,.4) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 5rem;
}
.hero__eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,.75);
  max-width: 50ch;
  margin-bottom: 2.5rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}
.hero__scroll-indicator span {
  width: 1.5px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ──────────────────  TEXT REVEAL  ────────────────── */
/*
 * Scroll-driven word reveal — vanilla port of the React/framer-motion
 * TextRevealByWord component (text-reveal.tsx).
 * The section is 220vh tall; the text panel is sticky so it stays
 * on-screen while the user scrolls, giving the JS room to progress
 * each word's opacity from ~0.15 → 1 based on scroll position.
 */
.text-reveal-section {
  height: 220vh;
  position: relative;
  /* dark background so the dim words are visible */
  background: var(--navy);
}

.text-reveal-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1.5rem;
}

.text-reveal-card {
  width: min(860px, 100%);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 3.5rem;
  box-shadow: 0 16px 64px rgba(0,0,0,.4);
}

.text-reveal-eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

/*
 * Each word is wrapped in a <span class="tr-word"> by JS.
 * The inner ghost <span> (opacity .25) always shows so the
 * layout stays stable; the foreground <span> fades in on scroll.
 */
.text-reveal-text {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 400;
  line-height: 1.55;
  color: transparent; /* text is painted by child spans */
  display: flex;
  flex-wrap: wrap;
  gap: .18em 0;
  user-select: none;
}

.tr-word {
  position: relative;
  display: inline-block;
  margin-right: .3em;
  white-space: nowrap;
}

/* Ghost layer — always visible at low opacity */
.tr-word__ghost {
  color: rgba(255,255,255,.18);
}

/* Revealed layer — opacity driven by scroll */
.tr-word__fill {
  position: absolute;
  inset: 0;
  color: var(--white);
  opacity: 0;
  /* no CSS transition — opacity is set directly by rAF loop for smoothness */
  will-change: opacity;
}

@media (max-width: 600px) {
  .text-reveal-card { padding: 2rem 1.5rem; }
  .text-reveal-section { height: 260vh; }
}

/* ──────────────────  STATS BAR  ────────────────── */
.stats-bar {
  background: var(--navy);
  padding-block: 3rem;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}
.stat__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat__label {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* ──────────────────  ABOUT  ────────────────── */
.about { background: var(--cream); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.about__image-wrap {
  position: relative;
}
.about__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .75rem 1.25rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: var(--shadow);
}
.about__badge svg { width: 18px; height: 18px; }
.about__lead {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--navy);
}
.about__body p { color: var(--muted); margin-bottom: 1rem; }
.about__quote {
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,.07);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy-80);
  line-height: 1.6;
}

/* ──────────────────  SERVICES  ────────────────── */
.services { background: var(--white); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.06), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,168,76,.15);
}
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-80));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: .75rem;
}
.service-card p { font-size: .9rem; color: var(--muted); }

/* ──────────────────  TEAM (Animated Marquee)  ─────────────────────
 *
 * Vanilla port of hero-3.tsx / AnimatedMarqueeHero, applied to the
 * team section instead of the hero.
 *
 * Layout
 *   • Section is navy-dark with centred header text above a scrolling
 *     portrait strip — mirroring the h-screen + bottom-strip layout.
 *   • Text (badge, title words, description, CTA) fade in with staggered
 *     @keyframes entrance animations (spring cubic-bezier approx.).
 *   • Portrait strip scrolls continuously left via @keyframes teamMarquee
 *     (translateX 0 → -50%, 2× image set for seamless loop).
 *   • --neg / --pos cards tilt -2° / +5° matching the React source logic.
 *   • Vertical gradient mask fades the top/bottom edges of the strip.
 * ──────────────────────────────────────────────────────────────── */

@keyframes teamFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes teamMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Section shell */
.team-marquee {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-inline: 1.5rem;
  padding-top: 5rem;
  padding-bottom: 0;
}

/* Centred text block — pushed up to leave room for the strip */
.team-marquee__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: calc(44vh + 2rem);
}

/* Tagline badge */
.team-marquee__badge {
  display: inline-block;
  padding: .4rem 1.1rem;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,.35);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: teamFadeUp .7s cubic-bezier(.22,1,.36,1) forwards;
}

/* Title */
.team-marquee__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 .3em;
  margin-bottom: 1.25rem;
}
.team-marquee__word {
  display: inline-block;
  opacity: 0;
  animation: teamFadeUp .75s cubic-bezier(.22,1,.36,1) forwards;
}
.team-marquee__word--italic {
  font-style: italic;
  color: var(--gold-lt);
}

/* Description */
.team-marquee__desc {
  max-width: 52ch;
  font-size: 1.05rem;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: teamFadeUp .75s cubic-bezier(.22,1,.36,1) forwards;
}

/* Actions */
.team-marquee__actions {
  opacity: 0;
  animation: teamFadeUp .75s cubic-bezier(.22,1,.36,1) forwards;
}
.team-marquee__cta {
  display: inline-flex;
  align-items: center;
  padding: .85rem 2.2rem;
  border-radius: 50px;
  background: var(--gold);
  color: var(--navy);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,.35);
}
.team-marquee__cta:hover {
  background: var(--gold-lt);
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(201,168,76,.45);
}
.team-marquee__cta:active { transform: scale(.95); }

/* Portrait strip — absolute bottom, masked top/bottom edges */
.team-marquee__strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 42vh;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-image:         linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

/* Scrolling track — 2× image set, translates 0 → -50% for seamless loop */
.team-marquee__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  height: 100%;
  align-items: flex-end;
  padding-bottom: 1rem;
  animation: teamMarquee 38s linear infinite;
}

/* Individual portrait card */
.team-marquee__card {
  flex-shrink: 0;
  height: min(85%, 260px);
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.55);
  margin: 0;
  position: relative;
  cursor: default;
  transition: box-shadow var(--transition);
}
.team-marquee__card:hover {
  box-shadow: 0 12px 40px rgba(201,168,76,.35);
}
.team-marquee__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .5s ease;
}
.team-marquee__card:hover img { transform: scale(1.04); }

/* Name/role caption fades in on hover */
.team-marquee__card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(13,27,42,.95) 0%, rgba(13,27,42,0) 100%);
  padding: 2rem 1rem .9rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.team-marquee__card:hover figcaption { opacity: 1; }
.team-marquee__card figcaption strong {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
}
.team-marquee__card figcaption span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Tilt — matches (index % 2 === 0 ? -2 : 5)deg in React source */
.team-marquee__card--neg { transform: rotate(-2deg); }
.team-marquee__card--pos { transform: rotate(5deg);  }
.team-marquee__card--neg:hover,
.team-marquee__card--pos:hover { transform: rotate(0deg) scale(1.02); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .team-marquee__track { animation: none; }
  .team-marquee__badge,
  .team-marquee__word,
  .team-marquee__desc,
  .team-marquee__actions { animation: none; opacity: 1; }
}

@media (max-width: 700px) {
  .team-marquee__content { margin-bottom: calc(38vh + 1rem); }
  .team-marquee__strip   { height: 36vh; }
  .team-marquee__card    { height: min(85%, 200px); }
}

/* ──────────────────  LOCATIONS  ────────────────── */
.locations { background: var(--navy); }
.locations .section__eyebrow { color: var(--gold); }
.locations .section__title { color: var(--white); }
.locations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.location-card {
  background: var(--navy-80);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: var(--transition);
}
.location-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,168,76,.12);
}
.location-card__header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.location-card__header svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  flex-shrink: 0;
}
.location-card__header h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}
.location-card address {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.location-card__hours {
  margin-bottom: 1.5rem;
}
.location-card__hours li {
  display: flex;
  justify-content: space-between;
  font-size: .875rem;
  padding-block: .3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
}
.location-card__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

/* ──────────────────  CONTACT CHIPS  ────────────────── */
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  transition: var(--transition);
}
.contact-chip svg { width: 16px; height: 16px; flex-shrink: 0; }
.contact-chip.whatsapp {
  background: rgba(37,211,102,.12);
  color: #25d366;
  border: 1px solid rgba(37,211,102,.25);
}
.contact-chip.whatsapp:hover { background: rgba(37,211,102,.22); }
.contact-chip.email {
  background: rgba(201,168,76,.12);
  color: var(--gold-lt);
  border: 1px solid var(--border);
}
.contact-chip.email:hover { background: rgba(201,168,76,.22); }
.contact-chip.phone {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.15);
}
.contact-chip.phone:hover { background: rgba(255,255,255,.12); }

/* ──────────────────  BOOKING  ────────────────── */
.booking { background: var(--cream); }
.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.booking__copy p { color: var(--muted); margin-bottom: 1.5rem; }
.booking__direct { margin-top: 2rem; }

/* ──────────────────  FORMS  ────────────────── */
.booking__form, .contact__form {
  background: var(--white);
  border: 1px solid rgba(13,27,42,.08);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .8rem 1rem;
  border: 1.5px solid rgba(13,27,42,.12);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-group textarea { resize: vertical; }
.form-note {
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
  margin-top: .75rem;
}

/* ──────────────────  CONTACT SECTION  ────────────────── */
.contact { background: var(--white); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact__grid > div p { color: var(--muted); margin-top: 1rem; }

/* ──────────────────  FOOTER  ────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 4rem;
  padding-block: 5rem;
}
.footer__brand p {
  font-size: .9rem;
  margin-top: 1rem;
  max-width: 30ch;
  line-height: 1.6;
}
.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.footer__social svg { width: 16px; height: 16px; }
.footer__nav h4,
.footer__contact h4 {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__nav ul { display: flex; flex-direction: column; gap: .6rem; }
.footer__nav a { font-size: .875rem; transition: color var(--transition); }
.footer__nav a:hover { color: var(--gold); }
.footer__contact p { font-size: .875rem; margin-bottom: .6rem; line-height: 1.5; }
.footer__contact a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer__contact a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 1.5rem;
}
.footer__bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }

/* ──────────────────  RESPONSIVE  ────────────────── */
@media (max-width: 900px) {
  .about__grid,
  .locations__grid,
  .booking__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: span 2; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav__links { display: none; flex-direction: column; }
  .nav__links.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 999;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.3rem;
  }
  .nav__burger { display: flex; }
  .site-header { background: var(--navy); }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .about__badge { right: .5rem; bottom: -1rem; }
}

@media (max-width: 480px) {
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hero__title { font-size: 3rem; }
  .section { padding-block: 4rem; }
}
