:root {
    --primary: #4a7043;
    --accent: #8a9a5b;
    --light: #f8f5f0;
    --dark: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}@media (max-width: 430px) {
    .video-inner video {
        width: 160px !important;
        max-width: 160px !important;
    }

    .video-poster {
        width: 160px;
        max-width: 160px;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

header {
    background: var(--primary);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 300;
}

/* Hamburger — hidden on desktop */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Mobile Menu */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 1rem 2rem;
}

/* HERO */
.hero {
    position: relative;
    margin-top: 0;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

#hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.photo-credit {
    position: absolute;
    bottom: 8px;
    right: 10px;
    color: white;
    font-size: 8px;
    opacity: 0.4;
    margin: 0;
    z-index: 10;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: -1;
}

.hero-content p,
.hero h1 {
    color: white;
    text-shadow: 0 1px 4px rgba(255,255,255,0.4);
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 300;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.hero h1 {
    font-size: 4.0rem; /* was 3.5rem */
    margin-top: 0;
    margin-bottom: 0.25rem;
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
    font-weight: 300;
}
.hero-subtitle {
    font-size: 3.0rem; /* was 1.5rem */
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    color: white;
}
.hero p {
    font-size: 1.4rem; /* was 1.4rem */
    margin-bottom: 0.05rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    font-weight: 300;
}

.hero-content {
    transform: translateY(16mm);
}

@media (max-width: 768px) {
    .hero-content {
        transform: translateY(10mm);
    }  /* ← this closing brace was missing */
}

.when-short { display: none; }

@media (max-width: 768px) {
    .when-full { display: none; }
    .when-short { display: inline; }
}

/* ====================== BUTTON ====================== */
.btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* ====================== MISSION ====================== */
.mission {
    padding: 0.5rem 2rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.mission h2 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 2rem;
}

.cta {
    margin-top: 2rem;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

/* ====================== FOOTER ====================== */
footer {
    background: #222;
    color: #ddd;
    text-align: center;
    padding: 3rem 1rem;
}

footer a[href^="mailto"] {
    color: white;
    text-decoration: none;
}

footer a[href^="mailto"]:hover {
    color: var(--accent);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

/* ====================== TODAY'S STILL ====================== */
.still-wrap {
    margin-bottom: 2.5rem;
}

/* Sample video with unmute overlay */
.video-poster {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.sample-video-wrap {
    position: relative;
    text-align: center;
    margin-bottom: 2.5rem;
}

.video-inner {
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

.video-inner video {
    display: block;
    width: 400px !important;
    max-width: 400px !important;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.sample-video-wrap video {
    display: block;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
}

.unmute-btn {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    left: auto;
    transform: none;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    padding: 0;
}

.unmute-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}

.unmute-btn.unmuted {
    background: var(--primary);
    border-color: var(--primary);
}

.video-credit {
    position: absolute;
    bottom: 0.4rem;
    left: 0.6rem;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    pointer-events: none;
}

.video-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: none;
    margin-bottom: 0.5rem;
}

.today-still {
    text-align: center;
    margin: 50px auto;
    padding: 25px 15px;
    max-width: 1000px;
    width: 100%;
}

.today-still h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #2c3e50;
}

.section-subtext {
    text-align: center;
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: -1.5rem;
    margin-bottom: 2rem;
}

.today-image {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.tight-below {
    margin-bottom: 0.75rem;
}

/* ====================== PROSE PAGES (privacy, about, etc.) ====================== */
.prose-content {
    max-width: 740px;
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
}

.prose-content h1 {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: left;
}

.prose-content h2 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.prose-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 1rem;
}

.effective-date {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-email {
    margin-top: 0.5rem;
    color: var(--primary);
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary);
        padding: 1rem 2rem;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .prose-content {
        padding: 2.5rem 1.25rem 4rem;
    }

    .prose-content h1 {
        font-size: 2rem;
    }

    .video-inner video {
        width: 220px !important;
        max-width: 220px !important;
    }

    .video-poster {
        width: 220px;
        max-width: 220px;
    }
}

@media (max-width: 430px) {
    .video-inner video {
        width: 240px !important;
        max-width: 220px !important;
    }

    .video-poster {
        width: 240px;
        max-width: 220px;
    }
}