*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest: #2D5A3D;
    --forest-light: #3A7250;
    --forest-dark: #1F4229;
    --cream: #F5F0E8;
    --cream-light: #FAF7F2;
    --cream-dark: #E8E0D0;
    --warm: #C8A882;
    --warm-light: #D4BA96;
    --text: #2A2A2A;
    --text-light: #5A5A5A;
    --text-muted: #8A8A8A;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(45, 90, 61, 0.08);
    --shadow-md: 0 4px 20px rgba(45, 90, 61, 0.12);
    --shadow-lg: 0 8px 40px rgba(45, 90, 61, 0.15);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-full: 9999px;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

a {
    color: var(--forest);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--forest-light);
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--forest);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 700;
}

.skip-link:focus {
    top: 16px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(245, 240, 232, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 90, 61, 0.08);
    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;
    text-decoration: none;
    color: var(--forest);
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--forest);
    color: var(--cream);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    font-style: italic;
    line-height: 1;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.1;
}

.logo-accent {
    color: var(--forest-light);
    font-style: italic;
}

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

.nav a {
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.nav a:hover {
    color: var(--forest);
    background: rgba(45, 90, 61, 0.08);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
}

.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 2px;
    background: var(--forest);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--forest);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -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 {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--forest);
    color: var(--cream);
    border-color: var(--forest);
    box-shadow: 0 4px 16px rgba(45, 90, 61, 0.3);
}

.btn-primary:hover {
    background: var(--forest-light);
    border-color: var(--forest-light);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(45, 90, 61, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--forest);
    border-color: var(--forest);
}

.btn-secondary:hover {
    background: var(--forest);
    color: var(--cream);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 90, 61, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 168, 130, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 90, 61, 0.1);
    color: var(--forest);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--forest);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
}

.trust-item svg {
    color: var(--warm);
}

.hero-image-wrap {
    position: relative;
    height: 600px;
}

.hero-image-hero {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero-image-float {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 180px;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}

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

/* Section labels */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest);
    background: rgba(45, 90, 61, 0.1);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

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

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

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

.about-images {
    position: relative;
}

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

.about-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.about-img-accent img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-content {
    padding: 20px 0;
}

.about-body {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.feature-card {
    background: var(--cream);
    padding: 24px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--forest);
    color: var(--cream);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.feature-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

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

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

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.menu-card-img {
    height: 200px;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.05);
}

.menu-card-body {
    padding: 24px;
}

.menu-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--forest);
    background: rgba(45, 90, 61, 0.1);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.menu-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 10px;
}

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

.menu-cta {
    margin-top: 48px;
    padding: 32px;
    background: rgba(45, 90, 61, 0.06);
    border-radius: var(--radius-md);
}

.menu-cta p {
    font-size: 16px;
    color: var(--text-light);
}

.menu-cta a {
    color: var(--forest);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.menu-cta a:hover {
    color: var(--forest-light);
}

/* Drinks */
.drinks {
    padding: 100px 0;
    background: var(--forest);
    color: var(--cream);
}

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

.drinks .section-label {
    background: rgba(245, 240, 232, 0.15);
    color: var(--cream);
}

.drinks .section-title {
    color: var(--cream);
}

.drinks .about-body {
    color: rgba(245, 240, 232, 0.8);
}

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

.drinks-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 700;
    color: var(--cream);
}

.drinks-list svg {
    flex-shrink: 0;
    color: var(--warm);
}

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

.drinks-img-main img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

/* Visit */
.visit {
    padding: 100px 0;
    background: var(--cream);
}

.visit-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.visit-content {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visit-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 36px;
}

.visit-info-item {
    display: flex;
    gap: 14px;
}

.visit-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(45, 90, 61, 0.1);
    color: var(--forest);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.visit-info-item h3 {
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.visit-info-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.visit-info-item a {
    color: var(--forest);
    font-weight: 700;
}

.visit-map {
    min-height: 480px;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--white);
}

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

.contact-details {
    margin-top: 32px;
    display: grid;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: var(--text-light);
}

.contact-detail svg {
    color: var(--forest);
    flex-shrink: 0;
}

.contact-detail a {
    font-weight: 700;
}

.contact-form-wrap {
    background: var(--cream);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--forest);
    box-shadow: 0 0 0 4px rgba(45, 90, 61, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-style: italic;
    color: var(--forest);
    margin: 16px 0 8px;
}

.form-success p {
    color: var(--text-light);
    font-size: 15px;
}

/* Footer */
.footer {
    background: var(--forest-dark);
    color: var(--cream);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand .logo {
    color: var(--cream);
    margin-bottom: 16px;
}

.footer-brand .logo-mark {
    background: rgba(245, 240, 232, 0.2);
}

.footer-brand p {
    font-size: 14px;
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm);
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: rgba(245, 240, 232, 0.7);
    font-size: 14px;
    font-weight: 600;
    transition: color var(--transition);
}

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

.footer-contact p {
    font-size: 14px;
    color: rgba(245, 240, 232, 0.7);
    margin-bottom: 6px;
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(245, 240, 232, 0.7);
}

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

.footer-bottom {
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(245, 240, 232, 0.5);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(245, 240, 232, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid rgba(45, 90, 61, 0.08);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }

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

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

    .nav a {
        display: block;
        padding: 14px 20px;
        font-size: 16px;
        border-radius: var(--radius-sm);
    }

    .nav a:hover {
        background: rgba(45, 90, 61, 0.08);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .drinks-grid,
    .visit-card,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image-wrap {
        height: 450px;
        order: -1;
    }

    .hero-image-float {
        left: 10px;
        bottom: -20px;
        width: 140px;
        height: 140px;
    }

    .about-img-main img {
        height: 360px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .visit-content {
        padding: 40px 32px;
    }

    .visit-info-grid {
        grid-template-columns: 1fr;
    }

    .visit-map {
        min-height: 300px;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }
}

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

    .hero {
        padding-top: 72px;
        padding-bottom: 60px;
    }

    .hero-headline {
        font-size: 32px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero-image-wrap {
        height: 340px;
    }

    .hero-image-float {
        width: 110px;
        height: 110px;
        left: 5px;
        bottom: -15px;
    }

    .section-title {
        font-size: 28px;
    }

    .about,
    .menu,
    .drinks,
    .visit,
    .contact {
        padding: 64px 0;
    }

    .contact-form-wrap {
        padding: 28px 24px;
    }

    .drinks-img-main img {
        height: 360px;
    }
}

/* Scroll animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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