/* Fedas Bus — one stylesheet. Tokens first, then base, then sections in page order. */

:root {
  --bg: #0a0a0b;
  --bg-2: #121214;
  --bg-3: #1a1a1e;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --gold: #c9a24a;
  --gold-2: #e8c97a;
  --gold-3: #8f6b1f;
  --gold-soft: rgba(201, 162, 74, 0.14);
  --gold-grad: linear-gradient(135deg, #f1d58a 0%, #c9a24a 45%, #9a7526 100%);

  --ink: #f3eee4;
  --muted: #aaa496;
  --faint: #6f6a5f;

  --paper: #f3eee4;
  --paper-2: #e8e1d2;
  --ink-dark: #16140f;
  --muted-dark: #5f5a4f;
  --line-dark: rgba(22, 20, 15, 0.12);

  --display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --text: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --r: 14px;
  --r-lg: 22px;
  --pad: clamp(1rem, 4vw, 2.5rem);
  --wrap: 1180px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --header-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 600; line-height: 1.05; letter-spacing: 0.005em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; border-radius: 4px; }

.wrap { width: min(var(--wrap), 100% - 2 * var(--pad)); margin-inline: auto; }
.visually-hidden { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.sprite { position: absolute; }
.chip.is-new { margin-top: 0.5rem; display: inline-block; }
.skip { position: absolute; left: 1rem; top: -4rem; background: var(--gold); color: var(--ink-dark); padding: 0.6rem 1rem; border-radius: 8px; z-index: 100; font-weight: 600; }
.skip:focus { top: 1rem; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before { content: ""; width: 1.6rem; height: 1px; background: var(--gold); opacity: 0.7; }
.h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin-top: 0.9rem; }
.h2 em { font-style: italic; font-weight: 500; color: var(--gold-2); }
.lede { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.125rem); max-width: 56ch; margin-top: 1rem; }
.sec-head { display: grid; gap: 0.2rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.sec-head.split { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); align-items: end; gap: 2rem; }
.sec-head.split > .btn { justify-self: end; }
.sec-head.split .lede { margin-top: 0; }
@media (max-width: 760px) { .sec-head.split { grid-template-columns: 1fr; } }
.gold-text { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.note { font-size: 0.85rem; color: var(--muted); }

section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }
.paper { background: var(--paper); color: var(--ink-dark); }
.paper .lede, .paper .note { color: var(--muted-dark); }
.paper .h2 em { color: var(--gold-3); }
.paper :focus-visible { outline-color: var(--gold-3); }
.paper .eyebrow { color: var(--gold-3); }
.paper .eyebrow::before { background: var(--gold-3); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.9rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 0.95rem; line-height: 1; white-space: nowrap;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn-gold { background: var(--gold-grad); color: var(--ink-dark); box-shadow: 0 10px 30px -12px rgba(201, 162, 74, 0.7); }
.btn-gold:hover { box-shadow: 0 14px 34px -12px rgba(201, 162, 74, 0.9); }
.btn-ghost { border-color: var(--line-strong); color: var(--ink); background: rgba(255, 255, 255, 0.02); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.paper .btn-ghost { border-color: var(--line-dark); color: var(--ink-dark); background: transparent; }
.paper .btn-ghost:hover { border-color: var(--gold-3); color: var(--gold-3); }
.btn-sm { padding: 0.65rem 1.1rem; font-size: 0.85rem; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.header.is-scrolled { border-bottom-color: var(--line); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-mark { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--gold-3); background: var(--bg); display: grid; place-items: center; flex: none; }
.brand-mark svg { width: 26px; height: 26px; color: var(--gold); fill: currentColor; }
.brand-name { display: grid; line-height: 1; }
.brand-name b { font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.12em; color: var(--ink); }
.brand-name small { font-size: 0.55rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-top: 0.25rem; }
.nav { display: flex; gap: 1.6rem; }
.nav a { font-size: 0.85rem; font-weight: 500; color: var(--muted); transition: color 0.2s; position: relative; padding-block: 0.3rem; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--gold); transition: right 0.3s var(--ease); }
.nav a:hover, .nav a.is-active { color: var(--ink); }
.nav a:hover::after, .nav a.is-active::after { right: 0; }
.header-cta { display: flex; align-items: center; gap: 0.6rem; }
.header-phone { font-size: 0.9rem; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 0.5rem; }
.header-phone svg { width: 1em; height: 1em; color: var(--gold); }
.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 50%; background: transparent; place-items: center; }
.burger span { display: block; width: 18px; height: 1.5px; background: var(--ink); position: relative; transition: background 0.2s; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--ink); transition: transform 0.3s var(--ease), top 0.3s; }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; background: var(--bg); flex-direction: column; gap: 0; padding: 0.5rem var(--pad) 1.5rem; border-bottom: 1px solid var(--line);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: transform 0.3s var(--ease), opacity 0.3s; }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { font-size: 1.1rem; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .header-phone span { display: none; }
  .header-phone { width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 50%; justify-content: center; }
  .header-phone svg { width: 1.1rem; height: 1.1rem; }
  .burger { display: grid; }
  .header .btn-gold { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding: 0; min-height: calc(100svh - var(--header-h)); display: grid; align-items: center; position: relative; isolation: isolate; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; background: radial-gradient(120% 80% at 80% 30%, #2a2418 0%, #0a0a0b 60%); }
.hero-bg picture { height: 100%; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; opacity: 0; transition: opacity 1.2s ease; }
.hero-bg img.is-loaded { opacity: 1; }
.hero-shade { position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 10, 11, 0.94) 0%, rgba(10, 10, 11, 0.78) 38%, rgba(10, 10, 11, 0.25) 70%, rgba(10, 10, 11, 0.55) 100%),
    linear-gradient(180deg, rgba(10, 10, 11, 0.35) 0%, rgba(10, 10, 11, 0) 30%, rgba(10, 10, 11, 0.85) 100%); }
.hero .wrap { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; padding-block: clamp(3rem, 7vw, 6rem); }
.hero h1 { margin-top: 1rem; font-size: clamp(2.6rem, 5.4vw, 4.4rem); font-weight: 500; line-height: 1.02; max-width: 15ch; }
.hero h1 em { font-style: italic; color: var(--gold-2); }
.hero .lede { margin-top: 1.4rem; max-width: 46ch; font-size: clamp(1rem, 1.5vw, 1.15rem); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; margin-top: 2.2rem; color: var(--muted); font-size: 0.85rem; }
.hero-tags li { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-tags li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* Route finder card */
.finder {
  background: rgba(18, 18, 20, 0.72); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong); border-radius: var(--r-lg); padding: clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.finder-title { font-family: var(--display); font-size: 1.5rem; font-weight: 600; }
.finder-sub { color: var(--muted); font-size: 0.85rem; margin-top: 0.2rem; }
.finder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.2rem; }
.field { display: grid; gap: 0.35rem; }
.field > span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.field select, .field input, .field textarea {
  color-scheme: dark;
  width: 100%; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-strong); border-radius: 10px;
  color: var(--ink); font: inherit; padding: 0.8rem 0.9rem; min-height: 48px; transition: border-color 0.2s, background 0.2s;
}
.field select { appearance: none; -webkit-appearance: none; padding-right: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c9a24a' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center; }
.field select option { background: var(--bg-2); color: var(--ink); }
.field select:focus, .field input:focus, .field textarea:focus { border-color: var(--gold); background: rgba(255, 255, 255, 0.06); outline: none; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.finder-result { margin-top: 1rem; border-top: 1px solid var(--line); padding-top: 1rem; display: grid; gap: 0.8rem; }
.finder-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.finder-row span { color: var(--muted); font-size: 0.85rem; }
.finder-row b { font-weight: 600; text-align: right; }
.finder-price { font-family: var(--display); font-size: 2.2rem; font-weight: 600; color: var(--gold-2); line-height: 1; }
.finder-price small { font-family: var(--text); font-size: 0.8rem; color: var(--muted); font-weight: 500; margin-left: 0.3rem; }
.finder-cities { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.chip { font-size: 0.75rem; padding: 0.3rem 0.65rem; border-radius: 999px; border: 1px solid var(--line-strong); color: var(--muted); }
.chip.is-new { border-color: var(--gold-3); color: var(--gold-2); }
.finder .btn { width: 100%; margin-top: 0.4rem; }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-bg img { object-position: 62% 50%; }
  .hero-shade { background: linear-gradient(180deg, rgba(10, 10, 11, 0.3) 0%, rgba(10, 10, 11, 0.6) 45%, rgba(10, 10, 11, 0.96) 100%); }
}
@media (max-width: 480px) { .finder-grid { grid-template-columns: 1fr; } .hero-ctas .btn { width: 100%; } }

/* ---------- Trust strip ---------- */
.trust { padding: 0; border-block: 1px solid var(--line); background: var(--bg-2); }
.trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 1.4rem 1rem 1.4rem 0; display: grid; gap: 0.15rem; border-right: 1px solid var(--line); }
.trust-item + .trust-item { padding-left: 1.5rem; }
.trust-item:last-child { border-right: 0; }
.trust-item b { font-family: var(--display); font-size: 1.9rem; font-weight: 600; color: var(--gold-2); line-height: 1; }
.trust-item span { font-size: 0.82rem; color: var(--muted); }
@media (max-width: 760px) {
  .trust .wrap { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 1.1rem 0.8rem 1.1rem 0; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(2n) { border-right: 0; }
  .trust-item:nth-child(n+3) { border-bottom: 0; }
  .trust-item + .trust-item { padding-left: 1rem; }
  .trust-item:nth-child(3) { padding-left: 0; }
}

/* ---------- Routes ---------- */
.routes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1rem; }
.route {
  position: relative; display: grid; grid-template-rows: auto 1fr auto; gap: 1rem;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.4rem;
  transition: border-color 0.3s, transform 0.4s var(--ease), background 0.3s;
}
.route:hover { border-color: var(--gold-3); transform: translateY(-3px); background: var(--bg-3); }
.route-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.route-flag { display: block; width: 42px; height: 30px; border-radius: 5px; overflow: hidden; border: 1px solid var(--line-strong); flex: none; }
.route-flag svg { width: 100%; height: 100%; }
.route h3 { font-size: 1.7rem; margin-top: 0.7rem; }
.route-badge { white-space: nowrap; font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.35rem 0.6rem; border-radius: 999px; background: var(--gold-soft); color: var(--gold-2); border: 1px solid var(--gold-3); }
.route-cities { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
.route-meta { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 0.5rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.route-meta .days { font-size: 0.78rem; color: var(--muted); display: grid; gap: 0.15rem; }
.route-meta .days b { color: var(--ink); font-weight: 600; }
.price { font-family: var(--display); font-size: 2rem; font-weight: 600; color: var(--gold-2); line-height: 1; white-space: nowrap; }
.price small { font-family: var(--text); font-size: 0.72rem; font-weight: 500; color: var(--muted); display: block; margin-bottom: 0.2rem; }
.route .btn { grid-column: 1 / -1; margin-top: 0.4rem; }
.routes-foot { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between; }

/* ---------- Schedule ---------- */
.schedule { background: var(--bg-2); border-block: 1px solid var(--line); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--bg); }
.timetable { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 0.9rem; }
.timetable th, .timetable td { padding: 0.9rem 0.8rem; text-align: center; border-bottom: 1px solid var(--line); }
.timetable th { font-weight: 500; color: var(--muted); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; background: rgba(255, 255, 255, 0.02); }
.timetable th:first-child, .timetable td:first-child { text-align: left; padding-left: 1.3rem; position: sticky; left: 0; background: var(--bg); }
.timetable th:first-child { background: #0c0c0e; }
.timetable td:first-child { font-family: var(--display); font-size: 1.15rem; font-weight: 600; }
.timetable td:first-child small { display: block; font-family: var(--text); font-size: 0.75rem; color: var(--muted); font-weight: 400; margin-top: 0.15rem; }
.timetable tbody tr:last-child td { border-bottom: 0; }
.timetable .today { color: var(--gold-2); }
.dot { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; }
.dot.out { background: var(--gold-grad); color: var(--ink-dark); font-weight: 700; font-size: 0.7rem; }
.dot.back { border: 1px solid var(--gold-3); color: var(--gold-2); font-weight: 600; font-size: 0.7rem; }
.dot.both { background: var(--gold-grad); color: var(--ink-dark); font-weight: 700; font-size: 0.6rem; box-shadow: 0 0 0 3px var(--bg), 0 0 0 4px var(--gold-3); }
.dot.none { color: var(--faint); }
.legend { display: flex; flex-wrap: wrap; gap: 0.7rem 1.6rem; margin-top: 1.2rem; font-size: 0.82rem; color: var(--muted); align-items: center; }
.legend li { display: inline-flex; align-items: center; gap: 0.5rem; }
.legend .dot { width: 22px; height: 22px; font-size: 0.55rem; }
.schedule-notes { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-top: 2rem; }
.schedule-notes li { display: grid; grid-template-columns: auto 1fr; gap: 0.8rem; align-items: start; font-size: 0.9rem; color: var(--muted); }
.schedule-notes svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 0.15rem; }
.schedule-notes b { color: var(--ink); display: block; font-weight: 600; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--bg-2); border: 1px solid var(--line); display: grid; grid-template-rows: auto 1fr; transition: border-color 0.3s; }
.service:hover { border-color: var(--gold-3); }
.service-img { aspect-ratio: 4 / 3; background: var(--bg-3); position: relative; overflow: hidden; }
.service-img picture { height: 100%; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.service:hover .service-img img { transform: scale(1.04); }
.service-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 10, 11, 0) 50%, rgba(18, 18, 20, 1) 100%); }
.service-body { padding: 0.5rem 1.4rem 1.5rem; display: grid; gap: 0.7rem; align-content: start; }
.service h3 { font-size: 1.75rem; }
.service p { color: var(--muted); font-size: 0.92rem; }
.service ul { display: grid; gap: 0.35rem; font-size: 0.88rem; color: var(--muted); margin-top: 0.2rem; }
.service li { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem; align-items: start; }
.service li::before { content: ""; width: 14px; height: 14px; margin-top: 0.35rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a24a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E") center / contain no-repeat; }
.service-price { margin-top: auto; padding-top: 0.8rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.service-price span { font-size: 0.8rem; color: var(--muted); }
.service-price b { font-family: var(--display); font-size: 1.5rem; color: var(--gold-2); font-weight: 600; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } .service { grid-template-columns: 1fr; } }
@media (min-width: 560px) and (max-width: 900px) { .service { grid-template-columns: 220px 1fr; grid-template-rows: none; } .service-img { aspect-ratio: auto; } .service-img::after { background: linear-gradient(90deg, rgba(18,18,20,0) 60%, rgba(18,18,20,1) 100%); } .service-body { padding: 1.4rem; } }

/* ---------- Fleet ---------- */
.fleet .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.fleet-img { margin: 0; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4 / 3; background: radial-gradient(80% 80% at 50% 60%, #241f14, #0a0a0b); position: relative; }
.fleet-img picture, .fleet-img img { width: 100%; height: 100%; }
.fleet-img img { object-fit: cover; }
.fleet-img figcaption { position: absolute; left: 1rem; bottom: 1rem; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); background: rgba(10, 10, 11, 0.7); padding: 0.4rem 0.7rem; border-radius: 999px; border: 1px solid var(--gold-3); }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-top: 1.8rem; }
.spec { display: grid; grid-template-columns: auto 1fr; gap: 0.8rem; align-items: start; padding: 1rem; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-2); }
.spec svg { width: 22px; height: 22px; color: var(--gold); margin-top: 0.1rem; }
.spec b { display: block; font-weight: 600; font-size: 0.95rem; }
.spec span { font-size: 0.82rem; color: var(--muted); }
@media (max-width: 900px) { .fleet .wrap { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .spec-grid { grid-template-columns: 1fr; } }

/* ---------- Booking steps (paper) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; counter-reset: step; }
.step { position: relative; padding: 1.6rem 1.5rem 1.5rem; background: #fff; border: 1px solid var(--line-dark); border-radius: var(--r-lg); display: grid; gap: 0.6rem; align-content: start; }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--display); font-size: 3rem; font-weight: 600; line-height: 1; color: var(--gold); }
.step h3 { font-size: 1.6rem; }
.step p { color: var(--muted-dark); font-size: 0.92rem; }
.step a { color: var(--gold-3); font-weight: 600; border-bottom: 1px solid currentColor; }
.booking-note { margin-top: 1.5rem; padding: 1.2rem 1.4rem; border-radius: var(--r); background: var(--paper-2); display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; font-size: 0.92rem; color: var(--muted-dark); }
.booking-note svg { width: 22px; height: 22px; color: var(--gold-3); flex: none; margin-top: 0.1rem; }
.booking-note b { color: var(--ink-dark); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.review { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; display: grid; gap: 1rem; align-content: start; }
.review-stars { color: var(--gold); letter-spacing: 0.15em; font-size: 0.85rem; }
.review blockquote { margin: 0; font-family: var(--display); font-size: 1.35rem; font-weight: 500; line-height: 1.3; }
.review footer { display: flex; align-items: center; gap: 0.8rem; font-size: 0.85rem; color: var(--muted); margin-top: auto; }
.review footer i { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--gold-soft); border: 1px solid var(--gold-3); color: var(--gold-2); font-style: normal; font-weight: 700; font-family: var(--display); font-size: 1rem; }
.review footer b { color: var(--ink); display: block; font-weight: 600; }
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-2); border-block: 1px solid var(--line); }
.faq .wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.faq-list { display: grid; gap: 0.6rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r); background: var(--bg); transition: border-color 0.3s; }
.faq-item[open] { border-color: var(--gold-3); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.1rem 1.3rem; display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; font-weight: 600; font-size: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--display); font-size: 1.6rem; line-height: 1; color: var(--gold); transition: transform 0.3s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .a { padding: 0 1.3rem 1.2rem; color: var(--muted); font-size: 0.92rem; }
.faq-side { position: sticky; top: calc(var(--header-h) + 2rem); }
.faq-side .btn { margin-top: 1.5rem; }
@media (max-width: 860px) { .faq .wrap { grid-template-columns: 1fr; } .faq-side { position: static; } }

/* ---------- Contact ---------- */
.contact .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.contact-list { display: grid; gap: 0.6rem; margin-top: 1.6rem; }
.contact-item { display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-2); transition: border-color 0.3s, background 0.3s; }
.contact-item:hover { border-color: var(--gold-3); background: var(--bg-3); }
.contact-item svg { width: 24px; height: 24px; color: var(--gold); }
.contact-item span { font-size: 0.75rem; color: var(--muted); display: block; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-item b { font-weight: 600; font-size: 1.05rem; }
.contact-item i { font-style: normal; color: var(--gold-2); font-size: 1.3rem; transition: transform 0.3s var(--ease); }
.contact-item:hover i { transform: translateX(3px); }
.hours { margin-top: 1.4rem; display: flex; align-items: flex-start; gap: 0.7rem; color: var(--muted); font-size: 0.9rem; }
.hours .pulse { flex: none; margin-top: 0.5rem; width: 9px; height: 9px; border-radius: 50%; background: #6cc27a; box-shadow: 0 0 0 0 rgba(108, 194, 122, 0.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(108, 194, 122, 0); } 100% { box-shadow: 0 0 0 0 rgba(108, 194, 122, 0); } }

.form { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.25rem, 3vw, 2rem); display: grid; gap: 0.9rem; }
.form h3 { font-size: 1.75rem; }
.form > p { color: var(--muted); font-size: 0.9rem; margin-top: -0.4rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-grid .full { grid-column: 1 / -1; }
.form textarea { resize: vertical; min-height: 96px; }
.seg { display: flex; border: 1px solid var(--line-strong); border-radius: 10px; overflow: hidden; }
.seg label { flex: 1; text-align: center; padding: 0.8rem 0.5rem; font-size: 0.9rem; cursor: pointer; color: var(--muted); transition: background 0.2s, color 0.2s; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg input:checked + label { background: var(--gold-soft); color: var(--gold-2); }
.seg input:focus-visible + label { outline: 2px solid var(--gold-2); outline-offset: -2px; }
.form-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-top: 0.3rem; }
.form-actions .btn { width: 100%; }
.form-hint { font-size: 0.8rem; color: var(--muted); text-align: center; }
.form-hint a { color: var(--gold-2); }
.form-error { color: #f0a4a4; font-size: 0.85rem; display: none; }
.form.has-error .form-error { display: block; }
.form-preview { border: 1px dashed var(--line-strong); border-radius: 10px; padding: 0.9rem 1rem; font-size: 0.85rem; color: var(--muted); white-space: pre-wrap; display: none; }
.form-preview.is-visible { display: block; }
.form-toast { position: fixed; left: 50%; bottom: 1.5rem; transform: translate(-50%, 20px); background: var(--gold-grad); color: var(--ink-dark); padding: 0.9rem 1.3rem; border-radius: 999px; font-weight: 600; font-size: 0.9rem; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s var(--ease); z-index: 80; box-shadow: 0 16px 40px -12px rgba(0,0,0,.6); max-width: calc(100% - 2rem); text-align: center; }
.form-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
@media (max-width: 900px) { .contact .wrap { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .form-grid, .form-actions { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding-block: 3rem 2rem; background: var(--bg); }
.footer .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer p { color: var(--muted); font-size: 0.88rem; max-width: 40ch; margin-top: 1rem; }
.footer h4 { font-family: var(--text); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 600; }
.footer ul { display: grid; gap: 0.5rem; font-size: 0.9rem; }
.footer ul a { color: var(--muted); transition: color 0.2s; }
.footer ul a:hover { color: var(--gold-2); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 0.6rem 2rem; justify-content: space-between; font-size: 0.78rem; color: var(--faint); }
.footer-bottom a { color: var(--muted); }
.demo-tag { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--faint); }
.demo-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-3); }
@media (max-width: 760px) { .footer .wrap { grid-template-columns: 1fr; gap: 1.6rem; } }

/* Sticky mobile CTA */
.mobile-cta { display: none; }
@media (max-width: 760px) {
  .mobile-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; position: fixed; left: 0; right: 0; bottom: 0; padding: 0.6rem var(--pad) calc(0.6rem + env(safe-area-inset-bottom, 0px)); background: rgba(10, 10, 11, 0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--line); z-index: 40; transform: translateY(100%); transition: transform 0.35s var(--ease); }
  .mobile-cta.is-visible { transform: none; }
  .mobile-cta .btn { width: 100%; padding: 0.8rem 1rem; }
  body { padding-bottom: 0; }
  .footer { padding-bottom: 6rem; }
}

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: 0.08s; }
.js .reveal[data-delay="2"] { transition-delay: 0.16s; }
.js .reveal[data-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .route, .service-img img, .contact-item i, .faq-item summary::after { transition: none; }
  .hours .pulse { animation: none; }
}

/* ---------- 404 ---------- */
.page-404 { min-height: 100svh; display: grid; place-items: center; text-align: center; padding-block: 4rem; }
.page-404 .eyebrow { justify-content: center; }
.page-404 .lede { margin-inline: auto; }
.page-404-cta { margin-top: 2rem; }
