/* Classic Car Rentals — design system
   Static site, no framework. Colors: navy + amber accent. */

:root {
  --ink: #0b1220;
  --ink-soft: #141d33;
  --navy: #101a33;
  --navy-2: #16213f;
  --amber: #f59e0b;
  --amber-dark: #d97e06;
  --green-ok: #16a34a;
  --white: #ffffff;
  --gray-50: #f6f7f9;
  --gray-100: #eef0f3;
  --gray-300: #d7dbe2;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --text: #1a2235;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px -12px rgba(16, 26, 51, 0.18);
  --shadow-sm: 0 4px 14px -6px rgba(16, 26, 51, 0.12);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .brand, .btn, nav a {
  font-family: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
h1, h2, h3, h4 { margin: 0 0 0.5em; font-weight: 700; line-height: 1.15; color: var(--ink); }
p { margin: 0 0 1em; color: var(--gray-700); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { padding-left: 1.2em; }

@font-face {
  font-family: "Sora";
  src: url("../fonts/sora.woff2") format("woff2");
  font-weight: 500 700;
  font-style: normal;
  font-display: optional;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100);
}
.site-header > .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  display: flex; align-items: center; justify-content: center;
  color: var(--amber); flex: none;
}
.brand-mark svg { width: 20px; height: 20px; }
.primary-nav { display: flex; align-items: center; gap: 4px; background: var(--gray-50); padding: 6px; border-radius: 999px; }
.primary-nav a {
  padding: 9px 16px; border-radius: 999px; font-size: 0.92rem; font-weight: 600; color: var(--gray-700);
  transition: background 0.15s, color 0.15s;
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a.is-active { background: var(--ink); color: var(--white); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; }
.mobile-nav { display: none; }
.mobile-nav:not([hidden]) { display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--amber); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--amber-dark); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--navy-2); }
.btn-outline { background: var(--white); color: var(--ink); border: 1.5px solid var(--gray-300); }
.btn-outline:hover { border-color: var(--ink); }
.btn-sm { padding: 9px 16px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 76px 0 64px;
  background:
    radial-gradient(60% 60% at 80% 0%, rgba(245,158,11,0.10), transparent 60%),
    radial-gradient(50% 50% at 10% 10%, rgba(16,26,51,0.06), transparent 60%),
    var(--white);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff7e8; color: var(--amber-dark); border: 1px solid #fde3ad;
  padding: 8px 16px; border-radius: 999px; font-weight: 700; font-size: 0.82rem; margin-bottom: 22px;
}
.hero-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.hero h1 .accent { color: var(--amber-dark); }
.hero .lede { font-size: 1.15rem; max-width: 640px; margin: 0 auto 30px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Stats strip ---------- */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: 900px; margin: 48px auto 0;
}
.stat-item { text-align: center; }
.stat-item .num { font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.6rem; color: var(--ink); }
.stat-item .label { font-size: 0.85rem; color: var(--gray-500); }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.kicker { color: var(--amber-dark); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; }
.section-head h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin-top: 8px; }
.bg-soft { background: var(--gray-50); }
.bg-ink { background: var(--ink); color: var(--white); }
.bg-ink h2, .bg-ink h3, .bg-ink h4 { color: var(--white); }
.bg-ink p { color: #b7bfd1; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.icon-chip {
  width: 44px; height: 44px; border-radius: 12px; background: #fff7e8;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--amber-dark);
}
.icon-chip svg { width: 22px; height: 22px; }

/* ---------- Steps (How to book) ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { position: relative; padding: 30px 24px 24px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: var(--amber);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: "Sora", sans-serif;
  margin-bottom: 16px;
}

/* ---------- Fleet cards ---------- */
.fleet-card { overflow: hidden; padding: 0; }
.fleet-media {
  height: 190px; background: linear-gradient(135deg, var(--navy), var(--navy-2));
  display: flex; align-items: center; justify-content: center; color: var(--amber);
  position: relative;
}
.fleet-media svg { width: 96px; height: 96px; opacity: 0.9; }
.fleet-badge {
  position: absolute; top: 14px; left: 14px; background: var(--amber); color: var(--ink);
  font-weight: 700; font-size: 0.78rem; padding: 5px 12px; border-radius: 999px;
}
.fleet-body { padding: 22px; }
.fleet-body h3 { margin-bottom: 4px; }
.fleet-specs { display: flex; gap: 14px; flex-wrap: wrap; margin: 12px 0 18px; font-size: 0.85rem; color: var(--gray-500); }
.fleet-specs span { display: flex; align-items: center; gap: 6px; }
.fleet-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px; }
.fleet-price .amount { font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--ink); }
.fleet-price .unit { color: var(--gray-500); font-size: 0.85rem; }

/* ---------- Compare table (why us) ---------- */
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--gray-100); font-size: 0.95rem; }
.compare-table th { background: var(--gray-50); font-family: "Sora", sans-serif; }
.compare-table th.us { background: var(--ink); color: var(--white); }
.compare-table td.us { font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }
.tick { color: var(--green-ok); font-weight: 700; }
.cross { color: var(--gray-500); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-sm); padding: 4px 20px; }
.faq-item summary { cursor: pointer; padding: 16px 0; font-weight: 700; font-family: "Sora", sans-serif; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--amber-dark); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding-bottom: 16px; margin: 0; }

/* ---------- Breadcrumb / inner hero ---------- */
.inner-hero { background: var(--ink); color: var(--white); padding: 44px 0 40px; }
.inner-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px; }
.inner-hero p { color: #b7bfd1; max-width: 620px; }
.breadcrumb { font-size: 0.85rem; color: #8b93a8; margin-bottom: 16px; }
.breadcrumb a { color: #cfd4e0; }
.breadcrumb a:hover { color: var(--amber); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--ink));
  color: var(--white); border-radius: var(--radius); padding: 52px 40px; text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #b7bfd1; }
.cta-band .hero-cta { margin-top: 22px; }

/* ---------- Areas list ---------- */
.areas-list { display: flex; flex-wrap: wrap; gap: 10px; }
.areas-list span { background: var(--gray-50); border: 1px solid var(--gray-100); padding: 8px 16px; border-radius: 999px; font-size: 0.88rem; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #b7bfd1; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 40px; }
.footer-brand p { color: #8b93a8; max-width: 280px; }
.site-footer h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { color: #b7bfd1; font-size: 0.92rem; }
.site-footer a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; font-size: 0.82rem; color: #7a8299; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- Sticky mobile call bar ---------- */
.sticky-cta { display: none; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .primary-nav { display: none; }
  .hamburger { display: block; }
  .header-cta .btn-outline { display: none; }
  .grid-3, .grid-4, .grid-2, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 0.85rem; }
  .compare-table th, .compare-table td { padding: 12px; }
  .sticky-cta {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: var(--white); border-top: 1px solid var(--gray-100); padding: 10px 14px;
    gap: 10px; box-shadow: 0 -6px 18px rgba(0,0,0,0.08);
  }
  .sticky-cta .btn { flex: 1; }
  body { padding-bottom: 68px; }
}
