@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("assets/fonts/barlow-condensed-900-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
}

:root {
  --ink: #09261f;
  --forest: #0f3a2c;
  --forest-deep: #061c17;
  --lime: #d9ff58;
  --lime-bright: #e8ff8a;
  --orange: #ff6a3d;
  --cream: #f6f0e4;
  --paper: #fffdf8;
  --sage: #dbe7dc;
  --muted: #52675e;
  --line: rgba(9, 38, 31, 0.16);
  --focus: #78a8ff;
  --shadow: 0 24px 60px rgba(6, 28, 23, 0.18);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shell: min(1180px, calc(100% - 40px));
  --heading: "Barlow Condensed", "Arial Narrow", "Roboto Condensed", "Aptos Display", "Segoe UI", sans-serif;
  --body: Manrope, "Aptos", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  color-scheme: light;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--ink);
}

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

h1,
h2,
h3 {
  font-family: var(--heading);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.65rem, 6.7vw, 6rem);
}

h2 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(2.65rem, 5vw, 5.1rem);
}

h3 {
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow {
  max-width: 900px;
}

.center {
  text-align: center;
}

.center h2,
.center p {
  margin-right: auto;
  margin-left: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 12px 16px;
  color: #fff;
  background: var(--forest-deep);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  min-height: 36px;
  padding: calc(7px + env(safe-area-inset-top)) 20px 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
  text-decoration: none;
}

.site-brand > span:last-child > span {
  color: var(--orange);
}

.site-brand small {
  margin-left: 2px;
  font-size: 0.64em;
  letter-spacing: -0.02em;
}

.brand-balls {
  position: relative;
  width: 42px;
  height: 30px;
  display: inline-block;
}

.brand-balls i {
  position: absolute;
  top: 2px;
  width: 27px;
  height: 27px;
  border: 4px solid var(--ink);
  border-radius: 50%;
}

.brand-balls i:first-child {
  left: 0;
  background: var(--lime);
}

.brand-balls i:last-child {
  right: 0;
  background: var(--orange);
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
}

.main-nav a {
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.main-nav a:hover {
  text-decoration: underline;
}

.button {
  min-height: 54px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  color: #fff;
  background: var(--ink);
  font-size: 0.88rem;
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 16px 32px rgba(217, 255, 88, 0.16);
}

.button-primary:hover {
  background: var(--lime-bright);
  box-shadow: 0 20px 38px rgba(217, 255, 88, 0.22);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.button-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.button-outline-light:hover {
  background: #fff;
  color: var(--ink);
}

.button-dark {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.hero {
  position: relative;
  padding: clamp(74px, 10vw, 132px) 0 clamp(82px, 11vw, 140px);
  color: #fff;
  background:
    radial-gradient(circle at 6% 22%, rgba(217, 255, 88, 0.14), transparent 24%),
    radial-gradient(circle at 84% 74%, rgba(255, 106, 61, 0.17), transparent 23%),
    var(--forest-deep);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -5vw;
  bottom: -9vw;
  width: 32vw;
  height: 32vw;
  min-width: 320px;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(255, 255, 255, 0.025), 0 0 0 92px rgba(255, 255, 255, 0.018);
}

.hero-confetti,
.final-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-confetti::before,
.hero-confetti::after,
.final-confetti::before,
.final-confetti::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 34px;
  background: var(--orange);
  transform: rotate(36deg);
}

.hero-confetti::before {
  top: 13%;
  left: 4%;
}

.hero-confetti::after {
  right: 5%;
  bottom: 19%;
  background: var(--lime);
  transform: rotate(-31deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(50px, 7vw, 94px);
}

.eyebrow {
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 3px;
  display: inline-block;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--forest);
}

.hero h1 em {
  display: block;
  color: var(--lime);
  font-style: normal;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

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

.booking-note {
  margin: 14px 0 30px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.hero-facts {
  max-width: 680px;
  margin: 0;
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-facts li {
  min-width: 0;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-family: var(--heading);
  font-size: 1.08rem;
  line-height: 1.1;
}

.hero-facts span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
}

.image-card {
  position: relative;
  padding: 12px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: rotate(2.2deg);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
}

.image-label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  background: rgba(232, 255, 138, 0.94);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.image-label span {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.image-label strong {
  font-family: var(--heading);
  font-size: 1.15rem;
  line-height: 1;
}

.round-stamp {
  position: absolute;
  top: -42px;
  right: -32px;
  width: 106px;
  height: 106px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
  border: 4px solid var(--forest-deep);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--orange);
  font-family: var(--heading);
  font-size: 1.06rem;
  font-weight: 900;
  line-height: 0.92;
  text-align: center;
  transform: rotate(8deg);
}

.trust-bar {
  position: relative;
  z-index: 4;
  background: var(--lime);
}

.trust-grid {
  min-height: 108px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  padding: 20px clamp(16px, 3vw, 38px);
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(9, 38, 31, 0.2);
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-grid > div > span {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 900;
}

.trust-grid p {
  margin: 0;
  line-height: 1.25;
}

.trust-grid strong,
.trust-grid small {
  display: block;
}

.trust-grid small {
  margin-top: 4px;
  color: rgba(9, 38, 31, 0.68);
}

.section {
  padding: clamp(84px, 11vw, 146px) 0;
}

.section-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.intro-section {
  background: var(--cream);
}

.intro-section h2 {
  margin-inline: auto;
}

.punchline {
  max-width: 680px;
  margin: 36px auto 0;
  padding-top: 30px;
  font-family: var(--heading);
  font-size: clamp(1.4rem, 2.4vw, 2.05rem);
  font-weight: 900;
  line-height: 1.15;
  border-top: 1px solid var(--line);
}

.audience-section {
  background: var(--paper);
}

.section-heading {
  margin-bottom: clamp(42px, 6vw, 72px);
}

.heading-row {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 40px;
}

.heading-row h2,
.heading-row p {
  margin-bottom: 0;
}

.heading-row > p {
  max-width: 420px;
  color: var(--muted);
  font-size: 1.05rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.audience-card {
  position: relative;
  min-height: 340px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.audience-card h3 {
  max-width: 430px;
  margin: 14px 0 18px;
}

.audience-card > p:last-child {
  max-width: 460px;
  margin-bottom: 0;
}

.card-number {
  font-family: var(--heading);
  font-size: 0.9rem;
  font-weight: 900;
}

.card-kicker {
  margin: 74px 0 0;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-orange {
  color: var(--ink);
  background: var(--orange);
  border-color: var(--orange);
}

.card-lime {
  background: var(--lime);
  border-color: var(--lime);
}

.card-cream {
  background: var(--cream);
}

.card-photo {
  min-height: 420px;
  padding: 0;
  color: #fff;
  background: var(--forest);
}

.card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 28, 23, 0.03) 30%, rgba(6, 28, 23, 0.9) 100%);
}

.card-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.card-photo > div {
  position: absolute;
  right: clamp(28px, 4vw, 48px);
  bottom: clamp(28px, 4vw, 48px);
  left: clamp(28px, 4vw, 48px);
  z-index: 2;
}

.card-photo .card-kicker {
  margin-top: 18px;
}

.card-photo h3 {
  margin-bottom: 0;
}

.mixed-section {
  color: #fff;
  background: var(--forest);
}

.mixed-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(52px, 8vw, 110px);
}

.mixed-visual {
  position: relative;
  padding: 12px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.mixed-visual img {
  width: 100%;
  max-height: 670px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 22px;
}

.mixed-visual > p {
  position: absolute;
  right: -38px;
  bottom: 46px;
  max-width: 260px;
  margin: 0;
  padding: 18px 22px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 12px;
  font-size: 0.86rem;
  line-height: 1.3;
  transform: rotate(3deg);
}

.mixed-visual > p strong {
  display: block;
  font-family: var(--heading);
  font-size: 1.4rem;
}

.mixed-copy h2 {
  max-width: 720px;
}

.mixed-copy .section-lead {
  color: rgba(255, 255, 255, 0.75);
}

.size-cards {
  margin: 34px 0 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.size-cards > div {
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 16px;
}

.size-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-family: var(--heading);
  font-size: 1.3rem;
  font-weight: 900;
}

.size-cards p {
  margin: 0;
  line-height: 1.35;
}

.size-cards strong,
.size-cards p span {
  display: block;
}

.size-cards p span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

.safety-note {
  max-width: 700px;
  margin: 0 0 24px;
  padding: 18px 20px;
  color: var(--ink);
  background: var(--cream);
  border-left: 6px solid var(--orange);
  border-radius: 0 12px 12px 0;
  font-size: 0.9rem;
}

.photo-note {
  margin: -8px 0 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--lime);
  font-weight: 900;
}

.dark-link {
  color: var(--ink);
}

.steps-section {
  color: #fff;
  background: var(--forest-deep);
}

.light-heading > p:last-child {
  color: rgba(255, 255, 255, 0.64);
}

.steps-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.steps-grid li {
  min-height: 310px;
  padding: 36px clamp(24px, 3.3vw, 44px) 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.steps-grid li:first-child {
  padding-left: 0;
}

.steps-grid li:last-child {
  padding-right: 0;
  border-right: 0;
}

.steps-grid li > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
  border-radius: 50%;
  font-family: var(--heading);
  font-size: 1.2rem;
  font-weight: 900;
}

.steps-grid h3 {
  margin: 54px 0 16px;
}

.steps-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
}

.steps-cta {
  margin-top: 26px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
}

.steps-cta p {
  margin: 0;
}

.steps-cta strong,
.steps-cta span {
  display: block;
}

.steps-cta strong {
  font-family: var(--heading);
  font-size: 1.5rem;
  line-height: 1.1;
}

.steps-cta span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.85rem;
}

.local-section {
  background: var(--cream);
}

.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.65fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.local-links {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
}

.map-card {
  min-height: 480px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background: var(--forest);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-shape {
  position: relative;
  width: 240px;
  height: 270px;
  margin: 0 auto;
  background: var(--lime);
  border-radius: 72% 28% 64% 36% / 45% 36% 64% 55%;
  transform: rotate(-12deg);
  clip-path: polygon(57% 0%, 76% 8%, 93% 28%, 88% 46%, 98% 63%, 76% 77%, 69% 100%, 47% 88%, 24% 94%, 11% 72%, 0 52%, 14% 34%, 20% 12%);
}

.map-shape::after {
  content: "";
  position: absolute;
  left: 24%;
  bottom: 19%;
  width: 18px;
  height: 18px;
  background: var(--orange);
  border: 4px solid var(--ink);
  border-radius: 50%;
}

.map-shape span {
  position: absolute;
  bottom: 7%;
  left: 14%;
  z-index: 2;
  padding: 3px 7px;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: rotate(12deg);
}

.map-card > p {
  margin: 0;
}

.map-card > p strong,
.map-card > p span {
  display: block;
}

.map-card > p strong {
  color: var(--lime);
  font-family: var(--heading);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  line-height: 0.78;
}

.map-card > p span {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.tips-section {
  background: var(--paper);
}

.tips-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 8vw, 110px);
}

.tips-heading {
  position: sticky;
  top: 128px;
  align-self: start;
}

.tips-heading p:last-child {
  max-width: 440px;
  color: var(--muted);
}

.tip-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.tip-list li {
  padding: 27px 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.tip-list li > span {
  color: #b83a17;
  font-family: var(--heading);
  font-size: 1.15rem;
  font-weight: 900;
}

.tip-list p {
  margin: 0;
}

.tip-list strong {
  font-family: var(--heading);
  font-size: 1.25rem;
}

.faq-section {
  color: #fff;
  background: var(--forest);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 8vw, 112px);
}

.faq-heading {
  align-self: start;
}

.faq-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
}

.faq-heading .button {
  margin-top: 20px;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-list summary {
  min-height: 82px;
  padding: 22px 50px 22px 0;
  position: relative;
  display: flex;
  align-items: center;
  font-family: var(--heading);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 19px;
  height: 2px;
  content: "";
  background: var(--lime);
}

.faq-list summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 720px;
  margin-bottom: 28px;
  padding-right: 38px;
  color: rgba(255, 255, 255, 0.72);
}

.final-cta {
  position: relative;
  padding: clamp(76px, 9vw, 112px) 0;
  color: var(--ink);
  background: var(--lime);
  overflow: hidden;
}

.final-confetti::before {
  top: 18%;
  left: 3%;
  background: var(--orange);
}

.final-confetti::after {
  right: 6%;
  bottom: 13%;
  background: var(--forest);
}

.final-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-inner h2 {
  max-width: 780px;
  margin-bottom: 18px;
}

.final-inner p:last-child {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.final-inner .button {
  flex: 0 0 auto;
}

.site-footer {
  padding: 74px 0 24px;
  color: #fff;
  background: var(--forest-deep);
}

.footer-grid {
  padding-bottom: 54px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.75fr;
  gap: 46px;
}

.footer-brand {
  color: #fff;
}

.footer-brand .brand-balls i {
  border-color: #fff;
}

.footer-grid > div:first-child > p {
  max-width: 360px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-grid h3 {
  margin: 6px 0 22px;
  font-family: var(--body);
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) a {
  margin-bottom: 12px;
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.footer-grid > div:not(:first-child) a:hover {
  color: #fff;
}

.offroad-mark {
  align-self: start;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.offroad-mark img {
  width: 62px;
  height: 62px;
  background: #fff;
  border-radius: 50%;
}

.offroad-mark span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  line-height: 1.35;
}

.offroad-mark strong {
  color: #fff;
  font-size: 0.84rem;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.54);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
}

.mobile-book {
  display: none;
}

@media (max-width: 1040px) {
  .main-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
    gap: 46px;
  }

  .round-stamp {
    right: -14px;
  }

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

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  .hero-grid,
  .mixed-grid,
  .local-grid,
  .tips-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    max-width: 580px;
    margin-inline: auto;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 14px 0;
  }

  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:last-child {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(9, 38, 31, 0.17);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .heading-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .audience-card {
    min-height: 310px;
  }

  .mixed-visual {
    width: min(84%, 500px);
    margin-inline: auto;
  }

  .mixed-visual > p {
    right: -8%;
  }

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

  .steps-grid li,
  .steps-grid li:first-child,
  .steps-grid li:last-child {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .steps-grid li:last-child {
    border-bottom: 0;
  }

  .steps-grid h3 {
    margin: 24px 0 12px;
  }

  .tips-heading {
    position: static;
  }

  .map-card {
    min-height: 430px;
  }

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

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-lg: 24px;
    --radius-md: 18px;
  }

  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .announcement {
    min-height: 34px;
    padding-inline: 10px;
    gap: 6px;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
  }

  .announcement span:nth-of-type(2),
  .announcement span:nth-of-type(4),
  .announcement span:nth-of-type(5) {
    display: none;
  }

  .nav-wrap {
    min-height: 68px;
    gap: 12px;
  }

  .site-brand {
    gap: 7px;
    font-size: 1.04rem;
  }

  .brand-balls {
    width: 33px;
    height: 25px;
  }

  .brand-balls i {
    width: 22px;
    height: 22px;
    border-width: 3px;
  }

  .header-cta {
    min-height: 44px;
    padding: 9px 13px;
    font-size: 0.75rem;
  }

  h1 {
    font-size: clamp(3rem, 14.5vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  h3 {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .hero {
    padding-top: 64px;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr 1fr;
    gap: 18px 10px;
  }

  .hero-facts li:last-child {
    grid-column: 1 / -1;
  }

  .image-card {
    padding: 8px;
    transform: rotate(1deg);
  }

  .image-card img {
    border-radius: 18px;
  }

  .image-label {
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 13px 14px;
  }

  .image-label span {
    display: none;
  }

  .round-stamp {
    top: -26px;
    right: -4px;
    width: 82px;
    height: 82px;
    font-size: 0.82rem;
  }

  .section {
    padding: 78px 0;
  }

  .audience-card {
    min-height: 300px;
    padding: 28px;
  }

  .card-photo,
  .card-photo img {
    min-height: 350px;
  }

  .card-photo {
    padding: 0;
  }

  .card-kicker {
    margin-top: 54px;
  }

  .mixed-visual {
    width: 92%;
  }

  .mixed-visual > p {
    right: -5%;
    bottom: 28px;
    max-width: 210px;
  }

  .size-cards {
    grid-template-columns: 1fr;
  }

  .steps-cta {
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
  }

  .steps-cta .button {
    width: 100%;
  }

  .map-card {
    min-height: 390px;
    padding: 26px;
  }

  .map-shape {
    width: 200px;
    height: 220px;
  }

  .tip-list li {
    grid-template-columns: 40px 1fr;
    gap: 13px;
  }

  .faq-list summary {
    min-height: 74px;
    padding-right: 42px;
    font-size: 1.35rem;
  }

  .final-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
  }

  .final-inner .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-book {
    position: fixed;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    z-index: 100;
    min-height: 54px;
    padding: 13px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--ink);
    background: var(--lime);
    border: 2px solid var(--ink);
    border-radius: 999px;
    box-shadow: 0 12px 34px rgba(6, 28, 23, 0.28);
    font-weight: 900;
    text-decoration: none;
  }
}

@media (max-width: 370px) {
  :root {
    --shell: calc(100% - 22px);
  }

  .site-brand small {
    display: none;
  }

  .header-cta {
    padding-inline: 11px;
  }

  .announcement span:nth-of-type(3) {
    display: none;
  }

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

  .hero-facts li:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .announcement,
  .site-header,
  .mobile-book,
  .hero-actions,
  .final-cta,
  .site-footer {
    display: none !important;
  }

  body,
  .hero,
  .mixed-section,
  .steps-section,
  .faq-section {
    color: #000;
    background: #fff;
  }
}

a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--ink);
}
