:root {
  --bg: #f5efe4;
  --bg-strong: #ead8bd;
  --surface: rgba(255, 250, 241, 0.78);
  --surface-strong: #fffaf2;
  --card: rgba(17, 37, 42, 0.9);
  --card-soft: rgba(255, 255, 255, 0.72);
  --line: rgba(16, 36, 41, 0.14);
  --text: #14282d;
  --muted: #51676d;
  --accent: #a25f2c;
  --accent-soft: #cf8a52;
  --forest: #17363a;
  --shadow: 0 24px 80px rgba(20, 40, 45, 0.12);
  --radius: 28px;
  --radius-sm: 18px;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(162, 95, 44, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(23, 54, 58, 0.12), transparent 32%),
    linear-gradient(180deg, #f7f1e8 0%, #f3ecdf 52%, #efe4d1 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: 0.45;
  pointer-events: none;
}

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

button,
input,
select {
  font: inherit;
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 20px auto 36px;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  margin-bottom: 30px;
  background: rgba(255, 249, 239, 0.76);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(20, 40, 45, 0.08);
  border-radius: 999px;
  box-shadow: 0 16px 45px rgba(20, 40, 45, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(23, 54, 58, 0.98), rgba(162, 95, 44, 0.92));
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.nav a,
.section-heading h2,
.hero h1,
.hero-card h2,
.fleet-card h3,
.benefit-card h3,
.booking-copy h2,
.footer-details h3 {
  font-family: "Outfit", sans-serif;
}

.brand-copy strong {
  font-size: 0.96rem;
  letter-spacing: 0.06em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.8rem;
}

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

.nav a {
  font-size: 0.96rem;
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button-primary {
  background: var(--forest);
  color: #fff8ef;
  box-shadow: 0 16px 28px rgba(23, 54, 58, 0.2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(20, 40, 45, 0.1);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 48px;
  height: 48px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
  border-radius: 999px;
}

.hero,
.section,
.trust-band {
  position: relative;
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 26px;
  padding: 42px;
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(255, 248, 238, 0.4)),
    linear-gradient(120deg, rgba(207, 138, 82, 0.12), rgba(23, 54, 58, 0.08));
  border: 1px solid rgba(20, 40, 45, 0.08);
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 95, 44, 0.18), transparent 62%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.booking-copy h2,
.story-card h2 {
  margin: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.hero-text,
.section-heading p,
.fleet-card p,
.story-card p,
.benefit-card p,
.booking-copy p,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 60ch;
  margin: 18px 0 0;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stats article,
.fleet-card,
.benefit-card,
.story-card,
.booking-form,
.hero-card {
  border-radius: var(--radius);
  border: 1px solid rgba(20, 40, 45, 0.08);
  box-shadow: var(--shadow);
}

.hero-stats article {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.48);
}

.hero-stats strong {
  display: block;
  font-size: 1.7rem;
  font-family: "Outfit", sans-serif;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.hero-card {
  padding: 24px;
}

.hero-card-main {
  min-height: 340px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(16, 36, 41, 0.2), rgba(16, 36, 41, 0.9)),
    radial-gradient(circle at top, rgba(255, 193, 120, 0.34), transparent 42%),
    linear-gradient(160deg, #ce8a52, #18373b 68%);
  color: #fffaf3;
}

.hero-card-side {
  background: rgba(255, 248, 238, 0.72);
}

.hero-card p,
.price-row span {
  margin: 0;
  color: rgba(255, 250, 243, 0.78);
}

.hero-card-side p {
  color: var(--accent);
}

.hero-card h2 {
  margin: 10px 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.hero-card ul,
.fleet-card ul,
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-card ul {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-card li {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  width: fit-content;
}

.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.price-row strong {
  font-size: 1.35rem;
}

.pickup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pickup-tags span,
.fleet-type {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(162, 95, 44, 0.12);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 16px 18px;
  margin: 24px 0 16px;
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.62);
  border: 1px solid rgba(20, 40, 45, 0.07);
}

.trust-band p {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 86px 0 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.section-heading h2,
.story-card h2,
.booking-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.fleet-grid,
.benefit-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.fleet-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.fleet-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 247, 235, 0.7));
}

.fleet-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.fleet-top strong {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
}

.fleet-card h3 {
  margin: 22px 0 12px;
  font-size: 1.45rem;
}

.fleet-card ul {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.fleet-card li {
  padding-top: 10px;
  border-top: 1px solid rgba(20, 40, 45, 0.08);
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.story-card,
.booking-form {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 246, 232, 0.7));
}

.story-card-wide {
  background:
    linear-gradient(160deg, rgba(23, 54, 58, 0.94), rgba(162, 95, 44, 0.82));
  color: #fff8ef;
}

.story-card-wide p {
  color: rgba(255, 248, 239, 0.8);
}

.info-list {
  display: grid;
  gap: 18px;
  margin-top: 16px;
}

.info-list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-list span {
  color: var(--muted);
  font-size: 0.88rem;
}

.info-list strong,
.address {
  font-size: 1.06rem;
  line-height: 1.7;
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(20, 40, 45, 0.92), rgba(20, 40, 45, 0.86));
  color: #fff8ef;
}

.benefit-card p {
  color: rgba(255, 248, 239, 0.78);
}

.booking {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
  align-items: start;
}

.booking-form {
  display: grid;
  gap: 16px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(20, 40, 45, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.footer {
  padding-bottom: 24px;
}

.footer-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  padding: 30px;
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(160deg, rgba(19, 41, 46, 0.97), rgba(24, 58, 61, 0.95));
  color: #fff9f1;
  box-shadow: var(--shadow);
}

.brand-footer .brand-copy small,
.footer-grid p {
  color: rgba(255, 249, 241, 0.72);
}

.footer-note {
  margin: 18px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.reveal-ready {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .fleet-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .story-grid,
  .booking,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .topbar {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
  }

  .nav.is-open {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-stats,
  .trust-band,
  .fleet-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-copy small,
  .nav a {
    font-size: 0.78rem;
  }

  .topbar,
  .hero,
  .story-card,
  .benefit-card,
  .booking-form,
  .footer-grid {
    border-radius: 24px;
  }

  .hero {
    padding: 22px;
  }

  .hero-actions,
  .price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .button,
  .nav-cta {
    width: 100%;
  }
}
