/* ==========================================================================
   DIVINE FEMININE — styles
   --------------------------------------------------------------------------
   Written mobile-first: the base rules are for phones, and the @media blocks
   near the bottom add changes for wider screens.

   THE EASIEST THINGS TO EDIT ARE RIGHT HERE  ↓  (colours & fonts)
   ========================================================================== */

:root {
  /* ---- Colours (from your brief) ---------------------------------------- */
  --bg:          #0A0A0A; /* near-black page background            */
  --bg-elev:     #141414; /* slightly lighter panels / inputs      */
  --red:         #DC143C; /* crimson — headings & primary buttons  */
  --red-bright:  #FF0800; /* electric red — hovers & highlights     */
  --white:       #FFFFFF; /* body text                              */
  --muted:       #B0B0B0; /* captions / secondary text              */
  --line:        rgba(255, 255, 255, 0.12); /* hairline borders     */

  /* ---- Fonts ------------------------------------------------------------ */
  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif; /* headings */
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;            /* text     */

  /* ---- Layout ----------------------------------------------------------- */
  --header-h: 72px;            /* height of the fixed top bar */
  --maxw:     1120px;          /* max content width           */
}

/* ==========================================================================
   BASE / RESET
   ========================================================================== */

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

* { margin: 0; }

html {
  scroll-behavior: smooth;          /* anchor links glide instead of jump   */
  scroll-padding-top: var(--header-h); /* stop sections hiding under header */
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.0625rem;             /* ~17px */
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;               /* never scroll sideways */
}

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

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

/* Visible outline when navigating by keyboard (accessibility) */
:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
}

/* Screen-reader "skip to content" link, hidden until focused */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 200;
  background: var(--red);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* Centre wrapper used inside sections */
.container {
  width: min(var(--maxw), 90%);
  margin-inline: auto;
}

/* ==========================================================================
   TYPOGRAPHY HELPERS
   ========================================================================== */

.hero__title,
.section__title,
.logo,
.enquiry__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.01em;
}

/* Small location label sitting just under the hero headline */
.hero__location {
  margin: 0 0 1.6rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
}

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

.btn {
  --btn-bg: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease,
              transform 0.2s ease, border-color 0.2s ease;
}

/* Solid crimson button */
.btn--primary {
  background: var(--red);
  color: #fff;
}
.btn--primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
}

/* Outlined button */
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

/* Bigger version for the hero */
.btn--lg {
  padding: 1.05rem 2.1rem;
  font-size: 1rem;
}

/* ==========================================================================
   [HEADER]  fixed top bar
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;              /* pin to top, full width */
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;        /* see-through over the hero */
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
/* JS adds .is-scrolled once you scroll down: bar turns solid */
.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}

.site-header__inner {
  width: min(var(--maxw), 92%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- Logo wordmark --- */
.logo {
  display: flex;
  gap: 0.4ch;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.logo__word--accent { color: var(--red); }

/* The header's Book Now button uses the shared .btn / .btn--primary styles below. */

/* ==========================================================================
   [HERO]  #home
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;             /* full screen height (mobile-safe unit) */
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Placeholder background shown until a hero video is added: dark base with
     two soft red glows. */
  background:
    radial-gradient(55% 55% at 72% 18%, rgba(220, 20, 60, 0.38), transparent 60%),
    radial-gradient(50% 50% at 12% 88%, rgba(255, 8, 0, 0.22), transparent 62%),
    var(--bg);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;              /* fill the area without squishing */
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* darker on the left (behind text), fading right; plus a dark base */
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.55) 45%, rgba(10, 10, 10, 0.2) 100%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.9) 0%, transparent 38%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--maxw), 92%);
  margin-inline: auto;
  padding-top: var(--header-h);
}

.hero__title {
  font-weight: 800;
  color: var(--red);
  font-size: clamp(2.5rem, 9.5vw, 7rem);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
}
/* second line in bright electric red for a two-tone headline */
.hero__title-accent { color: var(--red-bright); }

.hero__subtitle {
  max-width: 44ch;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0;
}

/* ==========================================================================
   SECTIONS (shared)
   ========================================================================== */

.section {
  padding-block: clamp(4rem, 10vw, 7.5rem);
}

.section__head { max-width: 720px; }

.section__title {
  font-weight: 800;
  color: var(--red);
  font-size: clamp(2.6rem, 8vw, 5rem);
  margin-bottom: 1.2rem;
}

.section__lead {
  color: var(--white);
  font-weight: 300;
  font-size: 1.15rem;
  max-width: 60ch;
}

/* ==========================================================================
   [ABOUT]  #about
   ========================================================================== */

.about__grid {
  display: grid;
  gap: 2.5rem;
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.9rem;
}
.about__list li {
  position: relative;
  padding-left: 2.2rem;
}
.about__list li::before {
  content: "👠"; /* little stiletto bullet */
  position: absolute;
  left: 0;
  top: -0.02em;
  font-size: 1.05rem;
}

.about__meta {
  padding: 1.25rem 1.5rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 12px;
}
.about__meta-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--red);
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}
.about__meta p { color: var(--muted); }
.arrow-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-weight: 600;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.arrow-link:hover { color: var(--red); }

/* image (or placeholder until a photo is added) */
.about__media { margin: 0; }
.about__img,
.media-placeholder {
  width: 100%;
  border-radius: 16px;
}
.about__img { display: block; object-fit: cover; }
.media-placeholder {
  aspect-ratio: 4 / 5;
  display: grid;
  place-content: center;
  gap: 0.35rem;
  text-align: center;
  color: var(--muted);
  background:
    radial-gradient(60% 60% at 50% 30%, rgba(220, 20, 60, 0.18), transparent 70%),
    var(--bg-elev);
  border: 1px dashed rgba(255, 255, 255, 0.18);
}
.media-placeholder span {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.4rem;
  color: var(--white);
}
.media-placeholder small { font-size: 0.85rem; }

/* maps of both venues */
.about__maps {
  display: grid;
  gap: 1.5rem;
  margin-top: 0.25rem;
}
.about__map { margin: 0; }
.about__map-label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--red);
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}
.about__map iframe {
  width: 100%;
  height: clamp(240px, 34vw, 300px);
  display: block;
  border-radius: 14px;
  border: 1px solid var(--line);
  filter: grayscale(0.2); /* softens the light map to suit the dark theme */
}

@media (min-width: 700px) {
  .about__maps { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: 3rem 4rem;
  }
  /* photo sits beside the intro; the box + maps span full width beneath */
  .about__meta,
  .about__maps { grid-column: 1 / -1; }
  /* keep the photo from towering over the shorter text beside it */
  .about__img { max-height: 540px; }
}

/* ==========================================================================
   [INSTRUCTOR]  #instructor
   ========================================================================== */

.instructor {
  background:
    radial-gradient(50% 60% at 15% 45%, rgba(220, 20, 60, 0.08), transparent 60%),
    var(--bg);
}

.instructor__grid {
  display: grid;
  gap: 2.5rem;
}
.instructor__content p + p { margin-top: 1.1rem; }

.instructor__video,
.instructor__media .media-placeholder {
  width: 100%;
  border-radius: 16px;
}
.instructor__video {
  display: block;
  max-width: 340px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  margin-inline: auto;
}

.media-placeholder--video span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 900px) {
  .instructor__grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 4rem;
  }
  .instructor__media { order: -1; } /* video sits on the left */
}

/* ==========================================================================
   [SERVICES]  #services
   ========================================================================== */

.services__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 2rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.service-card:hover {
  border-color: rgba(220, 20, 60, 0.5);
  transform: translateY(-4px);
}

/* the primary/highlighted card */
.service-card--featured {
  border-color: rgba(220, 20, 60, 0.4);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(220, 20, 60, 0.12), transparent 70%),
    var(--bg-elev);
}

.service-card__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--red);
  font-size: 2rem;
  line-height: 1;
}
.service-card__price {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.service-card__desc {
  flex: 1; /* pushes the button to the bottom so cards line up */
  color: var(--white);
  font-weight: 300;
}
.service-card .btn {
  align-self: flex-start;
  margin-top: 0.6rem;
}

@media (min-width: 800px) {
  .services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   [GALLERY]  #gallery
   ========================================================================== */

.gallery__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
}
.gallery__item img { transition: transform 0.4s ease; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__ph,
.gallery__item img,
.gallery__item video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.gallery__ph {
  display: grid;
  place-items: center;
  background:
    radial-gradient(70% 70% at 50% 30%, rgba(220, 20, 60, 0.14), transparent 70%),
    var(--bg-elev);
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.gallery__item:hover .gallery__ph {
  border-color: rgba(220, 20, 60, 0.5);
  transform: scale(1.02);
}
.gallery__ph span {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  font-size: 1.1rem;
}

@media (min-width: 800px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

/* ==========================================================================
   [INTRO VIDEO]  #intro
   ========================================================================== */
.intro__frame {
  margin: 0 auto;
  max-width: 900px;        /* keeps the video a comfortable size on big screens */
  text-align: center;
}
.intro__video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;    /* reserves the right space before the video loads */
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #000;
}
.intro__caption {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.5vw, 1.65rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
}

/* ==========================================================================
   [INSTAGRAM]  #instagram
   ========================================================================== */
.instagram .container { text-align: center; }
.instagram .section__lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
}
.instagram__handle {
  color: var(--red);
  font-weight: 700;
  white-space: nowrap;
}
.instagram__handle:hover { color: var(--red-bright); text-decoration: underline; }

.instagram__feed { margin: 2.5rem auto 0; }

/* Tidy placeholder shown until the live feed embed code is pasted in */
.instagram__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 3rem 1.5rem;
  border: 2px dashed var(--line);
  border-radius: 16px;
  background: var(--bg-elev);
  color: var(--muted);
}
.instagram__placeholder-icon { font-size: 2.5rem; }
.instagram__placeholder-text { margin: 0; max-width: 420px; }

.instagram__cta { margin-top: 2rem; }

/* ==========================================================================
   [REVIEWS]  #reviews
   ========================================================================== */

.reviews__grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}
.review-card {
  position: relative;
  margin: 0;
  padding: 2rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
}
/* subtle decorative quote mark */
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 0.4rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(220, 20, 60, 0.22);
}
.review-card__quote {
  flex: 1;
  color: var(--white);
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 1.55;
}
.review-card__name {
  font-style: normal;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.02em;
}

@media (min-width: 800px) {
  .reviews__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Testimonials carousel: one review at a time, swipeable ---- */
.carousel {
  margin: 3rem auto 0;   /* space above, and centred on the page */
  max-width: 760px;      /* keeps a single card a comfortable reading width */
}
.carousel__viewport {
  overflow: hidden;      /* hides the reviews waiting off to the sides */
  border-radius: 16px;
}
.carousel__track {
  display: flex;         /* all reviews sit in a row, side by side */
  align-items: stretch;  /* every card matches the tallest, so height doesn't jump */
  margin: 0;
  padding: 0;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  touch-action: pan-y;   /* page still scrolls vertically; we handle the sideways swipe */
  cursor: grab;
}
.carousel__track.is-dragging {
  transition: none;      /* follow the finger instantly while swiping */
  cursor: grabbing;
}
.carousel__slide {
  flex: 0 0 100%;        /* each review fills the whole window */
  min-width: 0;
  list-style: none;
  box-sizing: border-box;
}
.carousel__slide .review-card {
  height: 100%;          /* fill the slide so every card lines up */
  user-select: none;     /* stops text highlighting while you swipe */
}

/* Controls row:  ‹   • • •   › */
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.carousel__arrow {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--white);
  background: var(--bg-elev);
  border: 1px solid var(--red);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.carousel__arrow:hover { background: var(--red); color: var(--white); }
.carousel__arrow:active { transform: scale(0.94); }
.carousel__arrow:disabled {              /* dimmed at the first / last review */
  opacity: 0.35;
  cursor: default;
}
.carousel__arrow:disabled:hover { background: var(--bg-elev); color: var(--white); }

.carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel__dot:hover { background: rgba(255, 255, 255, 0.5); }
.carousel__dot.is-active {
  background: var(--red-bright);
  transform: scale(1.3);
}

@media (prefers-reduced-motion: reduce) {
  .carousel__track { transition: none; }
}

/* ==========================================================================
   [FAQ]  #faq
   ========================================================================== */

.faq__list {
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
  max-width: 820px;
}
.faq__item {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  color: var(--red);
  font-size: 1.7rem;
  line-height: 1;
  flex-shrink: 0;
}
.faq__item[open] summary::after { content: "–"; }
.faq__item summary:hover { color: var(--red); }
.faq__answer {
  padding: 0 1.5rem 1.35rem;
  color: var(--muted);
  max-width: 68ch;
}

/* ==========================================================================
   [BOOKING]  #booking
   ========================================================================== */

.booking {
  /* a whisper of red at the very top edge to separate it from the section above */
  background:
    radial-gradient(80% 40% at 50% 0%, rgba(220, 20, 60, 0.10), transparent 70%),
    var(--bg);
}

/* Frame around the Cal.com calendar */
.booking__calendar {
  margin-top: 2.75rem;
  min-height: 640px;
  border: 1px solid rgba(220, 20, 60, 0.25);
  border-radius: 16px;
  overflow: hidden;
  background: #0f0f0f;
}

/* --- Private-session enquiry --- */
.booking__enquiry {
  margin-top: 3.5rem;
  display: grid;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.enquiry__title {
  font-weight: 700;
  color: var(--red);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin-bottom: 0.6rem;
}
.enquiry__text {
  color: var(--muted);
  max-width: 48ch;
}

/* form fields */
.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}
.field label {
  font-weight: 600;
  font-size: 0.95rem;
}
.field input,
.field textarea {
  font: inherit;
  color: #fff;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { resize: vertical; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.25);
}

/* message shown after submitting */
.form-status {
  min-height: 1.2em;
  margin-top: 0.4rem;
  font-weight: 500;
}
.form-status.is-success { color: #4ade80; }  /* green  */
.form-status.is-error   { color: var(--red-bright); }

/* the hidden honeypot field — pushed far off-screen */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* ==========================================================================
   [FOOTER]
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 2.5rem;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
.site-footer__brand {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--red);
}
.site-footer__social {
  display: flex;
  gap: 1.5rem;
}
.site-footer__social a {
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}
.site-footer__social a:hover { color: var(--red); }
.site-footer__legal {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 200;
  width: min(680px, calc(100% - 1.5rem));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.5rem;
  padding: 1.1rem 1.35rem;
  background: #141414;
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 14px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.55);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__text {
  flex: 1 1 260px;
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}
.cookie-banner__text a {
  color: var(--white);
  border-bottom: 1px solid var(--red);
}
.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.cookie-banner .btn {
  padding: 0.68rem 1.1rem;
  font-size: 0.8rem;
}

/* ==========================================================================
   LEGAL PAGES  (privacy.html, terms.html)
   ========================================================================== */

.legal-topbar { border-bottom: 1px solid var(--line); }
.legal-topbar__inner {
  width: min(var(--maxw), 92%);
  margin-inline: auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.8rem;
}

.legal { padding-block: clamp(2.5rem, 7vw, 4.5rem); }
.legal .container { max-width: 760px; }
.legal h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--red);
  font-size: clamp(2.4rem, 7vw, 3.75rem);
  line-height: 0.95;
  margin-bottom: 0.5rem;
}
.legal__updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.legal h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--red);
  font-size: 1.5rem;
  margin: 2.25rem 0 0.7rem;
}
.legal p,
.legal li {
  color: #d6d6d6;
  line-height: 1.7;
}
.legal p { margin-bottom: 1rem; }
.legal ul { margin: 0 0 1rem 1.2rem; }
.legal li { margin-bottom: 0.4rem; }
.legal a {
  color: var(--white);
  border-bottom: 1px solid var(--red);
}
.legal__note {
  margin: 1.25rem 0 2rem;
  padding: 1rem 1.25rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* footer legal links row */
.site-footer__legal-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.site-footer__legal-links a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.site-footer__legal-links a:hover { color: var(--red); }

/* ==========================================================================
   DESKTOP / TABLET  (wider screens)
   ========================================================================== */

@media (min-width: 800px) {
  :root { --header-h: 84px; }

  /* booking: the enquiry card doesn't need to stretch full width on big screens */
  .booking__enquiry { max-width: 640px; }
}

/* ==========================================================================
   REDUCED MOTION — respect visitors who prefer less animation
   ========================================================================== */

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