/* Alpine.js cloak — hide elements until Alpine initializes */
[x-cloak] { display: none !important; }

/* ==========================================================================
   TUYYO CLUB — Design Tokens
   Single source of truth for all design variables.
   ========================================================================== */

:root {
  /* ------------------------------------------------------------------
     1. RAW PALETTE
     ------------------------------------------------------------------ */
  --raw-ink-950: #051422;
  --raw-ink-900: #0a2540;
  --raw-ink-800: #0b1f33;
  --raw-ocean-700: #0c4a6e;
  --raw-ocean-500: #1e6fa8;

  --raw-paper: #f5f1e8;
  --raw-sand: #e4d9c7;
  --raw-sand-light: #f3ecdc;

  --raw-teal-700: #3a6f6e;
  --raw-teal-500: #4e8c8b;
  --raw-teal-300: #7fb8b6;

  --raw-gold-700: #a8895a;
  --raw-gold-500: #c2a36b;
  --raw-gold-300: #d8c293;

  --raw-neutral-0: #ffffff;
  --raw-neutral-50: #f8fafc;
  --raw-neutral-100: #f1f5f9;
  --raw-neutral-200: #e2e8f0;
  --raw-neutral-300: #cbd5e1;
  --raw-neutral-400: #94a3b8;
  --raw-neutral-500: #64748b;
  --raw-neutral-600: #475569;
  --raw-neutral-700: #334155;
  --raw-neutral-800: #1e293b;
  --raw-neutral-900: #0f172a;

  --raw-success: #10b981;
  --raw-error: #ef4444;
  --raw-error-bg: #fef2f2;
  --raw-error-border: #fecaca;
  --raw-whatsapp: #25d366;

  /* ------------------------------------------------------------------
     2. SEMANTIC LAYER
     ------------------------------------------------------------------ */
  --color-bg-page: var(--raw-neutral-0);
  --color-bg-section-alt: var(--raw-neutral-50);
  --color-bg-dark: var(--raw-ink-800);
  --color-bg-paper: var(--raw-paper);
  --color-bg-card: var(--raw-neutral-0);

  --color-text-primary: var(--raw-ink-800);
  --color-text-secondary: var(--raw-neutral-700);
  --color-text-muted: var(--raw-neutral-500);
  --color-text-on-dark: var(--raw-neutral-0);
  --color-text-link: var(--raw-teal-700);
  --color-text-link-hover: var(--raw-ink-800);

  --color-accent-primary: var(--raw-teal-500);
  --color-accent-primary-dark: var(--raw-teal-700);
  --color-accent-primary-light: var(--raw-teal-300);

  --color-accent-gold: var(--raw-gold-500);
  --color-accent-gold-dark: var(--raw-gold-700);
  --color-accent-gold-light: var(--raw-gold-300);

  --color-border-subtle: var(--raw-neutral-200);
  --color-border-strong: var(--raw-neutral-300);

  --color-success: var(--raw-success);
  --color-error: var(--raw-error);
  --color-error-bg: var(--raw-error-bg);
  --color-error-border: var(--raw-error-border);

  --color-overlay-header: rgba(10, 27, 44, 0.22);
  --color-overlay-header-scroll: rgba(10, 27, 44, 0.92);
  --color-overlay-hero: rgba(10, 37, 64, 0.72);

  /* ------------------------------------------------------------------
     3. TYPE
     ------------------------------------------------------------------ */
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-4xl: clamp(2.5rem, 5vw, 3.5rem);

  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.6;
  --leading-relaxed: 1.7;

  --tracking-tight: -0.01em;
  --tracking-wide: 0.18em;

  /* ------------------------------------------------------------------
     4. SPACE — 4pt base grid
     ------------------------------------------------------------------ */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 96px;

  /* Containers */
  --container-max: 1280px;
  --container-narrow: 860px;
  --container-wide: 1440px;
  --sidebar-w: minmax(320px, 380px);
  --header-h: 72px;

  /* Breakpoints (reference only — CSS vars can't be used in @media) */
  --bp-xs: 380px;
  --bp-sm: 600px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;

  --card-min-w: 220px;

  /* ------------------------------------------------------------------
     5. RADIUS / SHADOW / MOTION
     ------------------------------------------------------------------ */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(11, 31, 51, .06), 0 1px 1px rgba(11, 31, 51, .04);
  --shadow-md: 0 4px 12px rgba(11, 31, 51, .08), 0 2px 4px rgba(11, 31, 51, .04);
  --shadow-lg: 0 16px 40px rgba(11, 31, 51, .12), 0 4px 12px rgba(11, 31, 51, .06);
  --shadow-xl: 0 20px 25px rgba(11, 31, 51, .12), 0 8px 10px rgba(11, 31, 51, .08);
  --shadow-focus: 0 0 0 3px rgba(78, 140, 139, .28);

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;

  /* ------------------------------------------------------------------
     6. Z-INDEX SCALE
     ------------------------------------------------------------------ */
  --z-base: 1;
  --z-card-badge: 2;
  --z-dropdown: 40;
  --z-summary-mobile: 50;
  --z-whatsapp: 60;
  --z-header: 100;
  --z-mobile-sticky-cta: 500;
  --z-cookie-consent: 900;
  --z-modal: 950;
  --z-skip-link: 1000;

  /* ------------------------------------------------------------------
     7. UX/A11Y TOKENS
     ------------------------------------------------------------------ */
  --touch-target-min: 44px;
}

/* ==========================================================================
   Base UX utilities
   ========================================================================== */

button:focus-visible,
a:focus-visible,
.tariff-card:focus-visible,
.board-card:focus-visible,
.location-card:focus-visible,
.time-pill:focus-visible,
.calendar-day:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.qty-btn, .calendar-nav, .bp-dot, .card-radio { position: relative; }
.qty-btn::before, .calendar-nav::before, .bp-dot::before, .card-radio::before {
  content: '';
  position: absolute;
  inset: 50%;
  width: var(--touch-target-min);
  height: var(--touch-target-min);
  transform: translate(-50%, -50%);
}

/* --- Accessibility utility --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   TUYYO CLUB — Shared stylesheet
   ========================================================================== */

/* --- Self-hosted fonts (no external CDN; faster + GDPR-clean) --- */
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/fraunces-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/fraunces-700.woff2') format('woff2');
}


* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--raw-neutral-900);
  background: var(--raw-neutral-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Premium display typography: Fraunces serif for headings (luxury tension) */
h1, h2, h3, .logo, .section-label {
  font-family: 'Fraunces', 'Inter', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-weight: 700; line-height: 1.05; }

img { max-width: 100%; display: block; }
a { color: inherit; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--raw-ink-900); color: var(--raw-neutral-0);
  padding: 12px 20px; z-index: var(--z-skip-link); border-radius: 0 0 8px 0; font-weight: 600; font-size: 14px;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   HEADER / NAVIGATION — IMPROVED UI/UX
   ========================================================================== */

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  background: rgba(10, 27, 44, 0.22);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
/* Low-end mobile: cheaper header paint — drop the heavy blur under 480px */
@media (max-width: 480px) {
  header { backdrop-filter: blur(12px) saturate(160%); -webkit-backdrop-filter: blur(12px) saturate(160%); }
}

header.scrolled {
  background: rgba(10, 27, 44, 0.92);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  height: 72px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--raw-neutral-0);
  letter-spacing: -0.4px;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.logo:hover { transform: scale(1.02); }
.logo span { color: var(--color-accent-primary-light); }

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

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

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border-radius: 8px;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.nav-links a + a { margin-left: 4px; }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent-primary-light), var(--color-accent-gold));
  border-radius: 1px;
  transform: translateX(-50%);
  opacity: 0;
  transition: width 0.25s ease, opacity 0.2s ease;
}

.nav-links a:hover {
  color: var(--raw-neutral-0);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a:hover::after {
  width: calc(100% - 32px);
  opacity: 1;
}

.nav-links a[aria-current=page],
.nav-links a.active {
  color: var(--raw-neutral-0);
  background: rgba(78, 140, 139, 0.12);
}
.nav-links a[aria-current=page]::after,
.nav-links a.active::after {
  width: calc(100% - 32px);
  opacity: 1;
}

.header-actions { display: flex; align-items: center; gap: var(--space-4); flex-shrink: 0; }

.lang-switcher {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 3px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.2s ease;
  font-family: inherit;
}
.lang-btn:hover { color: rgba(255, 255, 255, 0.9); }
.lang-btn.active {
  background: var(--raw-neutral-0);
  color: var(--raw-ink-900);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  cursor: pointer;
  color: var(--raw-neutral-0);
  transition: all 0.2s ease;
}
.mobile-menu-btn:hover { background: rgba(255, 255, 255, 0.14); }

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 0;
  background: rgba(10, 27, 44, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 20px 14px;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}
.mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  margin-bottom: 4px;
  transition: all 0.2s ease;
}
.mobile-nav a:last-child { border-bottom: none; margin-bottom: 0; }
.mobile-nav a:hover {
  color: var(--raw-neutral-0);
  background: rgba(255, 255, 255, 0.06);
}

header.scrolled .nav-links a { color: rgba(255, 255, 255, 0.9); }
header.scrolled .nav-links a:hover { color: var(--raw-neutral-0); }

@media (max-width: 1200px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
}
@media (max-width: 768px) {
  .header-inner { padding: 14px 20px; height: 64px; }
  .logo { font-size: 19px; }
  .mobile-nav { max-height: calc(100vh - 64px); }
}
@media (max-width: 480px) {
  .header-inner { padding: 12px 16px; gap: var(--space-3); }
  .logo { font-size: 17px; }
  .mobile-menu-btn { width: 38px; height: 38px; }
  .mobile-nav { padding: 6px 16px 12px; }
}
@media (max-width: 360px) {
  .logo { font-size: 16px; letter-spacing: -0.3px; }
}


/* HERO — gradient background always present (renders instantly even on a
   slow connection); the video, once it loads, plays on top of it. */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 56px) 24px 90px;
  background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--raw-ink-900) 40%, var(--color-accent-primary) 100%);
  text-align: center;
}
.hero-video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10,37,64,0.8) 0%, rgba(12,74,110,0.65) 50%, rgba(8,145,178,0.55) 100%);
  z-index: 2;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
  z-index: 3;
}
/* Animated gradient accent word (premium "wow") */
.accent {
  background: linear-gradient(90deg, var(--color-accent-primary-light), var(--color-accent-gold), var(--color-accent-primary-light));
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }
/* Scroll-reveal (IntersectionObserver toggles .in) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .accent { animation: none; -webkit-text-fill-color: var(--color-accent-gold); color: var(--color-accent-gold); }
  .reveal { opacity: 1; transform: none; transition: none; }
}
.hero-content {
  max-width: 780px;
  margin: 0;
  width: 100%;
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-text { text-align: center; width: 100%; }
.hero-text h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  color: var(--raw-neutral-0);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-text h1 .accent {
  background: linear-gradient(135deg, var(--color-accent-primary-light), var(--color-accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin: 0 auto 32px;
  max-width: 560px;
}
.hero-cta-group { display: flex; gap: var(--space-4); flex-wrap: wrap; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 14px 28px; border-radius: 999px; font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none; transition: all 0.25s ease; font-family: inherit;
}
.btn-primary { background: var(--color-accent-gold); color: var(--raw-ink-900); }
.btn-primary:hover { background: var(--raw-neutral-0); transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.btn-outline { background: var(--raw-neutral-0); color: var(--raw-ink-900); border: 1.5px solid var(--raw-neutral-200); }
.btn-outline:hover { border-color: var(--raw-neutral-400); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-messenger { background: #25D366; color: var(--raw-neutral-0); }
.btn-messenger:hover { background: #1da851; transform: translateY(-2px); }
.btn-messenger svg { width: 20px; height: 20px; flex-shrink: 0; }
.hero-badges { display: flex; gap: var(--space-6); margin-top: 40px; flex-wrap: wrap; justify-content: center; }
.hero-badge { display: flex; align-items: center; gap: var(--space-2); color: rgba(255,255,255,0.92); font-size: 14px; font-weight: 500; }
.hero-badge svg { width: 20px; height: 20px; color: var(--color-accent-gold); flex-shrink: 0; }

/* SECTIONS */
section { padding: 100px 24px; }
.container { max-width: var(--container-max); margin: 0 auto; }
/* Layout doc v1.0 §2 — container gutter scales with viewport (replaces ad-hoc 16/20/24px) */
.container, section { padding-inline: var(--space-4); }
@media (min-width: 601px) {
  .container, section { padding-inline: var(--space-6); }
}
@media (min-width: 1025px) {
  .container, section { padding-inline: var(--space-8); }
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-label { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--color-accent-primary-dark); margin-bottom: 16px; padding: 6px 14px; background: var(--raw-neutral-100); border-radius: 999px; }
.section-header h2 { font-size: var(--text-2xl); font-weight: 800; color: var(--raw-ink-900); letter-spacing: -0.5px; margin-bottom: 16px; line-height: 1.15; }
.section-header p { font-size: 17px; color: var(--raw-neutral-600); }

/* Booking teaser */
.booking-teaser { background: linear-gradient(180deg, var(--raw-neutral-50) 0%, var(--raw-neutral-0) 100%); }
.booking-teaser-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--raw-neutral-0);
  border: 1px solid var(--raw-neutral-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 48px;
  text-align: center;
}
.booking-teaser-card h3 { font-size: 26px; font-weight: 800; color: var(--raw-ink-900); margin-bottom: 12px; }
.booking-teaser-card p { color: var(--raw-neutral-600); margin-bottom: 28px; font-size: 16px; }
.teaser-steps { display: flex; gap: var(--space-6); justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.teaser-step { display: flex; align-items: center; gap: var(--space-3); font-size: 14px; font-weight: 600; color: var(--raw-neutral-700); }
.teaser-step .num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--color-accent-primary); color: var(--raw-neutral-0);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; flex-shrink: 0;
}

/* Equipment / Delivery / Reviews — showcase cards. */
.equipment-section { background: var(--raw-neutral-0); }
.equipment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--space-5); }
.equipment-card { text-align: center; padding: 32px 20px; background: var(--raw-neutral-50); border-radius: var(--radius-md); border: 1px solid transparent; }
.equipment-icon { width: 56px; height: 56px; margin: 0 auto 16px; background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-primary-dark)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--raw-neutral-0); }
.equipment-icon svg { width: 28px; height: 28px; }
.equipment-card h4 { font-size: 15px; font-weight: 700; color: var(--raw-ink-900); margin-bottom: 4px; }
.equipment-card p { font-size: 12px; color: var(--raw-neutral-500); }

.delivery-section { background: linear-gradient(135deg, var(--raw-ink-900), var(--raw-ocean-700)); color: var(--raw-neutral-0); }
.delivery-section .section-label { background: rgba(255,255,255,0.15); color: var(--raw-neutral-0); }
.delivery-section .section-header h2 { color: var(--raw-neutral-0); }
.delivery-section .section-header p { color: rgba(255,255,255,0.8); }
.delivery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--space-5); }
.delivery-card {
  display: block; text-decoration: none; color: inherit; cursor: pointer;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-md);
  padding: 24px; text-align: center;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.delivery-card .pin { width: 48px; height: 48px; background: var(--color-accent-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--raw-ink-900); }
.delivery-card .pin svg { width: 24px; height: 24px; }
.delivery-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.delivery-card p { font-size: 12px; opacity: 0.8; }
.delivery-card:hover,
.delivery-card:focus-visible {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.18);
  border-color: var(--color-accent-primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  outline: none;
}

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-4); }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; background: var(--raw-sand); position: relative; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 16px 14px; font-size: 13px; font-weight: 600; color: #fff;
  background: linear-gradient(to top, rgba(11,31,51,.78), rgba(11,31,51,0));
  font-family: 'Fraunces', serif; letter-spacing: .01em;
}

.reviews-section { background: var(--raw-neutral-50); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-6); }
.review-card { background: var(--raw-neutral-0); padding: 28px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--raw-neutral-200); }
.review-stars { color: var(--color-accent-gold); font-size: 18px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--raw-neutral-700); margin-bottom: 20px; line-height: 1.6; font-style: italic; }
.review-author { display: flex; align-items: center; gap: var(--space-3); }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--color-accent-primary), var(--raw-ocean-700)); color: var(--raw-neutral-0); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
.review-author-info h5 { font-size: 14px; font-weight: 700; color: var(--raw-ink-900); }
.review-author-info p { font-size: 12px; color: var(--raw-neutral-500); }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--raw-neutral-200); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; background: var(--raw-neutral-0); transition: all 0.3s; }
.faq-item:hover { border-color: var(--color-accent-primary); }
.faq-question { padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 15px; font-weight: 600; color: var(--raw-ink-900); user-select: none; }
.faq-question svg { width: 20px; height: 20px; transition: transform 0.3s; color: var(--color-accent-primary); flex-shrink: 0; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 24px 20px; font-size: 14px; color: var(--raw-neutral-600); line-height: 1.7; }

.contact-section { background: var(--raw-neutral-50); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-6); max-width: 900px; margin: 0 auto; }
.contact-card { background: var(--raw-neutral-0); padding: 32px; border-radius: var(--radius-md); text-align: center; border: 1px solid var(--raw-neutral-200); transition: all 0.3s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-icon { width: 56px; height: 56px; background: var(--raw-neutral-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--color-accent-primary-dark); }
.contact-icon svg { width: 24px; height: 24px; }
.contact-card h4 { font-size: 16px; font-weight: 700; color: var(--raw-ink-900); margin-bottom: 4px; }
.contact-card p { font-size: 13px; color: var(--raw-neutral-500); margin-bottom: 12px; }
.contact-card a { color: var(--color-accent-primary-dark); text-decoration: none; font-weight: 600; font-size: 14px; }
.contact-card a:hover { text-decoration: underline; }

/* Footer */
footer { background: var(--raw-ink-900); color: var(--raw-neutral-0); padding: 60px 24px 30px; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-6); margin-bottom: 40px; }
.footer-brand .logo { color: var(--raw-neutral-0); font-size: 22px; display: block; margin-bottom: 12px; text-shadow: none; }
.footer-brand p { font-size: 14px; opacity: 0.7; max-width: 300px; line-height: 1.6; }
.footer-col h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; opacity: 0.9; }
.footer-col a { display: block; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--color-accent-primary-light); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); display: flex; justify-content: space-between; align-items: center; font-size: 13px; opacity: 0.7; flex-wrap: wrap; gap: var(--space-3); }
.footer-bottom a { text-decoration: none; margin-right: 20px; }
.footer-bottom a:hover { color: var(--color-accent-primary-light); }

/* Floating messenger button */
.floating-messenger { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--raw-neutral-0); box-shadow: var(--shadow-xl); z-index: 9999; transition: all 0.3s; text-decoration: none; overflow: hidden; }
.floating-messenger:hover { transform: scale(1.1); }
.floating-messenger svg { width: 32px; height: 32px; min-width: 32px; min-height: 32px; max-width: 32px; max-height: 32px; flex-shrink: 0; display: block; }

/* Responsive */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr 1fr 1fr; gap: var(--space-3); }
  .footer-brand p { max-width: 180px; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .footer-brand { grid-column: 1 / -1; }
  section { padding: var(--space-16) var(--space-4); }
  .hero-badges { flex-direction: column; gap: var(--space-3); }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .btn { justify-content: center; }
}

/* ==========================================================================
   TERMS / LEGAL PAGE
   ========================================================================== */

.container-narrow { max-width: 780px; margin: 0 auto; }

.terms-hero {
  padding: calc(var(--header-h) + 56px) 24px 48px;
  background: linear-gradient(135deg, var(--raw-ink-900), var(--raw-ocean-700));
  text-align: center;
}
.terms-h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--raw-neutral-0);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.terms-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto;
}

.terms-section { padding: 60px 24px; }
.terms-section:nth-child(even) { background: var(--raw-neutral-50); }

.terms-section-header { text-align: left; margin-bottom: 28px; }
.terms-section-header h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--raw-ink-900);
  letter-spacing: -0.3px;
}

.legal-body { font-size: 15px; line-height: 1.75; color: var(--raw-neutral-700); }
.legal-body p { margin-bottom: 16px; }
.legal-body ul { margin: 12px 0 20px 24px; }
.legal-body li { margin-bottom: 10px; }
.legal-body li strong { color: var(--raw-ink-900); }
.legal-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--raw-ink-900);
  margin: 28px 0 12px;
}

.legal-table-wrap { overflow-x: auto; margin: 16px 0 24px; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.legal-table th,
.legal-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--raw-neutral-200);
}
.legal-table th {
  font-weight: 700;
  color: var(--raw-ink-900);
  background: var(--raw-neutral-100);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.legal-table td { color: var(--raw-neutral-700); }
.legal-table tbody tr:hover { background: var(--raw-neutral-50); }

.callout {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}
.callout.danger {
  background: rgba(220, 38, 38, 0.06);
  border-left: 4px solid #dc2626;
  color: var(--raw-ink-900);
}

@media (max-width: 600px) {
  .terms-hero { padding: calc(var(--header-h) + 32px) 16px 32px; }
  .terms-section { padding: 40px 16px; }
  .legal-table { font-size: 13px; }
  .legal-table th, .legal-table td { padding: 10px 12px; }
}

/* ==========================================================================
   LOCATION PAGE
   ========================================================================== */

/* Location Hero — reuses .hero but shorter, with background image */
.hero.loc-hero { min-height: auto; padding: calc(var(--header-h) + 40px) 24px 72px; }

.loc-hero-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Breadcrumb — minimal, left-aligned inside hero */
.loc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  position: relative;
  z-index: 4;
}
.loc-breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.loc-breadcrumb a:hover { color: var(--raw-neutral-0); }
.loc-breadcrumb svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}
.loc-breadcrumb > span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* Intro text */
.loc-intro-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--raw-neutral-700);
  max-width: 780px;
  margin: 0 auto;
}

/* Beach pills */
.beach-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}
.beach-list li {
  padding: 10px 24px;
  background: var(--raw-neutral-50);
  border: 1px solid var(--raw-neutral-200);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--raw-ink-900);
}

/* Tariff cards */
.tariff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-5);
}
.tariff-grid .tariff-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--raw-neutral-50);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tariff-grid .tariff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tariff-grid .tariff-card h4 { font-size: 16px; font-weight: 700; color: var(--raw-ink-900); margin-bottom: 4px; }
.tariff-desc { font-size: 13px; color: var(--raw-neutral-500); margin-bottom: 16px; }
.price { font-size: 28px; font-weight: 800; color: var(--color-accent-primary-dark); }

/* Map embed */
.loc-map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--raw-neutral-200);
  max-width: 900px;
  margin: 0 auto;
}
.loc-map-wrap iframe { width: 100%; height: 400px; border: 0; display: block; }

/* Location CTA */
.loc-cta {
  background: linear-gradient(135deg, var(--raw-ink-900), var(--raw-ocean-700));
  text-align: center;
  color: var(--raw-neutral-0);
}
.loc-cta .section-header h2, .loc-cta h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--raw-neutral-0);
  margin-bottom: 12px;
}
.loc-cta p { font-size: 17px; color: rgba(255, 255, 255, 0.8); margin-bottom: 28px; }
.loc-cta-buttons { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }

/* Location page responsive */
@media (max-width: 768px) {
  .teaser-steps { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
}
@media (max-width: 600px) {
  .hero.loc-hero { padding: calc(var(--header-h) + 24px) 16px 48px; }
  .loc-breadcrumb { margin-bottom: 20px; font-size: 12px; }
  .loc-map-wrap iframe { height: 280px; }
  .loc-cta-buttons { flex-direction: column; width: 100%; }
  .loc-cta-buttons .btn { justify-content: center; }
  .booking-teaser-card { padding: 32px 20px; }
}

/* ==========================================================================
   Booking page
   ========================================================================== */

/* ---------- Layout ---------- */
.booking-section.split {
  background: linear-gradient(180deg, var(--raw-neutral-50) 0%, var(--raw-neutral-0) 100%);
  max-width: none;
}
.booking-section.split .container { max-width: var(--container-wide); }
.booking-section.split .booking-card {
  width: 100%; justify-self: stretch;
  background: var(--raw-neutral-50);
  border: 1.5px solid var(--raw-neutral-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-6);
}
.booking-section.split .summary-card {
  background: var(--raw-neutral-0);
  color: var(--raw-neutral-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.booking-section.split .card-grid { padding: 0; gap: var(--space-3); }
.booking-section.split .form-step { padding: 0; border: none; }
.booking-card {
  max-width: none;
  background: var(--raw-neutral-0);
  border: 1.5px solid var(--raw-neutral-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.booking-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); align-items: start; }
@media (min-width: 960px) {
  .booking-section.split .booking-card { padding: var(--space-8); max-width: none; }
  .booking-section.split .card-grid { gap: var(--space-4); }
}
@media (min-width: 1024px) { .booking-grid { grid-template-columns: minmax(0,1fr) var(--sidebar-w); } }
@media (max-width: 959px) {
  .booking-section.split { padding-left: 20px; padding-right: 20px; }
  .booking-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .booking-section.split .booking-card { padding: var(--space-5) var(--space-4); }
  .card-grid { padding: 0; gap: var(--space-3); }
  .step-title, .step-desc, .step-eyebrow { padding-left: 0; padding-right: 0; }
}
@media (max-width: 400px) {
  .booking-section.split { padding-left: 14px; padding-right: 14px; }
  .booking-section.split .booking-card { padding: var(--space-4) var(--space-3); }
}

/* ---------- Step progress ---------- */
.booking-progress {
  display: flex; align-items: center; gap: var(--space-2);
  overflow-x: auto; scrollbar-width: none; padding: var(--space-4) 0 var(--space-4) var(--space-4);
  border-bottom: 1px solid var(--raw-neutral-200); margin-bottom: var(--space-6);
}
.booking-progress::-webkit-scrollbar { display: none; }
.bp-step { display: flex; align-items: center; gap: var(--space-2); color: var(--raw-neutral-500); font-size: var(--text-sm); font-weight: 600; white-space: nowrap; }
.bp-dot {
  width: 24px; height: 24px; border-radius: var(--radius-full); flex-shrink: 0;
  border: 1.5px solid var(--raw-neutral-200); display: grid; place-items: center; font-size: 11px;
  transition: all var(--dur-base) var(--ease-out); background: var(--raw-neutral-0);
}
.bp-step.is-done { cursor: pointer; }
.bp-step.is-done .bp-dot { background: var(--color-accent-primary); border-color: var(--color-accent-primary); color: #fff; }
.bp-step.is-current { color: var(--raw-ink-900); }
.bp-step.is-current .bp-dot { border-color: var(--color-accent-primary); box-shadow: var(--shadow-focus); color: var(--color-accent-primary); }
.bp-sep { width: 18px; height: 1px; background: var(--raw-neutral-200); flex-shrink: 0; }
.bp-label { display: none; }
@media (min-width: 860px) { .bp-label { display: inline; } }
.mobile-progress-track { height: 3px; background: var(--raw-neutral-200); border-radius: var(--radius-full); overflow: hidden; margin-bottom: var(--space-6); }
.mobile-progress-fill { height: 100%; background: linear-gradient(90deg, var(--color-accent-primary), var(--color-accent-primary-light)); transition: width var(--dur-slow) var(--ease-out); }
@media (min-width: 860px) { .mobile-progress-track { display: none; } }

/* ---------- Step panels ---------- */
.step-eyebrow { font-size: var(--text-sm); font-weight: 700; color: var(--color-accent-primary); text-transform: uppercase; letter-spacing: .06em; margin: 0; }
.step-desc { color: var(--raw-neutral-500); margin-top: var(--space-2); max-width: 60ch; }
.step-container { display: grid; }
.step-panel { grid-area: 1 / 1; visibility: hidden; opacity: 0; pointer-events: none; transition: opacity .2s var(--ease-out); }
.step-panel.is-active { visibility: visible; opacity: 1; pointer-events: auto; }

/* ---------- Step error ---------- */
.step-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; border-radius: var(--radius-sm); padding: var(--space-3) var(--space-4); font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--space-4); }

/* ---------- Card grids ---------- */
.card-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-3); }
@media (min-width: 560px) { .card-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 720px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 719px) { .card-grid.cols-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .card-grid.cols-3 { grid-template-columns: 1fr; } }
@media (min-width: 980px) { .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 481px) and (max-width: 979px) { .card-grid.cols-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .card-grid.cols-4 { grid-template-columns: 1fr; } }

/* ---------- Tariff cards (booking page) ---------- */
.tariff-card { cursor: pointer; position: relative; border: 2px solid var(--raw-neutral-200); border-radius: var(--radius-md); overflow: hidden; background: var(--raw-neutral-0); transition: all 0.25s ease; display: flex; flex-direction: column; }
.tariff-card:hover { border-color: var(--color-accent-primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.tariff-card.selected { border-color: var(--color-accent-primary); box-shadow: 0 0 0 3px rgba(78, 140, 139, 0.15); }
.tariff-card .tariff-media { background: var(--raw-neutral-100); display: flex; align-items: center; justify-content: center; padding: 18px; }
.tariff-card .tariff-icon { width: 52px; height: 52px; display: block; flex: none; color: var(--color-accent-primary); }
.tariff-card .tariff-icon svg { width: 100%; height: 100%; display: block; }
.tariff-card .board-price { font-size: 19px; font-weight: 800; color: var(--color-accent-primary-dark); }
.tariff-card .board-price small { font-size: 13px; font-weight: 500; color: var(--raw-neutral-500); }
.tariff-card .board-qty-row { margin-top: auto; }

/* ---------- Board cards ---------- */
.board-card {
  position: relative; border: 2px solid var(--raw-neutral-200); border-radius: var(--radius-lg, 16px);
  overflow: hidden; background: var(--raw-neutral-0); display: flex; flex-direction: column;
  align-items: stretch; gap: 0; padding: 0; cursor: pointer;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .08);
  transition: transform .28s var(--ease-out, ease), box-shadow .28s var(--ease-out, ease), border-color .2s var(--ease-out, ease);
}
.board-card .board-info { flex: 1 1 auto; display: flex; flex-direction: column; }
.board-card:hover { border-color: var(--color-accent-primary); transform: translateY(-4px); box-shadow: 0 12px 28px rgba(16, 24, 40, .14); }
.board-card.selected { border-color: var(--color-accent-primary); box-shadow: 0 0 0 3px rgba(78, 140, 139, .22), 0 12px 28px rgba(16, 24, 40, .14); }

.board-media {
  position: relative; overflow: hidden; aspect-ratio: 5 / 4;
  background: linear-gradient(135deg, var(--raw-neutral-100), var(--raw-neutral-200));
}
.board-image { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease-out, ease); }
.board-card:hover .board-image { transform: scale(1.06); }

.board-ribbon {
  position: absolute; top: 14px; left: -34px; width: 140px; transform: rotate(-45deg);
  background: var(--color-accent-gold, #f4c14e); color: var(--raw-ink-950, #0b1f1a);
  font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  text-align: center; padding: 5px 0; box-shadow: 0 2px 6px rgba(0, 0, 0, .18); z-index: 3;
}
.board-info { padding: 12px 14px 10px; }
.board-name { font-size: 15px; font-weight: 800; color: var(--raw-ink-900, #0b1f1a); margin-bottom: 3px; line-height: 1.25; }
.board-desc { font-size: 12px; color: var(--raw-neutral-600, #5b6573); line-height: 1.4; margin-bottom: 8px; }
.board-specs { display: flex; gap: var(--space-3, 12px); flex-wrap: wrap; margin-bottom: 8px; }
.board-spec { font-size: 11.5px; font-weight: 600; color: var(--raw-neutral-700, #344054); display: inline-flex; align-items: center; gap: 4px; }
.board-tag { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; padding: 3px 9px; border-radius: 999px; background: var(--raw-neutral-100, #f2f4f7); color: var(--raw-neutral-600, #5b6573); }
.board-tag.beginner { background: #dbeafe; color: #1e40af; }
.board-tag.couple { background: #fce7f3; color: #9d174d; }
.board-tag.premium { background: var(--raw-sand-light, #fdf2e3); color: #92400e; }
.icon-person { width: 16px; height: 16px; display: block; color: var(--raw-neutral-500); flex: none; }

.board-selected-badge {
  position: absolute; top: 12px; right: 12px; width: 30px; height: 30px;
  background: var(--color-accent-primary); color: var(--raw-neutral-0); border-radius: 50%;
  display: grid; place-items: center; font-size: 15px; font-weight: 700;
  opacity: 0; transform: scale(.5); transition: opacity .22s var(--ease-out, ease), transform .22s var(--ease-out, ease);
  z-index: 3; box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}
.board-card.selected .board-selected-badge,
.tariff-card.selected .board-selected-badge { opacity: 1; transform: scale(1); }

.board-add-hint {
  position: absolute; top: 10px; right: 12px;
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 700; color: var(--color-accent-primary);
  background: color-mix(in srgb, var(--color-accent-primary) 12%, white);
  border: 1px solid color-mix(in srgb, var(--color-accent-primary) 30%, white);
  padding: 3px 10px; border-radius: var(--radius-full); pointer-events: none;
}
.board-add-plus { font-size: 15px; line-height: 1; }
.board-card.selected .board-add-hint { display: none; }

.board-qty-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; background: var(--raw-neutral-50, #f9fafb);
  border-top: 1px solid var(--raw-neutral-200, #e4e7ec);
}
.board-qty-label { font-size: 12px; font-weight: 700; color: var(--raw-neutral-700, #344054); }
.board-qty-controls, .tariff-days-controls { display: flex; align-items: center; gap: var(--space-3, 12px); }
.board-qty-btn, .tariff-days-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--raw-neutral-300, #d0d5dd); background: var(--raw-neutral-0);
  font-size: 18px; font-weight: 700; color: var(--raw-ink-900, #0b1f1a);
  cursor: pointer; display: grid; place-items: center; font-family: inherit;
  transition: all .18s var(--ease-out, ease);
}
.board-qty-btn:hover:not(:disabled), .tariff-days-btn:hover:not(:disabled) { border-color: var(--color-accent-primary); background: var(--color-accent-primary); color: var(--raw-neutral-0); transform: scale(1.08); }
.board-qty-btn:active:not(:disabled), .tariff-days-btn:active:not(:disabled) { transform: scale(.94); }
.board-qty-btn:disabled, .tariff-days-btn:disabled { opacity: .35; cursor: not-allowed; }
.board-qty-value, .tariff-days-value { font-size: 17px; font-weight: 800; color: var(--raw-ink-900, #0b1f1a); min-width: 26px; text-align: center; font-variant-numeric: tabular-nums; }

/* ---------- Fulfillment cards (pickup / delivery choice) ---------- */
.fulfillment-card {
  position: relative; border: 2px solid var(--raw-neutral-200); border-radius: var(--radius-md);
  padding: var(--space-5); cursor: pointer; background: var(--raw-neutral-0);
  display: flex; align-items: center; gap: var(--space-4);
  transition: all 0.25s ease;
}
.fulfillment-card:hover { border-color: var(--color-accent-primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.fulfillment-card.selected { border-color: var(--color-accent-primary); box-shadow: 0 0 0 3px rgba(78, 140, 139, 0.15); }
.fulfillment-card.selected .board-selected-badge { opacity: 1; transform: scale(1); }
.fulfillment-icon { flex-shrink: 0; color: var(--color-accent-primary); }
.fulfillment-text .board-name { font-size: var(--text-base); }

/* ---------- Pill group (beach pills etc.) ---------- */
.pill-group { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.pill {
  display: inline-flex; align-items: center;
  padding: 8px 18px; border: 1.5px solid var(--raw-neutral-200); border-radius: var(--radius-full);
  background: var(--raw-neutral-0); font-size: var(--text-sm); font-weight: 600;
  cursor: pointer; transition: all 0.2s ease; color: var(--raw-neutral-700);
}
.pill:hover { border-color: var(--color-accent-primary); color: var(--color-accent-primary); }
.pill.selected { background: var(--color-accent-primary); border-color: var(--color-accent-primary); color: var(--raw-neutral-0); }
.pill-location { flex-direction: column; text-align: left; gap: 2px; padding: 10px 18px; }
.pill-main { font-weight: 700; }
.pill-sub { font-size: var(--text-xs); opacity: .7; }

/* ---------- Map link inside pill-location ---------- */
.map-link {
  display: inline-flex; align-items: center; gap: 3px;
  margin-top: 2px; font-size: 12px; font-weight: 500;
  color: var(--raw-neutral-500); text-decoration: none;
  transition: color 0.2s;
}
.map-link:hover { color: var(--color-accent-primary); text-decoration: underline; }
.pill-location.selected .map-link { color: rgba(255,255,255,0.7); }
.pill-location.selected .map-link:hover { color: var(--raw-neutral-0); }

/* ---------- Footer working hours ---------- */
.footer-hours { display: block; color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 10px; }

/* ---------- Location cards (booking delivery step) ---------- */
.location-card { position: relative; border: 2px solid var(--raw-neutral-200); border-radius: var(--radius-md); overflow: hidden; cursor: pointer; transition: all 0.25s ease; background: var(--raw-neutral-0); flex-direction: column; align-items: stretch; gap: 0; padding: 0; text-align: left; }
.location-card:hover { border-color: var(--color-accent-primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.location-card.selected { border-color: var(--color-accent-primary); box-shadow: 0 0 0 3px rgba(78, 140, 139, 0.15); }
.location-card .board-info { padding: var(--space-3) var(--space-4) var(--space-4); display: flex; flex-direction: column; gap: 2px; }
.location-media { position: relative; width: 100%; aspect-ratio: 1 / 1; overflow: hidden; background: linear-gradient(135deg, var(--raw-neutral-100), var(--raw-neutral-200)); }
.location-image { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease-out, ease); }
.location-card:hover .location-image { transform: scale(1.06); }
.location-card .card-radio {
  position: absolute; top: 10px; right: 10px;
  width: 22px; height: 22px; border-radius: var(--radius-full); border: 2px solid var(--raw-neutral-200);
  flex-shrink: 0; display: grid; place-items: center; transition: all var(--dur-fast) var(--ease-out);
  background: rgba(255,255,255,.9); box-shadow: 0 1px 4px rgba(0,0,0,.18);
}
.location-card.selected .card-radio { border-color: var(--color-accent-primary); background: var(--color-accent-primary); }
.card-radio::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--raw-neutral-0); transform: scale(0); transition: transform var(--dur-fast) var(--ease-out); }
.location-card.selected .card-radio::after { transform: scale(1); }
.pickup-map-link {
  display: block; padding: 6px 14px; text-align: center;
  font-size: var(--text-xs); font-weight: 600; color: var(--color-accent-primary);
  border-top: 1px solid var(--raw-neutral-200); transition: background .2s ease;
}
.pickup-map-link:hover { background: var(--raw-neutral-50); }

/* ---------- Days stepper (per-day tariff) ---------- */
.tariff-days-row { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: 14px; width: 100%; }
.tariff-days-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--raw-neutral-500, #6b7280); }
.tariff-days-controls { padding: 4px 8px; border: 1px solid var(--raw-neutral-200, #e5e7eb); border-radius: 999px; background: var(--raw-neutral-0, #fff); }
.tariff-days-btn { width: 30px; height: 30px; }

/* ---------- Calendar ---------- */
/* ---------- Date/Time layout ---------- */
.datetime-row { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
@media (min-width: 560px) { .datetime-row { grid-template-columns: 1fr auto; } }
.datetime-time { min-width: 160px; }

.calendar { border: 1.5px solid var(--raw-neutral-200); border-radius: var(--radius-md); padding: var(--space-3); }
.calendar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-2); }
.calendar-nav { border: 0; background: var(--raw-neutral-50); width: 28px; height: 28px; border-radius: var(--radius-sm); cursor: pointer; font-size: 13px; }
.calendar-nav:hover { background: color-mix(in srgb, var(--color-accent-primary) 14%, white); }
.calendar-month { font-weight: 700; font-size: var(--text-sm); }
.calendar-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.calendar-dow { text-align: center; font-size: 10px; color: var(--raw-neutral-500); font-weight: 700; padding-bottom: 2px; }
.calendar-day {
  border: 0; background: transparent; border-radius: var(--radius-sm); cursor: pointer;
  font-size: 13px; font-weight: 600; color: var(--raw-neutral-900);
  padding: 7px 0; text-align: center;
  transition: all var(--dur-fast) var(--ease-out);
}
.calendar-day:hover:not(:disabled) { background: color-mix(in srgb, var(--color-accent-primary) 14%, white); }
.calendar-day:disabled { color: var(--raw-neutral-400); background: var(--raw-neutral-100); opacity: 1; cursor: not-allowed; box-shadow: none; text-decoration: line-through; pointer-events: auto; }
.calendar-day:disabled:hover { background: var(--raw-neutral-100); }
.calendar-day.empty { visibility: hidden; }
.calendar-day.selected { background: var(--color-accent-primary); color: var(--raw-neutral-0); box-shadow: var(--shadow-focus); }
.calendar-day.today { border: 1.5px solid var(--color-accent-primary-light); }

/* ---------- Time pills ---------- */
.time-pills { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-2); }
.time-pill {
  border: 1.5px solid var(--raw-neutral-200); background: var(--raw-neutral-0); border-radius: var(--radius-full);
  padding: 8px 16px; font-size: var(--text-sm); font-weight: 600; cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}
.time-pill:hover:not(:disabled):not(.is-past-cutoff) { border-color: var(--color-accent-primary-light); }
.time-pill.selected { background: var(--raw-ink-900); border-color: var(--raw-ink-900); color: var(--raw-neutral-0); }
.time-pill.is-past-cutoff, .time-pill:disabled { opacity: 1; cursor: not-allowed; background: var(--raw-neutral-100); color: var(--raw-neutral-400); border-color: var(--raw-neutral-200); text-decoration: line-through; }
.time-pill.is-past-cutoff:hover, .time-pill:disabled:hover { border-color: var(--raw-neutral-200); background: var(--raw-neutral-100); }
.time-pill.is-urgent { border-color: #e0a200; background: rgba(224, 162, 0, 0.14); color: var(--raw-ink-900, #0b1f1a); flex-direction: column; gap: 2px; line-height: 1.1; padding-top: 6px; padding-bottom: 6px; }
.time-pill.is-urgent.selected { background: #e0a200; color: #fff; border-color: #e0a200; }
.time-pill-urgent { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; opacity: .9; margin-top: 1px; }

/* ---------- Date shortcuts ---------- */
.date-shortcuts { display: flex; flex-wrap: wrap; gap: var(--space-2); }

/* ---------- Time groups ---------- */
.time-slots-grouped { margin-top: var(--space-3); }
.time-group { margin-bottom: var(--space-4); }
.time-group:last-child { margin-bottom: 0; }
.time-group-label { display: block; font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--raw-neutral-500); margin-bottom: var(--space-2); }

/* ---------- Form fields ---------- */
.field { margin-bottom: var(--space-5); }
.field-label { display: block; font-weight: 700; font-size: var(--text-sm); color: var(--raw-neutral-900); margin-bottom: var(--space-2); }
.field-hint { font-size: var(--text-xs); color: var(--raw-neutral-500); margin-top: var(--space-1); }
.field-row { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
@media (min-width: 560px) { .field-row.cols-2 { grid-template-columns: 1fr 1fr; } }
.input {
  width: 100%; border: 1.5px solid var(--raw-neutral-200); border-radius: var(--radius-sm);
  padding: 12px 14px; font-size: var(--text-base); font-family: inherit; color: var(--raw-neutral-900);
  background: var(--raw-neutral-0); transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.input:focus { border-color: var(--color-accent-primary); box-shadow: var(--shadow-focus); outline: none; }
.phone-field { display: flex; }
.phone-prefix {
  display: flex; align-items: center; padding: 0 14px; border: 1.5px solid var(--raw-neutral-200); border-right: 0;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm); background: var(--raw-neutral-50); font-weight: 600; color: var(--raw-neutral-500); font-size: var(--text-sm);
}
.phone-field .input { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.check-row { display: flex; align-items: flex-start; gap: var(--space-3); cursor: pointer; }
.check-row input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--color-accent-primary); flex-shrink: 0; }
.check-row-text { font-size: var(--text-sm); color: var(--raw-neutral-500); }
.check-row-text a { color: var(--raw-ink-900); font-weight: 600; }

.reveal-block { overflow: hidden; max-height: 0; opacity: 0; transition: max-height var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out); }
.reveal-block.open { max-height: 1200px; opacity: 1; margin-top: var(--space-4); }

/* ---------- Self-pickup info box ---------- */
.pickup-box {
  display: flex; align-items: center; gap: var(--space-4); padding: 16px;
  background: var(--raw-neutral-50, #f9fafb); border: 1.5px solid var(--raw-neutral-200, #e4e7ec); border-radius: var(--radius-md, 12px);
}
.pickup-icon { font-size: 26px; line-height: 1; }
.pickup-text { flex: 1; min-width: 0; }
.pickup-title { font-weight: 800; font-size: 15px; color: var(--raw-ink-900, #0b1f1a); }
.pickup-sub { font-size: 13px; color: var(--raw-neutral-600, #5b6573); margin-top: 2px; }
.pickup-link {
  flex-shrink: 0; font-weight: 700; font-size: 13px; color: var(--color-accent-primary, #2a8a86);
  background: var(--raw-neutral-0); border: 1.5px solid var(--color-accent-primary, #2a8a86);
  border-radius: var(--radius-full, 999px); padding: 8px 16px; text-decoration: none; white-space: nowrap;
  transition: all .2s var(--ease-out, ease);
}
.pickup-link:hover { background: var(--color-accent-primary, #2a8a86); color: var(--raw-neutral-0); }
@media (max-width: 480px) { .pickup-box { flex-wrap: wrap; } .pickup-link { width: 100%; text-align: center; } }

/* ---------- Review step ---------- */
.review-list { display: flex; flex-direction: column; border: 1.5px solid var(--raw-neutral-200); border-radius: var(--radius-md); overflow: hidden; margin: 0; }
.review-row { display: flex; justify-content: space-between; gap: var(--space-4); padding: var(--space-4) var(--space-5); border-bottom: 1px solid var(--raw-neutral-200); }
.review-row:last-child { border-bottom: 0; }
.review-row dt { color: var(--raw-neutral-500); font-size: var(--text-sm); margin: 0; }
.review-row dd { margin: 0; font-weight: 700; font-size: var(--text-sm); text-align: right; color: var(--raw-ink-900); }
.review-edit { background: none; border: 0; color: var(--color-accent-primary); font-weight: 700; font-size: var(--text-xs); cursor: pointer; padding: 0; margin-left: var(--space-3); }

/* ---------- Bizum info ---------- */
.bizum-info-box { padding: 16px; background: var(--raw-neutral-50, #f9fafb); border: 1.5px solid var(--raw-neutral-200, #e4e7ec); border-radius: var(--radius-md, 12px); }
.bizum-info-head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.bizum-info-title { font-weight: 800; font-size: 16px; color: var(--color-accent-primary, #2a8a86); }
.bizum-info-sub { font-size: 13px; color: var(--raw-neutral-700, #344054); }
.bizum-info-note { font-size: 12px; color: var(--raw-neutral-500, #667085); margin-top: 6px; line-height: 1.45; }

/* ---------- Nav buttons ---------- */
.step-actions { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); margin-top: var(--space-8); padding-top: var(--space-6); border-top: 1px solid var(--raw-neutral-200); }

/* ---------- Summary sidebar ---------- */
.summary-card { background: var(--raw-neutral-0); border: 1.5px solid var(--raw-neutral-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: var(--space-6); position: sticky; top: var(--space-6); }
.summary-title { font-size: var(--text-lg); margin: 0; }
.summary-empty { color: var(--raw-neutral-500); font-size: var(--text-sm); margin-top: var(--space-3); }
.summary-items { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-4); }
.summary-item { display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-3); font-size: var(--text-sm); }
.summary-item-label { color: var(--raw-neutral-500); }
.summary-item-value { font-weight: 700; text-align: right; color: var(--raw-ink-900); }
.summary-divider { height: 1px; background: var(--raw-neutral-200); margin: var(--space-4) 0; }
.summary-total-row { display: flex; justify-content: space-between; align-items: center; }
.summary-total-label { font-weight: 700; font-size: var(--text-base); }
.summary-total-value { font-weight: 800; font-size: var(--text-2xl); color: var(--raw-ink-900); transition: transform var(--dur-fast) var(--ease-out); display: inline-block; }
.summary-total-value.bump { transform: scale(1.08); }
.summary-note { font-size: var(--text-xs); color: var(--raw-neutral-500); margin-top: var(--space-2); }
.trust-list { list-style: none; padding: 0; margin: var(--space-5) 0 0; display: flex; flex-direction: column; gap: var(--space-2); }
.trust-list li { display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-xs); color: var(--raw-neutral-500); }
.trust-list li::before { content: '\2713'; color: #10b981; font-weight: 800; }
@media (max-width: 959px) {
  .summary-card { position: fixed; left: 0; right: 0; bottom: 0; top: auto; z-index: var(--z-summary-mobile); border-radius: var(--radius-lg) var(--radius-lg) 0 0; box-shadow: 0 -8px 30px rgba(15,23,42,.18); padding: var(--space-4) var(--space-6) calc(var(--space-6) + env(safe-area-inset-bottom)); max-height: 78vh; overflow-y: auto; transform: translateY(calc(100% - 74px)); transition: transform var(--dur-base) var(--ease-out); }
  .summary-card.expanded { transform: translateY(0); }
  .summary-handle { width: 40px; height: 4px; background: var(--raw-neutral-200); border-radius: var(--radius-full); margin: 0 auto var(--space-4); cursor: pointer; }
  .summary-card:not(.expanded) .summary-items, .summary-card:not(.expanded) .summary-note,
  .summary-card:not(.expanded) .trust-list, .summary-card:not(.expanded) .summary-empty { display: none; }
  .summary-peek { display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
}
@media (min-width: 960px) { .summary-handle { display: none; } }

/* ---------- Success screen ---------- */
.success-wrap { text-align: center; padding: var(--space-8) 0; }
.success-icon { width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(135deg, var(--color-accent-primary-light), #10b981); display: grid; place-items: center; margin: 0 auto var(--space-6); color: var(--raw-neutral-0); font-size: 32px; animation: booking-pop var(--dur-slow) var(--ease-out); }
@keyframes booking-pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-ref { display: inline-block; margin-top: var(--space-2); background: var(--raw-neutral-50); border-radius: var(--radius-full); padding: 6px 16px; font-weight: 700; letter-spacing: .04em; }
.success-actions { display: flex; gap: var(--space-3); justify-content: center; margin-top: var(--space-8); flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .success-icon { animation: none; }
}
