:root {
    --buzzard-blue: #165b86;
    --buzzard-blue-dark: #123e5b;
    --buzzard-gold: #e8b83e;
    --buzzard-cream: #fbfaf6;
    --buzzard-text: #252525;
    --buzzard-muted: #626262;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--buzzard-cream);
    color: var(--buzzard-text);
    font-family: "Libre Franklin", Arial, Helvetica, sans-serif;
    line-height: 1.7;
    margin: 0;
}

a {
    color: var(--buzzard-blue);
}

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


/* Opening video */

.home-header {
    background: #111;
}

.hero-media {
    background-image: url("/assets/img/cropped-IMG_0950.jpg");
    background-position: center;
    background-size: cover;
    height: min(100vh, 900px);
    min-height: 620px;
    overflow: hidden;
    position: relative;
}

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

.hero-shade {
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.12),
            rgba(0, 0, 0, 0.08) 45%,
            rgba(0, 0, 0, 0.58)
        );
    inset: 0;
    position: absolute;
}

.hero-branding {
    align-items: center;
    bottom: 5.5rem;
    color: #fff;
    display: flex;
    gap: 2rem;
    left: 50%;
    max-width: 1180px;
    padding: 0 2rem;
    position: absolute;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.8);
    transform: translateX(-50%);
    width: 100%;
    z-index: 2;
}

.hero-logo {
    filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.45));
    height: 175px;
    object-fit: contain;
    width: 175px;
}

.hero-branding h1 {
    font-size: clamp(2.25rem, 5vw, 4.8rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.02;
    margin: 0;
}

.hero-branding p {
    font-size: clamp(1rem, 2vw, 1.45rem);
    font-weight: 600;
    margin: 1rem 0 0;
}

.video-toggle {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    bottom: 1.5rem;
    color: #fff;
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0.5rem 0.9rem;
    position: absolute;
    right: 1.5rem;
    z-index: 3;
}

.hero-scroll {
    align-items: center;
    bottom: 1.2rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 0.72rem;
    font-weight: 700;
    gap: 0.1rem;
    left: 50%;
    letter-spacing: 0.14em;
    position: absolute;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll-arrow {
    font-size: 1.5rem;
    line-height: 1;
}


/* Navigation appears after the opening */

.site-navigation {
    background: #fff;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation-wrap {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1180px;
    min-height: 68px;
    padding: 0 1.5rem;
}

.navigation-brand {
    color: var(--buzzard-blue-dark);
    display: none;
    font-size: 1.05rem;
    font-weight: 800;
    text-decoration: none;
}

.navigation-menu {
    align-items: center;
    display: flex;
    gap: 0.15rem;
    justify-content: center;
    width: 100%;
}

.navigation-menu a {
    color: #222;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.055em;
    padding: 1.4rem 1rem;
    text-decoration: none;
    text-transform: uppercase;
}

.navigation-menu a:hover,
.navigation-menu a:focus {
    color: var(--buzzard-blue);
}

.navigation-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--buzzard-blue-dark);
    cursor: pointer;
    display: none;
    font-weight: 700;
    gap: 0.55rem;
}

.navigation-toggle-lines,
.navigation-toggle-lines::before,
.navigation-toggle-lines::after {
    background: currentColor;
    display: block;
    height: 2px;
    position: relative;
    width: 22px;
}

.navigation-toggle-lines::before,
.navigation-toggle-lines::after {
    content: "";
    left: 0;
    position: absolute;
}

.navigation-toggle-lines::before {
    top: -7px;
}

.navigation-toggle-lines::after {
    top: 7px;
}


/* Scrolling content panels */

.content-panel {
    background: var(--buzzard-cream);
    padding: clamp(4.5rem, 9vw, 8rem) 1.5rem;
}

.panel-wrap {
    margin: 0 auto;
    max-width: 900px;
}

/* ==========================================================
   OUR EXPERIENCES
========================================================== */

.photo-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:18px;
    margin-top:2rem;
}

.gallery-item{
    display:block;
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    background:#eee;
}

.gallery-item img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
    transition:.25s;
}

.gallery-item:hover img{
    transform:scale(1.05);
}

.lightbox{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    z-index:5000;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.lightbox img{
    max-width:94vw;
    max-height:94vh;
}

.section-eyebrow {
    color: var(--buzzard-blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin: 0 0 1rem;
    text-transform: uppercase;
}

.content-panel h2 {
    color: #1f1f1f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.13;
    margin: 0 0 2rem;
}

.panel-lead {
    color: #373737;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 2.3vw, 1.65rem);
    line-height: 1.65;
}

.content-panel p {
    margin: 0 0 1.5rem;
}

.panel-button {
    background: var(--buzzard-blue);
    border: 2px solid var(--buzzard-blue);
    color: #fff;
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-top: 1rem;
    padding: 0.85rem 1.25rem;
    text-decoration: none;
    text-transform: uppercase;
}

.panel-button:hover,
.panel-button:focus {
    background: var(--buzzard-blue-dark);
    border-color: var(--buzzard-blue-dark);
    color: #fff;
}

.panel-button-outline {
    background: transparent;
    color: var(--buzzard-blue);
}

.photo-panel {
    background-image: var(--panel-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: clamp(420px, 70vw, 760px);
    position: relative;
}

.photo-panel-tall {
    min-height: clamp(520px, 78vw, 900px);
}

.photo-panel-shade {
    background: rgba(0, 0, 0, 0.05);
    inset: 0;
    position: absolute;
}

.contact-panel {
    background: #f1eee5;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}


/* Footer */

.site-footer {
    background: var(--buzzard-blue-dark);
    color: #dce9ef;
    padding: 4rem 1.5rem 2rem;
}

.site-footer .container {
    margin: 0 auto;
    max-width: 1180px;
}

.footer-brand {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-heading {
    color: #fff;
    font-size: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.55rem;
}

.footer-links a,
.footer-bottom a {
    color: #dce9ef;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}


/* Mobile */

@media (min-width: 1100px) {
    .photo-panel {
        background-attachment: fixed;
    }
}

@media (max-width: 899px) {
    .hero-media {
        height: 78vh;
        min-height: 560px;
    }

    .hero-branding {
        align-items: flex-start;
        bottom: 4.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-logo {
        height: 115px;
        width: 115px;
    }

    .navigation-brand {
        display: block;
    }

    .navigation-toggle {
        display: flex;
    }

    .navigation-menu {
        align-items: stretch;
        background: #fff;
        border-top: 1px solid #ddd;
        display: none;
        flex-direction: column;
        left: 0;
        padding: 0.5rem 1.5rem 1rem;
        position: absolute;
        right: 0;
        top: 100%;
    }

    .navigation-menu.is-open {
        display: flex;
    }

    .navigation-menu a {
        border-bottom: 1px solid #eee;
        padding: 0.85rem 0;
    }
}

@media (max-width: 575px) {
    .hero-media {
        height: 72vh;
        min-height: 520px;
    }

    .hero-branding {
        padding: 0 1.25rem;
    }

    .hero-branding h1 {
        font-size: 2.15rem;
    }

    .hero-branding p {
        font-size: 0.95rem;
    }

    .hero-logo {
        height: 90px;
        width: 90px;
    }

    .video-toggle {
        display: none;
    }

    .content-panel {
        padding: 4rem 1.25rem;
    }

    .photo-panel,
    .photo-panel-tall {
        min-height: 430px;
    }

    .contact-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .panel-button {
        text-align: center;
    }
}

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

    .hero-video {
        display: none;
    }
}


/* Interior pages */

.page-hero {
    align-items: flex-end;
    background-image: var(--page-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    min-height: clamp(430px, 62vw, 720px);
    padding: 4rem 1.5rem;
    position: relative;
}

.page-hero-tall {
    min-height: clamp(520px, 72vw, 850px);
}

.page-hero-shade {
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.65)
        );
    inset: 0;
    position: absolute;
}

.page-hero-content {
    color: #fff;
    margin: 0 auto;
    max-width: 1180px;
    position: relative;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.75);
    width: 100%;
    z-index: 1;
}

.page-hero-content .section-eyebrow {
    color: #fff;
}

.page-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 400;
    line-height: 1;
    margin: 0;
}

.starter-gallery {
    columns: 3 240px;
    column-gap: 1rem;
    margin: 3rem 0;
}

.starter-gallery img {
    border-radius: 3px;
    margin: 0 0 1rem;
    width: 100%;
}

.gallery-note {
    color: var(--buzzard-muted);
    font-style: italic;
}

.faq-list details {
    border-bottom: 1px solid #d5d1c7;
    padding: 1.25rem 0;
}

.faq-list summary {
    color: var(--buzzard-blue-dark);
    cursor: pointer;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.faq-list details p {
    margin: 1rem 0 0;
}

.contact-card {
    background: #f1eee5;
    border-left: 5px solid var(--buzzard-blue);
    margin: 2.5rem 0;
    padding: 2rem;
}

.contact-card h3 {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    margin: 0 0 0.35rem;
    text-transform: uppercase;
}

.contact-card p {
    font-size: clamp(1.1rem, 3vw, 1.45rem);
    margin: 0 0 1.5rem;
    overflow-wrap: anywhere;
}

.contact-card p:last-child {
    margin-bottom: 0;
}



/* Balloon fleet page */

.fleet-introduction {
    background: #fbfaf6;
}

.fleet-section {
    background: #f2efe7;
    padding: clamp(4.5rem, 8vw, 7.5rem) 1.5rem;
}

.fleet-wrap {
    margin: 0 auto;
    max-width: 1180px;
}

.fleet-heading {
    margin: 0 auto clamp(3.5rem, 7vw, 6rem);
    max-width: 820px;
    text-align: center;
}

.fleet-heading h2 {
    color: #202020;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 1.25rem;
}

.fleet-heading p:last-child {
    color: var(--buzzard-muted);
    font-size: 1.1rem;
}

.balloon-profile {
    align-items: center;
    background: #fff;
    box-shadow: 0 14px 42px rgba(30, 35, 38, 0.09);
    display: grid;
    gap: clamp(2rem, 5vw, 5rem);
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    margin: 0 0 clamp(3rem, 6vw, 5.5rem);
    min-height: 520px;
    overflow: hidden;
}

.balloon-profile-reverse .balloon-photo {
    order: 2;
}

.balloon-profile-reverse .balloon-story {
    order: 1;
}

.balloon-photo {
    align-self: stretch;
    background: #e8e5dc;
    min-height: 520px;
}

.balloon-photo img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.balloon-story {
    padding: clamp(2rem, 5vw, 4.5rem);
}

.balloon-kicker {
    color: var(--buzzard-blue);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin: 0 0 0.8rem;
    text-transform: uppercase;
}

.balloon-story h3 {
    color: #202020;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1;
    margin: 0 0 1.5rem;
}

.balloon-lead {
    color: #353535;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.55;
}

.balloon-details {
    border-top: 1px solid #dedbd2;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 2rem 0 0;
    padding-top: 1.5rem;
}

.balloon-details div {
    min-width: 0;
}

.balloon-details dt {
    color: var(--buzzard-blue-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.balloon-details dd {
    margin: 0;
}

.historic-fleet {
    background: #ded9ce;
}

.historic-fleet .balloon-profile {
    background: #f9f7f1;
}

.fleet-closing {
    text-align: center;
}

@media (max-width: 799px) {
    .balloon-profile {
        display: flex;
        flex-direction: column;
        gap: 0;
        min-height: 0;
    }

    .balloon-profile-reverse .balloon-photo,
    .balloon-profile-reverse .balloon-story {
        order: initial;
    }

    .balloon-photo {
        min-height: 420px;
        width: 100%;
    }

    .balloon-story {
        width: 100%;
    }
}

@media (max-width: 499px) {
    .fleet-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .balloon-photo {
        min-height: 360px;
    }

    .balloon-details {
        grid-template-columns: 1fr;
    }
}



/* Pilot profiles */

.pilot-section{
    background:#f5f2ea;
    padding:5rem 1.5rem;
}

.pilot-wrap{
    max-width:1280px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:2.5rem;
}

.pilot-profile{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 36px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
}

.pilot-profile:first-child{
    grid-column:1 / -1;
    display:grid;
    grid-template-columns:380px 1fr;
}

.pilot-photo{
    background:#ece7de;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:2rem;
}

.pilot-photo img{
    max-width:100%;
    max-height:520px;
    width:auto;
    height:auto;
    object-fit:contain;
}

.pilot-story{
    padding:2.5rem;
}

.pilot-story h2{
    margin:0 0 1rem;
    font-family:Georgia,serif;
    font-size:2.3rem;
}

.pilot-story p{
    line-height:1.75;
    margin-bottom:1.2rem;
}

.pilot-subtitle{
    color:#8c5a00;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
}

@media(max-width:1000px){

    .pilot-wrap{
        grid-template-columns:1fr;
    }

    .pilot-profile:first-child{
        display:flex;
        flex-direction:column;
    }

}



/* Recovered Experiences gallery */

.experience-gallery-section {
    background: #f4f1e9;
    padding: clamp(4rem, 8vw, 7rem) 1.25rem;
}

.experience-gallery-wrap {
    margin: 0 auto;
    max-width: 1380px;
}

.experience-gallery-wrap h2 {
    color: #202020;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    font-weight: 400;
    margin: 0 0 2.5rem;
    text-align: center;
}

.experience-gallery {
    columns: 4 260px;
    column-gap: 1rem;
}

.experience-photo {
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: block;
    margin: 0 0 1rem;
    overflow: hidden;
}

.experience-photo img {
    display: block;
    height: auto;
    transition: transform 180ms ease;
    width: 100%;
}

.experience-photo:hover img,
.experience-photo:focus img {
    transform: scale(1.025);
}

.gallery-lightbox {
    align-items: center;
    background: rgba(0, 0, 0, 0.94);
    display: none;
    inset: 0;
    justify-content: center;
    padding: 3.5rem;
    position: fixed;
    z-index: 10000;
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox img {
    max-height: 90vh;
    max-width: 90vw;
    object-fit: contain;
}

.gallery-lightbox button {
    background: rgba(0, 0, 0, 0.45);
    border: 0;
    color: #fff;
    cursor: pointer;
    font-size: 2.25rem;
    line-height: 1;
    padding: 0.75rem 1rem;
    position: absolute;
}

.gallery-lightbox-close {
    right: 1rem;
    top: 1rem;
}

.gallery-lightbox-previous {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 600px) {
    .experience-gallery {
        columns: 2 145px;
    }

    .gallery-lightbox {
        padding: 3.5rem 1rem;
    }

    .gallery-lightbox button {
        font-size: 1.6rem;
    }
}



/* About Taking Rides */

.ride-information {
    background: #f5f2ea;
    padding: clamp(4rem, 8vw, 7rem) 1.25rem;
}

.ride-wrap,
.movie-version-wrap {
    margin: 0 auto;
    max-width: 1180px;
}

.ride-introduction {
    align-items: center;
    background: #fff;
    box-shadow: 0 14px 42px rgba(30, 35, 38, 0.09);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    margin-bottom: 3rem;
    overflow: hidden;
}

.ride-copy {
    padding: clamp(2rem, 5vw, 4.5rem);
}

.ride-copy p {
    font-size: 1.1rem;
    line-height: 1.75;
}

.ride-photo {
    align-self: stretch;
    min-height: 480px;
}

.ride-photo img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

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

.ride-detail {
    background: #fff;
    box-shadow: 0 10px 30px rgba(30, 35, 38, 0.07);
    padding: clamp(2rem, 4vw, 3rem);
}

.ride-detail h2,
.movie-version-heading h2 {
    color: #202020;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    margin: 0 0 1.25rem;
}

.ride-detail-image {
    display: block;
    margin-top: 1.5rem;
    width: 100%;
}

.movie-version {
    background: #dfd8ca;
    padding: clamp(4rem, 8vw, 7rem) 1.25rem;
}

.movie-version-heading {
    margin-bottom: 2.5rem;
    text-align: center;
}

.movie-version-layout {
    align-items: center;
    background: #fff;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    overflow: hidden;
}

.movie-version-copy {
    padding: clamp(2rem, 5vw, 4.5rem);
}

.movie-version-copy p {
    line-height: 1.75;
}

.movie-version-photo {
    align-self: stretch;
    min-height: 520px;
}

.movie-version-photo img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

@media (max-width: 799px) {
    .ride-introduction,
    .movie-version-layout {
        display: flex;
        flex-direction: column;
    }

    .ride-details {
        grid-template-columns: 1fr;
    }

    .ride-photo,
    .movie-version-photo {
        min-height: 380px;
        width: 100%;
    }
}



/* Crewing page */

.crewing-section {
    background: #f4f1e9;
    padding: clamp(4rem, 8vw, 7rem) 1.25rem;
}

.crewing-wrap {
    margin: 0 auto;
    max-width: 1180px;
}

.crewing-heading {
    margin-bottom: 3rem;
    text-align: center;
}

.crewing-heading h2 {
    color: #202020;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    font-weight: 400;
    margin: 0;
}

.crewing-question {
    align-items: center;
    background: #fff;
    box-shadow: 0 12px 36px rgba(30, 35, 38, 0.09);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.crewing-question-reverse .crewing-copy {
    order: 2;
}

.crewing-question-reverse .crewing-photo {
    order: 1;
}

.crewing-copy {
    padding: clamp(2rem, 5vw, 4rem);
}

.crewing-copy h3 {
    color: #202020;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin: 0 0 1.25rem;
}

.crewing-copy p {
    font-size: 1.08rem;
    line-height: 1.75;
}

.crewing-copy a {
    font-weight: 700;
}

.crewing-really {
    border-top: 1px solid #ded9cf;
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.crewing-photo {
    align-self: stretch;
    background: #e4dfd5;
    margin: 0;
    min-height: 390px;
    position: relative;
}

.crewing-photo img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.crewing-photo figcaption {
    background: rgba(0, 0, 0, 0.68);
    bottom: 0;
    color: #fff;
    left: 0;
    padding: 0.7rem 1rem;
    position: absolute;
    right: 0;
}

@media (max-width: 799px) {
    .crewing-question {
        display: flex;
        flex-direction: column;
    }

    .crewing-question-reverse .crewing-copy,
    .crewing-question-reverse .crewing-photo {
        order: initial;
    }

    .crewing-photo {
        min-height: 320px;
        width: 100%;
    }
}


/* Crew Corner links */

.crew-corner-promo,
.crew-corner-callout {
    align-items: center;
    background: #fff;
    box-shadow: 0 10px 30px rgba(30, 35, 38, 0.08);
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    margin: 0 0 2.5rem;
    padding: 1.75rem 2rem;
}

.crew-corner-promo h3,
.crew-corner-callout h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0 0 0.35rem;
}

.crew-corner-promo p,
.crew-corner-callout p {
    margin: 0;
}

.crew-corner-promo a,
.crew-corner-callout a {
    font-weight: 700;
}

@media (max-width: 700px) {
    .crew-corner-promo,
    .crew-corner-callout {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
    }
}



/* Mascots page */

.mascots-section {
    background: #f4f1e9;
    padding: clamp(4rem, 8vw, 7rem) 1.25rem;
}

.mascots-wrap {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1100px;
}

.mascot-card {
    background: #fff;
    box-shadow: 0 12px 36px rgba(30, 35, 38, 0.09);
    overflow: hidden;
    text-align: center;
}

.mascot-card img {
    display: block;
    height: 420px;
    object-fit: cover;
    width: 100%;
}

.mascot-card h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 400;
    margin: 1.5rem 1.5rem 0.4rem;
}

.mascot-card p {
    margin: 0 1.5rem 1.75rem;
}

@media (max-width: 700px) {
    .mascots-wrap {
        grid-template-columns: 1fr;
    }

    .mascot-card img {
        height: auto;
    }
}


/* Crewing related links */

.crew-links {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2.5rem;
}

.crew-links .crew-corner-callout {
    margin: 0;
}

@media (max-width: 700px) {
    .crew-links {
        grid-template-columns: 1fr;
    }
}


/* Photo collection links */

.photo-collection-links {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 2.5rem;
}

.photo-collection-links .crew-corner-promo {
    margin: 0;
}

@media (max-width: 700px) {
    .photo-collection-links {
        grid-template-columns: 1fr;
    }
}


/* Video page */

.video-page {
    background: #f4f1e9;
    padding: clamp(4rem, 8vw, 7rem) 1.25rem;
}

.video-page-wrap {
    margin: 0 auto;
    max-width: 1100px;
}

.video-frame {
    background: #000;
    box-shadow: 0 14px 42px rgba(30, 35, 38, 0.12);
}

.video-frame video {
    display: block;
    height: auto;
    width: 100%;
}


/* Poland championship page */

.poland-intro {
    margin: 0 auto 3rem;
    max-width: 900px;
    text-align: center;
}

.poland-intro h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 400;
    margin: 0 0 1.25rem;
}

.poland-intro p {
    font-size: 1.1rem;
    line-height: 1.75;
}


/* Forrest Park story */

.forrest-story {
    background: #f4f1e9;
    padding: clamp(4rem, 8vw, 7rem) 1.25rem;
}

.forrest-story-wrap {
    margin: 0 auto;
    max-width: 1180px;
}

.forrest-lead {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.4;
    margin: 0 auto 3rem;
    max-width: 900px;
    text-align: center;
}

.forrest-story-gallery {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.forrest-story-gallery figure {
    background: #fff;
    box-shadow: 0 10px 30px rgba(30, 35, 38, 0.08);
    margin: 0;
}

.forrest-story-gallery img {
    display: block;
    height: 360px;
    object-fit: cover;
    width: 100%;
}

.forrest-story-gallery figcaption {
    font-size: 1rem;
    padding: 1rem 1.25rem;
}

.forrest-story-copy {
    font-size: 1.1rem;
    line-height: 1.75;
    margin: 3rem auto 0;
    max-width: 800px;
    text-align: center;
}

.forrest-signature {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-style: italic;
}

@media (max-width: 700px) {
    .forrest-story-gallery {
        grid-template-columns: 1fr;
    }

    .forrest-story-gallery img {
        height: auto;
    }
}


/* Gallery captions */

.gallery-caption {
    background: #fff;
    color: #202020;
    display: block;
    font-size: 0.95rem;
    line-height: 1.45;
    padding: 0.85rem 1rem;
}


/* Pilot gallery links */

.pilot-gallery-link {
    margin-top: 1.5rem;
}

.pilot-gallery-link a {
    font-weight: 700;
}
