@font-face {
    font-family: "Hanken Grotesk";
    src: url("../fonts/hanken-grotesk.woff") format("woff");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Libre Baskerville";
    src: url("../fonts/libre-baskerville.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Libre Baskerville";
    src: url("../fonts/libre-baskerville-bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #112b3b;
    --ink-deep: #0a202d;
    --red: #e3262e;
    --red-dark: #bd1721;
    --sky: #a8dbe9;
    --sky-light: #dff1f5;
    --ochre: #d89545;
    --cream: #f5f1e7;
    --paper: #fbfaf6;
    --white: #ffffff;
    --muted: #61727a;
    --line: rgba(17, 43, 59, 0.16);
    --shadow: 0 24px 60px rgba(10, 32, 45, 0.14);
    --font-sans: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-serif: "Libre Baskerville", Georgia, serif;
    --shell: min(1240px, calc(100vw - 48px));
    --header-height: 94px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

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

body.nav-open {
    overflow: hidden;
}

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

img {
    height: auto;
}

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

button,
input,
textarea,
select {
    font: inherit;
}

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

:focus-visible {
    outline: 3px solid var(--ochre);
    outline-offset: 4px;
}

::selection {
    color: var(--white);
    background: var(--red);
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.05;
}

h1,
h2 {
    letter-spacing: -0.045em;
}

h1 em,
h2 em {
    color: var(--red);
    font-family: var(--font-serif);
    font-weight: 400;
}

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

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-150%);
}

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

.eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    color: var(--red-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    line-height: 1.25;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 2px;
    background: currentColor;
    content: "";
}

.eyebrow span {
    color: var(--muted);
    font-weight: 650;
    letter-spacing: 0.08em;
}

.eyebrow--light {
    color: var(--sky);
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.015em;
    line-height: 1.2;
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button--primary {
    color: var(--white);
    background: var(--red);
    box-shadow: 0 14px 30px rgba(227, 38, 46, 0.2);
}

.button--primary:hover {
    background: var(--red-dark);
}

.button--dark {
    color: var(--white);
    background: var(--ink);
}

.button--dark:hover {
    background: var(--ink-deep);
}

.button--white {
    color: var(--ink);
    background: var(--white);
}

.button--white:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.32);
    background: transparent;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    text-decoration: none;
}

.text-link span {
    color: var(--red);
    font-size: 1.3em;
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.text-link--light {
    color: var(--white);
}

.utility-bar {
    color: rgba(255, 255, 255, 0.82);
    background: var(--ink-deep);
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.04em;
}

.utility-bar__inner {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: space-between;
}

.utility-bar p {
    margin: 0;
}

.utility-bar p span {
    margin-inline: 7px;
    color: var(--red);
}

.utility-bar__links {
    display: flex;
    gap: 26px;
}

.utility-bar a {
    text-decoration: none;
}

.utility-bar a:hover {
    color: var(--white);
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: var(--header-height);
    border-bottom: 1px solid var(--line);
    background: rgba(251, 250, 246, 0.94);
    backdrop-filter: blur(16px);
    transition: box-shadow 180ms ease, height 180ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(17, 43, 59, 0.08);
}

.site-header__inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.brand img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.brand__text {
    display: grid;
    color: var(--ink);
    line-height: 1;
}

.brand__text strong {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.brand__text > span {
    margin-top: 5px;
    font-family: var(--font-serif);
    font-size: 0.94rem;
}

.brand__text em {
    margin-left: 7px;
    color: var(--red);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.12em;
}

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

.main-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 30px);
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-nav li a {
    position: relative;
    padding-block: 12px;
    font-size: 0.82rem;
    font-weight: 750;
    text-decoration: none;
}

.main-nav li a::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    background: var(--red);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.main-nav li a:hover::after,
.main-nav li a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.member-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 3px;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
}

.member-link:hover {
    color: var(--white);
    border-color: var(--ink);
    background: var(--ink);
}

.nav-toggle {
    display: none;
}

.section {
    padding-block: clamp(88px, 10vw, 150px);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
    align-items: end;
    gap: clamp(50px, 8vw, 120px);
    margin-bottom: clamp(50px, 7vw, 90px);
}

.section-heading h2,
.section-heading--stacked h2 {
    max-width: 860px;
    margin-bottom: 0;
    font-size: clamp(2.4rem, 4.9vw, 4.9rem);
    font-weight: 850;
}

.section-heading > p,
.section-heading--stacked > p {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 1.04rem;
}

.section-heading--stacked {
    display: block;
    margin-bottom: 0;
}

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

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    position: absolute;
    top: 10%;
    right: -11%;
    width: 48vw;
    aspect-ratio: 1;
    border: 1px solid rgba(17, 43, 59, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(17, 43, 59, 0.025), 0 0 0 160px rgba(17, 43, 59, 0.018);
    content: "";
}

.hero__grid {
    display: grid;
    min-height: calc(100vh - var(--header-height) - 36px);
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.72fr);
    align-items: center;
    gap: clamp(50px, 7vw, 110px);
    padding-block: clamp(70px, 8vw, 120px);
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    max-width: 740px;
    margin-bottom: 34px;
    font-size: clamp(4rem, 7.3vw, 7.4rem);
    font-weight: 880;
}

.hero h1 em {
    display: inline-block;
    font-size: 0.78em;
    letter-spacing: -0.055em;
}

.hero__lead {
    max-width: 700px;
    margin-bottom: 34px;
    color: #3f545e;
    font-size: clamp(1.05rem, 1.4vw, 1.28rem);
}

.hero__actions,
.page-hero__actions,
.learn-teaser__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.hero__proofs {
    display: grid;
    max-width: 620px;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 36px 0 0;
    margin: 48px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.hero__proofs li {
    display: grid;
}

.hero__proofs strong {
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 1.35rem;
}

.hero__proofs span {
    color: var(--muted);
    font-size: 0.78rem;
}

.hero-visual {
    position: relative;
    z-index: 1;
    padding: 20px 24px 54px 0;
}

.hero-visual::before {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 27px;
    width: 78%;
    height: 74%;
    background: var(--sky);
    content: "";
    clip-path: polygon(12% 0, 100% 7%, 91% 100%, 0 91%);
}

.hero-visual__frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 0.8;
    background: #dfeaf0;
    clip-path: polygon(0 0, 100% 4%, 92% 100%, 8% 96%);
    box-shadow: var(--shadow);
}

.hero-visual__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 53% 50%;
}

.hero-visual__badge {
    position: absolute;
    top: 0;
    right: 0;
    display: grid;
    width: 116px;
    aspect-ratio: 1;
    place-content: center;
    color: var(--white);
    border: 8px solid var(--paper);
    border-radius: 50%;
    background: var(--red);
    text-align: center;
    transform: rotate(7deg);
}

.hero-visual__badge span {
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-visual__badge strong {
    font-family: var(--font-serif);
    font-size: 1.35rem;
}

.hero-visual__caption,
.volunteer-story figcaption {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 22px 0 0 12%;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-visual__caption span,
.volunteer-story figcaption span {
    color: var(--red);
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.intro-band {
    color: var(--white);
    background: var(--ink);
}

.intro-band__inner {
    display: grid;
    min-height: 128px;
    grid-template-columns: minmax(0, 1fr) minmax(80px, 0.4fr) auto;
    align-items: center;
    gap: 36px;
}

.intro-band p {
    max-width: 750px;
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.7vw, 1.34rem);
}

.intro-band__location {
    color: var(--sky);
    font-family: var(--font-sans) !important;
    font-size: 0.72rem !important;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.route-line {
    position: relative;
    display: block;
    height: 1px;
    background: rgba(255, 255, 255, 0.24);
}

.route-line i {
    position: absolute;
    top: -4px;
    left: 48%;
    width: 9px;
    height: 9px;
    border: 2px solid var(--sky);
    border-radius: 50%;
    background: var(--ink);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.experience-card {
    position: relative;
    min-height: 430px;
    padding: 46px 38px 38px;
    border-right: 1px solid var(--line);
    transition: background 180ms ease, transform 180ms ease;
}

.experience-card:last-child {
    border-right: 0;
}

.experience-card:hover {
    background: var(--white);
    transform: translateY(-8px);
}

.experience-card--featured {
    color: var(--white);
    background: var(--red);
}

.experience-card--featured:hover {
    background: var(--red-dark);
}

.experience-card__number {
    display: block;
    margin-bottom: 68px;
    color: var(--red);
    font-family: var(--font-serif);
    font-size: 1rem;
}

.experience-card--featured .experience-card__number,
.experience-card--featured .experience-card__meta {
    color: rgba(255, 255, 255, 0.74);
}

.experience-card__meta {
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.experience-card h3 {
    margin-bottom: 20px;
    font-family: var(--font-serif);
    font-size: clamp(1.45rem, 2vw, 2rem);
}

.experience-card p:not(.experience-card__meta) {
    color: var(--muted);
    font-size: 0.94rem;
}

.experience-card--featured p:not(.experience-card__meta) {
    color: rgba(255, 255, 255, 0.84);
}

.experience-card a {
    position: absolute;
    right: 38px;
    bottom: 38px;
    left: 38px;
    display: flex;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid currentColor;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}

.region-showcase {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--ink-deep);
}

.region-showcase::before,
.learning-journey::before,
.aerodrome-section::before {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image: linear-gradient(rgba(168, 219, 233, 0.17) 1px, transparent 1px), linear-gradient(90deg, rgba(168, 219, 233, 0.17) 1px, transparent 1px);
    background-size: 70px 70px;
    content: "";
    mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.region-showcase__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1fr);
    align-items: center;
    gap: clamp(70px, 10vw, 150px);
}

.region-showcase__copy h2 {
    margin-bottom: 32px;
    font-size: clamp(2.8rem, 5vw, 5.3rem);
    font-weight: 850;
}

.region-showcase__copy > p:not(.eyebrow) {
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.72);
}

.region-collage {
    position: relative;
    min-height: 720px;
}

.region-collage figure {
    position: absolute;
    margin: 0;
}

.region-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.region-collage figcaption {
    display: flex;
    justify-content: space-between;
    padding-top: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.region-collage figcaption span {
    color: var(--ochre);
}

.region-collage__main {
    top: 0;
    right: 0;
    width: 68%;
}

.region-collage__main img {
    aspect-ratio: 0.82;
}

.region-collage__secondary {
    bottom: 0;
    left: 0;
    width: 45%;
}

.region-collage__secondary img {
    aspect-ratio: 0.82;
}

.volunteer-story {
    background: var(--cream);
}

.volunteer-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.76fr);
    align-items: center;
    gap: clamp(60px, 9vw, 140px);
}

.volunteer-story__image {
    margin: 0;
}

.volunteer-story__image img {
    width: 100%;
    aspect-ratio: 1.42;
    object-fit: cover;
    box-shadow: var(--shadow);
    clip-path: polygon(0 0, 96% 0, 100% 91%, 5% 100%);
}

.volunteer-story__copy h2 {
    margin-bottom: 30px;
    font-size: clamp(2.6rem, 4.5vw, 4.6rem);
    font-weight: 850;
}

.volunteer-story__copy > p:not(.eyebrow) {
    color: var(--muted);
}

.volunteer-story blockquote {
    padding: 24px 0 24px 24px;
    margin: 34px 0;
    border-left: 3px solid var(--red);
    font-family: var(--font-serif);
    font-size: 1.15rem;
}

.learn-teaser__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.65fr);
    align-items: center;
    gap: clamp(70px, 10vw, 160px);
}

.learn-teaser h2 {
    max-width: 750px;
    margin-bottom: 30px;
    font-size: clamp(3rem, 5.8vw, 6rem);
    font-weight: 850;
}

.learn-teaser__copy > p:not(.eyebrow) {
    max-width: 690px;
    margin-bottom: 36px;
    color: var(--muted);
    font-size: 1.08rem;
}

.learn-teaser__image {
    position: relative;
    margin: 0;
}

.learn-teaser__image::before {
    position: absolute;
    z-index: -1;
    inset: 28px -28px -28px 28px;
    background: var(--ochre);
    content: "";
}

.learn-teaser__image img {
    width: 100%;
    aspect-ratio: 0.7;
    object-fit: cover;
}

.learn-teaser__image figcaption {
    position: absolute;
    right: -10px;
    bottom: 34px;
    padding: 12px 18px;
    color: var(--white);
    background: var(--ink);
    font-size: 0.72rem;
    font-weight: 800;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(74px, 8vw, 120px);
    background: var(--cream);
}

.page-hero::after {
    position: absolute;
    right: -10vw;
    bottom: -23vw;
    width: 50vw;
    aspect-ratio: 1;
    border: 1px solid rgba(17, 43, 59, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(17, 43, 59, 0.025), 0 0 0 140px rgba(17, 43, 59, 0.018);
    content: "";
}

.page-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.76fr) minmax(480px, 1fr);
    align-items: center;
    gap: clamp(60px, 8vw, 130px);
}

.page-hero__content h1 {
    margin-bottom: 30px;
    font-size: clamp(3.4rem, 6vw, 6.4rem);
    font-weight: 860;
}

.page-hero__content > p:not(.eyebrow) {
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 1.1rem;
}

.page-hero__image {
    position: relative;
    margin: 0;
}

.page-hero__image::before {
    position: absolute;
    z-index: -1;
    inset: 22px -22px -22px 22px;
    background: var(--sky);
    content: "";
}

.page-hero__image img {
    width: 100%;
    min-height: 480px;
    aspect-ratio: 1.1;
    object-fit: cover;
}

.page-hero__image figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 360px;
    padding: 17px 22px;
    color: var(--white);
    background: var(--ink);
    font-size: 0.76rem;
    font-weight: 700;
}

.page-hero__image figcaption span {
    display: block;
    margin-bottom: 4px;
    color: var(--sky);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.page-hero__image--portrait {
    justify-self: end;
    width: min(100%, 520px);
}

.page-hero__image--portrait img {
    aspect-ratio: 0.74;
}

.key-facts {
    color: var(--white);
    background: var(--ink);
}

.key-facts__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.key-facts__grid > div {
    padding: 34px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.key-facts__grid > div:last-child {
    border-right: 0;
}

.key-facts span {
    display: block;
    color: var(--sky);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.key-facts strong {
    display: block;
    margin-block: 5px;
    font-family: var(--font-serif);
    font-size: 1.8rem;
}

.key-facts p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
}

.discovery-promise__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(480px, 1fr);
    gap: clamp(70px, 10vw, 150px);
}

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

.step-list li,
.journey-list li {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 24px;
    padding-block: 30px;
    border-bottom: 1px solid var(--line);
}

.step-list > li > span,
.journey-list > li > span {
    color: var(--red);
    font-family: var(--font-serif);
    font-size: 1rem;
}

.step-list h3,
.journey-list h3 {
    margin-bottom: 8px;
    font-size: 1.26rem;
}

.step-list p,
.journey-list p {
    margin: 0;
    color: var(--muted);
}

.region-gallery {
    color: var(--white);
    background: var(--ink-deep);
}

.region-gallery .section-heading > p {
    color: rgba(255, 255, 255, 0.7);
}

.region-gallery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.region-gallery figure {
    margin: 0;
}

.region-gallery img {
    width: 100%;
    aspect-ratio: 1.22;
    object-fit: cover;
}

.region-gallery figure:nth-child(2) {
    margin-top: 90px;
}

.region-gallery figcaption {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 18px;
}

.region-gallery figcaption strong {
    font-family: var(--font-serif);
    font-size: 1.2rem;
}

.region-gallery figcaption span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
}

.gift-section {
    background: var(--ochre);
}

.gift-section__inner {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) minmax(300px, 0.7fr);
    align-items: center;
    gap: clamp(30px, 5vw, 80px);
}

.gift-section__mark {
    color: var(--white);
    font-size: 5rem;
}

.gift-section h2 {
    margin-bottom: 0;
    font-size: clamp(2.3rem, 4.2vw, 4.3rem);
    font-weight: 850;
}

.gift-section__inner > div:last-child p {
    margin-bottom: 28px;
}

.faq__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.65fr) minmax(500px, 1fr);
    gap: clamp(70px, 10vw, 160px);
}

.faq h2 {
    font-size: clamp(2.6rem, 4.6vw, 4.6rem);
    font-weight: 850;
}

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

.accordion details {
    border-bottom: 1px solid var(--line);
}

.accordion summary {
    position: relative;
    padding: 26px 52px 26px 0;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

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

.accordion summary::after {
    position: absolute;
    top: 22px;
    right: 4px;
    color: var(--red);
    content: "+";
    font-family: var(--font-serif);
    font-size: 1.6rem;
}

.accordion details[open] summary::after {
    content: "−";
}

.accordion details p {
    max-width: 720px;
    padding: 0 52px 28px 0;
    margin: 0;
    color: var(--muted);
}

.statement-band {
    color: var(--white);
    background: var(--red);
}

.statement-band__inner {
    display: flex;
    min-height: 112px;
    align-items: center;
    justify-content: center;
    gap: 28px;
    text-align: center;
}

.statement-band p {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(0.9rem, 1.4vw, 1.12rem);
}

.statement-band i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sky);
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.path-card {
    display: flex;
    min-height: 570px;
    flex-direction: column;
    padding: 40px 34px;
    border: 1px solid var(--line);
    background: var(--white);
}

.path-card--accent {
    color: var(--white);
    border-color: var(--ink);
    background: var(--ink);
}

.path-card__tag {
    align-self: flex-start;
    padding: 6px 10px;
    color: var(--red-dark);
    background: var(--sky-light);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.path-card h3 {
    margin: 46px 0 22px;
    font-family: var(--font-serif);
    font-size: 2rem;
}

.path-card > p {
    color: var(--muted);
}

.path-card--accent > p {
    color: rgba(255, 255, 255, 0.7);
}

.path-card dl {
    margin-block: auto 30px;
}

.path-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-block: 12px;
    border-bottom: 1px solid var(--line);
    font-size: 0.76rem;
}

.path-card--accent dl div {
    border-color: rgba(255, 255, 255, 0.16);
}

.path-card dd {
    margin-bottom: 0;
    font-weight: 800;
    text-align: right;
}

.path-card a {
    display: flex;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid currentColor;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}

.source-note {
    max-width: 880px;
    margin: 28px 0 0 auto;
    color: var(--muted);
    font-size: 0.72rem;
}

.learning-journey {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--ink-deep);
}

.learning-journey__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1fr);
    gap: clamp(70px, 10vw, 150px);
}

.learning-journey__intro h2 {
    margin-bottom: 30px;
    font-size: clamp(2.9rem, 5vw, 5.2rem);
    font-weight: 850;
}

.learning-journey__intro > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.68);
}

.learning-journey .journey-list {
    border-color: rgba(255, 255, 255, 0.18);
}

.learning-journey .journey-list li {
    border-color: rgba(255, 255, 255, 0.18);
}

.learning-journey .journey-list p {
    color: rgba(255, 255, 255, 0.62);
}

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

.qualification-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.7fr);
    align-items: end;
    gap: clamp(60px, 9vw, 140px);
}

.qualification-section h2 {
    margin-bottom: 30px;
    font-size: clamp(2.8rem, 5vw, 5.1rem);
    font-weight: 850;
}

.qualification-section__grid > div:first-child > p:not(.eyebrow) {
    max-width: 750px;
    color: var(--muted);
}

.qualification-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
}

.qualification-list span {
    display: grid;
    min-height: 120px;
    place-items: center;
    padding: 20px;
    background: var(--paper);
    font-family: var(--font-serif);
    text-align: center;
}

.bia-callout {
    padding-top: 0;
}

.bia-callout__inner {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(30px, 5vw, 70px);
    padding: clamp(40px, 6vw, 76px);
    background: var(--sky);
}

.bia-callout__code {
    color: var(--white);
    font-size: clamp(4rem, 8vw, 7.4rem);
    font-weight: 900;
    letter-spacing: -0.08em;
    line-height: 0.8;
}

.bia-callout h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 3.5vw, 3.4rem);
    font-weight: 850;
}

.bia-callout p:last-child {
    margin-bottom: 0;
}

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

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-block: 1px solid var(--line);
}

.value-grid article {
    min-height: 320px;
    padding: 34px 26px;
    border-right: 1px solid var(--line);
}

.value-grid article:last-child {
    border-right: 0;
}

.value-grid span {
    color: var(--red);
    font-family: var(--font-serif);
}

.value-grid h3 {
    margin: 80px 0 16px;
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

.value-grid p {
    color: var(--muted);
    font-size: 0.9rem;
}

.history-section {
    color: var(--white);
    background: var(--red);
}

.history-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.66fr) minmax(520px, 1fr);
    gap: clamp(70px, 10vw, 160px);
}

.history-section__intro h2 {
    margin-bottom: 30px;
    font-size: clamp(3rem, 5vw, 5.2rem);
    font-weight: 850;
}

.history-section__intro .eyebrow {
    color: var(--ink-deep);
}

.history-section__intro > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
}

.timeline {
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.34);
    list-style: none;
}

.timeline li {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 30px;
    padding-block: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.timeline time {
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

.timeline h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.timeline p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.fleet-section__image {
    margin: 0 0 48px;
}

.fleet-section__image img {
    width: 100%;
    aspect-ratio: 3.1;
    object-fit: cover;
}

.fleet-section__image figcaption {
    padding-top: 12px;
    color: var(--muted);
    font-size: 0.72rem;
}

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

.fleet-grid article {
    padding: 32px;
    border: 1px solid var(--line);
    background: var(--white);
}

.fleet-card__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 42px;
    color: var(--red);
    font-family: var(--font-serif);
}

.fleet-grid h3 {
    margin-bottom: 8px;
    font-size: 1.7rem;
}

.fleet-card__type {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fleet-grid dl {
    margin-block: 28px;
}

.fleet-grid dl div {
    display: flex;
    justify-content: space-between;
    padding-block: 10px;
    border-bottom: 1px solid var(--line);
    font-size: 0.78rem;
}

.fleet-grid dd {
    margin: 0;
    font-weight: 800;
}

.fleet-grid article > p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.maintenance-story {
    color: var(--white);
    background: var(--ink);
}

.maintenance-story__grid {
    display: grid;
    grid-template-columns: minmax(500px, 1fr) minmax(0, 0.72fr);
    align-items: center;
    gap: clamp(70px, 9vw, 140px);
}

.maintenance-story figure {
    margin: 0;
}

.maintenance-story img {
    width: 100%;
    aspect-ratio: 1.45;
    object-fit: cover;
}

.maintenance-story h2 {
    margin-bottom: 30px;
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    font-weight: 850;
}

.maintenance-story__grid > div > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.7);
}

.check-list {
    padding: 0;
    margin: 30px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 12px 0 12px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.check-list li::before {
    position: absolute;
    left: 0;
    color: var(--sky);
    content: "↗";
}

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

.clubhouse-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1fr);
    align-items: center;
    gap: clamp(70px, 9vw, 140px);
}

.clubhouse-section h2 {
    margin-bottom: 30px;
    font-size: clamp(2.7rem, 4.8vw, 4.8rem);
    font-weight: 850;
}

.clubhouse-section__grid > div > p:not(.eyebrow) {
    margin-bottom: 34px;
    color: var(--muted);
}

.clubhouse-section figure {
    margin: 0;
}

.clubhouse-section img {
    width: 100%;
    aspect-ratio: 1.18;
    object-fit: cover;
}

.page-hero--practical {
    color: var(--white);
    background: var(--ink-deep);
}

.page-hero--practical .page-hero__content > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.7);
}

.contact-stack {
    display: grid;
    max-width: 520px;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.18);
}

.contact-stack a {
    display: grid;
    padding: 20px;
    background: var(--ink-deep);
    text-decoration: none;
}

.contact-stack span {
    color: var(--sky);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-stack strong {
    overflow-wrap: anywhere;
    font-size: 0.9rem;
}

.location-card {
    position: relative;
    display: grid;
    min-height: 540px;
    align-content: space-between;
    padding: clamp(36px, 6vw, 70px);
    color: var(--ink);
    background: var(--sky);
    clip-path: polygon(0 0, 100% 5%, 94% 100%, 7% 95%);
}

.location-card__code {
    font-size: clamp(4rem, 10vw, 8.8rem);
    font-weight: 900;
    letter-spacing: -0.08em;
    line-height: 0.85;
}

.location-card__runway {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    color: var(--red);
    font-family: var(--font-serif);
}

.location-card__runway i {
    height: 12px;
    border-block: 1px solid var(--ink);
    background: repeating-linear-gradient(90deg, transparent 0 20px, var(--ink) 20px 38px);
}

.location-card address {
    max-width: 390px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: normal;
}

.location-card .button {
    justify-self: start;
}

.access-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.6fr) minmax(560px, 1fr);
    gap: clamp(70px, 10vw, 160px);
}

.access-section h2 {
    font-size: clamp(3rem, 5.5vw, 5.6rem);
    font-weight: 850;
}

.route-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.route-cards article {
    padding: 34px;
    border: 1px solid var(--line);
    background: var(--white);
}

.route-cards article > span {
    color: var(--red);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.route-cards h3 {
    margin: 40px 0 22px;
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

.route-cards ol {
    padding-left: 22px;
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.route-cards li + li {
    margin-top: 12px;
}

.aerodrome-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.aerodrome-section .shell {
    position: relative;
}

.aerodrome-section .section-heading > p {
    color: rgba(255, 255, 255, 0.68);
}

.aerodrome-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.aerodrome-facts div {
    min-height: 180px;
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.aerodrome-facts dt {
    color: var(--sky);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.aerodrome-facts dd {
    margin-top: 44px;
    font-family: var(--font-serif);
    font-size: 1.7rem;
}

.aviation-warning {
    display: grid;
    grid-template-columns: 240px 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 28px 34px;
    color: var(--ink);
    background: var(--ochre);
}

.aviation-warning strong {
    font-family: var(--font-serif);
}

.aviation-warning p {
    margin: 0;
    font-size: 0.8rem;
}

.aviation-warning a {
    font-size: 0.8rem;
    font-weight: 850;
    white-space: nowrap;
}

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

.pricing-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.55fr) minmax(580px, 1fr);
    gap: clamp(70px, 10vw, 150px);
}

.pricing-section__intro h2 {
    margin-bottom: 30px;
    font-size: clamp(2.7rem, 4.7vw, 4.8rem);
    font-weight: 850;
}

.pricing-section__intro > p:not(.eyebrow) {
    color: var(--muted);
}

.price-tables {
    border-top: 1px solid var(--line);
}

.price-tables article {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    padding-block: 30px;
    border-bottom: 1px solid var(--line);
}

.price-tables h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
}

.price-tables dl {
    margin: 0;
}

.price-tables dl div {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    padding-block: 8px;
    font-size: 0.84rem;
}

.price-tables dd {
    margin: 0;
    font-weight: 850;
    white-space: nowrap;
}

.price-tables article > p {
    grid-column: 2;
    margin: 0;
    color: var(--muted);
    font-size: 0.72rem;
}

.no-tax-section {
    padding-top: 0;
    background: var(--cream);
}

.no-tax-section__inner {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 40px;
    padding: clamp(36px, 5vw, 64px);
    border: 1px solid var(--line);
    background: var(--paper);
}

.no-tax-section__inner > span {
    font-size: 4rem;
    text-align: center;
}

.no-tax-section h2 {
    margin-bottom: 12px;
    font-size: clamp(2.3rem, 4vw, 4rem);
    font-weight: 850;
}

.no-tax-section p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.legal-page {
    padding-block: clamp(80px, 10vw, 140px);
}

.legal-page__inner {
    max-width: 860px;
}

.legal-page h1 {
    margin-bottom: 30px;
    font-size: clamp(3rem, 6vw, 5.8rem);
    font-weight: 850;
}

.legal-page__lead {
    margin-bottom: 64px;
    color: var(--muted);
    font-family: var(--font-serif);
    font-size: 1.3rem;
}

.legal-page h2 {
    margin: 46px 0 15px;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.legal-page p:not(.legal-page__lead) {
    color: var(--muted);
}

.legal-page .text-link {
    margin-top: 40px;
}

.footer-cta {
    color: var(--white);
    background: var(--red);
}

.footer-cta__inner {
    display: grid;
    min-height: 300px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 60px;
}

.footer-cta .eyebrow {
    color: var(--ink-deep);
}

.footer-cta h2 {
    max-width: 850px;
    margin-bottom: 0;
    font-size: clamp(2.5rem, 4.8vw, 4.8rem);
    font-weight: 850;
}

.footer-cta__actions {
    display: grid;
    justify-items: start;
    gap: 22px;
}

.site-footer {
    color: rgba(255, 255, 255, 0.72);
    background: var(--ink-deep);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 0.75fr);
    gap: clamp(40px, 6vw, 90px);
    padding-block: 76px;
}

.brand--footer .brand__text {
    color: var(--white);
}

.site-footer__brand > p {
    max-width: 360px;
    margin: 26px 0 0;
    font-size: 0.84rem;
}

.site-footer h2 {
    margin-bottom: 22px;
    color: var(--sky);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer address {
    margin-bottom: 14px;
    font-size: 0.84rem;
    font-style: normal;
}

.site-footer__grid > div:not(:first-child) > a {
    display: block;
    margin-bottom: 10px;
    font-size: 0.82rem;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.social-links a {
    font-size: 0.76rem;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    padding-block: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.7rem;
}

.site-footer__bottom p {
    margin: 0;
}

.has-motion [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.has-motion [data-reveal="right"] {
    transform: translateX(32px);
}

.has-motion [data-reveal].is-visible {
    opacity: 1;
    transform: translate(0);
}

.error-page {
    position: relative;
    min-height: 68vh;
    overflow: hidden;
    padding-block: clamp(90px, 13vw, 180px);
    background: var(--cream);
}

.error-page::after {
    position: absolute;
    right: -8vw;
    bottom: -22vw;
    width: 52vw;
    height: 52vw;
    border: 2px solid rgba(227, 38, 46, 0.18);
    border-radius: 50%;
    content: "";
}

.error-page__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.error-page__number {
    display: block;
    margin-bottom: -0.18em;
    color: var(--sky);
    font-family: var(--font-serif);
    font-size: clamp(5rem, 15vw, 11rem);
    font-weight: 700;
    letter-spacing: -0.08em;
    line-height: 0.75;
}

.error-page h1 {
    margin-bottom: 26px;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.error-page p:not(.eyebrow) {
    max-width: 620px;
    color: var(--muted);
}

@media (max-width: 1120px) {
    :root {
        --header-height: 82px;
    }

    .brand img {
        width: 58px;
        height: 58px;
    }

    .main-nav {
        gap: 18px;
    }

    .main-nav ul {
        gap: 16px;
    }

    .main-nav li a {
        font-size: 0.76rem;
    }

    .member-link {
        padding-inline: 10px;
    }

    .hero__grid,
    .page-hero__grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.72fr);
        gap: 50px;
    }

    .region-showcase__grid,
    .volunteer-story__grid,
    .learn-teaser__grid,
    .maintenance-story__grid,
    .clubhouse-section__grid {
        gap: 70px;
    }

    .gift-section__inner {
        grid-template-columns: 70px 1fr;
    }

    .gift-section__inner > div:last-child {
        grid-column: 2;
    }

    .bia-callout__inner {
        grid-template-columns: 130px 1fr;
    }

    .bia-callout .button {
        grid-column: 2;
        justify-self: start;
    }

    .site-footer__grid {
        grid-template-columns: 1.2fr repeat(3, 0.8fr);
        gap: 38px;
    }
}

@media (max-width: 920px) {
    :root {
        --shell: min(100% - 36px, 720px);
    }

    .utility-bar {
        display: none;
    }

    .nav-toggle {
        position: relative;
        z-index: 1002;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        border: 0;
        color: var(--ink);
        background: transparent;
        cursor: pointer;
    }

    .nav-toggle__label {
        font-size: 0.72rem;
        font-weight: 850;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .nav-toggle__icon {
        position: relative;
        display: block;
        width: 28px;
        height: 18px;
    }

    .nav-toggle__icon i {
        position: absolute;
        right: 0;
        width: 28px;
        height: 2px;
        background: currentColor;
        transition: transform 180ms ease, top 180ms ease;
    }

    .nav-toggle__icon i:first-child {
        top: 4px;
    }

    .nav-toggle__icon i:last-child {
        top: 13px;
        width: 20px;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:first-child {
        top: 8px;
        transform: rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:last-child {
        top: 8px;
        width: 28px;
        transform: rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        z-index: 1001;
        inset: var(--header-height) 0 0;
        display: grid;
        align-content: center;
        padding: 38px calc((100vw - var(--shell)) / 2);
        color: var(--white);
        background: var(--ink-deep);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-14px);
        transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav ul {
        display: grid;
        gap: 0;
    }

    .main-nav li a {
        display: block;
        padding: 13px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        font-family: var(--font-serif);
        font-size: clamp(1.4rem, 5vw, 2.2rem);
    }

    .main-nav li a::after {
        display: none;
    }

    .member-link {
        justify-self: start;
        margin-top: 30px;
        color: var(--ink);
        background: var(--sky);
    }

    .hero__grid,
    .page-hero__grid,
    .region-showcase__grid,
    .volunteer-story__grid,
    .learn-teaser__grid,
    .discovery-promise__grid,
    .faq__grid,
    .learning-journey__grid,
    .qualification-section__grid,
    .history-section__grid,
    .maintenance-story__grid,
    .clubhouse-section__grid,
    .access-section__grid,
    .pricing-section__grid {
        grid-template-columns: 1fr;
    }

    .hero__grid {
        min-height: auto;
        padding-block: 80px 100px;
    }

    .hero__content,
    .page-hero__content {
        max-width: 740px;
    }

    .hero-visual {
        width: min(100%, 570px);
        margin-inline: auto;
    }

    .hero-visual__frame {
        aspect-ratio: 0.95;
    }

    .intro-band__inner {
        grid-template-columns: 1fr auto;
    }

    .intro-band .route-line {
        display: none;
    }

    .section-heading {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 28px;
    }

    .section-heading > p {
        max-width: 640px;
    }

    .experience-grid,
    .path-grid,
    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .experience-card {
        min-height: 360px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .experience-card:last-child {
        border-bottom: 0;
    }

    .experience-card__number {
        margin-bottom: 42px;
    }

    .region-showcase__copy {
        max-width: 650px;
    }

    .region-collage {
        min-height: 620px;
    }

    .volunteer-story__grid,
    .learn-teaser__grid,
    .maintenance-story__grid,
    .clubhouse-section__grid {
        gap: 60px;
    }

    .learn-teaser__image,
    .page-hero__image--portrait {
        justify-self: center;
        width: min(100%, 560px);
    }

    .page-hero__image {
        order: -1;
    }

    .page-hero__image img {
        min-height: 380px;
    }

    .page-hero__content {
        padding-top: 30px;
    }

    .key-facts__grid {
        grid-template-columns: 1fr 1fr;
    }

    .key-facts__grid > div:nth-child(2) {
        border-right: 0;
    }

    .key-facts__grid > div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .gift-section__inner {
        grid-template-columns: 70px 1fr;
    }

    .statement-band__inner {
        flex-wrap: wrap;
        padding-block: 28px;
    }

    .path-card {
        min-height: 0;
    }

    .path-card dl {
        margin-top: 40px;
    }

    .bia-callout__inner {
        grid-template-columns: 1fr;
    }

    .bia-callout .button {
        grid-column: auto;
    }

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

    .value-grid article:nth-child(2) {
        border-right: 0;
    }

    .value-grid article:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .fleet-section__image img {
        aspect-ratio: 2.2;
    }

    .contact-stack {
        max-width: 100%;
    }

    .location-card {
        order: -1;
    }

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

    .aviation-warning {
        grid-template-columns: 1fr;
    }

    .price-tables {
        margin-top: 20px;
    }

    .footer-cta__inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-block: 70px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .has-motion [data-reveal="right"] {
        transform: translateY(24px);
    }
}

@media (max-width: 640px) {
    :root {
        --shell: min(100% - 28px, 540px);
        --header-height: 74px;
    }

    body {
        font-size: 16px;
    }

    .brand img {
        width: 50px;
        height: 50px;
    }

    .brand__text strong {
        font-size: 0.92rem;
    }

    .brand__text > span {
        font-size: 0.78rem;
    }

    .nav-toggle__label {
        display: none;
    }

    .section {
        padding-block: 80px;
    }

    .hero__grid {
        padding-block: 64px 80px;
    }

    .hero h1 {
        font-size: clamp(3.4rem, 18vw, 5rem);
    }

    .hero__proofs {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero__proofs li {
        grid-template-columns: 80px 1fr;
        align-items: baseline;
    }

    .hero-visual {
        padding-right: 14px;
    }

    .hero-visual__badge {
        width: 92px;
        border-width: 6px;
    }

    .intro-band__inner {
        min-height: 150px;
        grid-template-columns: 1fr;
        align-content: center;
        gap: 12px;
    }

    .intro-band__location {
        justify-self: start;
    }

    .section-heading h2,
    .section-heading--stacked h2 {
        font-size: clamp(2.4rem, 13vw, 3.8rem);
    }

    .experience-card {
        padding-inline: 24px;
    }

    .experience-card a {
        right: 24px;
        left: 24px;
    }

    .region-collage {
        display: grid;
        min-height: 0;
        gap: 36px;
    }

    .region-collage figure {
        position: relative;
        width: 100%;
    }

    .region-collage__main img,
    .region-collage__secondary img {
        aspect-ratio: 1.05;
    }

    .volunteer-story__copy h2,
    .learn-teaser h2,
    .faq h2,
    .learning-journey__intro h2,
    .qualification-section h2,
    .history-section__intro h2,
    .maintenance-story h2,
    .clubhouse-section h2,
    .access-section h2,
    .pricing-section__intro h2 {
        font-size: clamp(2.5rem, 13vw, 3.8rem);
    }

    .learn-teaser__image::before {
        inset: 16px -12px -16px 12px;
    }

    .page-hero {
        padding-block: 50px 76px;
    }

    .page-hero__content h1 {
        font-size: clamp(3.1rem, 15vw, 4.7rem);
    }

    .page-hero__image::before {
        inset: 12px -10px -12px 10px;
    }

    .page-hero__image img {
        min-height: 300px;
        aspect-ratio: 1;
    }

    .key-facts__grid {
        grid-template-columns: 1fr;
    }

    .key-facts__grid > div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .region-gallery__grid,
    .qualification-list,
    .value-grid,
    .route-cards,
    .aerodrome-facts {
        grid-template-columns: 1fr;
    }

    .region-gallery figure:nth-child(2) {
        margin-top: 20px;
    }

    .gift-section__inner {
        grid-template-columns: 1fr;
    }

    .gift-section__mark {
        font-size: 3rem;
    }

    .gift-section__inner > div:last-child {
        grid-column: auto;
    }

    .faq__grid {
        gap: 44px;
    }

    .statement-band__inner {
        display: grid;
        gap: 14px;
    }

    .statement-band i {
        justify-self: center;
    }

    .path-card,
    .fleet-grid article,
    .route-cards article {
        padding: 28px 24px;
    }

    .timeline li {
        grid-template-columns: 76px 1fr;
        gap: 18px;
    }

    .value-grid article {
        min-height: 280px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .value-grid h3 {
        margin-top: 50px;
    }

    .fleet-section__image img {
        aspect-ratio: 1.5;
    }

    .contact-stack {
        grid-template-columns: 1fr;
    }

    .location-card {
        min-height: 480px;
        padding: 52px 34px;
    }

    .aerodrome-facts div {
        min-height: 140px;
    }

    .aerodrome-facts dd {
        margin-top: 24px;
    }

    .price-tables article {
        grid-template-columns: 1fr;
    }

    .price-tables article > p {
        grid-column: auto;
    }

    .no-tax-section__inner {
        grid-template-columns: 1fr;
    }

    .no-tax-section__inner > span {
        text-align: left;
    }

    .footer-cta__inner {
        min-height: 0;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__brand {
        grid-column: auto;
    }

    .site-footer__bottom {
        display: grid;
        gap: 6px;
    }
}

@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;
    }
}
