/* ── Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-dark: #1a4d2e;
    --green-mid: #2d6a4f;
    --green-light: #52b788;
    --green-pale: #d8f3dc;
    --cream: #f8f6f0;
    --cream-dark: #f0ece4;
    --white: #ffffff;
    --text-dark: #1a2e23;
    --text-mid: #3d5a4c;
    --text-light: #6b8f7e;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(26, 77, 46, 0.06);
    --shadow-md: 0 8px 32px rgba(26, 77, 46, 0.10);
    --shadow-lg: 0 16px 48px rgba(26, 77, 46, 0.12);
    --font-body: 'DM Sans', sans-serif;
    --font-display: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* ── Typography ── */
.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 12px;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: 16px;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 600;
}

.lead {
    font-size: 1.125rem;
    color: var(--text-mid);
    max-width: 480px;
    line-height: 1.7;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--green-dark);
    color: var(--white);
}

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

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

.btn-secondary:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(248, 246, 240, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26, 77, 46, 0.08);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--green-dark);
}

.logo span {
    color: var(--green-light);
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color 0.2s ease;
}

.nav a:hover {
    color: var(--green-dark);
}

/* ── Mobile Toggle ── */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ── Hero ── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--green-pale) 50%, var(--cream-dark) 100%);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-text .eyebrow {
    margin-bottom: 16px;
}

.hero-text h1 {
    color: var(--green-dark);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--green-dark);
}

.hero-badge svg {
    color: var(--green-light);
}

/* ── About ── */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content p {
    color: var(--text-mid);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-images {
    position: relative;
    height: 560px;
}

.img-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.img-stack img {
    position: absolute;
    border-radius: var(--radius-md);
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.img-stack img:first-child {
    width: 65%;
    height: 80%;
    top: 0;
    right: 0;
    z-index: 1;
}

.img-stack img:last-child {
    width: 55%;
    height: 55%;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 4px solid var(--white);
}

/* ── Menu ── */
.menu {
    padding: 120px 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    color: var(--green-dark);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-pale);
}

.menu-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--green-dark);
}

.menu-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ── Atmosphere ── */
.atmosphere {
    padding: 120px 0;
    background: var(--white);
}

.atm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.atm-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 600px;
}

.atm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.atm-content p {
    color: var(--text-mid);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    margin-top: 32px;
    display: grid;
    gap: 14px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.feature-list li svg {
    color: var(--green-light);
    flex-shrink: 0;
}

/* ── Visit ── */
.visit {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--green-pale) 0%, var(--cream) 100%);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.visit-info h2 {
    color: var(--green-dark);
    margin-bottom: 40px;
}

.info-blocks {
    display: grid;
    gap: 24px;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}

.info-block:hover {
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green-dark);
}

.info-block strong {
    display: block;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 600;
}

.info-block p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.info-block a {
    color: var(--green-mid);
    font-weight: 500;
    transition: color 0.2s ease;
}

.info-block a:hover {
    color: var(--green-dark);
}

.visit-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 400px;
    box-shadow: var(--shadow-md);
}

/* ── Footer ── */
.site-footer {
    background: var(--green-dark);
    color: var(--green-pale);
    padding: 64px 0 40px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(216, 243, 220, 0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links {
    display: grid;
    gap: 12px;
}

.footer-links a {
    color: rgba(216, 243, 220, 0.7);
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

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

.footer-copy {
    font-size: 0.8125rem;
    color: rgba(216, 243, 220, 0.5);
    line-height: 1.8;
}

.footer-copy a {
    color: rgba(216, 243, 220, 0.7);
    transition: color 0.2s ease;
}

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

/* ── Animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-inner,
    .about-grid,
    .atm-grid,
    .visit-grid {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(248, 246, 240, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 24px;
        border-bottom: 1px solid rgba(26, 77, 46, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.4s ease;
        pointer-events: none;
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .nav .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 0;
    }

    .hero-text .lead {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-grid,
    .atm-grid,
    .visit-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        height: 400px;
        order: -1;
    }

    .atm-image {
        height: 400px;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .about-images {
        height: 320px;
    }
}
