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

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