/* ===================== TOKENS ===================== */
:root {
  --bg:        #0a0a0b;
  --bg-2:      #0e0e10;
  --card:      #141417;
  --card-2:    #17171b;
  --border:    #232327;
  --border-2:  #2c2c32;

  --ink:       #f5f5f6;
  --muted:     #a1a1aa;
  --muted-2:   #7a7a83;

  --red:       #ff3b3b;
  --red-dark:  #e12b2b;
  --red-soft:  rgba(255, 59, 59, 0.12);

  --radius:    16px;
  --radius-sm: 10px;
  --wrap:      1200px;

  --display: "Anton", "Arial Narrow", sans-serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 700; border: none; cursor: pointer;
  border-radius: var(--radius-sm); padding: 14px 24px; font-size: 16px;
  transition: transform .06s ease, background .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid var(--red); }
.btn-outline:hover { background: var(--red-soft); }
.btn-sm { padding: 10px 18px; font-size: 15px; }
.btn-lg { padding: 16px 28px; font-size: 17px; }
.btn-block { width: 100%; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,11,.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 28px; height: 70px; }
.brand { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--display); font-size: 24px; letter-spacing: .5px; }
.brand-accent { color: var(--red); }
.brand-sub { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted-2); margin-top: 2px; }
.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color .15s ease; }
.main-nav a:hover { color: var(--ink); }
.site-header .btn-primary { margin-left: 8px; }

/* ===================== HERO ===================== */
.hero { position: relative; overflow: hidden; padding: 56px 0 64px; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(to right, rgba(10,10,11,.94) 30%, rgba(10,10,11,.55) 55%, rgba(10,10,11,.82) 100%),
    linear-gradient(to top, var(--bg) 3%, rgba(10,10,11,0) 40%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }

.eyebrow { color: var(--red); font-weight: 700; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; margin: 0 0 16px; }
.hero-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(44px, 6vw, 84px); line-height: .92; letter-spacing: 1px;
  text-transform: uppercase; margin: 0 0 22px; text-shadow: 0 2px 30px rgba(0,0,0,.6);
}
.hero-title span { display: block; }
.line-white { color: var(--ink); }
.line-red { color: var(--red); }
.hero-lead { color: #d4d4d8; font-size: 19px; max-width: 40ch; margin: 0 0 26px; }
.hero-reassure { color: var(--muted); font-size: 14px; margin: 14px 0 0; }
.trust-row {
  list-style: none; margin: 28px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 28px;
}
.trust-row li { display: flex; flex-direction: column; font-size: 13px; color: var(--muted-2); border-left: 2px solid var(--red); padding-left: 12px; }
.trust-row strong { color: var(--ink); font-weight: 700; font-size: 15px; }

/* Booking card */
.booking-card {
  background: rgba(20,20,23,.92); backdrop-filter: blur(8px);
  border: 1px solid var(--border-2); border-radius: var(--radius);
  padding: 26px; box-shadow: 0 30px 70px rgba(0,0,0,.5);
}
.card-eyebrow { color: var(--red); font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 8px; }
.card-title { font-family: var(--display); font-weight: 400; font-size: 30px; line-height: 1; text-transform: uppercase; margin: 0 0 8px; }
.card-sub { color: var(--muted); font-size: 15px; margin: 0 0 20px; }

.booking-form .field { margin-bottom: 14px; }
.booking-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-form label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.req { color: var(--red); }
input, select, textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border-2);
  border-radius: var(--radius-sm); color: var(--ink); font-family: var(--sans);
  font-size: 15px; padding: 12px 14px; transition: border-color .15s ease, box-shadow .15s ease;
}
input::placeholder, textarea::placeholder { color: var(--muted-2); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-soft); }
input[type="date"] { color-scheme: dark; }
.card-note { color: var(--muted-2); font-size: 12.5px; margin: 14px 0 0; text-align: center; }
.form-error { color: var(--red); font-weight: 600; font-size: 14px; margin: 12px 0 0; text-align: center; }

/* ===================== SECTIONS ===================== */
.section { padding: 84px 0; }
.section-title { font-family: var(--display); font-weight: 400; font-size: clamp(30px, 4vw, 46px); text-transform: uppercase; letter-spacing: 1px; text-align: center; margin: 0 0 12px; }
.section-eyebrow { text-align: center; color: var(--red); font-weight: 700; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; margin: 0 0 12px; }
.section-eyebrow.left { text-align: left; }
.section-lead { text-align: center; color: var(--muted); max-width: 52ch; margin: 0 auto 8px; }

/* WHY */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 46px; }
.why-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
.icon { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 12px; background: var(--red-soft); color: var(--red); margin-bottom: 16px; }
.icon svg { width: 24px; height: 24px; }
.why-card h3 { margin: 0 0 8px; font-size: 18px; }
.why-card p { margin: 0; color: var(--muted); font-size: 15px; }

/* HOW */
.how { background: var(--bg-2); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 46px; }
.step-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; position: relative; }
.step-num { font-family: var(--display); font-size: 40px; color: var(--red); display: block; line-height: 1; margin-bottom: 16px; }
.step-card h3 { margin: 0 0 8px; font-size: 18px; }
.step-card p { margin: 0; color: var(--muted); font-size: 15px; }

/* BUS */
.bus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.bus-photo { position: relative; aspect-ratio: 16/11; border-radius: var(--radius); overflow: hidden; background: linear-gradient(160deg,#1a1a1f,#0d0d10 70%); border: 1px solid var(--border); }
.bus-photo img { width: 100%; height: 100%; object-fit: cover; }
.bus-photo .photo-placeholder { display: none; }
.bus-photo.no-photo .photo-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--muted-2); text-align: center; padding: 20px; }
.bus-photo.no-photo .ph-emoji { font-size: 56px; }
.photo-placeholder code { background: var(--card-2); padding: 2px 7px; border-radius: 6px; color: var(--ink); font-size: 13px; }
.bus-title { font-family: var(--display); font-weight: 400; font-size: clamp(28px,3.5vw,44px); text-transform: uppercase; letter-spacing: 1px; margin: 0 0 20px; }
.spec-list { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.spec-list li { display: flex; gap: 12px; align-items: center; color: var(--muted); }
.spec-list .tick { color: var(--red); font-weight: 700; }

/* SAFE */
.safe-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.safe-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
.safe-item strong { font-size: 16px; margin-top: 6px; }
.safe-item span { color: var(--muted-2); font-size: 14px; }

/* ABOUT */
.about { background: var(--bg-2); }
.about-inner { text-align: center; }
.about-text { color: var(--muted); font-size: 18px; margin: 8px auto 0; max-width: 60ch; }

/* REVIEWS */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; }
.review-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.stars { color: var(--red); font-size: 20px; letter-spacing: 2px; margin-bottom: 14px; }
.review-card p { margin: 0 0 16px; font-size: 16px; }
.review-by { color: var(--muted-2); font-size: 14px; }
.reviews-cta { text-align: center; margin-top: 32px; }
.link-google { color: var(--red); font-weight: 600; }
.link-google:hover { text-decoration: underline; }

/* FAQ */
.faq { background: var(--bg-2); }
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 22px; font-weight: 600; font-size: 17px; color: var(--ink); transition: color .15s ease; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover, .faq-item[open] summary { color: var(--red); }
.faq-icon { position: relative; flex: none; width: 18px; height: 18px; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--red); border-radius: 2px; transform: translate(-50%,-50%); }
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; transition: transform .2s ease; }
.faq-item[open] .faq-icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-answer { padding: 0 22px 20px; color: var(--muted); font-size: 16px; }
.faq-answer p { margin: 0; }
.faq-answer strong { color: var(--ink); }

/* CTA */
.cta-band { position: relative; overflow: hidden; }
.cta-grid { display: grid; grid-template-columns: 1.4fr .9fr; gap: 32px; align-items: center; }
.cta-title { font-family: var(--display); font-weight: 400; font-size: clamp(32px,4.5vw,52px); text-transform: uppercase; letter-spacing: 1px; margin: 0 0 12px; }
.cta-main > p { color: var(--muted); margin: 0 0 22px; font-size: 18px; }
.recruit-card { background: var(--card); border: 1px solid rgba(255,59,59,.35); border-radius: var(--radius); padding: 28px; }
.recruit-card h3 { color: var(--red); margin: 0 0 8px; font-size: 20px; }
.recruit-card p { color: var(--muted); margin: 0 0 20px; font-size: 15px; }

/* ===================== FOOTER ===================== */
.site-footer { border-top: 1px solid var(--border); padding: 56px 0 40px; background: var(--bg); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.footer-brand .brand-name { font-family: var(--display); font-size: 24px; }
.footer-brand .brand-sub { display: block; margin-top: 4px; }
.footer-fine { color: var(--muted-2); font-size: 13px; margin: 18px 0 0; }
.footer-col h4 { font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted-2); margin: 0 0 16px; }
.footer-col a, .footer-plain { display: block; color: var(--muted); font-size: 15px; margin-bottom: 10px; }
.footer-col a:hover { color: var(--ink); }
.socials { display: flex; gap: 16px; margin-top: 6px; }
.socials a { color: var(--red); font-weight: 600; }

/* ===================== OVERLAY ===================== */
.overlay { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.72); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 24px; }
.overlay[hidden] { display: none; }
.overlay-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 34px; text-align: center; max-width: 440px; width: 100%; }
.success-check { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: var(--red); color: #fff; font-size: 32px; font-weight: 700; margin-bottom: 18px; }
.overlay-card h2 { margin: 0 0 10px; font-size: 24px; }
.overlay-card p { margin: 0 0 24px; color: var(--muted); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-grid, .steps, .safe-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-inner { gap: 12px; }
  .bus-grid, .cta-grid { grid-template-columns: 1fr; gap: 28px; }
  .review-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero::before { background: linear-gradient(to bottom, rgba(10,10,11,.6), rgba(10,10,11,.9) 55%, var(--bg)); }
  .hero-bg img { object-position: 50% 20%; }
}
@media (max-width: 560px) {
  .why-grid, .steps, .safe-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .booking-form .field-row { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}
