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

:root {
    --forest: #2D5A3D;
    --forest-light: #3A734E;
    --forest-dark: #1E3F2B;
    --off-white: #FAF8F5;
    --cream: #F3EDE4;
    --warm-gray: #8A8278;
    --dark: #1A1A18;
    --light-border: rgba(45, 90, 61, 0.15);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    background-color: var(--off-white);
    color: var(--dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--light-border);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--forest);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--forest);
}

.nav-links a::after:hover {
    width: 100%;
}

.btn-nav {
    border: 1px solid var(--forest);
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    transition: all 0.3s ease !important;
}

.btn-nav:hover {
    background: var(--forest);
    color: var(--off-white) !important;
}

.btn-nav::after {
    display: none !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--dark);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--off-white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark);
    line-height: 1;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--dark);
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--forest);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    background: var(--off-white);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    padding: 2rem 0;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .accent {
    font-style: italic;
    color: var(--forest);
}

.hero-description {
    font-size: 1.05rem;
    color: var(--warm-gray);
    max-width: 420px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--forest);
    color: var(--off-white);
}

.btn-primary:hover {
    background: var(--forest-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(45, 90, 61, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--off-white);
}

.btn-full {
    width: 100%;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--forest);
    border-radius: 4px;
    z-index: -1;
}

.image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
}

/* ========== SECTIONS ========== */
.section {
    padding: 7rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--dark);
    letter-spacing: -0.02em;
}

/* ========== ABOUT ========== */
.about {
    background: var(--off-white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    order: 1;
}

.about-content .section-title {
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1rem;
    color: var(--warm-gray);
    margin-bottom: 1.25rem;
    line-height: 1.9;
}

.about-image {
    order: 2;
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 4px;
}

/* ========== DIVIDER ========== */
.divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--light-border);
}

.divider-icon {
    color: var(--forest);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
}

/* ========== MENU ========== */
.menu {
    background: var(--cream);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.menu-card {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid var(--light-border);
    transition: all 0.4s ease;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(45, 90, 61, 0.08);
    border-color: var(--forest);
}

.menu-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--light-border);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--forest);
}

.menu-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.menu-card-desc {
    font-size: 0.9rem;
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-list li {
    font-size: 0.85rem;
    color: var(--dark);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-list li::before {
    content: '·';
    color: var(--forest);
    font-weight: 600;
}

/* ========== VISIT ========== */
.visit {
    background: var(--off-white);
}

.visit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.visit-content {
    order: 1;
}

.visit-content .section-title {
    margin-bottom: 2.5rem;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visit-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.visit-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest);
}

.visit-value {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.6;
}

.visit-link {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--forest);
    border-bottom: 1px solid var(--light-border);
    transition: border-color 0.3s ease;
}

.visit-link:hover {
    border-color: var(--forest);
}

.visit-image {
    order: 2;
}

.visit-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 4px;
}

/* ========== CONTACT ========== */
.contact {
    background: var(--forest);
    color: var(--off-white);
}

.contact-container {
    max-width: 700px;
}

.contact-content {
    text-align: center;
}

.contact-content .section-label {
    color: rgba(250, 248, 245, 0.6);
}

.contact-content .section-title {
    color: var(--off-white);
    margin-bottom: 1rem;
}

.contact-content .section-text {
    color: rgba(250, 248, 245, 0.7);
    margin-bottom: 3rem;
}

.contact-form {
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250, 248, 245, 0.6);
    margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(250, 248, 245, 0.08);
    border: 1px solid rgba(250, 248, 245, 0.2);
    border-radius: 2px;
    color: var(--off-white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(250, 248, 245, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(250, 248, 245, 0.5);
    background: rgba(250, 248, 245, 0.12);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--forest-dark);
    color: var(--off-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(250, 248, 245, 0.1);
    border: 1px solid rgba(250, 248, 245, 0.2);
    border-radius: 2px;
    text-align: center;
}

.form-success p {
    color: var(--off-white);
    font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: rgba(250, 248, 245, 0.6);
    padding: 4rem 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand .logo {
    color: var(--off-white);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact a {
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(250, 248, 245, 0.08);
    padding: 1.5rem 0;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(250, 248, 245, 0.35);
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-container,
    .about-container,
    .visit-container {
        gap: 2.5rem;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 10rem 0 5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        order: 2;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        order: 1;
    }

    .image-wrapper img {
        height: 400px;
    }

    .image-wrapper::before {
        display: none;
    }

    .about-container,
    .visit-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-content,
    .visit-content {
        order: 1;
    }

    .about-image,
    .visit-image {
        order: 2;
    }

    .about-image img,
    .visit-image img {
        height: 350px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section {
        padding: 5rem 0;
    }
}

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

    .hero-title {
        font-size: 2.2rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.75rem;
    }

    .menu-card {
        padding: 2rem;
    }
}
