/**
 * Limo Tesla – Design System
 * Premium Swiss electric chauffeur service
 */

:root {
  --ink: #0B0D0F;
  --ink-soft: #16191D;
  --paper: #F7F7F4;
  --white: #FFFFFF;
  --graphite: #62666B;
  --border: #E4E6E8;
  --border-dark: #2A2E33;
  --accent-start: #E9343F;
  --accent-end: #FF6433;
  --accent: linear-gradient(90deg, #E9343F 0%, #FF6433 100%);
  --green: #3D7A5A;
  --green-soft: rgba(61, 122, 90, 0.12);
  --shadow-card: 0 12px 40px rgba(11, 13, 15, 0.12);
  --shadow-soft: 0 4px 20px rgba(11, 13, 15, 0.08);
  --radius-card: 18px;
  --radius-std: 14px;
  --radius-ctl: 9px;
  --max: 1320px;
  --header-h: 72px;
  --utility-h: 40px;
  --font: "Manrope", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --space: 8px;
}

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-ctl);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), opacity 180ms;
  text-align: center;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(233, 52, 63, 0.28);
}
.btn-primary:hover { box-shadow: 0 10px 28px rgba(233, 52, 63, 0.38); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--graphite); }
.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover { background: var(--ink-soft); }
.btn-block { width: 100%; }
.btn-sm { min-height: 44px; padding: 0 16px; font-size: 14px; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-start);
  margin-bottom: 12px;
}
.eyebrow-light { color: rgba(255,255,255,0.72); }

.section {
  padding: 88px 0;
}
.section-tight { padding: 64px 0; }
.section-dark {
  background: var(--ink);
  color: var(--paper);
}
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.section-head p {
  margin-top: 16px;
  color: var(--graphite);
  font-size: 17px;
}
.section-dark .section-head p { color: rgba(247,247,244,0.68); }

/* ========== HEADER ========== */
.utility-bar {
  background: var(--ink);
  color: rgba(247,247,244,0.86);
  font-size: 13px;
  min-height: var(--utility-h);
  display: flex;
  align-items: center;
}
.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 8px;
}
.utility-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.utility-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  opacity: 0.9;
}
.utility-links a:hover { opacity: 1; color: #fff; }
.utility-note {
  color: rgba(247,247,244,0.55);
  font-size: 12px;
}
.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  overflow: hidden;
}
.lang-switch button {
  min-width: 40px;
  min-height: 30px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  background: transparent;
}
.lang-switch button[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,247,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms, background 200ms, box-shadow 200ms;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 20px rgba(11,13,15,0.04);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 40px;
  width: auto;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 4px;
}
.nav-desktop a {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 560;
  color: var(--ink);
  border-radius: 8px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--accent-start);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.lang-switch--nav {
  border-color: var(--border);
}
.lang-switch--nav button { color: var(--graphite); }
.lang-switch--nav button[aria-pressed="true"] { color: #fff; }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 280ms var(--ease);
  visibility: hidden;
}
.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.mobile-nav-close {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 22px;
}
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.mobile-nav nav a {
  font-size: 28px;
  font-weight: 650;
  padding: 12px 0;
  letter-spacing: -0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav-ctas {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

@media (min-width: 1100px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .lang-switch--mobile-only { display: none; }
  .utility-bar { display: flex; }
}
@media (max-width: 1099px) {
  .utility-bar { display: none; }
  .btn-book-desktop { display: none; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media video.is-ready {
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,13,15,0.55) 0%, rgba(11,13,15,0.35) 40%, rgba(11,13,15,0.82) 100%),
    linear-gradient(90deg, rgba(11,13,15,0.7) 0%, rgba(11,13,15,0.25) 60%, rgba(11,13,15,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 64px 0 120px;
}
.hero-grid {
  display: grid;
  gap: 40px;
  align-items: end;
}
.hero-copy { max-width: 620px; }
.hero-copy h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.hero-copy .lead {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(247,247,244,0.82);
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-trust {
  font-size: 13px;
  color: rgba(247,247,244,0.62);
  letter-spacing: 0.01em;
}

/* Booking card */
.booking-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}
.booking-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.booking-step-indicator {
  flex: 1;
  height: 3px;
  border-radius: 99px;
  background: var(--border);
  position: relative;
}
.booking-step-indicator.is-active,
.booking-step-indicator.is-done {
  background: var(--accent);
}
.booking-step-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--graphite);
  margin-bottom: 16px;
}
.booking-step-label strong { color: var(--ink); }

.booking-panel { display: none; }
.booking-panel.is-active { display: block; }

.field { margin-bottom: 14px; }
.field-row {
  display: grid;
  gap: 12px;
}
.field-row-2 { grid-template-columns: 1fr 1fr; }
.field-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.field .hint {
  font-size: 12px;
  color: var(--graphite);
  font-weight: 500;
  margin-left: 4px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-ctl);
  background: var(--white);
  transition: border-color 160ms, box-shadow 160ms;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-start);
  box-shadow: 0 0 0 3px rgba(233, 52, 63, 0.15);
}
.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: var(--accent-start);
}
.field-error {
  display: none;
  font-size: 12px;
  color: var(--accent-start);
  margin-top: 6px;
}
.field-error.is-visible { display: block; }

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.segmented label {
  position: relative;
  margin: 0;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-ctl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px;
  text-align: center;
}
.segmented input { position: absolute; opacity: 0; pointer-events: none; inset: 0; width: 100%; height: 100%; }
.segmented input:checked + span,
.segmented label:has(input:checked) {
  border-color: var(--accent-start);
  background: rgba(233, 52, 63, 0.06);
  color: var(--accent-start);
}

.link-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-start);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-btn:hover { text-decoration: underline; }

.booking-nav {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.booking-nav .btn { flex: 1; }

.booking-summary {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  padding: 6px 0;
  color: var(--graphite);
}
.summary-row strong {
  color: var(--ink);
  font-weight: 650;
  text-align: right;
}
.summary-price {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.summary-price span { font-size: 13px; color: var(--graphite); }
.summary-price strong {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.summary-note {
  font-size: 12px;
  color: var(--graphite);
  margin-top: 10px;
  line-height: 1.45;
}
.privacy-note {
  font-size: 12px;
  color: var(--graphite);
  text-align: center;
  margin-top: 12px;
}

.airport-fields { display: none; }
.airport-fields.is-visible { display: block; }

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .booking-card {
    transform: translateY(48px);
  }
  .hero-content { padding-bottom: 80px; }
}

/* Trust strip */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 72px 0 28px;
}
@media (min-width: 980px) {
  .trust-strip { padding-top: 88px; }
}
.trust-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}
.trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.trust-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent-start);
}
.trust-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.trust-item p {
  font-size: 14px;
  color: var(--graphite);
  line-height: 1.45;
}
@media (min-width: 900px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
}

/* Services */
.service-grid {
  display: grid;
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-std);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 220ms var(--ease), box-shadow 220ms;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.service-card figure {
  margin: 0;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ink-soft);
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}
.service-card:hover img { transform: scale(1.04); }
.service-card .body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.service-card .label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-start);
}
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--graphite);
  font-size: 15px;
  flex: 1;
}
@media (min-width: 900px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Why */
.why-grid {
  display: grid;
  gap: 40px;
}
.why-list {
  display: grid;
  gap: 28px;
}
.why-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-item p { color: var(--graphite); font-size: 16px; }
.why-media {
  border-radius: var(--radius-std);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--ink);
}
.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 900px) {
  .why-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .why-list { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Fleet */
.fleet-layout {
  display: grid;
  gap: 24px;
}
.fleet-main {
  border-radius: var(--radius-std);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--ink);
}
.fleet-main img,
.fleet-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fleet-side {
  display: grid;
  gap: 24px;
}
.fleet-side figure {
  margin: 0;
  border-radius: var(--radius-std);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--ink);
}
.fleet-points {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}
.fleet-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--graphite);
}
.fleet-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
@media (min-width: 900px) {
  .fleet-layout { grid-template-columns: 1.4fr 1fr; }
  .fleet-points { grid-template-columns: 1fr 1fr; }
}

/* Split feature */
.split {
  display: grid;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-std);
  overflow: hidden;
  border: 1px solid var(--border);
}
.split-media {
  min-height: 320px;
  background: var(--ink);
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-body {
  padding: 40px 32px;
}
.split-body ul {
  margin: 24px 0 32px;
  display: grid;
  gap: 12px;
}
.split-body li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--graphite);
}
.split-body li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-start);
  margin-top: 9px;
  flex-shrink: 0;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split-media { min-height: 100%; }
  .split-body { padding: 56px 48px; }
}

/* Business */
.business-grid {
  display: grid;
  gap: 40px;
}
.business-points {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
}
.business-points li {
  font-size: 16px;
  color: rgba(247,247,244,0.78);
  padding-left: 18px;
  position: relative;
}
.business-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-end);
}
.business-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.business-media {
  border-radius: var(--radius-std);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.business-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 900px) {
  .business-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* Steps */
.steps {
  display: grid;
  gap: 24px;
  counter-reset: step;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-std);
  padding: 28px;
  position: relative;
}
.step-card::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  line-height: 1;
}
.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-card p { color: var(--graphite); font-size: 15px; }
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

/* Sustainability */
.sustain {
  display: grid;
  gap: 32px;
  align-items: center;
}
.sustain-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
.sustain-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.sustain-points li {
  font-size: 15px;
  color: var(--graphite);
  padding-left: 16px;
  position: relative;
}
.sustain-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
@media (min-width: 800px) {
  .sustain { grid-template-columns: 1.2fr 1fr; }
}

/* Trust facts / area */
.fact-grid {
  display: grid;
  gap: 16px;
}
.fact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-std);
  padding: 24px;
}
.fact-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.fact-card p { font-size: 15px; color: var(--graphite); }
@media (min-width: 800px) {
  .fact-grid { grid-template-columns: repeat(3, 1fr); }
}

.area-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-std);
  padding: 32px;
  display: grid;
  gap: 24px;
}
.area-box p { color: var(--graphite); }
@media (min-width: 800px) {
  .area-box { grid-template-columns: 1.2fr 1fr; align-items: center; }
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 10px;
  max-width: 860px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-std);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 650;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 56px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--graphite);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .answer {
  padding: 0 20px 20px;
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.55;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 88px 0;
  background:
    linear-gradient(180deg, rgba(11,13,15,0.72), rgba(11,13,15,0.88)),
    url("../img/gallery/1.webp") center/cover no-repeat;
  color: var(--white);
}
.final-cta h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.final-cta p {
  color: rgba(247,247,244,0.78);
  max-width: 480px;
  margin: 0 auto 28px;
}
.final-cta .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}
.final-cta .phone {
  font-size: 18px;
  font-weight: 650;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 40px;
}
.contact-info h2 {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--graphite);
  margin-bottom: 28px;
}
.contact-channels {
  display: grid;
  gap: 14px;
}
.contact-channels a,
.contact-channels span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-channels small {
  font-size: 12px;
  color: var(--graphite);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-channels strong {
  font-size: 17px;
  font-weight: 650;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-std);
  padding: 28px;
}
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--graphite);
  margin: 8px 0 16px;
}
.check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius-ctl);
  font-size: 14px;
  margin-bottom: 14px;
}
.form-status.is-success {
  display: block;
  background: var(--green-soft);
  color: var(--green);
}
.form-status.is-error {
  display: block;
  background: rgba(233,52,63,0.1);
  color: var(--accent-start);
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; align-items: start; }
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(247,247,244,0.78);
  padding: 72px 0 28px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  gap: 36px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.55;
  max-width: 280px;
  color: rgba(247,247,244,0.62);
}
.footer-col h3 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  min-height: 36px;
  color: rgba(247,247,244,0.68);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(247,247,244,0.5);
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; }
}

/* Cookie */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 300;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-std);
  box-shadow: var(--shadow-card);
  padding: 20px;
  display: none;
  max-width: 560px;
  margin-left: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 14px;
  color: var(--graphite);
  margin-bottom: 16px;
  line-height: 1.5;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (min-width: 700px) {
  .cookie-banner {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 420px;
  }
}

/* Mobile sticky bar */
.mobile-booking-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  gap: 10px;
  box-shadow: 0 -8px 24px rgba(11,13,15,0.08);
}
.mobile-booking-bar .btn { flex: 1; min-height: 48px; }
.mobile-booking-bar .btn-wa {
  width: 52px;
  flex: 0 0 52px;
  min-height: 48px;
  border-radius: var(--radius-ctl);
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
body.has-mobile-bar { padding-bottom: 76px; }
@media (min-width: 980px) {
  .mobile-booking-bar { display: none; }
  body.has-mobile-bar { padding-bottom: 0; }
}

/* Page shells (gallery/legal) */
.page-hero {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 0 56px;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  padding: 48px 0 80px;
}
.gallery-grid a {
  border-radius: var(--radius-std);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ink-soft);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms var(--ease);
}
.gallery-grid a:hover img { transform: scale(1.03); }
@media (min-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.legal-content {
  max-width: 760px;
  padding: 48px 0 80px;
  font-size: 16px;
  color: var(--graphite);
}
.legal-content h2 {
  color: var(--ink);
  font-size: 22px;
  margin: 32px 0 12px;
}
.legal-content p, .legal-content li { margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; list-style: disc; }

.booking-toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
  z-index: 400;
  background: var(--ink);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-ctl);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  transition: transform 250ms var(--ease);
  max-width: min(92vw, 420px);
  text-align: center;
}
.booking-toast.is-visible { transform: translateX(-50%) translateY(0); }
.booking-toast.is-error { background: var(--accent-start); }

#googleMap, #output { display: none; }

@media (max-width: 640px) {
  .field-row-2, .field-row-3 { grid-template-columns: 1fr; }
  .hero { min-height: 640px; }
  .hero-content { padding: 40px 0 48px; }
  .booking-card { max-width: none; }
  .section { padding: 64px 0; }
  .container { width: min(100% - 32px, var(--max)); }
}
