:root {
  --ink: #14342f;
  --bay: #0f4c43;
  --bay-dark: #0b332e;
  --paper: #fbfaf4;
  --mist: #eef3ef;
  --sand: #f5bd42;
  --clay: #c95543;
  --muted: #58706a;
  --white: #ffffff;
  --line: rgba(20, 52, 47, 0.16);
  --shadow: 0 22px 60px rgba(12, 34, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(251, 250, 244, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 5vw, 70px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

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

.brand-mark {
  align-items: center;
  background: var(--bay);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  letter-spacing: 0;
  width: 44px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

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

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-weight: 800;
}

.site-nav a {
  color: #405953;
  font-size: 0.95rem;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--bay);
}

.nav-cta {
  background: var(--sand);
  border-radius: 999px;
  color: #211b0b !important;
  padding: 12px 22px;
}

.hero {
  min-height: calc(100vh - 73px);
  overflow: hidden;
  position: relative;
}

.hero-media {
  background-image: url("assets/captain-kiwi-hero-house-yard.jpg");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 44, 39, 0.88), rgba(8, 44, 39, 0.54) 42%, rgba(8, 44, 39, 0.16)),
    linear-gradient(0deg, rgba(8, 44, 39, 0.38), rgba(8, 44, 39, 0.08));
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--white);
  max-width: 860px;
  padding: clamp(74px, 13vw, 170px) clamp(22px, 5vw, 70px) clamp(90px, 12vw, 150px);
  position: relative;
}

.eyebrow,
.section-kicker {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--white);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 7.7rem);
  margin-bottom: 28px;
  max-width: 780px;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.65rem);
  margin-bottom: 0;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: clamp(1.06rem, 1.7vw, 1.45rem);
  line-height: 1.55;
  margin-bottom: 34px;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button,
.booking-link {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  text-decoration: none;
}

.button.primary {
  background: var(--sand);
  color: #241a06;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.button.secondary.light {
  border-color: rgba(255, 255, 255, 0.65);
}

.stats {
  background: var(--bay);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.stat {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 26px clamp(16px, 2vw, 28px);
}

.stat-icon {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 900;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.stat strong {
  font-size: 0.98rem;
  line-height: 1.25;
}

.stat span:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.section {
  padding: clamp(76px, 11vw, 138px) clamp(22px, 5vw, 70px);
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.split,
.booking-layout,
.location-layout,
.faq-layout {
  display: grid;
  gap: clamp(30px, 7vw, 90px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.copy,
.location-panel,
.booking-layout,
.section-heading,
.audience-list,
.faq-list {
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
}

.copy p,
.location-panel p,
.booking p,
.section-heading p,
.faq p {
  color: var(--muted);
}

.included {
  background: var(--mist);
}

.section-heading {
  margin-bottom: 38px;
  max-width: 780px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

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

.included-grid div {
  background: var(--white);
  border: 1px solid var(--line);
  color: #304943;
  font-weight: 800;
  min-height: 126px;
  padding: 24px;
}

.location {
  background: var(--paper);
}

.location-panel h2 {
  margin-bottom: 24px;
}

.drive-list {
  align-self: start;
  background: var(--bay-dark);
  color: var(--white);
  display: grid;
  padding: 8px;
}

.drive-list div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 4px;
  padding: 24px;
}

.drive-list div:last-child {
  border-bottom: 0;
}

.drive-list span {
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.05rem;
  font-weight: 900;
  line-height: 1;
}

.drive-list strong {
  font-size: 1.05rem;
}

.works-for {
  background: #ffffff;
}

.audience-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.audience-list li {
  border-bottom: 1px solid var(--line);
  color: #304943;
  font-weight: 800;
  padding: 18px 0 18px 34px;
  position: relative;
}

.audience-list li::before {
  background: var(--sand);
  border-radius: 999px;
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  top: 28px;
  width: 10px;
}

.booking {
  background: var(--bay);
  color: var(--white);
}

.booking .section-kicker {
  color: var(--sand);
}

.booking p {
  color: rgba(255, 255, 255, 0.76);
}

.booking-card {
  align-self: start;
  background: var(--paper);
  color: var(--ink);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.booking-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

.booking-link {
  background: var(--sand);
  color: #241a06;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}

.faq {
  background: var(--paper);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq summary {
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
  font-weight: 800;
  list-style: none;
  padding-right: 34px;
  position: relative;
}

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

.faq summary::after {
  color: var(--bay);
  content: "+";
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  right: 0;
  top: 0;
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  margin: 14px 0 0;
  max-width: 680px;
}

.final-cta {
  background: var(--bay-dark);
  color: var(--white);
  padding: clamp(72px, 11vw, 130px) clamp(22px, 5vw, 70px);
}

.final-cta-inner {
  margin: 0 auto;
  max-width: 920px;
}

.final-cta .section-kicker {
  color: var(--sand);
}

.final-cta h2 {
  margin-bottom: 22px;
}

.final-cta p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.15rem;
  margin-bottom: 30px;
}

@media (max-width: 1100px) {
  .stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: space-between;
    width: 100%;
  }

  .site-nav a {
    font-size: 0.88rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(8, 44, 39, 0.82), rgba(8, 44, 39, 0.34)),
      linear-gradient(90deg, rgba(8, 44, 39, 0.72), rgba(8, 44, 39, 0.18));
  }

  .hero-content {
    padding-top: 86px;
  }

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

  .split,
  .booking-layout,
  .location-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, auto));
  }

  .nav-cta {
    padding: 9px 14px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero {
    min-height: 690px;
  }

  .stats,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 132px;
  }

  .button {
    width: 100%;
  }
}
