/* ===== Tokens ===== */
:root {
  --ink: #0B0E0F;
  --paper: #FAFAF7;
  --teal: #0E5C53;
  --teal-light: #14776C;
  --sand: #D8CCA8;
  --grey: #6B6F6E;
  --grey-light: #E4E2DC;
  --line: #D9D6CD;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 4px;
  --container: 880px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== Accessibility ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--teal);
  color: var(--paper);
  padding: 12px 20px;
  z-index: 100;
  border-radius: var(--radius);
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--teal-light);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 56px 0 88px;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  margin: 0 0 14px;
  font-weight: 600;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 7vw, 4rem);
  line-height: 1.04;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: #C9CCCB;
  max-width: 52ch;
  margin: 0 0 40px;
}

.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 90px;
  z-index: 1;
  background:
    radial-gradient(120% 100% at 10% 0%, transparent 60%, rgba(14,92,83,0.35) 61%, transparent 62%),
    linear-gradient(180deg, transparent, var(--ink) 70%);
  opacity: 0.7;
}

/* ===== Order block ===== */
.order {
  background: rgba(250,250,247,0.04);
  border: 1px solid rgba(250,250,247,0.14);
  border-radius: 10px;
  padding: 28px 24px 24px;
}

.order__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 0 20px;
}

.drivers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

.driver-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.driver-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.driver-card__name {
  font-weight: 700;
  font-size: 1rem;
}

.driver-card__route {
  font-size: 0.82rem;
  color: var(--grey);
}

.driver-card__call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background-color 0.15s ease;
}

.driver-card__call:hover,
.driver-card__call:focus-visible {
  background: var(--teal-light);
}

.driver-card__icon {
  font-size: 0.95rem;
}

.order__note {
  margin: 18px 2px 0;
  font-size: 0.82rem;
  color: #9FA3A2;
}

/* ===== Benefits ===== */
.benefits {
  padding: 64px 0 8px;
}

.benefits h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  margin: 0 0 32px;
}

.benefits__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, 1fr);
}

.benefit h3 {
  font-size: 1.02rem;
  margin: 0 0 6px;
  border-left: 3px solid var(--teal);
  padding-left: 12px;
}

.benefit p {
  margin: 0;
  padding-left: 15px;
  color: var(--grey);
  font-size: 0.95rem;
}

/* ===== SEO blocks ===== */
.seo-block {
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.seo-block--alt {
  background: var(--grey-light);
  border-top: none;
  border-bottom: 1px solid var(--line);
  max-width: none;
  padding: 48px 24px;
}

.seo-block--alt .container,
.seo-block--alt p {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.seo-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.7rem);
  margin: 0 0 18px;
}

.seo-block p {
  color: #3B3F3E;
  max-width: 70ch;
  font-size: 0.98rem;
}

.seo-block p + p {
  margin-top: 14px;
}

/* ===== FAQ ===== */
.faq {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.faq h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.7rem);
  margin: 0 0 24px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  background: var(--paper);
}

.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  list-style: none;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--teal);
  font-size: 1.2rem;
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item p {
  margin: 12px 0 2px;
  color: var(--grey);
  font-size: 0.95rem;
}

/* ===== Bottom CTA ===== */
.cta-bottom {
  text-align: center;
  padding: 60px 24px 70px;
  border-top: 1px solid var(--line);
}

.cta-bottom h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  margin: 0 0 10px;
}

.cta-bottom p {
  color: var(--grey);
  margin: 0 0 24px;
}

.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background-color 0.15s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--teal);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: #9FA3A2;
  padding: 28px 0;
  font-size: 0.85rem;
}

.site-footer__inner p {
  margin: 0 0 4px;
}

.site-footer__muted {
  color: #6E7271;
  font-size: 0.8rem;
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
  .hero { padding: 40px 0 70px; }
  .drivers { grid-template-columns: 1fr; }
  .driver-card { flex-direction: row; }
  .benefits__list { grid-template-columns: 1fr; }
  .order { padding: 22px 16px 18px; }
}
