        /* === BASE STYLES === */
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth
        }
        
        body {
            font-family: 'Work Sans', sans-serif;
            line-height: 1.6;
            color: #1f1f1f;
            background-color: #fffdf9;
        }
        
        h1,
        h2,
        h3 {
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            position: relative;
            z-index: 1;
        }
        
        h2 {
            font-size: 2rem;
            color: #464646;
            border-left: 6px solid #eec00b;
            padding-left: 1rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }
        
        p {
            font-size: 1.1rem;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #eec00b;
            margin-bottom: 2rem;
            font-style: italic;
        }
        
        .highlight {
            color: #eec00b;
            text-transform: uppercase;
            font-weight: bold;
        }
        
        section {
            /* padding: 4rem 2rem; */
            margin: 3rem auto;
            scroll-margin-top: 100px;
            /* Soft neutral divider */
        }
        /* TESTIMONIALS SECTION */
        
        .testimonials {
            background-color: #f9f7f2;
            color: #1f1f1f;
            padding: 5rem 2rem;
        }
        
        .testimonials h2 {
            margin-bottom: 3rem;
            font-size: 2.25rem;
            color: #1a0606;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }
        
        .testimonial-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
        }
        
        .avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 3px solid #eec00b;
        }
        
        .quote {
            font-style: italic;
            font-size: 1rem;
            color: #333;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .name {
            font-weight: 600;
            color: #1a0606;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        /* === HEADER === */
        
        .site-header {
            background-color: #1a0606;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
        
        .site-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .notice-bar {
            background-color: #eec00b;
            color: #1a0606;
            padding: 0.75rem 1.5rem;
            text-align: center;
            font-size: 1rem;
            font-weight: 600;
            border-bottom: 2px solid #1a0606;
        }
        
        .notice-bar p {
            margin: 0;
        }
        
        .notice-link {
            color: #1a0606;
            margin-left: 1rem;
            text-decoration: underline;
            font-weight: bold;
        }
        
        .notice-link:hover {
            color: #000;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: #eec00b;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .logo img {
            margin-top: 5px;
            width: 100px;
        }
        
        .nav a {
            margin-left: 1.5rem;
            text-decoration: none;
            color: #eee;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
        }
        
        .nav a:hover {
            color: #eec00b;
        }
        
        .nav a:hover::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 2px;
            left: 0;
            bottom: -4px;
            background-color: #eec00b;
        }
        
        .book-btn {
            display: inline-flex;
            align-items: center;
            background-color: #eec00b;
            color: #1a0606;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            font-family: 'Oswald', sans-serif;
            padding: 1rem 1.5rem;
            border-radius: 4px;
            box-shadow: 4px 4px 0 #1a0606;
            transition: all 0.2s ease;
            margin-top: 2rem;
        }
        
        .book-btn:hover {
            background-color: #f7d848;
            box-shadow: 2px 2px 0 #1a0606;
            transform: translateY(-2px);
        }
        
        .book-icon {
            width: 28px;
            height: 28px;
            margin-right: 0.75rem;
            flex-shrink: 0;
        }
        
        .nav-container {
            padding: .5rem;
        }
        /* === NAV TOGGLE BUTTON === */
        
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 101;
        }
        
        .hamburger {
            width: 24px;
            height: 2px;
            background-color: #eec00b;
            position: relative;
            display: inline-block;
            transition: background-color 0.3s ease;
        }
        
        .hamburger::before,
        .hamburger::after {
            content: "";
            position: absolute;
            width: 24px;
            height: 2px;
            background-color: #eec00b;
            transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
        }
        
        .hamburger::before {
            top: -8px;
        }
        
        .hamburger::after {
            top: 8px;
        }
        /* When nav toggle is active */
        
        .nav-toggle.open .hamburger {
            background-color: transparent;
        }
        
        .nav-toggle.open .hamburger::before {
            transform: rotate(45deg);
            top: 0;
        }
        
        .nav-toggle.open .hamburger::after {
            transform: rotate(-45deg);
            top: 0;
        }
        /* === MOBILE NAV === */
        
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav {
                display: none;
                flex-direction: column;
                background-color: #1a0606;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem 2rem;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
                z-index: 999;
            }
            .nav.active {
                display: flex;
            }
            .nav a {
                padding: 0.75rem 0;
                color: #eee;
                font-size: 1.1rem;
            }
            .site-header .container {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                position: relative;
            }
            .nav {
                transition: all 0.3s ease;
            }
            .nav-container {
                padding: 2rem;
            }
        }
        /* === BOX-BANNER SECTION === */
        
        .box-banner {
            color: #fff;
            padding: 0;
        }
        
        .box-banner-bg {
            background-size: cover;
            background-position: center;
            padding: 8rem 2rem 6rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border-bottom: 6px solid #eec00b;
            background-blend-mode: multiply;
            background-color: #661212;
        }
        
        .box-banner-bg::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(102, 18, 18, 0.95), rgba(102, 18, 18, 0.7));
            z-index: 0;
        }
        
        .box-banner .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }
        
        .box-banner-intro {
            flex: 1 1 60%;
        }
        
        .box-banner-intro h2 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .box-banner-intro h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #eec00b;
        }
        
        .box-banner-intro ul {
            margin-bottom: 1.5rem;
            list-style-type: none;
            padding-left: 0;
            font-size: 1.2rem;
            font-weight: 500;
            color: #eec00b;
        }
        
        .box-banner-intro p {
            font-size: 1.2rem;
            font-weight: bold;
            text-transform: uppercase;
            color: #fff;
        }
        
        .box-banner-portrait {
            flex: 1 1 30%;
            text-align: center;
        }
        
        .box-banner-portrait img {
            width: 320px;
            height: 427px;
            border: 5px solid #fff;
            object-fit: cover;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
        }
        
        .box-banner-portrait p {
            margin-top: 1rem;
            font-size: 1.1rem;
            color: #fff;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .box-banner-portrait span {
            display: block;
            font-style: italic;
            font-size: 1rem;
            color: #eec00b;
        }
        
        .the-book-box-banner {
            margin-top: 20px;
            font-size: 1.2rem;
        }
        /* Mission */
        
        .mission-extended {
            line-height: 1.7;
        }
        
        .mission-extended h3,
        .mission-extended h4 {
            color: #1a0606;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            margin: 2rem 0 1rem;
            letter-spacing: 0.5px;
        }
        
        .mission-extended ul {
            margin: 1rem 0 2rem 1.5rem;
            padding-left: 1.5rem;
            list-style-type: disc;
        }
        
        .mission-extended ul li {
            margin-bottom: 0.75rem;
            padding-left: 0.5rem;
        }
        /* BOOK SECTION */
        
        .book-section {
            background: linear-gradient(to bottom right, #3b2c2c, #221818);
            color: white;
            padding: 5rem 2rem;
        }
        
        .book-section h2 {
            color: #fff;
        }
        
        .book-promo {
            display: grid;
            grid-template-columns: 1fr 2fr;
            align-items: center;
            gap: 2rem;
            position: relative;
        }
        
        .book-image {
            display: flex;
            justify-content: center;
        }
        
        .book-cover {
            max-width: 300px;
            width: 100%;
            transform: translateX(-20px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
            border-radius: 4px;
        }
        
        .book-info {
            position: relative;
            padding-left: 2rem;
        }
        
        .accent-bar {
            width: 2px;
            height: 100%;
            background-color: #eec00b;
            position: absolute;
            left: 0;
            top: 0;
            border-radius: 3px;
        }
        
        .pull-quote {
            font-size: 1.3rem;
            font-style: italic;
            color: #eec00b;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .book-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .book-info h3 em {
            color: #eec00b;
        }
        
        .book-info p {
            margin-bottom: 0.75rem;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .btn-primary {
            display: inline-block;
            margin-top: 1.5rem;
            background-color: #eec00b;
            color: #1a0606;
            padding: 0.75rem 1.25rem;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #f1d04d;
        }
        /* MEDIA SECTION */
        
        .media-feed {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
            align-items: flex-start;
        }
        
        .media-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 300px;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }
        
        .media-caption {
            font-size: 0.95rem;
            text-align: center;
            color: #333;
            margin-top: 0.75rem;
        }
        
        .media-image {
            width: 100%;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        /* === HERO SECTION === */
        
        .hero {
            background-color: #133a57;
            color: #fff;
            padding: 2rem;
            text-align: center;
            position: relative;
            height: 80vh;
            /* <-- This sets it to 80% of the viewport height */
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('images/forest-hero-sun.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
            z-index: 0;
        }
        
        .hero .container {
            position: relative;
            z-index: 1;
            max-width: 900px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #fff;
            margin-bottom: 1rem;
        }
        
        .hero h3 {
            font-size: 2rem;
            color: #eec00b;
            margin-bottom: 1.5rem;
        }
        
        .hero p {
            font-size: 1.2rem;
            font-weight: 500;
            color: #f4f4f4;
            max-width: 720px;
            margin: 0 auto;
        }
        
        .contact-section {
            background-color: #f9f7f2;
            color: #1f1f1f;
        }
        
        .contact-section h2 {
            text-align: left;
            color: #1a0606;
            margin-bottom: 1.5rem;
        }
        
        .contact-section p {
            font-size: 1rem;
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        
        .contact-section a {
            color: #eec00b;
            text-decoration: none;
            font-weight: 600;
        }
        
        .contact-section a:hover {
            text-decoration: underline;
        }
        /* === FOOTER === */
        
        .site-footer {
            background-color: #1a0606;
            color: #eee;
            text-align: center;
            padding: 2rem;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        /* Footer Bottom */
        
        .footer-bottom {
            font-size: 0.85rem;
            color: #bbb;
            border-top: 1px solid var(--secondary-color);
        }
        
        .footer-bottom a {
            color: var(--accent-color);
            text-decoration: none;
            margin: 0 5px;
        }
        
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        
        .footer-bottom p {
            color: var(--secondary-color);
        }
        /* === RESPONSIVE === */
        
        @media (max-width: 950px) {
            .hero .container {
                flex-direction: column;
                text-align: center;
                width: 100%;
                margin-top: 30px;
            }
            .hero .container p {
                display: none;
            }
            .hero-intro,
            .hero-portrait {
                flex: 1 1 100%;
                padding: 1rem 0;
            }
            .book-promo {
                display: grid;
                grid-template-columns: 1fr;
                align-items: center;
                gap: 2rem;
                position: relative;
            }
        }
        
        @media (max-width: 450px) {
            .hero h3 {
                font-size: 1rem;
            }
        }