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

:root {
    --green-900: #0B3D2E;
    --green-800: #0F5138;
    --green-700: #14674A;
    --green-600: #1A7F5A;
    --green-500: #209468;
    --green-100: #D1F2E4;
    --green-50:  #EFF8F3;
    --cream:     #F7F5F0;
    --cream-dark:#EDEBE5;
    --white:     #FFFFFF;
    --black:     #0A0A0A;
    --gray-900:  #111111;
    --gray-700:  #333333;
    --gray-500:  #666666;
    --gray-300:  #BBBBBB;
    --gray-200:  #E5E5E5;
    --gray-100:  #F0F0F0;
    --red-accent:#B83230;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Inter', system-ui, sans-serif;
    --max-width: 1200px;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,.10);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
    --transition: .25s cubic-bezier(.4,0,.2,1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--gray-900);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--green-800); color: var(--white);
    padding: 8px 16px; border-radius: var(--radius);
    z-index: 200; font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* ── Header ──────────────────────────────────────── */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

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

.logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-serif); font-weight: 600;
    font-size: 1.15rem; color: var(--green-800);
}
.logo-mark {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: var(--radius);
    background: var(--green-800); color: var(--white);
    font-size: 1.2rem; font-weight: 700;
}
.logo-text { letter-spacing: -.01em; }

.nav ul { display: flex; align-items: center; gap: 32px; }
.nav a {
    font-size: .9rem; font-weight: 500; color: var(--gray-700);
    transition: color var(--transition);
}
.nav a:hover { color: var(--green-700); }

/* ── Nav Toggle (mobile) ────────────────────────── */
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 44px; height: 44px; position: relative;
}
.hamburger, .hamburger::before, .hamburger::after {
    display: block; width: 22px; height: 2px; background: var(--gray-700);
    border-radius: 2px; transition: var(--transition);
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
    content: ''; position: absolute; left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after  { top: 0; transform: rotate(-45deg); }

/* ── Buttons ─────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; font-family: var(--font-sans); font-weight: 600;
    font-size: .9rem; border: 2px solid transparent;
    border-radius: var(--radius); cursor: pointer;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--green-700); color: var(--white); border-color: var(--green-700);
}
.btn-primary:hover { background: var(--green-800); border-color: var(--green-800); }

.btn-outline-light {
    background: transparent; color: var(--white); border-color: rgba(255,255,255,.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

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

.btn-sm { padding: 8px 16px; font-size: .82rem; }
.btn-lg { padding: 14px 28px; font-size: .95rem; }

/* ── Hero ────────────────────────────────────────── */
.hero {
    position: relative; min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11,61,46,.88) 0%,
        rgba(15,81,56,.80) 50%,
        rgba(11,61,46,.72) 100%
    );
}

.hero-content {
    position: relative; z-index: 1;
    max-width: 680px; padding-top: 72px;
}
.hero-tag {
    font-size: .8rem; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: var(--green-100);
    margin-bottom: 20px;
}
.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700; line-height: 1.12;
    color: var(--white); margin-bottom: 24px;
    letter-spacing: -.02em;
}
.hero-sub {
    font-size: 1.1rem; line-height: 1.7;
    color: rgba(255,255,255,.82); margin-bottom: 36px;
    max-width: 540px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-quick-info {
    display: flex; align-items: center; gap: 12px;
    font-size: .88rem; color: rgba(255,255,255,.65);
}
.hero-quick-info .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green-400, #3CB87A);
}

/* ── Features ────────────────────────────────────── */
.features { padding: 100px 0; background: var(--white); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--cream);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.feature-icon {
    width: 52px; height: 52px; border-radius: var(--radius);
    background: var(--green-700); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem; font-weight: 600;
    color: var(--green-900); margin-bottom: 10px;
}
.feature-card p {
    font-size: .9rem; color: var(--gray-500); line-height: 1.65;
}
.feature-card a { color: var(--green-700); font-weight: 600; }
.feature-card a:hover { text-decoration: underline; }

/* ── Section Shared ──────────────────────────────── */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-tag {
    font-size: .78rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--green-600); margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700; color: var(--green-900);
    line-height: 1.15; margin-bottom: 16px;
    letter-spacing: -.02em;
}
.section-subtitle { font-size: 1.05rem; color: var(--gray-500); line-height: 1.7; }

/* ── Menu ────────────────────────────────────────── */
.menu { background: var(--cream); }
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.menu-category {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
}
.category-title {
    font-family: var(--font-serif);
    font-size: 1.3rem; font-weight: 700;
    color: var(--green-800); margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--green-100);
}
.menu-list { display: flex; flex-direction: column; gap: 20px; }
.menu-list li { display: flex; flex-direction: column; gap: 4px; }
.item-name {
    font-weight: 600; font-size: .95rem; color: var(--gray-900);
}
.item-desc {
    font-size: .85rem; color: var(--gray-500); line-height: 1.55;
}
.menu-note {
    text-align: center; font-size: .82rem; color: var(--gray-500);
    margin-top: 40px; font-style: italic;
}

/* ── Gallery ─────────────────────────────────────── */
.gallery { background: var(--white); padding: 100px 0; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/2;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img { transform: scale(1.05); }

/* ── Visit ───────────────────────────────────────── */
.visit {
    background: var(--green-900);
    color: var(--white);
}
.visit .section-tag { color: var(--green-100); }
.visit .section-title { color: var(--white); }
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.visit-details { margin: 36px 0; display: flex; flex-direction: column; gap: 28px; }
.detail-row { display: flex; gap: 16px; align-items: flex-start; }
.detail-icon {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--radius);
    background: rgba(255,255,255,.1); color: var(--green-100);
    display: flex; align-items: center; justify-content: center;
}
.detail-row strong {
    display: block; font-size: .78rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--green-100); margin-bottom: 4px;
}
.detail-row p { font-size: .92rem; color: rgba(255,255,255,.78); line-height: 1.65; }
.detail-row a { color: var(--white); font-weight: 600; transition: color var(--transition); }
.detail-row a:hover { color: var(--green-100); }
.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden; min-height: 400px;
    box-shadow: var(--shadow-lg);
}

/* ── Footer ──────────────────────────────────────── */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,.55);
    padding: 48px 0;
    text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-brand {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-serif); font-weight: 600;
    font-size: 1.1rem; color: var(--white);
}
.footer-brand .logo-mark {
    width: 36px; height: 36px; font-size: 1rem;
}
.footer-copy { font-size: .85rem; }
.footer a { color: var(--green-400); transition: color var(--transition); }
.footer a:hover { color: var(--white); }

/* ── Cookie Banner ───────────────────────────────── */
.cookie-banner {
    position: fixed; bottom: 24px; left: 24px; right: 24px;
    max-width: 520px; background: var(--gray-900);
    color: rgba(255,255,255,.8); font-size: .88rem;
    padding: 18px 24px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    z-index: 90;
    transition: opacity .3s, transform .3s;
}
.cookie-banner.hidden { opacity: 0; pointer-events: none; transform: translateY(12px); }
.cookie-banner p { line-height: 1.5; }

/* ── Scroll Reveal (progressive enhancement) ────── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
    }
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 768px) {
    .nav-toggle { display: flex; align-items: center; justify-content: center; }
    
    .nav {
        position: fixed; top: 72px; left: 0; right: 0;
        background: var(--white); border-bottom: 1px solid var(--gray-200);
        padding: 24px; box-shadow: var(--shadow-lg);
        transform: translateY(-110%); opacity: 0;
        transition: transform .3s ease, opacity .3s ease;
        pointer-events: none;
    }
    .nav.open {
        transform: translateY(0); opacity: 1;
        pointer-events: all;
    }
    .nav ul { flex-direction: column; gap: 16px; }
    .nav a { font-size: 1rem; }
    
    .hero-content { padding-top: 96px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    
    .features { padding: 72px 0; }
    .features-grid { grid-template-columns: 1fr; }
    
    .menu { padding: 72px 0; }
    .menu-grid { grid-template-columns: 1fr; }
    
    .gallery { padding: 72px 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    
    .visit { padding: 72px 0; }
    .visit-grid { grid-template-columns: 1fr; }
    .visit-map { min-height: 280px; }
    
    .cookie-banner { left: 16px; right: 16px; bottom: 16px; flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .container { padding: 0 16px; }
}
