/* =========================================================
   Sherwood Adventure — Main Stylesheet
   Colors: --green #05290b | --gold #fed611 | --orange #ffa133 | --brown #46240c
   ========================================================= */

/* === FONTS === */
@font-face {
    font-family: 'Dancing Script';
    src: url('DancingScript-Bold.woff2') format('woff2'),
         url('DancingScript-Bold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'EB Garamond';
    src: url('EBGaramond-Regular.woff2') format('woff2'),
         url('EBGaramond-Regular.woff') format('woff');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Lustria';
    src: url('Lustria-Regular.woff2') format('woff2'),
         url('Lustria-Regular.woff') format('woff');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Lato';
    src: url('Lato-Regular.woff2') format('woff2'),
         url('Lato-Regular.woff') format('woff');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Lato';
    src: url('Lato-Bold.woff2') format('woff2'),
         url('Lato-Bold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}

/* === RESET & BASE === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green:         #05290b;
    --green-dark:    #031a07;
    --green-overlay: rgba(5, 41, 10, 0.68);
    --green-deep:    rgba(3, 26, 7, 0.82);
    --gold:          #fed611;
    --orange:        #ffa133;
    --brown:         #46240c;
    --light:         #dfdfdf;
    --card-bg:       #27292a;

    --font-heading: 'Dancing Script', cursive;
    --font-sub:     'EB Garamond', serif;
    --font-nav:     'Lustria', serif;
    --font-body:    'Lato', sans-serif;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    background-color: var(--green);
    color: var(--light);
    font-family: var(--font-body);
    line-height: 1.6;
}

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

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

ul {
    list-style: none;
}


/* =========================================================
   NAVIGATION
   Gold top border acts as the accent line.
   Clean text links, one CTA button — matches app.sherwoodadventure.com style.
   ========================================================= */

.site-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background-color: var(--green-dark);
    border-bottom: 4px solid var(--gold);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-brand { flex-shrink: 0; }

.nav-logo {
    height: 44px;
    width: auto !important;
    display: block;
}

/* Nav link list */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    list-style: none;
    margin-left: auto;
}

/* Text-style nav link — gold text matches app.sherwoodadventure.com */
.nav-link {
    display: inline-block;
    color: var(--gold);
    font-family: var(--font-nav);
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    padding: 0.45rem 0.8rem;
    border-radius: 6px;
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
    line-height: 1;
}
.nav-link:hover,
.nav-link:focus-visible {
    color: var(--orange);
    background: rgba(254, 214, 17, 0.08);
    outline: none;
}

/* Gold CTA button — the one prominent action */
.nav-cta {
    display: inline-block;
    background: var(--gold);
    color: var(--green-dark) !important;
    font-family: var(--font-nav);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    margin-left: 0.5rem;
    white-space: nowrap;
    transition: background 0.2s, box-shadow 0.2s;
}
.nav-cta:hover,
.nav-cta:focus-visible {
    background: var(--orange);
    box-shadow: 0 2px 10px rgba(254, 214, 17, 0.45);
    outline: none;
}

/* Dropdown */
.dropdown {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 200px;
    background: var(--green-dark);
    border: 1px solid rgba(70, 36, 12, 0.6);
    border-top: 3px solid var(--gold);
    border-radius: 0 0 8px 8px;
    padding: 0.4rem 0;
    list-style: none;
    z-index: 300;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
    display: block;
}
.dropdown-menu a {
    display: block;
    color: var(--gold);
    font-family: var(--font-nav);
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
    white-space: nowrap;
    transition: color 0.15s, background 0.15s;
}
.dropdown-menu a:hover {
    color: var(--orange);
    background: rgba(254, 214, 17, 0.07);
}
/* Divider between dropdown groups */
.dropdown-menu .menu-divider {
    height: 1px;
    background: rgba(70, 36, 12, 0.5);
    margin: 0.3rem 0;
}

/* Hamburger toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    margin-left: auto;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.28s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav ─────────────────────────────────────────── */
@media (max-width: 860px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-left: 0;
        padding: 0.75rem 0 1rem;
        gap: 0.2rem;
        border-top: 1px solid rgba(70, 36, 12, 0.4);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-inner {
        flex-wrap: wrap;
        padding: 0.6rem 1rem;
    }
    .nav-link {
        font-size: 1rem;
        padding: 0.6rem 0.75rem;
        text-align: left;
        width: 100%;
    }
    .nav-cta {
        text-align: center;
        margin-left: 0;
        padding: 0.7rem 1.25rem;
        font-size: 1rem;
        margin-top: 0.4rem;
    }
    /* Dropdown → inline accordion on mobile */
    .dropdown-menu {
        position: static;
        display: none;
        border: none;
        border-left: 3px solid var(--gold);
        border-top: none;
        border-radius: 0;
        padding: 0.25rem 0 0.25rem 0;
        margin: 0.2rem 0 0.2rem 1rem;
        box-shadow: none;
        background: transparent;
    }
    .dropdown.open .dropdown-menu {
        display: block;
    }
    .dropdown-menu a {
        font-size: 0.92rem;
        padding: 0.5rem 1rem;
    }
    .dropdown-menu .menu-divider {
        display: none;
    }
}


/* =========================================================
   PARALLAX SECTIONS
   background-attachment: fixed creates the scroll parallax.
   On iOS (no fixed bg support) it gracefully falls back to scroll.
   ========================================================= */

.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* iOS graceful degradation */
@supports (-webkit-touch-callout: none) {
    .parallax {
        background-attachment: scroll;
    }
}


/* =========================================================
   HERO SECTION (homepage)
   ========================================================= */

.hero {
    background-image: url('../images/hero/archery-field.jpg');
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--green-overlay);
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 3rem 1.5rem;
    max-width: 820px;
    width: 100%;
}
.hero-logo {
    width: 300px;
    max-width: 75%;
    margin: 0 auto 2rem;
    drop-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.4rem);
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.hero-subtitle {
    font-family: var(--font-sub);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--light);
    margin: 0 auto 2.5rem;
    max-width: 640px;
    line-height: 1.65;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-block;
    border: 2px solid var(--orange);
    border-radius: 22px;
    background: linear-gradient(180deg, var(--green) 0%, rgba(0,0,0,0.3) 100%);
    box-shadow: 0 0 10px rgba(254, 214, 17, 0.45);
    color: var(--orange);
    font-family: var(--font-nav);
    font-size: 1rem;
    padding: 0.65rem 2rem;
    transition: all 0.2s;
    cursor: pointer;
    white-space: nowrap;
}
.btn:hover,
.btn:focus-visible {
    background: var(--orange);
    color: var(--green);
    box-shadow: 0 0 18px rgba(254, 214, 17, 0.8);
    outline: none;
}
.btn-gold {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 10px rgba(254, 214, 17, 0.6);
}
.btn-gold:hover {
    background: var(--gold);
    color: var(--green);
}
.btn-large {
    font-size: 1.15rem;
    padding: 0.85rem 3rem;
    border-radius: 28px;
}
.btn-wrap {
    text-align: center;
    margin: 2rem 0;
}


/* =========================================================
   SERVICES SECTION
   ========================================================= */

.services-section {
    background-image: url('../images/hero/game-action.jpg');
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 1.5rem;
}
.services-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--green-deep);
}
.services-section .section-inner {
    position: relative;
    z-index: 1;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-top: 2rem;
}
.service-card {
    background: var(--card-bg);
    border: 2px solid var(--brown);
    border-radius: 12px;
    padding: 1.75rem;
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    color: var(--orange);
    margin-bottom: 0.85rem;
}
.service-card p {
    color: var(--light);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}
.service-card .detail {
    color: var(--gold);
    font-size: 0.82rem;
    font-family: var(--font-nav);
    margin-top: 1rem;
    border-top: 1px solid var(--brown);
    padding-top: 0.75rem;
}
.service-card .price-tag {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--orange);
    border-top: none;
    padding-top: 0.25rem;
    margin-top: 0.25rem;
}

.trademark-notice {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    font-family: var(--font-sub);
    margin-top: 2rem;
}
.trademark-notice a {
    color: rgba(255,255,255,0.45);
}

.press-mention {
    text-align: center;
    font-size: 0.8rem;
    font-family: var(--font-sub);
    color: rgba(255,255,255,0.45);
    margin-top: 1.5rem;
    font-style: italic;
}
.press-mention a {
    color: var(--gold);
    text-decoration: none;
}
.press-mention a:hover {
    text-decoration: underline;
}

/* =========================================================
   VIDEO SECTION
   ========================================================= */

.video-section {
    background-color: var(--green-dark);
    padding: 4rem 1.5rem;
    border-top: 1px solid rgba(70, 36, 12, 0.4);
    border-bottom: 1px solid rgba(70, 36, 12, 0.4);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-single {
    max-width: 720px;
    margin: 2rem auto 0;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid var(--brown);
    background: #000;
}
.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

.video-channels {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.video-channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 2px solid var(--brown);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--gold);
    font-family: var(--font-nav);
    font-size: 0.9rem;
    padding: 0.65rem 1.4rem;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.video-channel-btn:hover {
    border-color: var(--gold);
    background: rgba(254, 214, 17, 0.08);
    color: var(--orange);
}
.video-channel-btn .icon {
    font-size: 1.2rem;
    line-height: 1;
}

/* =========================================================
   ABOUT / WE COME TO YOU SECTION
   ========================================================= */

.about-section {
    background-image: url('../images/hero/game-players.jpg');
    min-height: 65vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 1.5rem;
}
.about-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--green-overlay);
}
.about-section .section-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
}
.about-text {
    color: var(--light);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}


/* =========================================================
   SERVICE AREA / FINAL CTA SECTION
   ========================================================= */

.cta-section {
    background-image: url('../images/hero/field-fun.jpg');
    min-height: 55vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 4rem 1.5rem;
}
.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--green-deep);
}
.cta-section .section-inner {
    position: relative;
    z-index: 1;
}
.service-area-text {
    font-family: var(--font-sub);
    font-size: 1.1rem;
    color: var(--light);
    margin: 1.5rem auto;
    max-width: 560px;
    line-height: 1.7;
}
.phone-link {
    display: inline-block;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin: 0.75rem 0;
    transition: color 0.2s;
}
.phone-link:hover {
    color: var(--orange);
}


/* =========================================================
   SHARED SECTION UTILITIES
   ========================================================= */

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--gold);
    text-align: center;
    margin-bottom: 0.4rem;
}
.section-sub {
    font-family: var(--font-sub);
    font-size: 1.1rem;
    color: var(--orange);
    text-align: center;
    margin-bottom: 2rem;
}


/* =========================================================
   INNER PAGE HEADER (no parallax — clean & mobile-friendly)
   ========================================================= */

.page-header {
    background-color: var(--green-dark);
    border-bottom: 4px solid var(--brown);
    padding: 2.5rem 1.5rem;
    text-align: center;
}
.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 6vw, 4rem);
    color: var(--gold);
    line-height: 1.2;
}
.page-header .page-subtitle {
    font-family: var(--font-sub);
    font-size: 1.1rem;
    color: var(--orange);
    margin-top: 0.5rem;
}


/* =========================================================
   CONTENT BODY (inner pages)
   ========================================================= */

.content-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}
.content-body h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--orange);
    margin: 2.5rem 0 0.75rem;
    border-bottom: 1px solid var(--brown);
    padding-bottom: 0.4rem;
}
.content-body h2:first-child {
    margin-top: 0;
}
.content-body h3 {
    font-family: var(--font-sub);
    font-size: 1.15rem;
    color: var(--gold);
    margin: 1.5rem 0 0.5rem;
}
.content-body p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--light);
}
.content-body ul,
.content-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    list-style: disc;
}
.content-body ol {
    list-style: decimal;
}
.content-body li {
    margin-bottom: 0.4rem;
    color: var(--light);
    line-height: 1.6;
}
.content-body a {
    color: var(--gold);
    text-decoration: underline;
}
.content-body a:hover {
    color: var(--orange);
}

/* Highlight box */
.info-box {
    background: var(--card-bg);
    border: 2px solid var(--brown);
    border-left: 5px solid var(--orange);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}
.info-box p {
    margin-bottom: 0;
}

/* Document list */
.doc-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.doc-list li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--card-bg);
    border: 2px solid var(--brown);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    color: var(--gold);
    font-family: var(--font-nav);
    font-size: 0.95rem;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.doc-list li a:hover {
    border-color: var(--orange);
    background: rgba(70, 36, 12, 0.3);
    color: var(--orange);
}
.doc-list li a::before {
    content: '📄';
    font-size: 1.3rem;
    flex-shrink: 0;
}
.doc-list li a[href$=".pdf"]::before {
    content: '📋';
}
.doc-list li a[href$=".jpg"]::before,
.doc-list li a[href$=".png"]::before {
    content: '🖼️';
}

/* Tournament capacity table */
.table-scroll {
    overflow-x: auto;
    margin-top: 1.25rem;
    border-radius: 8px;
    border: 1px solid var(--brown);
}
.tournament-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-sub);
    font-size: 0.88rem;
    color: var(--light);
    white-space: nowrap;
}
.tournament-table th {
    background: var(--brown);
    color: var(--gold);
    font-weight: 700;
    padding: 0.6rem 0.9rem;
    text-align: left;
}
.tournament-table td {
    padding: 0.5rem 0.9rem;
    border-bottom: 1px solid rgba(70, 36, 12, 0.4);
}
.tournament-table tbody tr:last-child td {
    border-bottom: none;
}
.tournament-table tbody tr:nth-child(even) {
    background: rgba(255,255,255,0.04);
}
.tournament-table tbody tr:hover {
    background: rgba(254, 214, 17, 0.06);
}

/* Contact form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-group label {
    font-family: var(--font-nav);
    font-size: 0.85rem;
    color: var(--orange);
}
.form-group input,
.form-group select,
.form-group textarea {
    background: var(--card-bg);
    border: 2px solid var(--brown);
    border-radius: 8px;
    color: var(--light);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.65rem 0.9rem;
    width: 100%;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
}
.form-group textarea {
    min-height: 140px;
    resize: vertical;
}
.form-group select option {
    background: var(--green-dark);
}

/* Email signup placeholder */
.mailchimp-placeholder {
    background: var(--card-bg);
    border: 2px dashed var(--brown);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--light);
    font-family: var(--font-sub);
}
.mailchimp-placeholder p {
    color: var(--orange);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Booking placeholder */
.booking-placeholder {
    background: var(--card-bg);
    border: 2px dashed var(--brown);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.booking-placeholder p {
    color: var(--orange);
    font-size: 0.85rem;
}


/* =========================================================
   UPCOMING EVENTS
   ========================================================= */

.events-placeholder {
    background: var(--card-bg);
    border: 2px solid var(--brown);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 1.5rem 0;
}
.events-placeholder .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background-color: var(--green-dark);
    border-top: 4px solid var(--brown);
    padding: 2.5rem 1.5rem;
    text-align: center;
}
.footer-inner {
    max-width: 900px;
    margin: 0 auto;
}
.footer-logo {
    height: 80px;
    width: auto;
    margin: 0 auto 1.25rem;
}
.footer-contact {
    color: var(--light);
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}
.footer-contact a {
    color: var(--gold);
    transition: color 0.2s;
}
.footer-contact a:hover {
    color: var(--orange);
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin: 0.75rem 0 0.25rem;
}
.footer-social a {
    color: var(--gold);
    font-family: var(--font-nav);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}
.footer-social a:hover {
    color: var(--orange);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem 0.75rem;
    margin: 1.25rem 0;
    list-style: none;
}

/* Audience landing page cards */
.audience-section {
    background: var(--green-dark);
    padding: 4rem 1.5rem;
    border-top: 1px solid rgba(70,36,12,0.4);
    border-bottom: 1px solid rgba(70,36,12,0.4);
}
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.audience-card {
    background: var(--card-bg);
    border: 1px solid var(--brown);
    border-radius: 10px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: border-color 0.2s, transform 0.2s;
}
.audience-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}
.audience-card .audience-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 0.75rem;
}
.audience-card h3 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.audience-card p {
    color: var(--light);
    font-family: var(--font-sub);
    font-size: 0.88rem;
    line-height: 1.5;
}
.footer-nav a {
    color: var(--orange);
    font-size: 0.82rem;
    transition: color 0.2s;
}
.footer-nav a:hover {
    color: var(--gold);
}
.footer-nav li:not(:last-child)::after {
    content: ' |';
    color: var(--brown);
    margin-left: 0.75rem;
}
.footer-copy {
    color: var(--light);
    font-size: 0.78rem;
    opacity: 0.6;
    margin-top: 1.25rem;
}
