:root {
  --ink: #12161c;
  --graphite: #2a2e35;
  --graphite-2: #353a42;
  --steel: #c9cdd3;
  --steel-dim: #8b9099;
  --amber: #e8a33d;
  --green: #3f5d4e;
  --warm-white: #f5f3ee;
  --hairline: rgba(201, 205, 211, 0.14);
  --focus: #f0c36a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  background: var(--ink);
  color: var(--steel);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: "Oswald", sans-serif;
  color: var(--warm-white);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  background: var(--amber);
  color: var(--ink);
  padding: 10px 16px;
  font-weight: 600;
  border-radius: 2px;
}

.skip-link:focus {
  top: 16px;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.btn:focus-visible,
.nav-toggle:focus-visible {
  outline-offset: 4px;
}

/* NAV */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 22, 28, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}

header.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
}

.logo img {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--warm-white);
  padding: 8px 12px;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.92rem;
  color: var(--steel);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--warm-white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--amber);
  color: var(--ink);
  padding: 11px 22px;
  border-radius: 2px;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 163, 61, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--warm-white);
  border: 1px solid var(--steel-dim);
}

.btn-outline:hover {
  border-color: var(--steel);
  box-shadow: none;
}

/* HERO */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--amber);
}

.hero h1 {
  font-size: 3.4rem;
  line-height: 1.08;
  margin-bottom: 26px;
}

.hero h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero p.lead {
  font-size: 1.08rem;
  color: var(--steel);
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-inline {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: var(--steel);
}

.stat-inline b {
  color: var(--warm-white);
  font-size: 1rem;
}

.route-box {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  background: var(--graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.route-box svg {
  width: 100%;
  height: 100%;
}

.route-path {
  fill: none;
  stroke: var(--amber);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: draw 3.2s ease-in-out forwards 0.4s;
}

.route-static {
  fill: none;
  stroke: var(--hairline);
  stroke-width: 1;
  stroke-dasharray: 4 6;
}

.route-dot {
  fill: var(--amber);
  opacity: 0;
  animation: fadein 0.4s ease forwards 3.4s;
}

.route-label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  fill: var(--steel);
  letter-spacing: 0.05em;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadein {
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-path {
    animation: none;
    stroke-dashoffset: 0;
  }

  .route-dot {
    animation: none;
    opacity: 1;
  }

  .btn:hover {
    transform: none;
  }
}

/* SECTION shared */
section {
  padding: 100px 0;
  border-bottom: 1px solid var(--hairline);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
}

.section-head .eyebrow {
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: 2.1rem;
  max-width: 480px;
}

.section-head p {
  color: var(--steel);
  max-width: 320px;
  font-size: 0.95rem;
}

/* INSTRUCTOR */
.instructor {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}

.portrait {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--graphite-2), var(--graphite));
  border: 1px solid var(--hairline);
  border-radius: 4px;
  overflow: hidden;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.instructor-bio h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.instructor-role {
  color: var(--amber);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  margin-bottom: 24px;
  display: block;
}

.instructor-bio p {
  color: var(--steel);
  margin-bottom: 20px;
  max-width: 560px;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.credential {
  width: 132px;
  aspect-ratio: 1 / 1;
  background: var(--graphite);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.credential .num {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  color: var(--warm-white);
  display: block;
  margin-bottom: 4px;
}

.credential .lbl {
  font-size: 0.8rem;
  color: var(--steel);
}

/* CAR */
.car-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.car-visual {
  aspect-ratio: 16 / 10;
  background: linear-gradient(150deg, var(--graphite-2), var(--ink));
  border: 1px solid var(--hairline);
  border-radius: 4px;
  overflow: hidden;
}

.car-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.spec-list {
  display: flex;
  flex-direction: column;
}

.spec-list dd {
  margin: 0;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.95rem;
}

.spec-row:first-child {
  padding-top: 0;
}

.spec-row dt {
  color: var(--steel);
  flex-shrink: 0;
}

.spec-row dd {
  font-family: "Inter", sans-serif;
  color: var(--warm-white);
  font-size: 0.88rem;
  text-align: right;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.price-card {
  background: var(--graphite);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
}

.price-badge {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.price-card.featured {
  border-color: var(--amber);
  background: linear-gradient(180deg, rgba(232, 163, 61, 0.06), var(--graphite));
}

.price-card h3 {
  font-family: "Oswald", sans-serif;
  color: var(--warm-white);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.price-card .price {
  font-family: "Inter", sans-serif;
  font-size: 1.85rem;
  color: var(--warm-white);
  margin: 14px 0 18px;
}

.price-card .price span {
  display: block;
  font-size: 0.78rem;
  color: var(--steel);
  margin-top: 4px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 26px;
  flex: 1;
}

.price-card li {
  font-size: 0.87rem;
  color: var(--steel);
  padding: 7px 0;
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.price-card li::before {
  content: "—";
  color: var(--amber);
  flex-shrink: 0;
}

/* TESTIMONIAL */
.testimonial {
  max-width: 640px;
}

.testimonial blockquote {
  font-family: "Oswald", sans-serif;
  font-size: 1.7rem;
  font-style: italic;
  color: var(--warm-white);
  line-height: 1.4;
  margin-bottom: 24px;
}

.testimonial cite {
  font-style: normal;
  color: var(--steel);
  font-size: 0.9rem;
}

/* BOOKING */
.booking-copy p {
  color: var(--steel);
  max-width: 480px;
  margin-bottom: 16px;
}

.btn-whatsapp {
  margin-top: 12px;
}

.whatsapp-icon {
  flex-shrink: 0;
}

.todo {
  border-bottom: 1px dashed var(--amber);
}

/* FOOTER */
footer {
  padding: 70px 0 40px;
}

footer .wrap.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-col h2 {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  color: var(--amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 400;
}

.footer-col p,
.footer-col a {
  display: block;
  color: var(--steel);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: var(--warm-white);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 0.8rem;
  color: var(--steel);
  font-family: "Inter", sans-serif;
}

/* Tablet */
@media (max-width: 1024px) {
  .hero {
    padding: 88px 0 72px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero .wrap,
  .car-grid {
    gap: 40px;
  }

  .instructor {
    grid-template-columns: 260px 1fr;
    gap: 40px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .price-card {
    padding: 28px 20px;
  }

  .price-card .price {
    font-size: 1.7rem;
  }
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(18, 22, 28, 0.97);
    border-bottom: 1px solid var(--hairline);
    padding: 12px 32px 24px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--hairline);
  }

  .nav-links a.btn {
    margin-top: 16px;
    justify-content: center;
    border-bottom: none;
  }

  .hero .wrap,
  .instructor,
  .car-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  footer .wrap.footer-top {
    flex-direction: column;
    gap: 32px;
  }

  section {
    padding: 72px 0;
  }

  .route-box {
    max-width: 420px;
  }

  .spec-row {
    flex-direction: column;
    gap: 6px;
  }

  .spec-row dd {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding: 0 20px;
  }

  .logo img {
    height: 48px;
    max-width: 150px;
  }

  .hero {
    padding: 64px 0 56px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .testimonial blockquote {
    font-size: 1.35rem;
  }

  .price-card {
    padding: 24px 18px;
  }
}
