/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    background: #0A1F14;
    color: #F5F0E8;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --forest: #0B3C2A;
    --forest-deep: #061F15;
    --forest-light: #145A3C;
    --gold: #C9A84C;
    --gold-light: #E2C97E;
    --gold-dim: #A88A3A;
    --cream: #F5F0E8;
    --cream-dim: #E8E0D0;
    --cream-muted: #B8B0A0;
    --dark: #0A1F14;
    --dark-card: #0D2618;
    --dark-border: #1A3D2C;
    --section-pad: clamp(4rem, 10vw, 8rem);
    --container: min(1200px, 90vw);
}

/* ===== UTILITY ===== */
.container { width: var(--container); margin: 0 auto; }
.section { padding: var(--section-pad) 0; }
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 1.5rem;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--cream-muted);
    max-width: 560px;
    line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 60px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary {
    background: var(--gold);
    color: var(--forest-deep);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}
.btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--dark-border);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s ease;
}
.nav.scrolled {
    background: rgba(10, 31, 20, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--dark-border);
}
.nav-inner {
    width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cream);
}
.nav-logo-icon { color: var(--gold); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}
.nav-links a {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--cream-muted);
    transition: color 0.3s;
    letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
    padding: 0.55rem 1.4rem;
    border: 1px solid var(--gold-dim);
    border-radius: 60px;
    color: var(--gold) !important;
    transition: all 0.3s !important;
}
.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--forest-deep) !important;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
    background: linear-gradient(145deg, #061F15 0%, #0B3C2A 50%, #0D2618 100%);
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(20, 90, 60, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.hero-grid {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.75rem;
}
.hero-title-line {
    display: block;
}
.hero-title-accent {
    color: var(--gold);
    font-style: italic;
}
.hero-subtitle {
    font-size: 1.05rem;
    color: var(--cream-muted);
    line-height: 1.85;
    max-width: 480px;
    margin-bottom: 2.5rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--cream);
    font-weight: 500;
}
.hero-stat-label {
    font-size: 0.78rem;
    color: var(--cream-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.2rem;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--dark-border);
}
.hero-visual { position: relative; }
.hero-img-stack { position: relative; }
.hero-img { border-radius: 12px; overflow: hidden; }
.hero-img-primary {
    width: 100%;
    aspect-ratio: 6/7.5;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}
.hero-img-secondary {
    position: absolute;
    bottom: -2rem;
    left: -3rem;
    width: 55%;
    aspect-ratio: 4/5;
    border: 4px solid var(--forest);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-badge {
    position: absolute;
    top: 1.5rem;
    right: -1.5rem;
    background: var(--gold);
    color: var(--forest-deep);
    padding: 0.75rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream-muted);
    z-index: 1;
}
.hero-scroll svg { animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* ===== ABOUT ===== */
.about { background: var(--dark); }
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
    position: absolute;
    bottom: -2.5rem;
    right: -2rem;
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
    border: 4px solid var(--dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-text {
    color: var(--cream-muted);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.85;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--cream-dim);
}
.about-feature svg { color: var(--gold); flex-shrink: 0; }

/* ===== MENU ===== */
.menu {
    background: linear-gradient(180deg, var(--dark) 0%, var(--forest-deep) 100%);
}
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header .section-subtitle { margin: 0 auto; }
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.menu-tab {
    padding: 0.7rem 1.6rem;
    border-radius: 60px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--cream-muted);
    border: 1px solid var(--dark-border);
    transition: all 0.3s;
    letter-spacing: 0.03em;
}
.menu-tab:hover { color: var(--cream); border-color: var(--gold-dim); }
.menu-tab.active {
    background: var(--gold);
    color: var(--forest-deep);
    border-color: var(--gold);
}
.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeUp 0.4s ease; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}
.menu-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}
.menu-item:hover {
    border-color: var(--gold-dim);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.menu-item-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.menu-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cream);
}
.menu-item-tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.12);
    padding: 0.25rem 0.6rem;
    border-radius: 30px;
    white-space: nowrap;
}
.menu-item p {
    font-size: 0.9rem;
    color: var(--cream-muted);
    line-height: 1.7;
}

/* ===== ATMOSPHERE ===== */
.atmosphere { background: var(--forest-deep); }
.atmosphere-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}
.atmosphere-header .section-subtitle { margin: 0 auto; }
.atmosphere-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.atm-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    transition: all 0.4s;
}
.atm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-color: var(--gold-dim);
}
.atm-card-img {
    overflow: hidden;
    aspect-ratio: 5/3.4;
}
.atm-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.atm-card:hover .atm-card-img img { transform: scale(1.05); }
.atm-card-content { padding: 2rem; }
.atm-card-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}
.atm-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.75rem;
}
.atm-card p {
    font-size: 0.92rem;
    color: var(--cream-muted);
    line-height: 1.8;
}

/* ===== VISIT ===== */
.visit { background: var(--dark); }
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.visit-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.75rem;
}
.visit-detail svg { color: var(--gold); flex-shrink: 0; margin-top: 0.15rem; }
.visit-detail strong {
    display: block;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}
.visit-detail p, .visit-detail a {
    font-size: 0.9rem;
    color: var(--cream-muted);
    line-height: 1.7;
}
.visit-detail a:hover { color: var(--gold); }
.visit-map {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border: 1px solid var(--dark-border);
}

/* ===== CONTACT ===== */
.contact {
    background: linear-gradient(180deg, var(--forest-deep) 0%, var(--dark) 100%);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-text {
    color: var(--cream-muted);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 2rem;
}
.contact-direct { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--cream-dim);
    transition: color 0.3s;
}
.contact-link:hover { color: var(--gold); }
.contact-link svg { color: var(--gold); }
.contact-form-wrap {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream-muted);
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--cream);
    font-size: 0.95rem;
    transition: border-color 0.3s;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--cream-muted); opacity: 0.5; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--gold-dim);
    border-radius: 8px;
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 1rem;
}
.form-success.show { display: flex; }

/* ===== FOOTER ===== */
.footer {
    background: var(--forest-deep);
    border-top: 1px solid var(--dark-border);
    padding: 4rem 0 2rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 1rem;
}
.footer-logo svg { color: var(--gold); }
.footer-brand p {
    font-size: 0.88rem;
    color: var(--cream-muted);
    line-height: 1.8;
}
.footer-brand a:hover { color: var(--gold); }
.footer-links h4, .footer-hours h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
    font-size: 0.88rem;
    color: var(--cream-muted);
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-hours p {
    font-size: 0.88rem;
    color: var(--cream-muted);
    line-height: 1.8;
}
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: var(--cream-muted);
    opacity: 0.7;
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 31, 20, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--dark-border);
    }
    .nav-links.open { right: 0; }
    .nav-toggle { display: flex; z-index: 1001; }
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { order: -1; max-width: 400px; margin: 0 auto; }
    .hero-img-secondary { left: -1rem; bottom: -1.5rem; }
    .hero-img-badge { right: -0.5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-img-accent { right: -1rem; }
    .menu-grid { grid-template-columns: 1fr; }
    .atmosphere-grid { grid-template-columns: 1fr; }
    .visit-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .hero { padding: 7rem 0 3rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .about-features { grid-template-columns: 1fr; }
    .menu-tabs { gap: 0.4rem; }
    .menu-tab { padding: 0.6rem 1rem; font-size: 0.82rem; }
}
