﻿@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,700;0,900;1,400&display=swap");

@font-face {
    font-family: 'Druk Wide';
    src: url('/fonts/Druk Wide Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bvu-navy: #0C2340;
    --bvu-gold: #F6BE00;
    --bvu-white: #FFFFFF;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Aktiv Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--bvu-navy);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

/* ========== HEADER ========== */
.site-header {
    background: var(--white);
    width: 100%;
}

.header-top {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 29px 95px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 72px;
    width: auto;
    max-width: none;
    display: block;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    margin-left: 10px;
}

.header-top-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* The <form> wrapping the search bar is a flex item — let it shrink */
.header-top-row form {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 355px;
}

.search-bar {
    width: 100%;
    max-width: 355px;
    height: 53px;
    border: 1px solid var(--bvu-navy);
    border-radius: 10px;
    background: var(--white);
    opacity: 0.6;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 10px;
}

    .search-bar svg {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
        stroke: var(--bvu-navy);
        fill: none;
    }

    .search-bar input {
        border: none;
        outline: none;
        font-family: inherit;
        font-size: 16px;
        color: var(--bvu-navy);
        width: 100%;
        background: transparent;
    }

        .search-bar input::placeholder {
            color: #999;
        }

.header-link {
    font-size: 20px;
    color: var(--bvu-navy);
    font-weight: 400;
    white-space: nowrap;
}

.header-link:hover,
.header-link:focus {
    color: var(--bvu-navy);
}

.btn-connect {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bvu-navy);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background 220ms ease-out, transform 220ms ease-out, box-shadow 220ms ease-out;
}

.btn-connect:hover,
.btn-connect:focus {
    background: var(--bvu-navy);
    color: var(--white);
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
    text-decoration: none;
}

.main-nav {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 14px 95px 0;
    display: flex;
    align-items: center;
}

    .main-nav a {
        padding: 10px 0;
        margin-right: 40px;
        font-size: 20px;
        font-weight: 400;
        color: var(--bvu-navy);
        border-bottom: 3px solid transparent;
        white-space: nowrap;
    }

        .main-nav a.active {
            font-weight: 700;
            border-bottom-color: var(--bvu-navy);
        }

/* EPiServer MenuList renders .nav-item wrappers — style them to match index.html plain links */
.main-nav .nav-item {
    position: relative;
    margin-right: 40px;
    flex-shrink: 0;
}

.main-nav .nav-item > a {
    display: block;
    padding: 10px 0;
    margin-right: 0;
    font-size: 20px;
    font-weight: 400;
    color: var(--bvu-navy);
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.main-nav .nav-item.active > a,
.main-nav .nav-item > a.active {
    font-weight: 700;
    border-bottom-color: var(--bvu-navy);
}

.main-nav .nav-item > a:hover {
    border-bottom-color: var(--bvu-navy);
}

/* ===== DESKTOP DROPDOWNS ===== */
.main-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    background: var(--white);
    border: 1px solid rgba(12, 35, 64, 0.15);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(12, 35, 64, 0.12);
    padding: .5rem 0;
    padding-top: calc(.5rem + 4px);
    min-width: 220px;
    list-style: none;
    margin: 0;
}

.main-nav .nav-item:hover > .dropdown-menu {
    display: block;
}

.main-nav .dropdown-menu li {
    position: relative;
}

.main-nav .dropdown-menu a {
    display: block;
    padding: .5rem 1.25rem;
    font-size: 16px;
    font-weight: 400;
    color: var(--bvu-navy);
    border-bottom: none;
    margin-right: 0;
    white-space: nowrap;
}

.main-nav .dropdown-menu a:hover {
    background-color: #f5f7fa;
}

.main-nav .dropdown-menu li.active > a,
.main-nav .dropdown-menu a.active,
.main-nav .dropdown-menu .dropdown-submenu li.active > a {
    font-weight: bold;
}

.main-nav .dropdown-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 1001;
    background: var(--white);
    border: 1px solid rgba(12, 35, 64, 0.15);
    border-radius: 8px;
    box-shadow: 4px 0 16px rgba(12, 35, 64, 0.12);
    padding: .5rem 0;
    min-width: 220px;
    list-style: none;
    margin: 0;
}

.main-nav .dropdown-menu li:hover > .dropdown-submenu {
    display: block;
}

/* ========== HAMBURGER & MOBILE NAV ========== */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
}

    .hamburger span {
        display: block;
        width: 26px;
        height: 3px;
        background: var(--bvu-navy);
        border-radius: 2px;
    }

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bvu-navy);
    z-index: 999;
    overflow-y: auto;
}

    .mobile-nav.open {
        display: block;
    }

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    .mobile-nav-header img {
        height: 40px;
        filter: brightness(0) invert(1);
    }

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-body {
    padding: 16px 20px 40px;
}

/* Search bar inside the mobile nav overlay — combined selector beats single-class .search-bar rules */
.search-bar.mobile-nav-search {
    max-width: none;
    width: 100%;
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 20px;
}

.search-bar.mobile-nav-search svg {
    stroke: var(--white);
}

.search-bar.mobile-nav-search input {
    color: var(--white);
}

.search-bar.mobile-nav-search input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.mobile-nav-section {
    margin-bottom: 20px;
}

    .mobile-nav-section h3 {
        font-family: 'Merriweather', serif;
        font-weight: 900;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--bvu-gold);
        margin-bottom: 12px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .mobile-nav-section a {
        display: block;
        color: var(--white);
        font-size: 18px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

/* ===== MOBILE NAV ACCORDION ===== */
.mobile-nav-accordion-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-accordion-header > a {
    flex: 1;
    border-bottom: none;
    padding-right: 8px;
}

.mobile-nav-accordion-toggle {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px 0 12px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bootstrap icon toggle */
.mobile-nav-accordion-toggle i {
    font-size: 30px;
    color: var(--bvu-gold);
    display: block;
}

.mobile-nav-accordion-toggle .nav-icon-open {
    display: none;
}

.mobile-nav-accordion.open .mobile-nav-accordion-toggle .nav-icon-closed {
    display: none;
}

.mobile-nav-accordion.open .mobile-nav-accordion-toggle .nav-icon-open {
    display: block;
}

/* Child list — hidden by default, shown when .open */
.mobile-nav-accordion-body {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-accordion.open .mobile-nav-accordion-body {
    display: block;
}

.mobile-nav-accordion-body li a {
    display: block;
    color: var(--white);
    font-size: 16px;
    padding: 10px 0 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-connect {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--bvu-gold);
    background-color: var(--bvu-gold);
    color: var(--bvu-navy);
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 16px;
    border-radius: 10px;
    margin-top: 24px;
    min-height: 66px;
    border: none;
    transition: background 150ms ease-out;
}

.mobile-nav-connect:hover,
.mobile-nav-connect:focus {
    background: var(--bvu-white);
    color: var(--bvu-navy);
}

/* ========== BREADCRUMB ========== */
.breadcrumb-wrapper {
    width: 1440px;
    max-width: 100%;
    margin: 0px auto;
    padding: 8px 118px 0;
    
}

/* ========== HERO ========== */
.hero-section {
    position: relative;
}

.hero-title {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 95px 24px;
    text-align: center;
}

    .hero-title h1 {
        font-family: 'Druk Wide', 'Merriweather', serif;
        font-weight: 700;
        font-size: 77px;
        color: var(--bvu-navy);
        line-height: 1;
        text-transform: uppercase;
        letter-spacing: 0.77px;
    }

.hero-subtitle {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 95px 20px;
    text-align: center;
}

    .hero-subtitle p {
        font-family: 'Merriweather', serif;
        font-size: 18px;
        color: var(--bvu-navy);
        line-height: 1.5;
        max-width: 700px;
        margin: 0 auto;
    }

.hero-image {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 2;
    margin-bottom: -74px;
}

    .hero-image img {
        width: 100%;
        max-height: 504px;
        display: block;
        border: 2px solid var(--bvu-navy);
        object-fit: cover;
    }

.hero-navy-band {
    background: var(--bvu-navy);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-top: 100px;
    padding-bottom: 36px;
}

.hero-navy-band-inner {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 95px;
    text-align: center;
}

.hero-navy-band p {
    font-family: 'Merriweather', serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--white);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

.mid-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 28px;
    padding-top: 24px;
}

    .mid-nav > div {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 28px;
        width: 100%;
    }

    .mid-nav > div > div {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mid-nav a {
        background: var(--bvu-gold);
        color: var(--bvu-navy);
        font-size: 22px;
        font-weight: 500;
        width: 273px;
        height: 67px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 150ms ease-out;
    }

    .mid-nav a:hover,
    .mid-nav a:focus {
        background: var(--bvu-white);
    }

/* ========== SECTIONS ========== */
.section {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 72px 95px;
}

.section-title {
    font-family: 'Druk Wide', 'Merriweather', serif;
    font-weight: 700;
    font-size: 42px;
    color: var(--bvu-navy);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

/* ========== EXPLORE CARDS ========== */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.explore-card {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--bvu-navy);
    position: relative;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

    .explore-card img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

.explore-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 40%, rgba(12,35,64,0.85) 100%);
}

.explore-card-content {
    position: relative;
    z-index: 2;
    padding: 24px;
}

    .explore-card-content h3 {
        font-family: 'Merriweather', serif;
        font-weight: 900;
        font-size: 26px;
        color: var(--white);
        margin-bottom: 6px;
    }

    .explore-card-content p {
        font-size: 14px;
        color: rgba(255,255,255,0.8);
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .explore-card-content .card-link {
        font-size: 15px;
        font-weight: 700;
        color: var(--bvu-gold);
    }

/* ========== BVU EXPERIENCE (photo left + text right) ========== */
.experience-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.experience-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.3;
}

    .experience-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.experience-inner {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 95px;
    position: relative;
    z-index: 1;
    display: flex;
    gap: 56px;
    align-items: center;
}

.experience-photo {
    flex: 0 0 520px;
    border: 3px solid var(--bvu-navy);
    border-radius: 8px;
    overflow: hidden;
}

    .experience-photo img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
    }

.experience-text {
    flex: 1;
}

    .experience-text h2 {
        font-family: 'Druk Wide', 'Merriweather', serif;
        font-weight: 700;
        font-size: 48px;
        color: var(--bvu-navy);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 20px;
        line-height: 1.1;
    }

    .experience-text p {
        font-family: 'Merriweather', serif;
        font-size: 17px;
        color: var(--bvu-navy);
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .experience-text .card-link {
        font-size: 18px;
        font-weight: 700;
        color: var(--bvu-navy);
        text-decoration: underline;
    }

/* ========== STATS BAND ========== */
.stats-band {
    background: var(--bvu-navy);
    width: 100%;
    padding: 56px 0;
}

.stats-band-inner {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 95px;
    text-align: center;
}

.stats-band-title {
    font-family: 'Druk Wide', 'Merriweather', serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Merriweather', serif;
    font-weight: 900;
    font-size: 56px;
    color: var(--bvu-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

/* ========== RANKINGS SECTION ========== */
.rankings {
    background: var(--bvu-navy);
    width: 100%;
    padding: 56px 0;
    border-top: 4px solid var(--bvu-gold);
}

.rankings-inner {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 95px;
    display: flex;
    gap: 48px;
    align-items: center;
}

.ranking-stat {
    text-align: center;
    flex: 0 0 auto;
}

    .ranking-stat .big-num {
        font-family: 'Merriweather', serif;
        font-weight: 900;
        font-size: 80px;
        color: var(--bvu-gold);
        line-height: 1;
    }

    .ranking-stat .big-label {
        font-size: 16px;
        color: rgba(255,255,255,0.7);
        margin-top: 4px;
    }

.ranking-text {
    flex: 1;
}

    .ranking-text h2 {
        font-family: 'Merriweather', serif;
        font-weight: 900;
        font-size: 36px;
        color: var(--white);
        line-height: 1.2;
        margin-bottom: 8px;
    }

        .ranking-text h2 span {
            color: var(--bvu-gold);
        }

    .ranking-text p {
        font-size: 16px;
        color: rgba(255,255,255,0.7);
    }

/* ========== BEAVER STORIES ========== */
.stories-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.stories-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .stories-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.stories-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(12,35,64,0.8) 0%, rgba(12,35,64,0.9) 100%);
}

.stories-inner {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 72px 95px;
    position: relative;
    z-index: 2;
}

    .stories-inner .section-title {
        color: var(--white);
        margin-bottom: 32px;
    }

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

.story-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

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

.story-card-body {
    padding: 20px;
}

    .story-card-body h4 {
        font-family: 'Merriweather', serif;
        font-weight: 700;
        font-size: 18px;
        color: var(--bvu-navy);
        margin-bottom: 8px;
    }

    .story-card-body p {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .story-card-body .card-link {
        font-size: 14px;
        font-weight: 700;
        color: var(--bvu-gold);
    }

/* ========== GET TO KNOW BVU (CTA) ========== */
.cta-banner {
    background: var(--bvu-gold);
    width: 100%;
    padding: 64px 0;
}

.cta-banner-inner {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 95px;
    text-align: center;
}

.cta-banner h2 {
    font-family: 'Druk Wide', 'Merriweather', serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--bvu-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.cta-banner p {
    font-size: 17px;
    color: var(--bvu-navy);
    margin-bottom: 28px;
}

.btn-navy {
    display: inline-block;
    background: var(--bvu-navy);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 36px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

/* ========== FOOTER ========== */
.site-footer {
    position: relative;
    width: 100%;
    height: 527px;
    overflow: hidden;
}

.footer-water-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .footer-water-bg img {
        width: 102%;
        height: 186%;
        object-fit: cover;
        position: absolute;
        left: -1%;
        top: -84%;
    }

.footer-content {
    position: relative;
    z-index: 1;
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 48px 87px 0;
}

.footer-main {
    display: flex;
    gap: 40px;
}

.footer-left {
    flex: 0 0 auto;
    width: 400px;
}

.footer-logo img {
    height: 49px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}

.footer-address {
    font-family: 'Merriweather', serif;
    font-weight: 400;
    font-size: 20px;
    color: var(--white);
    line-height: 1.6;
    margin-left: 66px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    margin-left: 66px;
}

    .footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
    }

        .footer-social a svg {
            width: 24px;
            height: 24px;
            fill: var(--white);
        }

.footer-beaver {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    margin-left: 66px;
}

    .footer-beaver img {
        height: 32px;
        width: 44px;
        object-fit: contain;
    }

.footer-beaver-text {
    font-family: 'Merriweather', serif;
    font-weight: 400;
    font-size: 24px;
    color: var(--bvu-gold);
    font-style: italic;
}

.footer-columns {
    display: flex;
    gap: 80px;
    flex: 1;
    justify-content: flex-end;
}

.footer-col h4 {
    font-family: 'Merriweather', serif;
    font-weight: 900;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 14px;
    white-space: nowrap;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    font-weight: 500;
    font-size: 20px;
    color: var(--white);
    line-height: 1.6;
}

.footer-col a,
.site-footer a {
    color: var(--white);
    white-space: nowrap;
}

.footer-divider {
    width: 1269px;
    max-width: calc(100% - 174px);
    margin: 28px auto 0;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.4);
    position: relative;
    z-index: 1;
}

.footer-copyright {
    position: relative;
    z-index: 1;
    width: 1356px;
    max-width: calc(100% - 84px);
    margin: 0 auto;
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .footer-copyright p, .footer-copyright span {
        font-family: 'Merriweather', serif;
        font-weight: 400;
        font-size: 16px;
        color: var(--white);
    }

.footer-copyright-links {
    display: flex;
    gap: 8px;
}

/* ========== SECTION FADE-UP ANIMATION ========== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    opacity: 0;
    transform: translateY(24px);
}

section.is-visible {
    animation: fadeUp 0.65s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
    section {
        opacity: 1;
        transform: none;
    }

    section.is-visible {
        animation: none;
    }
}

/* ========== RESPONSIVE ========== */


@media (min-width: 1461px) {

    .breadcrumb-wrapper {
        padding-left: 97px;
        padding-right: 40px;
    }
}
@media (max-width:1460px) {

        .breadcrumb-wrapper {
        padding-left: 117px;
        padding-right: 40px;
    }

}

@media (max-width: 1024px) {

    .header-top, .main-nav, .hero-title, .hero-subtitle, .hero-image,
    .hero-navy-band-inner, .section, .stats-band-inner, .rankings-inner,
    .stories-inner, .cta-banner-inner, .footer-content, .footer-copyright,
    .experience-inner {
        padding-left: 40px;
        padding-right: 40px;
    }

    .breadcrumb-wrapper {
        padding-left: 60px;
        padding-right: 40px;
    }

        .hero-title h1 {
            font-family: 'Druk Wide';
            font-weight: 700;
            font-size: 77px;
            color: var(--bvu-navy);
            line-height: 1;
            text-transform: uppercase;
            letter-spacing: 0.77px;
        }

    .header-top-row form {
        max-width: 260px;
    }

    .search-bar {
        max-width: 260px;
    }

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

    .experience-photo {
        flex: 0 0 380px;
    }

    .footer-columns {
        gap: 40px;
    }

    .footer-left {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .header-top {
        padding: 12px 20px;
        flex-wrap: wrap;
    }

    .header-logo img {
        height: 48px;
        margin-top: 0;
    }

    .header-right .header-top-row {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .main-nav {
        display: none;
    }

    .hero-title {
        padding: 16px 20px;
    }

        .hero-title h1 {
            font-size: 40px;
        }

    .hero-subtitle {
        padding: 0 20px 16px;
    }

    .hero-image {
        padding: 0 20px;
    }

    .hero-navy-band-inner {
        padding: 0 20px;
    }

    .hero-navy-band p {
        font-size: 15px;
    }

    .mid-nav {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

        .mid-nav > div {
            flex-direction: column;
            align-items: center;
            gap: 12px;
            width: 100%;
        }

        .mid-nav > div > div {
            width: 100%;
            max-width: 300px;
        }

        .mid-nav a {
            width: 100%;
            max-width: 300px;
            height: 52px;
            font-size: 18px;
        }

    .section {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 28px;
    }

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

    .explore-card {
        height: 260px;
    }

    .experience-inner {
        flex-direction: column;
        padding: 0 20px;
    }

    .experience-photo {
        flex: none;
        width: 100%;
    }

        .experience-photo img {
            height: 280px;
        }

    .experience-text h2 {
        font-size: 32px;
    }

    .stats-band-inner {
        padding: 0 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-number {
        font-size: 42px;
    }

    .stats-band-title {
        font-size: 26px;
    }

    .rankings-inner {
        flex-direction: column;
        padding: 0 20px;
        text-align: center;
    }

    .ranking-text h2 {
        font-size: 26px;
    }

    .stories-inner {
        padding: 40px 20px;
    }

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

    .cta-banner-inner {
        padding: 0 20px;
    }

    .cta-banner h2 {
        font-size: 26px;
    }

    .site-footer {
        height: auto;
        min-height: 527px;
    }

    .footer-content {
        padding: 32px 20px 0;
    }

    .footer-main {
        flex-direction: column;
        gap: 32px;
    }

    .footer-left {
        width: 100%;
    }

    .footer-address, .footer-social, .footer-beaver {
        margin-left: 0;
    }

    .footer-address {
        font-size: 16px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 24px;
    }

    .footer-divider {
        max-width: calc(100% - 40px);
    }

    .footer-copyright {
        padding: 14px 20px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .footer-copyright-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}