/* ── Website Color Palette ── */
:root {
    --white: #ffffff;
    --captain-orange: #F47900;
    --light-red: #ff5050;
    --beige: #FFF8F3;
    --brown: #813500;
    --ink: #1C1410;
    --font: 'Inter', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth;
       scroll-padding-top: 120px; 
}

body {
    font-family: var(--font);
    background: var(--beige);
    color: var(--ink);
    line-height: 1.6;
}

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    background: #FFF8F3;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    font-weight: 400;
    color: var(--ink);
    text-decoration: none;
    background: var(--captain-orange);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    white-space: nowrap;
}

.logo span { font-style: italic; color: var(--white); }
.logo:hover { color: var(--ink); }

.nav-links { list-style: none; display: flex; gap: 2rem; align-items: center; }

nav a {
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    transition: 0.3s;
}

nav a:hover { color: var(--captain-orange);
}

.nav-cta {
    background: var(--captain-orange);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    color: var(--white) !important;
}

.nav-cta:hover { background: var(--captain-orange); }

.nav-image {
    height: 36px;
    width: auto;
}

/* Hamburger button — hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
#hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    padding-top: 0 !important;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    padding: 4rem 5%;
    background: var(--white);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem 5rem 5rem;
}

.hero-eyebrow {
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--captain-orange);
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
}

.hero-title em { font-style: italic; color: var(--clr-accent, var(--captain-orange));}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    color: var(--ink);
    line-height: 1.7;
    max-width: 420px;
}

.hero-cta-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.hero-right { overflow: hidden; }

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border: var(--captain-orange) 4px solid;
    border-radius: 25px;
    display: block;
}

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn-primary {
    background: var(--captain-orange);
    color: var(--white);
    padding: 0.7rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

.btn-primary:hover { opacity: 0.9; }

.btn-secondary {
    border: 1.5px solid var(--ink);
    color: var(--ink);
    padding: 0.7rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

.btn-secondary:hover { background: var(--ink); color: var(--white); }

.btn-cta-event {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    width: 100%;
}

/* ══════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════ */
section { padding: 3rem 4%; }
section:nth-child(even) { background: #fff8f3; }

.section-label {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-accent, var(--captain-orange));
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.section-title em { font-style: italic; color: var(--captain-orange); }

.section-sub {
    font-size: 1rem;
    color: var(--ink);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2rem;
    
}

/* ══════════════════════════════
   CARDS
══════════════════════════════ */
.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 12px;
    padding: 1.5rem;
}

.card-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--beige);
    border: var(--captain-orange) 3px solid;
    border-radius: 12px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.card-img-wrapper:hover .card-image { transform: scale(1.1); }

.card-center { text-align: center; }

.card h3 { font-size: 1.3rem; font-weight: 800; color: var(--ink); margin: 0.75rem 0 0.4rem; }
.card-subtitle { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; color: var(--clr-accent, var(--captain-orange)); margin-bottom: 0.75rem; }
.card p { font-size: 0.88rem; color: var(--ink); line-height: 1.6; }

/* ══════════════════════════════
   REVIEWS
══════════════════════════════ */
.review-card {
    background: var(--white);
    border: 1px solid #f4c89a;
    border-radius: 12px;
    padding: 1.5rem;
}

.stars { color: var(--captain-orange); margin-bottom: 0.5rem; font-size: 1.25rem; }
.review-card p { font-size: 0.88rem; font-style: italic; color: var(--ink); line-height: 1.6; margin-bottom: 0.75rem; }
.reviewer { font-size: 0.78rem; color: #888; }

/* ══════════════════════════════
   FACEBOOK
══════════════════════════════ */
.facebook-cta {
    background: #1877F2;
    color: var(--white);
    text-align: center;
    padding: 4rem 5%;
    border-radius: 25px;
    margin: 2rem 4%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.facebook-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.2;
    max-width: 700px;
}

.facebook-cta h2 em {
    font-style: italic;
    color: #ffffff;
    text-decoration: underline;
}

.btn-facebook {
    background: var(--white);
    color: #1877F2;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-facebook:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    color: var(--captain-orange);
}

.fb-icon { width: 24px; height: 24px; fill: currentColor; }

/* ══════════════════════════════
   GALLERY
══════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 2rem;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
    background: var(--beige);
    color: var(--ink);
    padding: 4rem 10% 3rem;
    text-align: center;
}

footer h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 2rem;
}

.footer-btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer-cta-primary {
    background: var(--captain-orange);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    display: inline-block;
    border-radius: 50px;
    font-size: 1.1rem;
}

.footer-cta-primary:hover { opacity: 0.9; }

.footer-cta-secondary {
    border: 1.5px solid var(--ink);
    color: var(--ink);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-block;
}

.footer-cta-secondary:hover { background: var(--ink); color: var(--white); }

.footer-btn-facebook {
    background: #1877F2;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
}

.footer-btn-facebook:hover { background: var(--captain-orange); color: var(--white); }


/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 900px)
══════════════════════════════════════════════ */
@media (max-width: 900px) {

    /* Hero: stack vertically */
    #hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-right {
        height: 320px;
    }

    .hero-right img {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .hero-left {
        padding: 3rem 6%;
    }

    /* Cards: 2 columns */
    .cards-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Gallery: 2 columns */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facebook-cta {
        margin: 2rem 0;
        border-radius: 16px;
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 600px)
══════════════════════════════════════════════ */
@media (max-width: 600px) {

    /* ── NAV ── */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: fixed;
        top: 0;
        right: 0;
        width: 75vw;
        max-width: 300px;
        height: 100dvh;
        background: var(--beige);
        padding: 5rem 2rem 2rem;
        box-shadow: -4px 0 20px rgba(0,0,0,0.12);
        z-index: 1050;
        overflow-y: auto;
    }

    .nav-links.nav-open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.07);
    }

    .nav-links li:last-child { border-bottom: none; }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
    }

    .nav-links .nav-cta {
        display: inline-block;
        margin-top: 0.5rem;
        padding: 0.6rem 1.4rem;
    }

    /* Hide the pill-style brand logo text on very small screens */
    .logo { display: none; }

    /* ── HERO ── */
    #hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        padding: 2.5rem 5%;
        gap: 1rem;
    }

    .hero-eyebrow { font-size: 0.85rem; }

    .hero-right {
        height: 240px;
        order: -1; /* Image on top on mobile */
    }

    .hero-right img {
        border-radius: 0;
        border: none;
        border-bottom: 4px solid var(--captain-orange);
    }

    /* ── SECTIONS ── */
    section { padding: 2.5rem 5%; }

    .section-label { font-size: 0.85rem; }

    /* ── CARDS: single column ── */
    .cards-3 {
        grid-template-columns: 1fr;
    }

    .card-img-wrapper { height: 220px; }

    /* ── GALLERY: 2 columns on mobile (keep visual interest) ── */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    /* ── FACEBOOK ── */
    .facebook-cta {
        padding: 2.5rem 5%;
        margin: 1.5rem 0;
        border-radius: 16px;
        gap: 1rem;
    }

    .btn-facebook {
        font-size: 1rem;
        padding: 0.85rem 1.75rem;
    }

    /* ── FOOTER ── */
    footer {
        padding: 3rem 5% 2rem;
    }

    .footer-btn-group {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-cta-primary,
    .footer-cta-secondary,
    .footer-btn-facebook {
        text-align: center;
        justify-content: center;
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
        width: 100%;
    }

    /* ── BUTTONS ── */
    .hero-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ══════════════════════════════
   MENU PAGE — menu.css
   Sits on top of style.css
══════════════════════════════ */
 
/* ── Page Header ── */
.menu-header {
    padding: 3rem 6% 2rem;
    background: var(--beige);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
}
 
.menu-jump-links {
    position: sticky;
    top: 53px;              /* flush under the nav (nav ≈ 53px tall) */
    z-index: 999;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* ✅ centered on desktop */
    gap: 0.75rem;
    padding: 0.85rem 6%;
    background: var(--beige);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    margin: 0;
}

.menu-jump-links a {
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: var(--white);
    border: 1.5px solid rgba(0,0,0,0.12);
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    white-space: nowrap;
    line-height: 1;
}

.menu-jump-links a:hover {
    background: var(--captain-orange);
    border-color: var(--captain-orange);
    color: var(--white);
}
 
/* ── Section layout ── */
.menu-section {
    padding: 3.5rem 6%;
    background: var(--white);
    scroll-margin-top: 120px;
}
 
.menu-section-alt {
    background: var(--beige);
}
 
/* Side-by-side layout when image is present */
.menu-section-inner {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    max-width: 1100px;
}
 
/* Image slot */
.menu-section-img {
    flex: 0 0 300px;
    position: sticky;
    top: 80px; /* sticks below the nav as you scroll */
}
 
.menu-section-img img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 3 / 4;
    border: 3px solid var(--captain-orange);
}
 
/* Content side */
.menu-section-content {
    flex: 1;
    min-width: 0;
}
 
.menu-section-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--captain-orange);
    text-transform: uppercase;
}
 
/* ── Individual menu items ── */
.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0; /* dividers handle spacing */
}
 
.menu-item {
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
 
.menu-item:last-child {
    border-bottom: none;
}
 
.menu-item-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.25rem;
}

.menu-item-top em {
    text-transform: lowercase;
}
 
.item-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
    text-transform: capitalize;
}
 
.item-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--captain-orange);
    white-space: nowrap;
    flex-shrink: 0;
}

.item-price em {
    color: var(--ink);
    text-transform: capitalize;
}
 
.item-desc {
    font-size: 0.875rem;
    color: var(--ink);
    line-height: 1.6;
    margin: 0;
    text-transform: capitalize;
}

.item-desc em {
    text-transform: lowercase;
}
 
/* ══════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
══════════════════════════════ */
@media (max-width: 900px) {
    .menu-section-img {
        flex: 0 0 220px;
        position: static; /* don't sticky on smaller screens */
    }
}
 
/* ══════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
══════════════════════════════ */
@media (max-width: 600px) {

    html { scroll-padding-top: 110px; }

    .menu-header {
        padding: 2rem 5% 1.5rem;
    }
 
    .menu-jump-links {
        top: 53px;
        justify-content: flex-start;   /* ✅ left-align so they can scroll */
        flex-wrap: nowrap;             /* keep them on one row */
        overflow-x: auto;              /* horizontal scroll on mobile */
        -webkit-overflow-scrolling: touch;
        gap: 0.5rem;
        padding: 0.6rem 5%;
        scrollbar-width: none;         /* hide scrollbar (Firefox) */
    }
    .menu-jump-links::-webkit-scrollbar { display: none; } /* hide on Chrome/Safari */

    .menu-jump-links a {
        font-size: 0.8rem;
        padding: 0.4rem 0.9rem;
        flex-shrink: 0;                /* prevent squishing */
    }
 
    .menu-section {
        padding: 2.5rem 5%;
        scroll-margin-top: 110px
    }
 
    /* Stack image above content on mobile */
    .menu-section-inner {
        flex-direction: column;
        gap: 1.5rem;
    }
 
    .menu-section-img {
        flex: none;
        width: 100%;
    }
 
    .menu-section-img img {
        aspect-ratio: 16 / 9;
    }
 
    .item-name {
        font-size: 0.95rem;
    }
 
    .item-price {
        font-size: 0.95rem;
    }
}


        /* --- HOOK --- */
        #about-hook {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 90vh;
            overflow: hidden;
        }

        .about-hook-img {
            position: relative;
            overflow: hidden;
        }

        .about-hook-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border: var(--captain-orange) 4px solid;
            border-radius: 25px;
        }


        .about-hook-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 5rem 4rem 5rem 5rem;
            border-radius: 25px;
            background: var(--clr-bg, #fff);
        }

        .about-hook-content .section-label {
            margin-bottom: 1rem;
        }

        .hook-headline {
            font-size: clamp(2rem, 4vw, 3.2rem);
            line-height: 1.15;
            font-weight: 800;
            margin: 0 0 1.5rem;
            letter-spacing: -0.02em;
        }

        .hook-headline em {
            font-style: italic;
            color: var(--clr-accent, var(--captain-orange));
        }

        .hook-body {
            font-size: 1.15rem;
            line-height: 1.75;
            color: var(--clr-text-muted, #555);
            max-width: 44ch;
        }

        /* --- WHY --- */
        #about-why {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 70vh;
            overflow: hidden;
        }

        /* Image is on the RIGHT for this block */
        #about-why .about-block-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 5rem 5rem 5rem 7vw;
            background: var(--clr-surface, #faf8f5);
            order: 1;
        }

        #about-why .about-block-img {
            position: relative;
            overflow: hidden;
            order: 2;
        }

        #about-why .about-block-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border: var(--captain-orange) 4px solid;
            border-radius: 25px;
        }

        .why-headline {
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            font-weight: 800;
            line-height: 1.2;
            margin: 0.5rem 0 1.25rem;
            letter-spacing: -0.015em;
        }

        .why-headline em {
            font-style: italic;
            color: var(--clr-accent, var(--captain-orange));
        }

        .why-body {
            font-size: 1.05rem;
            line-height: 1.85;
            color: var(--clr-text-muted, #555);
            max-width: 52ch;
        }

        /* --- PROOF / STATS --- */
        #about-proof {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 60vh;
            overflow: hidden;
        }

        #about-proof .about-block-img {
            position: relative;
            overflow: hidden;
            order: 1;
        }

        #about-proof .about-block-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border: var(--captain-orange) 4px solid;
            border-radius: 25px;
        }
        

        #about-proof .about-block-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 5rem 7vw 5rem 5rem;
            background: var(--clr-bg, #fff);
            border-radius: 25px;
            order: 2;
        }

        .proof-headline {
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            font-weight: 800;
            line-height: 1.2;
            margin: 0.5rem 0 1.5rem;
            letter-spacing: -0.015em;
        }

        .proof-headline em {
            font-style: italic;
            color: var(--clr-accent, var(--captain-orange));
        }

        .proof-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.75rem;
        }

        .stat-box {
            background: var(--clr-surface, #faf8f5);
            border-left: 4px solid var(--clr-accent, var(--captain-orange));
            padding: 1.25rem 1.5rem;
            border-radius: 0 8px 8px 0;
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--clr-accent, var(--captain-orange));
            line-height: 1;
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            color: var(--clr-text-muted, #666);
        }

        .proof-body {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--clr-text-muted, #555);
        }

        /* --- TEAM / HUMAN --- */
        #about-team {
            background: var(--clr-surface, #faf8f5);
            padding: 6rem 7vw;
            text-align: center;
        }

        #about-team .section-title {
            margin-bottom: 0.75rem;
        }

        #about-team .section-sub {
            margin-bottom: 3.5rem;
            text-align: center;
             max-width: 700px;
             margin-left: auto;
             margin-right: auto;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2.5rem;
            max-width: 960px;
            margin: 0 auto;
        }

        .team-card {
            background: var(--clr-bg, #fff);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0,0,0,0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: left;
        }

        .team-card-img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            display: block;
        }

        .team-card-body {
            padding: 1.5rem 1.75rem 2rem;
        }

        .team-name {
            font-size: 1.2rem;
            font-weight: 800;
            margin: 0 0 0.2rem;
            letter-spacing: -0.01em;
        }

        .team-role {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--clr-accent, var(--captain-orange));
            margin-bottom: 0.9rem;
        }

        .team-bio {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--clr-text-muted, #555);
        }

        /* --- CTA --- */
        #about-cta {
            background: var(--clr-accent, var(--captain-orange));
            padding: 5rem 7vw;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        #about-cta::before {
            content: '';
            position: absolute;
            top: -60px; right: -60px;
            width: 320px; height: 320px;
            border-radius: 50%;
            background: rgba(255,255,255,0.06);
            pointer-events: none;
        }

        #about-cta::after {
            content: '';
            position: absolute;
            bottom: -80px; left: -40px;
            width: 260px; height: 260px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            pointer-events: none;
        }

        .cta-headline {
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 900;
            color: #fff;
            line-height: 1.15;
            margin: 0 auto 1rem;
            max-width: 22ch;
            letter-spacing: -0.02em;
        }

        .cta-sub {
            font-size: 1.1rem;
            color: var(--white);
            margin-bottom: 2.5rem;
        }

        .cta-btn-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-cta-white {
            background: #fff;
            color: var(--clr-accent, var(--captain-orange));
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1rem;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }

        .btn-cta-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(0,0,0,0.2);
        }

        .btn-cta-outline-white {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255,255,255,0.6);
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1rem;
            text-decoration: none;
            transition: background 0.2s, border-color 0.2s;
        }

        .btn-cta-outline-white:hover {
            background: rgba(255,255,255,0.1);
            border-color: #fff;
        }

/* ── Responsive Fix ── */
@media (max-width: 768px) {
    #about-hook,
    #about-why,
    #about-proof {
        grid-template-columns: 1fr;
        min-height: auto; /* Allow the sections to shrink to content size */
        gap: 0; 
    }

    /* Force the image containers to a specific size so they crop correctly */
    .about-hook-img,
    #about-why .about-block-img,
    #about-proof .about-block-img {
        height: 300px; /* This forces the "crop" */
        width: 100%;
        order: 1 !important; /* Puts image on top */
        padding: 1rem 1.5rem 0; /* Adds some breathing room around the border */
    }

    /* Ensure the image fills the 300px box we just made */
    .about-hook-img img,
    #about-why .about-block-img img,
    #about-proof .about-block-img img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* This does the actual cropping */
        border-radius: 20px; /* Slightly smaller radius for smaller screens */
    }

    .about-hook-content,
    #about-why .about-block-content,
    #about-proof .about-block-content {
        order: 2 !important; /* Puts text below image */
        padding: 2.5rem 1.5rem;
    }

    .proof-stats {
        grid-template-columns: 1fr; /* Stack stats on very small screens */
    }

    #about-team {
        padding: 4rem 1.5rem;
    }
}

 /* ══════════════════════════════════
           CONTACT HERO — split layout
        ══════════════════════════════════ */
        #contact-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 92vh;
            overflow: hidden;
        }

        /* LEFT — photo panel */
        .contact-photo-panel {
            position: relative;
            border: var(--captain-orange) 4px solid;
            border-radius: 25px; 
            overflow: hidden;
            background: var(--white);
        }

        .contact-photo-panel img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            display: block;
            opacity: 0.88;
            transition: transform 0.9s ease, opacity 0.4s ease;
        }

        .contact-photo-panel:hover img {
            transform: scale(1.04);
            opacity: 1;
        }

        /* Red gradient overlay bottom-to-top */
        .contact-photo-panel::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(244, 121, 0,0.24) 0%,
                rgba(244, 121, 0, 0.3) 45%,
                transparent 70%
            );
            pointer-events: none;
        }

        /* Name badge pinned to bottom of photo */
        .contact-photo-badge {
            position: absolute;
            bottom: 2.5rem;
            left: 2.5rem;
            z-index: 2;
            color: #fff;
        }

        .contact-photo-badge .badge-name {
            font-size: 1.7rem;
            font-weight: 900;
            letter-spacing: -0.02em;
            line-height: 1.1;
            text-shadow: 0 2px 12px rgba(0,0,0,0.4);
        }

        .contact-photo-badge .badge-role {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.75);
            margin-top: 0.3rem;
        }

        /* Placeholder state when no image is set */
        .contact-photo-panel.no-photo {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }


        /* RIGHT — contact content */
        .contact-content-panel {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 5rem 5rem 5rem 5rem;
            background: var(--clr-bg, #fff);
            animation: fadeSlideIn 0.7s ease both;
        }

        @keyframes fadeSlideIn {
            from { opacity: 0; transform: translateX(30px); }
            to   { opacity: 1; transform: translateX(0); }
        }

        .contact-content-panel .section-label {
            margin-bottom: 0.75rem;
        }

        .contact-headline {
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -0.025em;
            margin: 0 0 0.75rem;
        }

        .contact-headline em {
            font-style: italic;
            color: var(--clr-accent, var(--captain-orange));
        }

        .contact-subline {
            font-size: 1.05rem;
            color: var(--clr-text-muted, #666);
            line-height: 1.7;
            margin-bottom: 2.75rem;
            max-width: 42ch;
        }

        /* ── Primary contact buttons ── */
        .contact-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2.75rem;
        }

        .contact-btn {
            display: flex;
            align-items: center;
            gap: 1.1rem;
            padding: 1.2rem 1.75rem;
            border-radius: 14px;
            font-size: 1.05rem;
            font-weight: 800;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255,255,255,0.12);
            opacity: 0;
            transition: opacity 0.2s;
        }

        .contact-btn:hover::before { opacity: 1; }

        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 32px rgba(0,0,0,0.15);
        }

        /* Call button — bold red */
        .contact-btn-call {
            background: var(--clr-accent, var(--captain-orange));
            color: #fff;
            box-shadow: 0 4px 20px rgba(198,43,25,0.3);
        }

        /* Email button — dark / inverted */
        .contact-btn-email {
            background: #1a1a1a;
            color: #fff;
            box-shadow: 0 4px 20px rgba(0,0,0,0.12);
        }

        .contact-btn-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: rgba(255,255,255,0.18);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-btn-icon svg {
            width: 22px;
            height: 22px;
            fill: #fff;
        }

        .contact-btn-text {
            display: flex;
            flex-direction: column;
        }

        .contact-btn-label {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            opacity: 0.75;
            margin-bottom: 0.15rem;
        }

        .contact-btn-value {
            font-size: 1.1rem;
            font-weight: 900;
            letter-spacing: -0.01em;
        }

        /* ── Divider ── */
        .contact-divider {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .contact-divider::before,
        .contact-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(0,0,0,0.1);
        }

        .contact-divider span {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--clr-text-muted, #888);
        }

        /* ── Quick info pills ── */
        .contact-info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.85rem;
        }

        .info-pill {
            background: var(--clr-surface, #faf8f5);
            border-radius: 10px;
            padding: 1rem 1.25rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .info-pill-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(117, 114, 114, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-pill-icon svg {
            width: 18px;
            height: 18px;
            fill: var(--clr-accent, var(--captain-orange));
        }

        .info-pill-text {
            display: flex;
            flex-direction: column;
        }

        .info-pill-label {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.09em;
            color: var(--clr-text-muted, #888);
            margin-bottom: 0.2rem;
        }

        .info-pill-value {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--clr-text, #111);
            line-height: 1.35;
        }

        /* ══════════════════════════════════
           FACEBOOK CONNECT STRIP
        ══════════════════════════════════ */
        #contact-facebook {
            background: var(--clr-surface, #faf8f5);
            padding: 4rem 7vw;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .fb-strip-text h2 {
            font-size: clamp(1.4rem, 2.5vw, 2rem);
            font-weight: 900;
            letter-spacing: -0.02em;
            margin: 0 0 0.4rem;
        }

        .fb-strip-text h2 em {
            font-style: italic;
            color: var(--clr-accent, var(--captain-orange));
        }

        .fb-strip-text p {
            color: var(--clr-text-muted, #666);
            font-size: 1rem;
            margin: 0;
        }

        /* ══════════════════════════════════
           FOOTER (re-use from index)
        ══════════════════════════════════ */

        /* ── Responsive ── */
        @media (max-width: 820px) {
            #contact-hero {
                grid-template-columns: 1fr;
                min-height: unset;
            }

            .contact-photo-panel {
                min-height: 320px;
            }

            .contact-photo-panel img {
                min-height: 320px;
            }

            .contact-photo-badge {
                left: 1.5rem;
                bottom: 1.5rem;
            }

            .contact-content-panel {
                padding: 3rem 1.5rem;
            }

            .contact-headline {
                font-size: clamp(1.9rem, 4vw, 2.6rem);
            }

            .contact-subline {
                max-width: 100%;
            }

            .contact-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .contact-btn {
                width: 100%;
                max-width: 100%;
                min-width: 0;
                padding: 1.1rem 1.25rem;
            }

            .contact-btn-text {
                align-items: flex-start;
                min-width: 0;
            }

            .contact-btn-value,
            .contact-btn-label {
                overflow-wrap: anywhere;
                word-break: break-word;
                text-align: center;
            }

            .contact-divider {
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
                text-align: center;
            }

            .contact-divider::before,
            .contact-divider::after {
                width: 100%;
                max-width: 260px;
            }

            .contact-info-grid {
                grid-template-columns: 1fr;
            }

            #contact-facebook {
                flex-direction: column;
                text-align: center;
                padding: 3rem 4%;
            }

            .fb-strip-text {
                max-width: 640px;
                margin: 0 auto;
            }

            .btn-facebook {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 600px) {
            .contact-photo-panel {
                min-height: 260px;
            }

            .contact-content-panel {
                padding: 2rem 1.25rem;
            }

            .contact-headline {
                font-size: clamp(1.8rem, 5vw, 2.2rem);
            }

            .contact-subline {
                font-size: 0.95rem;
            }

            .contact-buttons {
                gap: 0.75rem;
                align-items: stretch;
            }

            .contact-btn {
                width: 100%;
                max-width: 100%;
                min-width: 0;
                padding: 1rem 1.15rem;
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }

            .contact-btn-icon {
                margin-bottom: 0.5rem;
            }

            .contact-btn-text {
                min-width: 0;
                width: 100%;
            }

            .contact-btn-label {
                font-size: 0.68rem;
            }

            .contact-btn-value {
                font-size: 1rem;
                white-space: normal;
                overflow-wrap: break-word;
                word-break: break-word;
            }

            .contact-divider::before,
            .contact-divider::after {
                display: none;
            }

            .contact-divider span {
                width: 100%;
            }

            .contact-info-grid {
                gap: 0.85rem;
            }

            .info-pill {
                padding: 0.95rem 1rem;
            }

            #contact-facebook {
                padding: 2rem 1.5rem;
            }

            .fb-strip-text h2 {
                font-size: clamp(1.25rem, 4vw, 1.7rem);
            }

            .btn-facebook {
                font-size: 1rem;
                padding: 0.95rem 1.25rem;
            }
        }