/* Best Choice Limos - site styles
   Theme: single dark theme (brand requirement), champagne accent.
   Radius system: 2px everywhere (buttons, cards, inputs, chips). */

:root {
  --bg: #0d0d0e;
  --surface: #141416;
  --surface-2: #1b1b1e;
  --line: rgb(255 255 255 / 0.09);
  --line-strong: rgb(255 255 255 / 0.18);
  --text: #eeece8;
  --muted: #a8a59f;          /* ~7.6:1 on --bg */
  --accent: #d6bf94;         /* champagne */
  --accent-strong: #e6d3ad;
  --on-accent: #16140f;
  --danger: #f0a29a;
  --success: #b9d7a8;

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 2px;
  --container: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --section-y: clamp(72px, 10vw, 128px);
  --header-h: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* z-index scale */
  --z-header: 50;
  --z-mobilebar: 40;
  --z-skip: 100;

  color-scheme: dark;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 600; }
p { margin: 0; text-wrap: pretty; }
ul { margin: 0; padding: 0; }
address { font-style: normal; }
[hidden] { display: none !important; }

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

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: var(--z-skip);
  background: var(--accent); color: var(--on-accent);
  padding: 10px 16px; border-radius: var(--radius); font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 12px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.icon {
  width: 18px; height: 18px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}

.icon-wa { fill: currentColor; stroke: none; }
.btn-icon { width: 44px; padding: 0; }
.btn-wa .icon-wa, .link-wa .icon-wa { color: #25d366; }
.link-wa { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-title {
  text-wrap: balance;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.section-lede {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 56ch;
}
.section-head { margin-bottom: clamp(40px, 6vw, 64px); max-width: 720px; }
.fine-print { margin-top: 28px; color: var(--muted); font-size: 0.875rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font: 600 0.9375rem/1 var(--font-body);
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .15s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.55; cursor: progress; transform: none; }
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-strong); }
.btn-ghost { background: rgb(13 13 14 / 0.35); color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-strong); }
.btn-lg { min-height: 54px; padding: 0 28px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgb(13 13 14 / 0.72);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled { background: rgb(13 13 14 / 0.94); border-bottom-color: var(--line); }
@media (prefers-reduced-transparency: reduce) {
  .site-header { background: var(--bg); -webkit-backdrop-filter: none; backdrop-filter: none; }
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.wordmark {
  display: inline-flex; align-items: baseline; gap: 8px;
  text-decoration: none; line-height: 1;
  white-space: nowrap;
}
.wordmark-main {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.6rem; letter-spacing: 0.01em;
}
.wordmark-sub {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent);
}

.primary-nav ul { list-style: none; display: flex; gap: 32px; }
.primary-nav a {
  text-decoration: none; font-size: 0.9375rem; font-weight: 500; color: var(--muted);
  padding: 8px 0; position: relative; transition: color .2s var(--ease);
  white-space: nowrap;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.primary-nav a:hover { color: var(--text); }
.primary-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px; padding: 0;
  background: transparent; border: 1px solid var(--line-strong); border-radius: var(--radius);
  color: var(--text); cursor: pointer; position: relative;
}
.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  position: absolute; left: 50%; width: 18px; height: 1.5px; margin-left: -9px;
  background: currentColor; transition: transform .3s var(--ease), opacity .2s;
}
.menu-toggle-bars { top: 50%; margin-top: -0.75px; }
.menu-toggle-bars::before, .menu-toggle-bars::after { content: ""; left: 0; margin-left: 0; }
.menu-toggle-bars::before { transform: translateY(-6px); }
.menu-toggle-bars::after { transform: translateY(6px); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars::before { transform: rotate(45deg); background: var(--text); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars::after { transform: rotate(-45deg); background: var(--text); }

.mobile-menu {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 8px var(--gutter) 28px;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
}
.mobile-menu ul { list-style: none; margin-bottom: 20px; }
.mobile-menu li + li { border-top: 1px solid var(--line); }
.mobile-menu nav a {
  display: block; padding: 16px 0; text-decoration: none;
  font-family: var(--font-display); font-size: 1.6rem; line-height: 1.2;
}
.mobile-menu nav a:hover { color: var(--accent); }

@media (max-width: 1140px) {
  .btn-call span { display: none; }
  .btn-call { padding: 0 12px; }
  .btn-call::after { content: attr(data-call-label); }
}
@media (max-width: 900px) {
  .primary-nav, .btn-call { display: none; }
  .menu-toggle { display: inline-block; }
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}
@media (max-width: 400px) {
  .wordmark-main { font-size: 1.35rem; }
  .wordmark-sub { letter-spacing: 0.22em; }
  .btn-book { padding: 0 14px; }
  .header-inner { gap: 12px; }
}

/* ---------- Language switcher ---------- */
.lang-switch { display: flex; align-items: center; flex: none; }
.lang-switch a {
  text-decoration: none; color: var(--muted);
  transition: color .2s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease);
}
.lang-switch a:hover { color: var(--text); }
.lang-switch a[aria-current="page"] { color: var(--accent); }

/* Desktop: compact "EN · ES · TR" */
.lang-switch--header { gap: 0; margin-right: 4px; }
.lang-switch--header a {
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  min-height: 44px; min-width: 28px; padding: 0 2px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
}
.lang-switch--header a + a { margin-left: 8px; }
.lang-switch--header a + a::before {
  content: "\00B7"; position: absolute; left: -7px; top: 50%; transform: translateY(-50%);
  color: var(--muted); opacity: 0.6; letter-spacing: 0; pointer-events: none;
}
.lang-switch--header a[aria-current="page"] { text-decoration: underline; text-decoration-color: rgb(214 191 148 / 0.5); text-underline-offset: 6px; text-decoration-thickness: 1px; }

/* Mobile menu: full names, 44px+ targets */
.lang-switch--mobile {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px;
  margin-top: 20px;
}
.mobile-menu .lang-switch--mobile a {
  display: flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 8px;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600; line-height: 1.2;
  color: var(--muted);
}
.mobile-menu .lang-switch--mobile a:hover { border-color: var(--accent); color: var(--text); }
.mobile-menu .lang-switch--mobile a[aria-current="page"] { border-color: var(--accent); background: rgb(214 191 148 / 0.08); color: var(--accent); }

@media (max-width: 900px) {
  .lang-switch--header { display: none; }
}
/* Tight desktop widths: keep the header on one line */
@media (min-width: 901px) and (max-width: 1140px) {
  .primary-nav ul { gap: 20px; }
  .primary-nav a { font-size: 0.875rem; }
  .header-inner { gap: 16px; }
  .header-actions { gap: 8px; }
  .btn-book { padding: 0 16px; }
  /* The floating WhatsApp button stays visible, so the header icon can go */
  .btn-wa-header { display: none; }
}
/* Spanish and Turkish labels are longer: keep the compact header up to the container width */
@media (min-width: 1141px) and (max-width: 1240px) {
  html:is(:lang(es), :lang(tr)) .btn-call span { display: none; }
  html:is(:lang(es), :lang(tr)) .btn-call { padding: 0 12px; }
  html:is(:lang(es), :lang(tr)) .btn-call::after { content: attr(data-call-label); }
  html:is(:lang(es), :lang(tr)) .primary-nav ul { gap: 24px; }
  html:is(:lang(es), :lang(tr)) .btn-wa-header { display: none; }
}
@media (min-width: 901px) and (max-width: 1024px) {
  /* Icon-only call button (accessible name comes from aria-label) */
  .btn-call { width: 44px; padding: 0; }
  .btn-call::after { content: none; }
}
@media (max-width: 440px) {
  .header-actions { gap: 8px; }
  .btn-book { padding: 0 10px; font-size: 0.8125rem; letter-spacing: 0; }
}
@media (max-width: 359px) {
  .wordmark { gap: 6px; }
  .wordmark-main { font-size: 1.15rem; }
  .wordmark-sub { font-size: 0.625rem; letter-spacing: 0.16em; }
  .header-inner { gap: 8px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100dvh - var(--header-h));
  display: flex; align-items: flex-end;
  margin-top: calc(var(--header-h) * -1);
  padding-top: var(--header-h);
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0; z-index: -1;
  /* Fallback backdrop shown when assets/hero.jpg is absent: night-road light bands */
  background:
    radial-gradient(60% 45% at 78% 38%, rgb(214 191 148 / 0.16), transparent 70%),
    radial-gradient(40% 30% at 92% 70%, rgb(214 191 148 / 0.10), transparent 70%),
    radial-gradient(70% 60% at 20% 110%, rgb(60 66 80 / 0.55), transparent 70%),
    linear-gradient(160deg, #17171a 0%, #0d0d0e 55%, #0a0a0b 100%);
}
.hero-media::before {
  /* thin diagonal light streaks, static */
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(-18deg, transparent 0 120px, rgb(214 191 148 / 0.035) 120px 121px);
  mask-image: linear-gradient(90deg, transparent 30%, #000 80%);
  -webkit-mask-image: linear-gradient(90deg, transparent 30%, #000 80%);
}
.hero-media .media-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgb(13 13 14 / 0.92) 0%, rgb(13 13 14 / 0.62) 45%, rgb(13 13 14 / 0.15) 100%),
    linear-gradient(0deg, rgb(13 13 14 / 0.9) 0%, transparent 40%);
}
.hero-inner {
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(56px, 10vh, 112px);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 5.6vw, 4.75rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  max-width: 21ch;
  text-wrap: balance;
  padding-bottom: 4px;
}
.hero-title em { font-style: italic; color: var(--accent-strong); }
.nowrap { white-space: nowrap; }
.hero-lede {
  margin-top: 24px;
  max-width: 44ch;
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  color: #cfccc6;
}
.hero-cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 480px) {
  .hero-cta .btn { flex: 1 1 100%; }
}

/* ---------- Media slot (image with gradient fallback) ---------- */
.media { position: relative; margin: 0; overflow: hidden; background: var(--surface-2); }
.media-img { opacity: 0; transition: opacity .6s var(--ease); }
.media-img.is-loaded { opacity: 1; }
.media .media-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.media-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; padding: 20px 22px;
  font-family: var(--font-display); font-style: italic; font-size: 2.4rem; line-height: 1;
  color: rgb(238 236 232 / 0.16);
}
.media--sedan    { background: radial-gradient(80% 70% at 80% 20%, #3a3428 0%, transparent 60%), linear-gradient(140deg, #1d1d20, #0f0f11); }
.media--suv      { background: radial-gradient(80% 70% at 20% 25%, #2d3038 0%, transparent 60%), linear-gradient(140deg, #1a1b1f, #0e0e10); }
.media--stretch  { background: linear-gradient(100deg, transparent 20%, rgb(214 191 148 / 0.14) 50%, transparent 80%), linear-gradient(160deg, #1e1c19, #0e0e0f); }
.media--sprinter { background: radial-gradient(70% 80% at 70% 90%, #2a2e2f 0%, transparent 60%), linear-gradient(200deg, #1c1c1f, #0e0e10); }
.media--bus      { background: radial-gradient(50% 50% at 25% 40%, rgb(214 191 148 / 0.18), transparent 70%), radial-gradient(40% 40% at 80% 70%, rgb(120 110 150 / 0.18), transparent 70%), linear-gradient(160deg, #19181c, #0d0d0f); }

/* ---------- Sections ---------- */
.section { padding-block: var(--section-y); }
.section--alt { background: var(--surface); border-block: 1px solid var(--line); }

/* Services: asymmetric grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service {
  background: var(--bg);
  padding: clamp(24px, 3vw, 36px);
  min-height: 200px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: background-color .3s var(--ease);
}
.service:hover { background: #111113; }
.service h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.6rem; line-height: 1.15; margin-bottom: 8px;
}
.service p { color: var(--muted); font-size: 0.9375rem; max-width: 40ch; }
.service { position: relative; overflow: hidden; isolation: isolate; }
.service-media { position: absolute; inset: 0; z-index: -1; }
.service-media::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgb(13 13 14 / 0.2) 0%, rgb(13 13 14 / 0.55) 45%, rgb(13 13 14 / 0.94) 100%);
}
.service-media .media-img { transition: opacity .6s var(--ease), transform 1.2s var(--ease); }
.service:hover .service-media .media-img.is-loaded { transform: scale(1.03); }
.service-content { position: relative; }
.service--feature {
  grid-column: span 2; grid-row: span 2;
  justify-content: flex-end;
  min-height: 520px;
  background: linear-gradient(160deg, #18181b, #0f0f11);
}
.service--feature .service-media::after {
  background:
    linear-gradient(90deg, rgb(13 13 14 / 0.75) 0%, rgb(13 13 14 / 0.2) 70%),
    linear-gradient(180deg, rgb(13 13 14 / 0.1) 20%, rgb(13 13 14 / 0.95) 100%);
}
.service--image { min-height: 260px; }
.service--image p { color: #cfccc6; }
.service--feature h3 { font-size: clamp(2rem, 3.4vw, 2.75rem); }
.service--feature p { font-size: 1.0625rem; color: #cfccc6; }
.service--wide {
  grid-column: 1 / -1;
  background: linear-gradient(90deg, #0d0d0e 40%, rgb(214 191 148 / 0.08));
}
.airport-list {
  list-style: none;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px;
  margin-top: 32px;
}
.airport-list li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 16px; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgb(13 13 14 / 0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.airport-list .code {
  font-family: var(--font-display); font-size: 2rem; line-height: 1; color: var(--accent);
  letter-spacing: 0.04em;
}
.airport-list span:last-child { font-size: 0.8125rem; color: var(--muted); }

@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service--feature { grid-column: span 2; grid-row: auto; min-height: 460px; }
  .service--wide { grid-column: auto; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: minmax(0, 1fr); }
  .service--feature, .service--wide { grid-column: auto; }
  .service { min-height: 0; }
  .service--feature { min-height: 420px; }
  .service--image { min-height: 240px; }
  .airport-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .airport-list li { padding: 12px; }
}

/* Fleet: 2 featured + 3 below on desktop, scroll-snap on mobile */
.fleet-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}
.vehicle { grid-column: span 2; display: flex; flex-direction: column; }
.vehicle:nth-child(-n+2) { grid-column: span 3; }
.vehicle-media { aspect-ratio: 3 / 2; border-radius: var(--radius); border: 1px solid var(--line); }
.vehicle:nth-child(-n+2) .vehicle-media { aspect-ratio: 16 / 9; }
.vehicle-body { padding-top: 20px; }
.vehicle h3 { font-family: var(--font-display); font-size: 1.75rem; line-height: 1.15; }
.vehicle-meta {
  display: flex; flex-wrap: wrap; gap: 6px 16px;
  margin: 8px 0 10px;
  font-size: 0.8125rem; font-weight: 600; color: var(--accent);
}
.vehicle-meta span + span { color: var(--muted); font-weight: 500; }
.vehicle-body > p:last-child { color: var(--muted); font-size: 0.9375rem; }

@media (max-width: 960px) {
  .fleet-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vehicle, .vehicle:nth-child(-n+2) { grid-column: auto; }
  .vehicle:nth-child(-n+2) .vehicle-media { aspect-ratio: 3 / 2; }
  .vehicle:first-child { grid-column: span 2; }
  .vehicle:first-child .vehicle-media { aspect-ratio: 16 / 9; }
}
@media (max-width: 600px) {
  .fleet-list {
    display: flex; gap: 16px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    scroll-padding-inline: var(--gutter);
    padding-bottom: 12px;
    scrollbar-width: thin;
  }
  .vehicle, .vehicle:first-child { flex: 0 0 82%; scroll-snap-align: start; }
  .vehicle:first-child .vehicle-media { aspect-ratio: 3 / 2; }
}

/* Why us: statement + definition grid */
.why {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}
.why-statement { position: sticky; top: calc(var(--header-h) + 32px); }
.why-statement .btn { margin-top: 32px; }
.why-list {
  margin: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 40px;
}
.why-item { border-top: 1px solid var(--line-strong); padding-top: 20px; }
.why-item dt {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; line-height: 1.2;
  margin-bottom: 8px;
}
.why-item dt::before {
  content: ""; display: block; width: 24px; height: 1px; background: var(--accent);
  margin-bottom: 16px; transform: translateY(-21px);
}
.why-item dd { margin: 0; color: var(--muted); font-size: 0.9375rem; }
@media (max-width: 900px) {
  .why { grid-template-columns: minmax(0, 1fr); }
  .why-statement { position: static; }
}
@media (max-width: 560px) {
  .why-list { grid-template-columns: minmax(0, 1fr); gap: 28px; }
}

/* Service areas */
.areas {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 72px);
}
.area-state {
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  font-size: clamp(2rem, 3.5vw, 2.75rem); line-height: 1.1;
  color: var(--accent-strong);
  padding-bottom: 16px; margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li {
  padding: 8px 14px;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 500;
  background: rgb(13 13 14 / 0.4);
}
.areas-note { margin-top: 40px; color: var(--muted); font-size: 0.9375rem; max-width: 80ch; }
@media (max-width: 760px) {
  .areas { grid-template-columns: minmax(0, 1fr); }
}

/* Reviews: data-driven scroll-snap track */
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.reviews-controls { display: flex; gap: 8px; flex: none; }
.review-track {
  list-style: none;
  margin-top: clamp(32px, 5vw, 56px);
  display: grid; grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent;
}
.review-card {
  scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 18px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.review-card .stars { color: var(--accent); letter-spacing: 0.15em; font-size: 0.95rem; }
.review-card blockquote { margin: 0; flex: 1; }
.review-card blockquote p {
  font-family: var(--font-display); font-size: 1.3rem; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
}
.review-meta { font-size: 0.875rem; }
.review-meta strong { display: block; }
.review-meta span { color: var(--muted); }
.reviews-cta { margin-top: 32px; display: flex; align-items: center; flex-wrap: wrap; gap: 12px 20px; }
.reviews-summary { margin-top: 14px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 12px; }
.reviews-summary .avg { font-family: var(--font-display); font-size: 2.25rem; font-weight: 600; line-height: 1; }
.reviews-summary .stars { color: var(--accent); letter-spacing: 0.15em; }
.reviews-summary .count { color: var(--muted); font-size: 0.875rem; }
.review-service { color: var(--accent); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }

.review-form {
  margin-top: 28px;
  max-width: 760px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.review-form-title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 600; margin-bottom: 24px; }
.rating-field { border: 0; padding: 0; margin: 0; }
.rating-field legend { font-size: 0.875rem; font-weight: 600; margin-bottom: 8px; padding: 0; }
.star-input { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.rating-field .star-input input { position: absolute; opacity: 0; width: 1px; min-height: 0; height: 1px; padding: 0; border: 0; }
.star-input label {
  width: 44px; height: 44px; cursor: pointer;
  display: grid; place-items: center;
  color: var(--line-strong);
  transition: color .15s var(--ease), transform .15s var(--ease);
}
.star-input label::before { content: "★"; font-size: 2rem; line-height: 1; }
.star-input label:hover,
.star-input label:hover ~ label,
.star-input input:checked ~ label { color: var(--accent); }
.star-input input:focus-visible + label { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: var(--radius); }
.star-input label:active { transform: scale(0.92); }
.rating-field[aria-invalid="true"] .star-input label { color: rgb(240 162 154 / 0.5); }
.check { display: flex; align-items: flex-start; gap: 12px; font-weight: 500 !important; line-height: 1.5; cursor: pointer; }
.check input[type="checkbox"] {
  flex: none; width: 22px; min-height: 22px; height: 22px; padding: 0; margin-top: 1px;
  display: grid; place-content: center; cursor: pointer;
}
.check input[type="checkbox"]::before { content: ""; width: 12px; height: 12px; transform: scale(0); background: var(--accent); transition: transform .15s var(--ease); clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%); }
.check input[type="checkbox"]:checked::before { transform: scale(1); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 900px) {
  .review-track { grid-auto-columns: calc((100% - 20px) / 2); }
}
@media (max-width: 600px) {
  .review-track { grid-auto-columns: 85%; }
  .reviews-controls { display: none; }
  .reviews-cta .btn { width: 100%; }
}

/* Quote form */
.quote {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.contact-list { list-style: none; margin-top: 40px; display: grid; gap: 20px; }
.contact-list li { display: grid; grid-template-columns: 88px minmax(0, 1fr); gap: 16px; align-items: baseline; }
.contact-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.contact-list a { text-decoration: none; font-weight: 600; overflow-wrap: anywhere; }
.contact-list a:hover { color: var(--accent); }
.contact-stack { display: flex; flex-direction: column; gap: 4px; }

.quote-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 40px);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 20px; }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.875rem; font-weight: 600; }
.optional { color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font: 500 1rem/1.4 var(--font-body);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  padding-right: 40px;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}
.field input[type="date"], .field input[type="time"] { min-width: 0; }
.field input::-webkit-calendar-picker-indicator { filter: invert(0.8); cursor: pointer; }
.field textarea { resize: vertical; min-height: 110px; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgb(255 255 255 / 0.3); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgb(214 191 148 / 0.25);
}
.field [aria-invalid="true"] { border-color: var(--danger); }
.field-hint { font-size: 0.8125rem; color: var(--muted); }
.field-error { font-size: 0.8125rem; color: var(--danger); min-height: 0; }
.field-error:empty { display: none; }
.form-actions { margin-top: 28px; display: flex; align-items: center; flex-wrap: wrap; gap: 16px 24px; }
.form-note { font-size: 0.8125rem; color: var(--muted); flex-basis: 100%; }
.form-status {
  margin-top: 24px; padding: 18px 20px;
  border: 1px solid rgb(185 215 168 / 0.45);
  border-radius: var(--radius);
  background: rgb(185 215 168 / 0.07);
}
.form-status strong { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 4px; }
.form-status p { color: var(--muted); font-size: 0.9375rem; }
.form-status a { color: var(--accent); font-weight: 600; }
.form-status.is-error { border-color: rgb(240 162 154 / 0.45); background: rgb(240 162 154 / 0.07); }

@media (max-width: 900px) {
  .quote { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 520px) {
  .form-grid { grid-template-columns: minmax(0, 1fr); }
  .form-actions .btn { width: 100%; }
  .contact-list li { grid-template-columns: minmax(0, 1fr); gap: 2px; }
}

/* FAQ */
.faq { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(32px, 6vw, 88px); align-items: start; }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 22px 0;
  font-weight: 600; font-size: 1.0625rem;
  transition: color .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: none; width: 12px; height: 12px;
  background:
    linear-gradient(var(--accent), var(--accent)) center / 12px 1.5px no-repeat,
    linear-gradient(var(--accent), var(--accent)) center / 1.5px 12px no-repeat;
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent-strong); }
.faq-body { padding: 0 0 24px; color: var(--muted); max-width: 68ch; }
@media (max-width: 800px) {
  .faq { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-top: clamp(56px, 8vw, 88px); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.footer-brand p { margin-top: 16px; color: var(--muted); font-size: 0.9375rem; max-width: 32ch; }
.footer-heading {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px; font-family: var(--font-body);
}
.footer-list { list-style: none; display: grid; gap: 10px; font-size: 0.9375rem; }
.footer-list a { text-decoration: none; overflow-wrap: anywhere; }
.footer-list a:hover { color: var(--accent); }
.footer-text { font-size: 0.9375rem; color: var(--text); }
.footer-base {
  margin-top: 56px; padding-top: 24px; padding-bottom: 32px;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem; color: var(--muted);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
}

/* ---------- Mobile quick-action bar ---------- */
.mobile-bar { display: none; }
@media (max-width: 900px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-mobilebar);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgb(13 13 14 / 0.94);
    border-top: 1px solid var(--line);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
  .mobile-bar .btn { width: 100%; padding: 0 12px; }
  .site-footer { padding-bottom: 72px; }
  body.menu-open .mobile-bar { display: none; }
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; z-index: var(--z-mobilebar);
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #25d366; color: #fff;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.45), inset 0 0 0 1px rgb(255 255 255 / 0.15);
  transition: transform .3s var(--ease), opacity .3s var(--ease), visibility .3s;
}
.wa-float:hover { transform: translateY(-2px) scale(1.04); }
.wa-float:focus-visible { outline-color: #fff; border-radius: 50%; }
.wa-float.is-hidden { opacity: 0; visibility: hidden; transform: translateY(12px); }
.wa-float-icon { width: 30px; height: 30px; fill: currentColor; }
@media (max-width: 900px) {
  .wa-float {
    width: 52px; height: 52px;
    right: max(16px, env(safe-area-inset-right));
    bottom: calc(76px + env(safe-area-inset-bottom));
  }
  body.menu-open .wa-float { display: none; }
}

/* ---------- Legal / simple pages ---------- */
.page { padding-block: clamp(56px, 8vw, 96px) var(--section-y); }
.prose { max-width: 72ch; }
.prose h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.08; }
.prose h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; margin: 48px 0 12px; }
.prose p, .prose ul { color: #cfccc6; margin-top: 14px; }
.prose ul { padding-left: 1.2em; }
.prose li + li { margin-top: 6px; }
.prose a { color: var(--accent); }
.prose .updated { color: var(--muted); font-size: 0.875rem; margin-top: 12px; }

.notfound {
  min-height: calc(100dvh - var(--header-h) - 200px);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding-block: 80px;
}
.notfound .code404 { font-family: var(--font-display); font-style: italic; font-size: clamp(5rem, 16vw, 10rem); line-height: 1; color: var(--accent); }
.notfound h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 4vw, 3rem); margin-top: 12px; }
.notfound p { color: var(--muted); margin-top: 12px; max-width: 48ch; }
.notfound .actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Motion (reveal on scroll) ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes settle { from { transform: scale(1.06); } to { transform: scale(1); } }
@media (prefers-reduced-motion: no-preference) {
  /* Hero animates on load with CSS only (no flash while JS loads) */
  .hero .reveal { animation: rise 1s var(--ease) both; }
  .hero .reveal:nth-child(2) { animation-delay: .08s; }
  .hero .reveal:nth-child(3) { animation-delay: .18s; }
  .hero .reveal:nth-child(4) { animation-delay: .28s; }
  .hero-media .media-img.is-loaded { animation: settle 2.4s var(--ease) both; }
}
/* Scroll-linked reveal: only where supported; elsewhere content simply shows. */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    :not(.hero-inner) > .reveal {
      animation: rise linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 45%;
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Small-screen header tidy ---------- */
.mobile-menu .btn + .btn { margin-top: 10px; }
@media (max-width: 520px) {
  .btn-wa-header { display: none; }
}

/* Mobile bar slide-away; floating WhatsApp drops down when the bar is hidden */
@media (max-width: 900px) {
  .mobile-bar { transition: transform .35s var(--ease), visibility .35s; }
  .mobile-bar.is-hidden { transform: translateY(110%); visibility: hidden; }
  .wa-float { transition: transform .3s var(--ease), opacity .3s var(--ease), visibility .3s, bottom .35s var(--ease); }
  body.bar-hidden .wa-float { bottom: max(16px, env(safe-area-inset-bottom)); }
  .eyebrow { letter-spacing: 0.14em; }
}

/* 404: Spanish / Turkish lines */
.notfound .notfound-langs { margin-top: 20px; display: grid; gap: 6px; }
.notfound .notfound-langs p { margin-top: 0; font-size: 0.9375rem; }
.notfound .notfound-langs a { color: var(--accent); }
