:root {
  --forest: #0b1f13;
  --pine: #12321e;
  --moss: #1f4f2d;
  --sun: #e4b23c;
  --sun-dark: #c88d16;
  --sand: #f4f1e7;
  --mist: #f1f4ef;
  --ink: #0e120f;
  --card: rgba(255, 255, 255, 0.96);
  --radius-lg: 28px;
  --radius-sm: 14px;
  font-family: "Sora", sans-serif;
  color-scheme: light;
}

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

body {
  margin: 0;
  color: var(--ink);
  background-color: #dfe7dc;
  background-image: url("images/wanaka tree.JPG");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(255, 252, 243, 0.04) 0%, rgba(255, 252, 243, 0.09) 45%, rgba(255, 252, 243, 0.14) 100%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 36vh 0 0 0;
  background-image: url("images/wanaka tree.JPG");
  background-size: cover;
  background-position: center top;
  filter: blur(5px) saturate(0.98);
  opacity: 0.3;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.55) 30%, rgba(0, 0, 0, 0.9) 60%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.55) 30%, rgba(0, 0, 0, 0.9) 60%, #000 100%);
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

.top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

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

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

.frame {
  width: min(1200px, calc(100% - 3.5rem));
  margin: 0 auto;
}

/* Header / navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(249, 249, 245, 0.88);
  border-bottom: 1px solid rgba(15, 29, 18, 0.12);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.8rem;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.62rem;
  color: rgba(15, 29, 18, 0.6);
}

.nav {
  display: flex;
  gap: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.65rem;
  color: rgba(15, 29, 18, 0.82);
}

.nav a {
  position: relative;
  padding-bottom: 0.2rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(15, 29, 18, 0.2);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 29, 18, 0.2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.65rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 29, 18, 0.18);
}

.pill.primary {
  background: var(--sun);
  color: var(--ink);
  border-color: transparent;
}

.pill.ghost {
  background: transparent;
}

/* Hero */
.hero {
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 40% -20% auto;
  height: 320px;
  background: radial-gradient(circle, rgba(31, 79, 45, 0.22), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.65fr);
  gap: 1.6rem;
  align-items: stretch;
}

.hero-copy h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.highlight {
  color: var(--sun-dark);
}

.hero-copy {
  background: rgba(247, 245, 237, 0.78);
  border: 1px solid rgba(15, 29, 18, 0.12);
  border-radius: 22px;
  padding: 1.1rem 1.2rem;
  backdrop-filter: blur(5px);
  box-shadow: 0 18px 36px rgba(12, 22, 14, 0.12);
  max-width: 760px;
  height: 100%;
}

.overline {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.65rem;
  margin: 0 0 0.8rem;
  color: rgba(15, 29, 18, 0.6);
}

.lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(15, 29, 18, 0.82);
}

.lead.secondary {
  font-size: 0.98rem;
  margin-top: 0.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.8rem 0;
}

.social-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(15, 29, 18, 0.7);
}

.social-proof .stars {
  color: var(--sun-dark);
  font-size: 1rem;
}

.driver-card {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 29, 18, 0.12);
  border-radius: 999px;
  padding: 0.55rem 1rem 0.55rem 0.55rem;
  margin-top: 1rem;
}

.driver-photo {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 999px;
  border: 2px solid rgba(228, 178, 60, 0.75);
}

.driver-name {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
}

.driver-role {
  margin: 0.15rem 0 0;
  color: rgba(15, 29, 18, 0.65);
  font-size: 0.9rem;
}

.hero-quick {
  background: rgba(12, 26, 16, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 1.1rem;
  color: #f4f5ef;
  backdrop-filter: blur(5px);
  display: grid;
  align-content: start;
  gap: 0.7rem;
  height: 100%;
}

.hero-quick h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.hero-quick p {
  margin: 0;
}

.quick-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: rgba(244, 245, 239, 0.72);
}

.quick-meta {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 245, 239, 0.78);
}

.hero-quick .pill {
  width: 100%;
}

.hero-quick .pill.ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #f4f5ef;
}

.hero-visual {
  display: grid;
  gap: 1rem;
  background: linear-gradient(145deg, rgba(18, 50, 30, 0.92), rgba(9, 18, 11, 0.92));
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--mist);
  position: relative;
  box-shadow: 0 30px 60px rgba(7, 16, 10, 0.3);
}

.hero-banner {
  background: #173621;
  border-radius: 20px;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

.banner-copy {
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  color: #f6f6f1;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.65);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: rgba(8, 18, 12, 0.55);
  padding: 0.45rem 0.7rem;
  border-radius: 12px;
}

.banner-copy strong {
  display: block;
  font-size: 1.35rem;
}

.hero-photo {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}


.hero-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.stat {
  font-weight: 600;
}

.stat-sep {
  opacity: 0.7;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-head h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  margin: 0 0 1rem;
}

.service-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.service-card {
  background: #f7f5ed;
  border-radius: var(--radius-sm);
  padding: 1.6rem;
  box-shadow: 0 12px 30px rgba(15, 29, 18, 0.12);
  border-left: 3px solid var(--sun);
}

/* Reviews */
.reviews-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.review-card {
  background: rgba(247, 245, 237, 0.95);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  box-shadow: 0 12px 30px rgba(15, 29, 18, 0.12);
}

.review-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.review-card p {
  margin: 0.35rem 0;
  line-height: 1.45;
  font-size: 0.95rem;
}

.review-stars {
  margin: 0 0 0.35rem;
  color: var(--sun-dark);
  letter-spacing: 0.15em;
  font-size: 0.9rem;
}

.review-count {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(15, 29, 18, 0.6);
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

/* Booking */
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 2rem;
  align-items: start;
}

.booking-card {
  background: #f7f5ed;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(15, 29, 18, 0.12);
}

.booking-card h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  margin: 0 0 0.4rem;
}

.booking-card p {
  margin: 0 0 1.4rem;
  color: rgba(15, 29, 18, 0.6);
}

form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(15, 29, 18, 0.6);
}

input,
select,
textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 29, 18, 0.18);
  background: #fff;
}

textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-note {
  font-size: 0.8rem;
  color: rgba(15, 29, 18, 0.6);
  margin: 0.4rem 0 0;
}

.booking-info {
  display: grid;
  gap: 1.2rem;
}

.info-card {
  background: rgba(18, 50, 30, 0.95);
  color: #f6f6f1;
  padding: 1.6rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 40px rgba(7, 16, 10, 0.25);
}

.info-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
}

/* Footer */
.footer {
  background: #0c1712;
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 2rem;
}

/* Mobile CTA */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.8rem 1rem 1.2rem;
  background: rgba(249, 249, 245, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(15, 29, 18, 0.12);
  display: none;
  z-index: 20;
}

.mobile-cta .pill {
  width: 100%;
}

.footer .brand {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h3 {
  margin: 0 0 0.5rem;
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.2rem;
  font-size: 0.85rem;
}

/* Motion */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .header-row {
    flex-wrap: wrap;
    gap: 0.9rem;
  }

  .brand {
    font-size: 1.45rem;
    letter-spacing: 0.08em;
  }

  .nav {
    width: 100%;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(249, 249, 245, 0.98);
    border-radius: 16px;
    border: 1px solid rgba(15, 29, 18, 0.1);
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

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

  .hero-grid {
    gap: 1rem;
  }

  .