:root {
  --greige: #d8d0bf;
  --greige-dark: #b7ad9a;
  --coffee: #2b211a;
  --coffee-soft: #5a4639;
  --yellow: #f4c542;
  --red: #c9302c;
  --blue: #1d4e89;
  --green: #2a9d67;
  --ink: #151210;
  --paper: #f5f0e6;
  --white: #fffaf0;
  --shadow: 0 18px 50px rgba(43, 33, 26, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--coffee);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(21, 18, 16, 0.82);
  border-bottom: 1px solid rgba(244, 197, 66, 0.22);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--white);
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--yellow);
}

.brand strong,
h1,
h2,
h3 {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
}

.brand small {
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 800;
}

.site-nav {
  display: none;
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  padding: 18px 22px 22px;
  background: rgba(21, 18, 16, 0.96);
}

.site-nav.is-open {
  display: grid;
  gap: 14px;
}

.site-nav a {
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.nav-toggle {
  display: grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--yellow);
}

.hero {
  min-height: 100svh;
  background: var(--ink);
}

.slider {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  min-height: 100svh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms ease;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 18, 16, 0.35), rgba(21, 18, 16, 0.92)),
    linear-gradient(90deg, rgba(201, 48, 44, 0.18), transparent 34%, rgba(42, 157, 103, 0.14));
}

.slide-copy {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: 116px clamp(18px, 5vw, 70px) 112px;
  color: var(--white);
}

.kicker,
.eyebrow {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.slide-copy h1,
.slide-copy h2 {
  margin: 0;
  font-size: clamp(4rem, 17vw, 11rem);
  text-transform: uppercase;
  text-wrap: balance;
}

.slide-copy p:not(.kicker) {
  max-width: 560px;
  margin: 18px 0 0;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.btn.primary {
  background: var(--yellow);
  color: var(--coffee);
  box-shadow: 0 10px 30px rgba(244, 197, 66, 0.24);
}

.btn.ghost {
  color: var(--white);
  border-color: rgba(255, 250, 240, 0.42);
  background: rgba(255, 250, 240, 0.08);
}

.btn.ghost.dark {
  color: var(--coffee);
  border-color: rgba(43, 33, 26, 0.24);
}

.slider-controls {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.icon-btn {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  background: rgba(255, 250, 240, 0.12);
  color: var(--yellow);
  font-size: 2rem;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.dots {
  display: flex;
  gap: 8px;
  pointer-events: auto;
}

.dot {
  width: 28px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.45);
}

.dot.is-active {
  background: var(--yellow);
}

.section,
.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 76px 0;
}

.section-band {
  padding: 76px 0;
  background: var(--greige);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head h2,
.intro h2,
.feature h2,
.ride-grid h2,
.split-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 5.4rem);
  text-transform: uppercase;
}

.section-head p:not(.eyebrow),
.intro-grid p,
.feature p,
.ride-grid p,
.split-copy p,
.contact-copy p {
  font-size: 1rem;
  line-height: 1.65;
}

.intro-grid,
.feature-grid,
.ride-grid,
.contact-section,
.split {
  display: grid;
  gap: 28px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.info-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(43, 33, 26, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.info-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.info-card div {
  padding: 20px;
}

.info-card h3 {
  margin: 0;
  font-size: 2rem;
  text-transform: uppercase;
}

.info-card p {
  margin: 12px 0 18px;
  line-height: 1.6;
}

.text-link {
  min-height: 40px;
  padding-inline: 0;
  color: var(--red);
}

.feature-grid img,
.ride-grid img,
.split img,
.gallery img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-grid img,
.ride-grid img {
  aspect-ratio: 16 / 10;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  font-weight: 800;
}

.check-list li {
  padding-left: 28px;
  background: linear-gradient(90deg, var(--green) 0 14px, transparent 14px);
}

.gallery {
  display: grid;
  gap: 18px;
}

.gallery img {
  aspect-ratio: 16 / 10;
}

.split img {
  aspect-ratio: 16 / 11;
}

.split-copy {
  align-self: center;
}

.schedule {
  display: grid;
  gap: 8px;
  margin: 22px 0;
  padding: 18px;
  border-left: 5px solid var(--yellow);
  background: var(--greige);
  border-radius: 8px;
}

.schedule span,
.label {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.info-strip {
  display: grid;
  gap: 16px;
}

.info-strip div {
  padding: 20px;
  color: var(--white);
  background: var(--coffee);
  border-radius: 8px;
}

.info-strip strong,
.info-strip small {
  display: block;
}

.info-strip strong {
  margin: 8px 0;
  font-size: 1.2rem;
}

.map-wrap {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.contact-section {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 20px;
  background: var(--coffee);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 250, 240, 0.1);
  color: var(--white);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--yellow);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: rgba(42, 157, 103, 0.82);
  border: 1px solid rgba(255, 250, 240, 0.3);
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(21, 18, 16, 0.32);
  backdrop-filter: blur(10px);
}

.whatsapp-float span {
  font-weight: 900;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 36px 18px 46px;
  color: var(--white);
  text-align: center;
  background: var(--ink);
}

.site-footer img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--yellow);
}

.site-footer p,
.site-footer small {
  margin: 0;
}

@media (min-width: 720px) {
  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0;
    background: transparent;
  }

  .nav-toggle {
    display: none;
  }

  .slide-copy {
    padding-bottom: 132px;
  }

  .intro-grid,
  .feature-grid,
  .ride-grid,
  .contact-section,
  .split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

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

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .info-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .info-card h3 {
    font-size: 1.8rem;
  }

  .slider-controls {
    left: 56px;
    right: 56px;
  }
}
