/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8b7355;
    --secondary-color: #a68968;
    --accent-green: #9b8a70;
    --dark-green: #6b5d4f;
    --light-green: #c4b5a0;
    --dark-color: #4a423a;
    --light-color: #f5f1ed;
    --beige: #ebe7e1;
    --cream: #faf8f5;
    --text-color: #4a423a;
    --white: #ffffff;
    --gray: #8a7d6f;
    --success: #9b8a70;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.08);
}

html {
    scroll-behavior: smooth;
    background: var(--cream);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--cream);
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navigation */
.navbar {
    background: var(--cream);
    border-bottom: 1px solid var(--beige);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.logo-image:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-menu a, .nav-menu span {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: block;
    touch-action: manipulation;
}

.nav-menu span {
    color: var(--beige);
}

.nav-menu a:hover {
    color: var(--accent-green);
    background: var(--light-color);
}

.nav-menu a[href*="youtube"] svg {
    vertical-align: middle;
    position: relative;
    top: -0.1em;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    box-shadow: rgba(139, 115, 85, 0.32) 0px 10px 32px 0px, rgba(139, 115, 85, 0.18) 0px 0px 0px 2px;
    border-bottom: 1px solid var(--beige);
    background: linear-gradient(135deg, #f0ebe4 0%, #f5f1ed 100%);
    color: var(--dark-color);
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-intro {
    font-size: 1rem;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 1.3;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color);
    font-weight: 300;
    line-height: 1.8;
}

.hero .btn {
    margin-top: 1rem;
    font-size: 0.95rem;
    padding: 0.75rem 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--accent-green);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-color);
    border-color: var(--accent-green);
}

.btn-secondary:hover {
    background: var(--accent-green);
    color: var(--cream);
    border-color: var(--accent-green);
}

/* Section Styles */
section {
    padding: 5rem 0;
    scroll-margin-top: 5rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-green);
    position: relative;
    font-weight: 400;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-green);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Story Narrative Section */
.story-narrative {
    background: var(--cream);
    padding: 5rem 0;
}

.story-block {
    margin-bottom: 3rem;
}

.story-block a {
    color: #668000;
    text-decoration: underline;
    text-decoration-color: rgba(102, 128, 0, 0.4);
    text-underline-offset: 3px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.story-block a:hover {
    color: #4d6000;
    text-decoration-color: #4d6000;
}

.story-block a:visited {
    color: #8b7355;
}

.story-block a:visited:hover {
    color: #6b5d4f;
}

.story-block a:active {
    color: #3a4800;
}

.story-block h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    letter-spacing: -0.3px;
}

.story-block p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.story-block ul {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
    margin: 1.5rem 0 1.5rem 1.5rem;
    padding-left: 0.5rem;
}

.story-block li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
    position: relative;
}

.story-block li::marker {
    color: var(--accent-green);
}

.story-aside {
    font-style: italic;
    color: var(--gray);
    padding-left: 2rem;
    border-left: 3px solid var(--light-green);
    margin: 2rem 0;
    font-size: 1.1rem !important;
}

.story-highlight {
    font-size: 1.3rem !important;
    font-weight: 500 !important;
    color: var(--dark-green) !important;
    padding: 2rem;
    background: #f0ebe4;
    border-left: 4px solid var(--accent-green);
    border-radius: 8px;
    margin: 2.5rem 0 !important;
    line-height: 1.7 !important;
}

.story-pullquote {
    font-size: 1.4rem !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    color: var(--dark-green) !important;
    text-align: center;
    padding: 2.5rem 1rem;
    margin: 3rem 0 !important;
    position: relative;
}

.story-pullquote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--light-green);
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.story-divider {
    text-align: center;
    color: var(--light-green);
    font-size: 1.5rem;
    margin: 4rem 0;
    letter-spacing: 1rem;
}

/* Contact Section */
.contact {
    background: var(--light-color);
    box-shadow: 0 -4px 16px 0px rgba(139, 115, 85, 0.10), 0 0px 0px 1px rgba(139, 115, 85, 0.08);
}

.contact-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem;
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 400;
}

.contact-note {
    background: #f0ebe4;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--light-green);
}

.contact-note h4 {
    margin-bottom: 0.75rem;
    color: var(--dark-green);
    font-size: 1rem;
    font-weight: 500;
}

.contact-note p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--beige);
    border-radius: 10px;
    background: var(--cream);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
}

.form-group textarea {
    resize: vertical;
}

#contactForm .btn {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-green);
    color: var(--white);
    height: 2rem;
    min-height: 2rem;
    max-height: 2.5rem;
    padding: 0;
    border-top: 1px solid --var(beige);
    box-shadow: none;
    display: block;
    width: 100%;
    position: relative;
}

}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-note {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--cream);
        flex-direction: column;
        padding: 0.5rem 0;
        box-shadow: var(--shadow);
        display: none;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        text-align: center;
        padding: 0;
    }

    .nav-menu a {
        padding: 1rem 1.5rem;
        margin: 0;
        border-radius: 0;
    }

    .nav-menu a:hover,
    .nav-menu a:active {
        background: var(--light-color);
        color: var(--accent-green);
    }

    .hero {
        padding: 0;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-lead {
        font-size: 1.05rem;
    }

    .container-narrow {
        padding: 0 20px;
    }

    .story-block p {
        font-size: 1.05rem;
    }

    .story-block h3 {
        font-size: 1.5rem;
    }

    .story-pullquote {
        font-size: 1.2rem !important;
        padding: 2rem 0.5rem;
    }

    .story-aside {
        padding-left: 1rem;
        font-size: 1rem !important;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-lead {
        font-size: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .story-block {
        margin-bottom: 2rem;
    }

    .story-block p {
        font-size: 1rem;
    }

    .story-highlight {
        font-size: 1.15rem !important;
        padding: 1.5rem;
    }

    .story-pullquote {
        font-size: 1.1rem !important;
    }

    .story-divider {
        margin: 3rem 0;
    }
}
