/* ============================================
   Premier Limo — Design System
   Quiet luxury: near-black + ivory + brushed brass
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Inter:wght@400;500;600&display=swap');

:root {
  --ink: #0E1013;
  --ink-soft: #1B1D22;
  --ink-line: #2A2D34;
  --ivory: #F3EFE7;
  --ivory-dim: #DCD5C6;
  --slate: #8B92A0;
  --slate-dark: #5B6470;
  --brass: #B08D57;
  --brass-bright: #C9A66B;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

@media (max-width: 720px) {
  .wrap { padding: 0 22px; }
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}

p { max-width: 62ch; }

.on-dark, .on-dark h1, .on-dark h2, .on-dark h3, .on-dark p { color: var(--ivory); }
.on-dark .muted { color: var(--slate); }

.muted { color: var(--slate-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn-brass {
  background: var(--brass);
  color: var(--ink);
}
.btn-brass:hover { background: var(--brass-bright); }

.btn-line {
  background: transparent;
  border-color: var(--ink-line);
  color: var(--ivory);
}
.btn-line:hover { border-color: var(--brass); color: var(--brass-bright); }

.btn-dark-line {
  background: transparent;
  border-color: rgba(14,16,19,0.25);
  color: var(--ink);
}
.btn-dark-line:hover { border-color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14,16,19,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.brand {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.01em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.brand span {
  color: var(--brass);
  font-style: italic;
  font-weight: 400;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.main-nav a {
  font-size: 14.5px;
  color: var(--slate);
  transition: color 0.2s ease;
  position: relative;
}
.main-nav a:hover { color: var(--ivory); }
.main-nav a.current { color: var(--ivory); }
.main-nav a.current::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -29px;
  height: 2px;
  background: var(--brass);
}

.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  font-size: 14.5px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 16px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 940px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .nav-phone { display: none; }
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--ink);
  border-bottom: 1px solid var(--ink-line);
  padding: 10px 22px 26px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-line);
  color: var(--ivory);
  font-size: 15.5px;
}
.mobile-nav a:last-child { border-bottom: none; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--ivory);
  padding: 72px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--ink-line);
}

.footer-grid h4 {
  color: var(--ivory);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 18px;
}

.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 11px; }
.footer-grid a { color: var(--slate); font-size: 14.5px; transition: color 0.2s ease; }
.footer-grid a:hover { color: var(--brass-bright); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 13px;
  color: var(--slate-dark);
}

@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ---------- Page header (interior pages) ---------- */
.page-header {
  background: var(--ink);
  padding: 74px 0 64px;
  border-bottom: 1px solid var(--ink-line);
}
.page-header .kicker {
  color: var(--brass);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  margin-bottom: 14px;
}
.page-header h1 {
  color: var(--ivory);
  font-size: clamp(34px, 4.2vw, 52px);
  max-width: 16ch;
}
.page-header p {
  color: var(--slate);
  font-size: 17.5px;
  margin-top: 18px;
  max-width: 56ch;
}

/* ---------- Sections ---------- */
section { padding: 96px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 52px;
}
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); max-width: 14ch; }
.section-head p { color: var(--slate-dark); font-size: 16px; }

@media (max-width: 720px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
}

hr.rule { border: none; border-top: 1px solid var(--ink-line); }
.rule-light { border-top: 1px solid #D8D0BE; }

/* ---------- Utility grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #D8D0BE; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }

@media (max-width: 880px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Ledger list (service rows) ---------- */
.ledger { border-top: 1px solid var(--ink-line); }
.ledger-row {
  display: grid;
  grid-template-columns: 64px 1.1fr 1.6fr auto;
  gap: 32px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--ink-line);
}
.ledger-row .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  font-size: 20px;
}
.ledger-row h3 { font-size: 21px; color: var(--ivory); }
.ledger-row p { color: var(--slate); font-size: 15px; margin: 0; }
.ledger-row .arrow { color: var(--slate-dark); font-size: 20px; transition: color 0.2s, transform 0.2s; }
.ledger-row:hover .arrow { color: var(--brass); transform: translateX(4px); }
.ledger-row:hover h3 { color: var(--brass-bright); }

@media (max-width: 780px) {
  .ledger-row { grid-template-columns: 40px 1fr; grid-template-areas: "num title" "num desc" "num link"; row-gap: 8px; }
  .ledger-row .num { grid-area: num; }
  .ledger-row h3 { grid-area: title; }
  .ledger-row p { grid-area: desc; }
  .ledger-row .arrow { grid-area: link; }
}

/* ---------- Cards (light section) ---------- */
.card {
  background: var(--ink);
  padding: 40px 34px;
}
.card h3 { color: var(--ivory); font-size: 22px; margin-bottom: 12px; }
.card p { color: var(--slate); font-size: 15px; }
.card .price { color: var(--brass-bright); font-family: var(--serif); font-size: 15px; margin-top: 18px; }

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.stat {
  padding: 40px 30px;
  border-left: 1px solid var(--ink-line);
}
.stat:first-child { border-left: none; }
.stat .figure { font-family: var(--serif); font-size: 40px; color: var(--brass); }
.stat .label { color: var(--slate); font-size: 13.5px; margin-top: 6px; }

@media (max-width: 780px) {
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2n+1) { border-left: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--ink-line); }
}

/* ---------- Quote / testimonial ---------- */
.quote-block {
  max-width: 720px;
}
.quote-block p.quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-style: italic;
  line-height: 1.42;
  color: var(--ink);
  max-width: none;
}
.quote-block .attribution { margin-top: 22px; color: var(--slate-dark); font-size: 14.5px; }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 22px; }
.form-field label {
  display: block;
  font-size: 13px;
  color: var(--slate-dark);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid #C9C1AD;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brass);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- Hero ---------- */
.hero {
  background: var(--ink);
  color: var(--ivory);
  padding: 84px 0 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass-bright);
  font-size: 18px;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.hero h1 {
  color: var(--ivory);
  font-size: clamp(40px, 5.4vw, 68px);
  max-width: 13ch;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}
.hero .lede {
  color: var(--slate);
  font-size: 18px;
  margin-top: 24px;
  max-width: 46ch;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.22s forwards;
}
.hero .hero-actions {
  margin-top: 38px;
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.32s forwards;
}
.hero-visual {
  opacity: 0;
  animation: fadeIn 1s ease 0.3s forwards;
}
.hero-visual svg { width: 100%; height: auto; }

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

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero h1, .hero .lede, .hero .hero-actions, .hero-visual {
    animation: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto 20px; }
}

/* ---------- Fleet cards ---------- */
.fleet-card {
  background: var(--ivory);
  border: 1px solid #D8D0BE;
}
.fleet-card .fleet-img { aspect-ratio: 16/10; background: var(--ink-soft); display:flex; align-items:center; justify-content:center; }
.fleet-card .fleet-body { padding: 28px; }
.fleet-card h3 { font-size: 22px; margin-bottom: 6px; }
.fleet-card .tag { color: var(--brass); font-size: 13px; font-family: var(--serif); font-style: italic; }
.fleet-card p { font-size: 14.5px; color: var(--slate-dark); margin-top: 12px; }
.fleet-specs { display:flex; gap: 20px; margin-top: 18px; padding-top: 18px; border-top: 1px solid #E5DFD1; }
.fleet-specs div { font-size: 13px; color: var(--slate-dark); }
.fleet-specs strong { display:block; color: var(--ink); font-family: var(--serif); font-size: 17px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--ivory);
  padding: 84px 0;
  text-align: center;
}
.cta-band h2 { color: var(--ivory); font-size: clamp(30px,4vw,44px); max-width: 20ch; margin: 0 auto; }
.cta-band p { color: var(--slate); margin: 18px auto 0; }
.cta-band .hero-actions { justify-content: center; margin-top: 32px; }
.cta-band .lede { margin-left:auto; margin-right:auto; }

/* ---------- misc ---------- */
.divider-line { width: 48px; height: 2px; background: var(--brass); margin-bottom: 22px; }
.tag-pill {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-size: 12.5px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.two-col-text { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
@media (max-width: 780px) { .two-col-text { grid-template-columns: 1fr; gap: 30px; } }

.faq-item { padding: 26px 0; border-bottom: 1px solid #D8D0BE; }
.faq-item h4 { font-size: 18px; margin-bottom: 10px; }
.faq-item p { color: var(--slate-dark); font-size: 15px; }

.map-block {
  background: var(--ink-soft);
  aspect-ratio: 21/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
}
