/* =============================================================
   ELECTRIC MAGPIE — site.css
   Brand tokens are defined as CSS custom properties.
   Update the values in :root when the Brand Style Guide is confirmed.
   ============================================================= */

/* -------------------------------------------------------------
   Brand Tokens (TODO: replace with confirmed Brand Style Guide values)
   ------------------------------------------------------------- */
:root {
  /* Colors — from Brand Style Guide (confirmed 2026-03-20) */
  --color-bg: #090030;           /* Core: deep navy-black */
  --color-bg-alt: #1a0b4f;       /* Supporting: deep navy */
  --color-text: #ebebeb;         /* Core: light grey */
  --color-text-muted: #b0a8c8;
  --color-primary: #ea00fc;      /* Core: electric magenta */
  --color-primary-dark: #b000d4; /* Supporting: darker magenta */
  --color-secondary: #1a0b4f;    /* Supporting: deep navy */
  --color-accent: #d9b8ff;       /* Supporting: lavender */
  --color-border: #2d1a5e;
  --color-surface: #f5f5f5;      /* Supporting: off-white (light mode surfaces) */
  --color-success: #4caf50;
  --color-error: #ef5350;

  /* Typography — from Brand Style Guide (confirmed 2026-03-20) */
  --font-heading: 'Bebas Neue', 'Arial Black', sans-serif; /* Primary: Bebas Neue Bold */
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif; /* Secondary: Inter Regular */
  --font-mono: 'Fira Code', monospace;

  /* Spacing scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 720px;
  /* Hero content tuning */
  --hero-content-maxwidth: 520px;
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul, ol {
  list-style: none;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover, a:focus-visible {
  text-decoration: underline;
}

/* -------------------------------------------------------------
   Accessibility
   ------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--color-primary);
  color: var(--color-bg);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 1000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: var(--space-md);
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* -------------------------------------------------------------
   Layout utilities
   ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding-block: var(--space-2xl);
}

/* -------------------------------------------------------------
   Typography
   ------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); text-transform: uppercase; }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); text-transform: uppercase; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p { max-width: 65ch; }

.lead {
  font-size: 1.2rem;
  color: var(--color-text-muted);
}

.text-accent {
  color: var(--color-primary);
}

/* -------------------------------------------------------------
   Buttons
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg);
  border-color: var(--color-primary);
}

.btn-primary:hover, .btn-primary:focus-visible {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover, .btn-outline:focus-visible {
  background-color: var(--color-primary);
  color: var(--color-bg);
  text-decoration: none;
}

/* -------------------------------------------------------------
   Header & Navigation
   ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-md);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  display: block;
  height: clamp(72px, 7vw, 96px);
  width: auto;
}

.site-logo:hover {
  text-decoration: none;
}

/* Fallback logo text if SVG fails */
.site-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.site-nav__links {
  display: flex;
  gap: var(--space-lg);
}

.site-nav__links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] {
  color: var(--color-primary);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: var(--space-sm);
  cursor: pointer;
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-bg-alt);
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-md);
    border-bottom: 1px solid var(--color-border);
  }

  .site-nav__links.is-open {
    display: flex;
  }

  .site-nav .btn-primary {
    display: none;
  }

  .site-nav__links .btn-mobile-cta {
    display: inline-flex;
  }
}

/* -------------------------------------------------------------
   Footer
   ------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-xl);
  margin-top: var(--space-2xl);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-lg);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-nav a:hover {
  color: var(--color-primary);
}

.footer-copy {
  width: 100%;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.footer-social {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.footer-social .social-link {
  flex-direction: row;
  gap: var(--space-xs);
}

.footer-social .social-link__name {
  font-size: 0.75rem;
}

/* -------------------------------------------------------------
   Hero
   ------------------------------------------------------------- */
.hero {
  padding-block: var(--space-2xl);
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-secondary) 100%);
  position: relative;
  overflow: hidden;
  /* Ensure the hero is tall enough to show the montage video */
  min-height: 60vh;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(234, 0, 252, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1; /* sits above video but below content */
}

/* Left-to-transparent dark gradient — blends the content panel into the
   video background on the right, creating a cinematic split effect. */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(9, 0, 48, 0.80) 0%, rgba(9, 0, 48, 0.35) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  max-width: var(--max-width-narrow);
  z-index: 2; /* ensure content sits above the background video and overlays */
}

/* Make the hero content easier to read on top of the video by giving it
   a solid/semi-opaque background and padding. On small screens the
   background becomes fully opaque for better contrast. */
.hero__content {
  background-color: rgba(9, 0, 48, 0.78); /* uses --color-bg with alpha */
  padding: var(--space-xl);
  border-radius: 12px;
}

/* Make the content narrower and align to the left side of the container
   so the right side appears reduced. Use a CSS variable to allow easy
   tuning: --hero-content-maxwidth. On small screens the content will
   revert to full-width with reasonable side padding. */
.hero__content {
  max-width: var(--hero-content-maxwidth, 520px);
  margin-inline-start: 0; /* left-align within the centered .container */
  margin-inline-end: auto; /* push remaining space to the right */
}

/* -------------------------------------------------------------
   Hero — mobile stacked layout (video above, text below)
   On screens ≤ 768px the hero switches from an overlapping
   full-bleed video to a stacked column: video panel on top,
   content panel below, both fully visible.
   ------------------------------------------------------------- */

/* Background video shown in the hero — autoplay, muted, looped. Use object-fit to cover the area. */
.hero__bgvideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  /* slight opacity to let gradient and overlays show through */
  opacity: 0.75; /* reduce intrusion of the moving image */
  /* Show the upper part of the video by default. Adjust these values
     to control which portion of the video is visible when cropped. */
  object-position: 50% 30%; /* horizontal center, 30% down from top */
}

/* If you need a different offset per-hero, add a modifier class to the
   <video> element and override object-position, e.g.:
   <video class="hero__bgvideo hero__bgvideo--top">…</video>
   .hero__bgvideo--top { object-position: 50% 20%; }
*/

/* Play button overlay — shown on mobile when autoplay is suppressed.
   Hidden by default; JS removes the `hidden` attribute on mobile. */
.hero__play-btn {
  display: none; /* hidden on desktop; JS + mobile CSS make it visible */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  z-index: 2;
}

.hero__play-btn:not([hidden]) {
  display: flex;
}

.hero__play-btn svg {
  background-color: rgba(9, 0, 48, 0.72);
  border-radius: 50%;
  padding: 0.75rem;
  width: 64px;
  height: 64px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  border: 2px solid var(--color-primary);
}

.hero__play-btn:hover svg,
.hero__play-btn:focus-visible svg {
  background-color: rgba(234, 0, 252, 0.25);
  transform: scale(1.1);
}

.hero__play-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.hero__play-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
  background-color: rgba(9, 0, 48, 0.72);
  padding: 0.3rem 0.75rem;
  border-radius: 0.25rem;
}

@media (max-width: 768px) {
  .hero {
    display: flex;
    flex-direction: column;
    padding-block: 0;
    min-height: unset;
  }

  /* Hide the decorative overlays — not needed when the
     video and text are in separate stacked panels. */
  .hero::before,
  .hero::after {
    display: none;
  }

  /* Video panel: fixed height block at the top of the hero */
  .hero__video-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .hero__bgvideo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    opacity: 1; /* full opacity — no text overlap */
  }

  /* Content panel: sits below the video, no background box needed */
  .hero .container {
    padding-block: var(--space-xl) var(--space-2xl);
  }

  .hero__content {
    max-width: 100%;
    margin-inline: 0;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
  }
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--color-text);
}

.hero__headline span {
  color: var(--color-primary);
  display: block;
}

.hero__subheadline {
  margin-top: var(--space-md);
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 45ch;
}

.hero__cta {
  margin-top: var(--space-xl);
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Dismiss (×) button — top-right corner of the content panel.
   Only shown in overlay mode (≥769px); hidden on mobile stacked layout. */
.hero__dismiss-btn {
  display: none; /* shown via the ≥769px rule below */
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  background: rgba(9, 0, 48, 0.6);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease;
  z-index: 3;
}

.hero__dismiss-btn:hover,
.hero__dismiss-btn:focus-visible {
  background: rgba(234, 0, 252, 0.25);
  color: var(--color-text);
}

.hero__dismiss-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Restore pill — floats in the top-left of the hero after content is dismissed.
   Hidden by default; JS toggles it alongside the dismissed state. */
.hero__restore-btn {
  display: none; /* shown by JS (overlay mode only) */
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  padding: var(--space-xs) var(--space-md);
  background: rgba(9, 0, 48, 0.82);
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  cursor: pointer;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 3;
}

.hero__restore-btn:not([hidden]) {
  display: block;
}

.hero__restore-btn:hover,
.hero__restore-btn:focus-visible {
  background: rgba(234, 0, 252, 0.3);
  transform: scale(1.05);
}

.hero__restore-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Dismissed state — content fades and collapses so the video shows through */
.hero__content.is-dismissed {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Overlay mode (769px – 1199px): show dismiss button; content is position:relative
   so the absolutely-positioned dismiss button is scoped to it. */
@media (min-width: 769px) and (max-width: 1199px) {
  .hero__content {
    position: relative;
  }

  .hero__dismiss-btn {
    display: flex;
  }
}

/* Wide desktop (≥1200px): enlarge the content panel so it covers more of the
   hero and the dismiss button is no longer needed — the video fills the rest
   as an intentional cinematic backdrop. */
@media (min-width: 1200px) {
  :root {
    /* 680px caps the panel on very wide screens; 52vw keeps it proportional
       on screens between 1200px and ~1300px (e.g. MacBook Air at 1280px). */
    --hero-content-maxwidth: min(680px, 52vw);
  }

  .hero__content {
    position: relative;
  }
}

/* -------------------------------------------------------------
   Page Content
   ------------------------------------------------------------- */
.page-content {
  padding-block: var(--space-2xl);
}

.page-header {
  padding-block: var(--space-xl) var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-xl);
}

/* Prose (markdown body content) */
.prose h2 { margin-top: var(--space-xl); margin-bottom: var(--space-md); }
.prose h3 { margin-top: var(--space-lg); margin-bottom: var(--space-sm); }
.prose p { margin-bottom: var(--space-md); }
.prose ul, .prose ol { margin-bottom: var(--space-md); padding-left: var(--space-lg); list-style: disc; }
.prose li { margin-bottom: var(--space-xs); }
.prose strong { color: var(--color-primary); }
.prose blockquote {
  border-left: 3px solid var(--color-primary);
  padding-left: var(--space-lg);
  color: var(--color-text-muted);
  font-style: italic;
  margin-block: var(--space-lg);
}

/* -------------------------------------------------------------
   Service Cards
   ------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.service-card {
   background-color: var(--color-bg-alt);
   border: 1px solid var(--color-border);
   border-radius: var(--radius-md);
   padding: var(--space-xl);
   display: flex;
   flex-direction: column;
   gap: var(--space-md);
   transition: border-color 0.2s, transform 0.2s;
 }

 .service-card:hover {
   border-color: var(--color-primary);
   transform: translateY(-2px);
 }

 .service-card__icon {
   width: 60px;
   height: 60px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: var(--space-sm);
 }

 .service-card__icon img {
   width: 100%;
   height: 100%;
   object-fit: contain;
   filter: drop-shadow(0 0 6px rgba(234, 0, 252, 0.25));
   transition: transform 0.3s, filter 0.3s;
 }

 .service-card:hover .service-card__icon img {
   transform: scale(1.1);
   filter: drop-shadow(0 0 10px rgba(234, 0, 252, 0.5));
 }

 .service-card__header {
   display: flex;
   align-items: center; /* vertically center icon and title */
   gap: var(--space-md);
   margin-bottom: var(--space-sm);
 }

 .service-card__name {
  font-family: var(--font-heading);
  /* match the visual size of the icon while remaining responsive */
  font-size: clamp(1.4rem, 2.5vw, 60px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  flex: 1;
  line-height: 1;
 }

.service-card__tagline {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.service-card__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-card__benefits li::before {
  content: '→ ';
  color: var(--color-primary);
}

.service-card__formats {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: auto;
}

.format-badge {
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* -------------------------------------------------------------
   Video Catalog
   ------------------------------------------------------------- */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.video-card {
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.video-card:hover {
  border-color: var(--color-primary);
}

.video-card__thumb {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.video-card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.video-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.video-card__description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.video-embed-container {
  position: relative;
  aspect-ratio: 16 / 9;
}

.video-embed-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.empty-state {
  text-align: center;
  color: var(--color-text-muted);
  padding: var(--space-2xl);
  font-style: italic;
}

/* details/summary toggle for videos embeds */
details.video-toggle summary {
  cursor: pointer;
  list-style: none;
}

details.video-toggle summary::marker,
details.video-toggle summary::-webkit-details-marker {
  display: none;
}

details.video-toggle summary .watch-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

details.video-toggle[open] .video-embed-container {
  margin-top: var(--space-md);
}

/* -------------------------------------------------------------
   Booking Form
   ------------------------------------------------------------- */
.booking-section {
  max-width: var(--max-width-narrow);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  border-radius: var(--radius-sm);
  padding: 0.75rem var(--space-md);
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid {
  border-color: var(--color-error);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-radio-group {
  display: flex;
  gap: var(--space-lg);
}

.form-radio-group label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1rem;
  text-transform: none;
  cursor: pointer;
}

.field-error {
  color: var(--color-error);
  font-size: 0.8rem;
  display: none;
}

.field-error.is-visible {
  display: block;
}

/* Hidden honeypot */
.form-honeypot {
  display: none;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

.form-status {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  display: none;
}

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

.form-status--success {
  background-color: rgba(76, 175, 80, 0.1);
  border: 1px solid var(--color-success);
  color: var(--color-success);
}

.form-status--error {
  background-color: rgba(239, 83, 80, 0.1);
  border: 1px solid var(--color-error);
  color: var(--color-error);
}

/* -------------------------------------------------------------
   Social Links (booking page)
   ------------------------------------------------------------- */
.social-links {
  margin-top: var(--space-xl);
  text-align: center;
}

.social-links__label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.social-links__list {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.social-link svg {
  fill: currentColor;
  transition: fill 0.2s;
}

.social-link__name {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--color-primary);
}

/* -------------------------------------------------------------
   CTA Block
   ------------------------------------------------------------- */
.cta-block {
  background: linear-gradient(135deg, var(--color-bg-alt), var(--color-secondary));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  margin-top: var(--space-2xl);
}

.cta-block h2, .cta-block h3 {
  margin-bottom: var(--space-md);
}

.cta-block p {
  color: var(--color-text-muted);
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

/* -------------------------------------------------------------
   About page
   ------------------------------------------------------------- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-2xl);
  align-items: start;
}

.about-portrait {
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  width: 100%;
  border: 2px solid var(--color-border);
}

@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    max-width: 300px;
    margin-inline: auto;
  }
}

/* -------------------------------------------------------------
   FAQ
   ------------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.faq-item {
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.faq-item summary {
  padding: var(--space-lg);
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-muted);
}

/* -------------------------------------------------------------
   Photo Strip (home page)
   ------------------------------------------------------------- */
.photo-strip {
  overflow: hidden;
}

.photo-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 280px;
}

.photo-strip__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.photo-strip__grid img:hover {
  filter: brightness(1);
  transform: scale(1.04);
  z-index: 1;
  position: relative;
}

@media (max-width: 768px) {
  .photo-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    height: 360px;
  }
}

@media (max-width: 480px) {
  .photo-strip__grid {
    height: 280px;
  }
}

/* -------------------------------------------------------------
   About Gallery
   ------------------------------------------------------------- */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-block: var(--space-2xl);
}

.about-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  filter: brightness(0.85);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.about-gallery img:hover {
  filter: brightness(1);
  transform: scale(1.02);
}

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

  .about-gallery img {
    aspect-ratio: 16 / 9;
  }
}

/* -------------------------------------------------------------
   Responsive overrides
   ------------------------------------------------------------- */
@media (max-width: 480px) {
  .hero__cta {
    flex-direction: column;
  }

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

  .form-radio-group {
    flex-direction: column;
    gap: var(--space-md);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .site-footer .container {
    flex-direction: column;
  }
}
