/* ============================================================
   Taxi de Beaumont — Production stylesheet
   Mobile-first, responsive, animated.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Palette — light */
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f6f4f0;          /* very subtle warm grey */
  --ink: #141414;                    /* near black */
  --ink-soft: #3a3833;
  --muted: rgba(20, 20, 20, 0.62);
  --muted-soft: rgba(20, 20, 20, 0.42);
  --border: rgba(20, 20, 20, 0.1);
  --border-soft: rgba(20, 20, 20, 0.06);

  /* Accent — amber */
  --accent: #a8782f;
  --accent-soft: #d4a859;

  /* Palette — dark sections */
  --dark-bg: #1a1410;
  --dark-text: #f4ede1;
  --dark-muted: rgba(244, 237, 225, 0.65);
  --dark-border: rgba(244, 237, 225, 0.12);
  --dark-surface: rgba(244, 237, 225, 0.04);

  /* Brand utilities */
  --wa: #25d366;
  --wa-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-script: "Dancing Script", cursive;

  /* Spacing & radius */
  --container: 1200px;
  --container-narrow: 980px;
  --gutter: 1.5rem;
  --radius: 4px;
  --radius-pill: 999px;

  /* Header height */
  --header-h: 64px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.5, 1);
}

@media (min-width: 900px) {
  :root { --header-h: 76px; }
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 0.75rem 1rem;
  z-index: 200;
  font-size: 0.875rem;
}
.skip-link:focus { top: 0; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--border-soft);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.header-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
}
.header-logo img {
  height: 40px;
  width: auto;
}
@media (min-width: 900px) {
  .header-logo { position: static; transform: none; margin-right: auto; margin-left: 0; }
  .header-logo img { height: 52px; }
}

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header-cta { display: none; }
@media (min-width: 900px) {
  .header-cta {
    display: flex;
    gap: 0.5rem;
    margin-right: 0.4rem;
  }
}

/* ---------- Desktop nav ---------- */
.desktop-nav {
  display: none;
}
@media (min-width: 900px) {
  .desktop-nav {
    display: flex;
    gap: 1.75rem;
    align-items: center;
    margin: 0 auto 0 2.5rem;
  }
  .desktop-nav a {
    position: relative;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink-soft);
    padding: 0.35rem 0;
    transition: color 0.2s;
  }
  .desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s var(--ease-out);
  }
  .desktop-nav a:hover { color: var(--ink); }
  .desktop-nav a:hover::after { transform: scaleX(1); }
}
@media (min-width: 1100px) {
  .desktop-nav { gap: 2.25rem; }
}

/* ---------- Menu button (mobile) ---------- */
.menu-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 60;
}
.menu-icon {
  position: relative;
  width: 16px;
  height: 12px;
  display: inline-block;
}
.menu-icon span {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: top 0.25s var(--ease-out), transform 0.25s var(--ease-out), opacity 0.18s;
}
.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { top: 5px; }
.menu-icon span:nth-child(3) { top: 10px; }

.menu-btn[aria-expanded="true"] .menu-icon span:nth-child(1) { top: 5px; transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-icon span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] .menu-icon span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

@media (min-width: 900px) {
  .menu-btn { display: none; }
}

/* ---------- Nav panel ---------- */
.nav-panel {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 55;
  background: var(--surface);
  padding: calc(var(--header-h) + 1rem) var(--gutter) 1.75rem;
  transform: translateY(-100%);
  transition: transform 0.38s var(--ease-out);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.14);
}
.nav-panel.open {
  transform: translateY(0);
}
.nav-panel ul {
  border-top: 1px solid var(--border-soft);
}
.nav-panel li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-soft);
}
.nav-panel a {
  display: block;
  padding: 1rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
  flex: 1;
  transition: color 0.2s;
}
.nav-panel a:hover, .nav-panel a:focus { color: var(--accent); }
.nav-panel .num {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.65rem;
  letter-spacing: 1.2px;
  color: var(--accent);
  opacity: 0.7;
}
.nav-panel .num::before { content: ""; }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 54;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.nav-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 900px) {
  .nav-panel, .nav-backdrop { display: none; }
}

/* ---------- Lang switcher ---------- */
.lang-switcher { position: relative; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.6rem 0.5rem 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s, background 0.2s;
}
.lang-btn:hover { border-color: var(--border); background: var(--surface-soft); }
.lang-btn svg { opacity: 0.6; transition: transform 0.2s; }
.lang-switcher.open .lang-btn svg { transform: rotate(180deg); }
.lang-btn .flag {
  width: 14px; height: 10px;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  display: inline-block;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  padding: 4px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.18s, transform 0.22s var(--ease-spring);
  z-index: 60;
}
.lang-switcher.open .lang-menu {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.lang-menu li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}
.lang-menu li:hover { background: var(--surface-soft); }
.lang-menu li.active { background: rgba(168, 120, 47, 0.1); font-weight: 600; }
.lang-menu li .flag {
  width: 16px; height: 12px;
  border-radius: 2px;
  background-size: cover; background-position: center;
  flex-shrink: 0;
}
.lang-menu li .check {
  margin-left: auto;
  width: 13px; height: 13px;
  opacity: 0;
  color: var(--accent);
}
.lang-menu li.active .check { opacity: 0.85; }

/* Flag backgrounds (inline SVG data URIs) */
.flag.flag-fr {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'><rect width='1' height='2' x='0' fill='%230055A4'/><rect width='1' height='2' x='1' fill='white'/><rect width='1' height='2' x='2' fill='%23EF4135'/></svg>");
}
.flag.flag-de {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 3'><rect width='5' height='1' y='0' fill='%23000'/><rect width='5' height='1' y='1' fill='%23DD0000'/><rect width='5' height='1' y='2' fill='%23FFCE00'/></svg>");
}
.flag.flag-gb {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'><clipPath id='c'><path d='M0,0 v30 h60 v-30 z'/></clipPath><g clip-path='url(%23c)'><rect width='60' height='30' fill='%23012169'/><path d='M0,0 L60,30 M60,0 L0,30' stroke='white' stroke-width='6'/><path d='M0,0 L60,30 M60,0 L0,30' stroke='%23C8102E' stroke-width='3'/><path d='M30,0 v30 M0,15 h60' stroke='white' stroke-width='10'/><path d='M30,0 v30 M0,15 h60' stroke='%23C8102E' stroke-width='6'/></g></svg>");
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  transition: transform 0.18s var(--ease-out), background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: #92681f; box-shadow: 0 6px 18px rgba(168, 120, 47, 0.3); }

.btn-outline {
  background: var(--surface);
  border-color: var(--border);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--ink); }

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--surface-soft); }

.btn-wa {
  background: var(--wa);
  color: #fff;
}
.btn-wa:hover { background: #1eb858; box-shadow: var(--wa-shadow); }

.btn-lg {
  padding: 0.95rem 1.4rem;
  font-size: 0.95rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
}

.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.05) saturate(0.95);
  animation: kenburns 24s ease-in-out infinite alternate;
  transform-origin: center 40%;
}
@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.08) translateY(-1%); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 20, 20, 0.45) 0%,
    rgba(20, 20, 20, 0.2) 28%,
    rgba(20, 20, 20, 0.55) 70%,
    rgba(20, 20, 20, 0.92) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: calc(env(safe-area-inset-bottom) + 6.5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 280px;
  height: auto;
  filter: invert(1) brightness(1.05) drop-shadow(0 4px 18px rgba(0, 0, 0, 0.45));
  margin: 0 auto 1.75rem;
  animation: fadeIn 1.1s 0.1s var(--ease-out) both;
}
@media (min-width: 900px) {
  .hero-logo { width: 360px; margin-bottom: 2.25rem; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.9s 0.2s var(--ease-out) both;
}
.hero-eyebrow .pulse {
  width: 6px; height: 6px; border-radius: 999px;
  background: #3DDC84;
  box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.55);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(61, 220, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 7vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin: 0 0 1rem;
  max-width: 900px;
  animation: fadeUp 1s 0.3s var(--ease-out) both;
}
.hero-title em {
  font-style: italic;
  color: #f4d89a;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.125rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.75rem;
  max-width: 540px;
  animation: fadeUp 1s 0.45s var(--ease-out) both;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s 0.6s var(--ease-out) both;
}
.hero-actions .btn-primary { background: var(--accent-soft); color: #1a1410; }
.hero-actions .btn-primary:hover { background: #e9c780; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Hide hero-actions on mobile (use bottom bar instead) */
@media (max-width: 599px) {
  .hero-actions { display: none; }
  .hero-inner { padding-bottom: calc(env(safe-area-inset-bottom) + 1.5rem); }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--border-soft);
  padding: 1.25rem 0;
  overflow: hidden;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  justify-content: flex-start;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
}
@media (min-width: 768px) {
  .trust-row { justify-content: space-between; }
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-row svg {
  width: 14px; height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.trust-row b { font-weight: 500; }

/* ---------- Section base ---------- */
.section {
  padding: 4rem 0;
}
@media (min-width: 900px) {
  .section { padding: 6rem 0; }
}

.section-light {
  background: var(--bg);
  color: var(--ink);
}
.section-dark {
  background: var(--dark-bg);
  color: var(--dark-text);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.section-head {
  margin-bottom: 2rem;
  max-width: 760px;
}
@media (min-width: 900px) {
  .section-head { margin-bottom: 3rem; }
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin: 0.5rem 0 0.75rem;
}
.section-sub {
  font-size: 0.975rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 600px;
}
.section-dark .section-sub { color: var(--dark-muted); }
.italic { font-style: italic; }

/* Kicker */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.kicker-light { color: var(--accent-soft); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
  }
}

.about-photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.1) saturate(0.9);
}
.about-photo figcaption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: #fff;
  background: rgba(20, 20, 20, 0.55);
  padding: 4px 8px;
  border-radius: var(--radius);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 0.9rem;
}
@media (min-width: 900px) {
  .about-text p { font-size: 1.0625rem; }
}

.signature {
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: var(--accent);
  text-align: right;
  margin-top: 1.25rem;
}
@media (min-width: 900px) {
  .signature { font-size: 2rem; }
}

/* ---------- Services ---------- */
.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--dark-border);
}
.services-list li {
  display: flex;
  gap: 1.1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--dark-border);
  align-items: flex-start;
}

@media (min-width: 700px) {
  .services-list {
    grid-template-columns: 1fr 1fr;
    border-top: none;
    column-gap: 2rem;
  }
  .services-list li { padding: 1.5rem 0; }
}
@media (min-width: 1100px) {
  .services-list { grid-template-columns: 1fr 1fr 1fr; column-gap: 2.5rem; }
}

.services-list .service-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: var(--radius-pill);
  background: rgba(212, 168, 89, 0.12);
  border: 1px solid rgba(212, 168, 89, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-soft);
}
.services-list .service-icon svg { width: 20px; height: 20px; }

.services-list .service-body { flex: 1; min-width: 0; }
.services-list .service-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
}
.services-list h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--dark-text);
}
.services-list .service-num {
  font-size: 0.7rem;
  color: rgba(244, 237, 225, 0.45);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.services-list p {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--dark-muted);
}

/* ---------- Zones ---------- */
.zones-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .zones-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
  }
}

.zones-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-width: 480px;
  margin: 0 auto;
}
.zones-map svg { width: 100%; height: 100%; display: block; }

/* Map reveal animations */
.zones-map .z-ring {
  transform-origin: 200px 150px;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.8s var(--ease-out), transform 0.9s var(--ease-spring);
}
.zones-map.in .z-ring-1 { opacity: 1; transform: scale(1); transition-delay: 0.1s; }
.zones-map.in .z-ring-2 { opacity: 1; transform: scale(1); transition-delay: 0.25s; }
.zones-map.in .z-ring-3 { opacity: 1; transform: scale(1); transition-delay: 0.4s; }

.zones-list { display: flex; flex-direction: column; gap: 0; }
.zones-list li {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--border-soft);
  align-items: flex-start;
}
.zones-list li:last-child { border-bottom: 1px solid var(--border-soft); }
.zone-num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(168, 120, 47, 0.14);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.95rem;
  font-weight: 700;
}
.zones-list h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.zones-list p {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

/* ---------- Hours ---------- */
.hours-inner { max-width: 720px; }
.hours-card {
  text-align: center;
  padding: 2.25rem 1.5rem;
  border: 1px solid var(--dark-border);
  background: var(--dark-surface);
  border-radius: var(--radius);
}
.hours-week {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--accent-soft);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.hours-time {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.6vw, 2.1rem);
  font-style: italic;
  line-height: 1.1;
  color: var(--dark-text);
}
.hours-note {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--dark-muted);
  line-height: 1.55;
  text-align: center;
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 700px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  box-shadow: 0 2px 12px rgba(20, 20, 20, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(20, 20, 20, 0.08);
}
.review-stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
}
.review-stars svg { width: 13px; height: 13px; }
.review-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.review-author {
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 920px; }
@media (min-width: 1024px) {
  .faq-list {
    column-count: 2;
    column-gap: 3rem;
  }
}
.faq-item {
  break-inside: avoid;
  border-bottom: 1px solid var(--dark-border);
  padding: 1rem 0;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.25rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-text);
}
.faq-q svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  opacity: 0.6;
  transition: transform 0.25s var(--ease-out);
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }

.faq-a-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s var(--ease-out);
}
.faq-item.open .faq-a-wrap { max-height: 320px; }
.faq-a {
  padding-top: 0.75rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--dark-muted);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
  }
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(168, 120, 47, 0.12);
}
.booking-form textarea { resize: vertical; min-height: 90px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  margin-top: 0.5rem;
}
.form-actions .btn { padding: 0.85rem 0.75rem; font-size: 0.85rem; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.info-card {
  background: var(--ink);
  color: var(--dark-text);
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  text-align: center;
}
.info-card-label {
  font-size: 0.8rem;
  color: rgba(244, 237, 225, 0.65);
  margin-bottom: 0.6rem;
}
.info-call {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.3rem;
  background: var(--accent-soft);
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1.0625rem;
  transition: background 0.2s;
}
.info-call:hover { background: #e9c780; }
.info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.info-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--ink-soft);
  line-height: 1.5;
}
.info-list svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.info-list a:hover { color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark-bg);
  color: var(--dark-text);
  padding: 3rem 0 6rem;
}
@media (min-width: 900px) {
  .site-footer { padding: 4rem 0 2.5rem; }
}
.footer-logo {
  height: 56px;
  width: auto;
  filter: invert(1) brightness(1.1);
  margin-bottom: 1.75rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 700px) {
  .footer-cols { gap: 4rem; }
}
.footer-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.85rem;
  font-weight: 600;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: rgba(244, 237, 225, 0.78);
}
.footer-list a:hover { color: var(--accent-soft); }
.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(244, 237, 225, 0.45);
  letter-spacing: 0.4px;
}

/* ---------- Mobile bottom bar ---------- */
.bottom-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 0.75rem 0.875rem calc(0.75rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.92) 50%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  gap: 0.6rem;
  z-index: 40;
  transform: translateY(120%);
  transition: transform 0.5s var(--ease-spring);
}
.bottom-bar.show { transform: none; }

.btn-ghost-bar {
  flex: 1;
  background: var(--ink);
  color: var(--dark-text);
  padding: 0.9rem 1rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}
.btn-wa-bar {
  flex: 1;
  background: var(--wa);
  color: #fff;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: var(--wa-shadow);
}

@media (min-width: 900px) {
  .bottom-bar { display: none; }
}

/* ---------- Reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }
