:root {
  --ink-900: #1A1512;
  --ink-700: #3A322C;
  --ink-500: #6B6058;
  --ink-300: #A89C92;
  --cream-50: #FFFBF5;
  --cream-100: #FBF1E3;
  --cream-200: #F3E4CE;
  --amber-600: #D9480F;
  --amber-500: #E8590C;
  --amber-100: #FCE4D2;
  --teal-700: #145C55;
  --teal-100: #DCEEEB;
  --white: #FFFFFF;
  --line: #E7DBC8;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(26, 21, 18, .06);
  --shadow-md: 0 14px 34px rgba(26, 21, 18, .12);
  --shadow-lg: 0 26px 64px rgba(26, 21, 18, .18);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink-700);
  background: var(--cream-50);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: "Outfit", "Inter", sans-serif;
  color: var(--ink-900);
  margin: 0;
  letter-spacing: -0.02em;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--amber-600);
  border-radius: 2px;
}
.eyebrow-light { color: #F6B892; }
.eyebrow-light::before { background: #F6B892; }

/* ── Reveal-on-scroll ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,251,245,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(26,21,18,.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 34px; width: auto; }
.site-nav {
  display: flex;
  gap: 32px;
  font-weight: 600;
  font-size: 14.5px;
}
.site-nav a { color: var(--ink-700); transition: color .15s; position: relative; }
.site-nav a:hover { color: var(--amber-600); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  min-height: 44px;
}
.btn-primary {
  background: var(--amber-600);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(217,72,15,.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(217,72,15,.4); }
.btn-ghost {
  background: var(--white);
  color: var(--ink-900);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink-900); transform: translateY(-2px); }
.btn-pill.btn-primary-sm {
  padding: 10px 20px;
  font-size: 14px;
  min-height: 40px;
  background: var(--ink-900);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(26,21,18,.25);
}
.btn-pill.btn-primary-sm:hover { transform: translateY(-1px); }

/* ── Hero ── */
.hero { padding: 72px 0 40px; overflow: hidden; position: relative; }
.hero::before {
  content: "";
  position: absolute;
  top: -180px; right: -180px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--amber-100) 0%, transparent 70%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.06;
  margin-bottom: 20px;
}
.text-accent { color: var(--amber-600); }
.hero-sub {
  font-size: 17px;
  color: var(--ink-500);
  max-width: 460px;
  margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.stat-row { display: flex; gap: 40px; margin: 0; padding: 0; }
.stat dt {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0;
}
.stat dd {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 500;
}

.hero-visual { position: relative; }
.hero-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.1;
  border: 6px solid var(--white);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.floating-card {
  position: absolute;
  left: -28px;
  bottom: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 220px;
}
.floating-icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--amber-100);
  color: var(--amber-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-card strong { display: block; font-size: 14px; color: var(--ink-900); font-family: "Outfit", sans-serif; }
.floating-card span { font-size: 12.5px; color: var(--ink-500); }

.floating-card-2 {
  position: absolute;
  right: -20px;
  top: 24px;
  background: var(--ink-900);
  color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.floating-card-2 svg { color: var(--amber-500); flex: none; }
.floating-card-2 span { font-size: 13px; font-weight: 600; }

/* ── Sections ── */
.section { padding: 96px 0; }
.section-tint { background: var(--cream-100); }
.section-dark { background: var(--ink-900); }
.section-head { max-width: 560px; margin-bottom: 48px; }
.section-head-center { max-width: 600px; margin: 0 auto 48px; text-align: center; }
.section-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.15;
}
.section-title-light { color: var(--white); }
.section-sub { color: var(--ink-500); font-size: 16px; margin: 14px 0 0; }
.section-sub-light { color: rgba(255,255,255,.65); }

/* ── Routes ── */
.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.route-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.route-index {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber-600);
  letter-spacing: .05em;
  margin-bottom: 18px;
}
.route-card h3 { font-size: 19px; margin-bottom: 8px; }
.route-card p { margin: 0; color: var(--ink-500); font-size: 14.5px; }

.stops-note {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--teal-100);
  border: 1px solid #BFE0DA;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  color: var(--teal-700);
  font-size: 14.5px;
}
.stops-note svg { flex: none; }
.stops-note strong { font-weight: 700; }

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-lead { font-size: 17px; color: var(--ink-500); margin: 0 0 20px; }
.about-highlight { font-size: 19px; font-weight: 700; color: var(--amber-600); margin: 0; }
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.feature { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--amber-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature h4 { font-size: 15px; margin-bottom: 4px; }
.feature p { margin: 0; font-size: 13.5px; color: var(--ink-500); }

/* ── Fleet / bento gallery ── */
.bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: repeat(2, 180px);
  gap: 16px;
  margin-bottom: 20px;
}
.bento-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.bento-item:hover img { transform: scale(1.04); }
.bento-large { grid-row: span 2; }

.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--ink-900);
  max-width: 720px;
  margin: 0 auto;
}
.video-card video { width: 100%; display: block; max-height: 420px; }

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.stars { display: flex; gap: 3px; color: var(--amber-500); }
.testimonial-quote {
  margin: 0;
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.65;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial-avatar {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber-100);
  color: var(--amber-600);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--ink-900); }
.testimonial-route { font-size: 12.5px; color: var(--ink-500); }

/* ── Contact ── */
.contact-card {
  background: var(--ink-900);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.contact-copy p { color: rgba(255,255,255,.7); font-size: 15.5px; margin: 8px 0 0; }
.contact-list { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  padding: 14px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  transition: background .2s var(--ease), transform .2s var(--ease);
  min-height: 44px;
}
.contact-item:hover { background: rgba(255,255,255,.12); transform: translateX(2px); }
.contact-icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  color: var(--amber-500);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Footer ── */
.site-footer { border-top: 1px solid var(--line); padding: 32px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { height: 24px; width: auto; opacity: .8; }
.footer-copy { margin: 0; color: var(--ink-500); font-size: 13px; }
.staff-link {
  font-size: 12.5px;
  color: var(--ink-500);
  border: 1px solid var(--line);
  padding: 7px 16px;
  border-radius: 999px;
  transition: color .15s, border-color .15s;
}
.staff-link:hover { color: var(--amber-600); border-color: var(--amber-600); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .site-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .floating-card { left: 16px; bottom: -20px; }
  .floating-card-2 { right: 16px; top: 16px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; padding: 36px 28px; }
}
@media (max-width: 640px) {
  .hero { padding: 40px 0 24px; }
  .section { padding: 64px 0; }
  .stat-row { gap: 26px; }
  .feature-list { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; grid-template-rows: 220px 160px 160px; }
  .bento-large { grid-row: span 1; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .contact-card { padding: 28px 22px; }
  .stops-note { flex-direction: column; align-items: flex-start; }
}
