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

:root {
    --terracotta: #B85C38;
    --terracotta-deep: #9A4B2C;
    --terracotta-light: #D4845E;
    --sand: #F5F0EB;
    --sand-dark: #E8E0D6;
    --sand-deep: #D4CBBF;
    --cream: #FDFBF8;
    --charcoal: #2A2522;
    --charcoal-light: #4A423D;
    --warm-gray: #8A7E76;
    --warm-gray-light: #B8AD9F;
    --white: #FFFFFF;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

::selection {
    background: var(--terracotta-light);
    color: var(--white);
}

.line-overlay {
    position: fixed;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100vh;
    background: var(--sand-deep);
    pointer-events: none;
    z-index: 100;
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(253, 251, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sand-dark);
    transition: transform 0.4s var(--ease-smooth);
}

.nav.hidden {
    transform: translateY(-100%);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--charcoal);
    transition: all 0.3s var(--ease-smooth);
    transform-origin: center;
}

.nav-toggle.active span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.nav-toggle.active span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray);
    text-decoration: none;
    transition: color 0.3s var(--ease-smooth);
    position: relative;
}

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

.nav-menu a:hover {
    color: var(--charcoal);
}

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

.nav-cta {
    color: var(--terracotta) !important;
    border: 1px solid var(--terracotta);
    padding: 0.5rem 1.2rem;
    transition: all 0.3s var(--ease-smooth) !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--terracotta);
    color: var(--white) !important;
}

/* SECTIONS */
.section-line {
    width: 48px;
    height: 1px;
    background: var(--terracotta-light);
    margin-bottom: 1.5rem;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    gap: 0;
    position: relative;
    overflow: hidden;
}

.hero-line {
    position: absolute;
    top: 0;
    left: clamp(1.5rem, 4vw, 4rem);
    width: 1px;
    height: 100%;
    background: var(--sand-deep);
}

.hero-content {
    padding: 8rem clamp(1.5rem, 4vw, 4rem) clamp(4rem, 8vw, 8rem) clamp(1.5rem, 4vw, 6rem);
    max-width: 600px;
    z-index: 1;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 2.5rem;
}

.tag-line {
    width: 32px;
    height: 1px;
    background: var(--warm-gray-light);
    flex-shrink: 0;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--charcoal);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    color: var(--terracotta);
}

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

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border: 1px solid var(--charcoal);
    background: transparent;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.btn:hover {
    background: var(--charcoal);
    color: var(--white);
}

.btn-primary {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--terracotta-deep);
    border-color: var(--terracotta-deep);
    color: var(--white);
}

.btn-ghost {
    border-color: var(--sand-deep);
    color: var(--charcoal-light);
}

.btn-ghost:hover {
    border-color: var(--charcoal);
    background: transparent;
    color: var(--charcoal);
}

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

/* HERO IMAGE */
.hero-image {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

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

.hero-image-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.caption-line {
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

/* ABOUT */
.about {
    padding: clamp(5rem, 12vw, 10rem) clamp(1.5rem, 4vw, 4rem);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--charcoal-light);
    margin-bottom: 1.25rem;
}

.about-image {
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 5/6.2;
    object-fit: cover;
}

/* DRINKS */
.drinks {
    padding: clamp(5rem, 12vw, 10rem) clamp(1.5rem, 4vw, 4rem);
    background: var(--sand);
}

.drinks-header {
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--sand-deep);
    border: 1px solid var(--sand-deep);
}

.drink-card {
    background: var(--sand);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    transition: background 0.4s var(--ease-smooth);
}

.drink-card:hover {
    background: var(--cream);
}

.drink-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--terracotta-light);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.drink-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.drink-card p {
    font-size: 0.85rem;
    line-height: 1.75;
    color: var(--warm-gray);
}

/* FOOD */
.food {
    padding: clamp(5rem, 12vw, 10rem) clamp(1.5rem, 4vw, 4rem);
}

.food-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.food-image {
    overflow: hidden;
}

.food-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 56/70;
    object-fit: cover;
}

.food-content p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--charcoal-light);
    margin-bottom: 2.5rem;
}

.food-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.food-list li {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1.5rem;
    align-items: start;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--sand-dark);
}

.food-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.food-list-label {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--terracotta);
    padding-top: 0.15em;
}

.food-list-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--warm-gray);
}

/* TESTIMONIALS */
.testimonials {
    padding: clamp(5rem, 12vw, 10rem) clamp(1.5rem, 4vw, 4rem);
    background: var(--charcoal);
    color: var(--sand);
}

.testimonials .section-line {
    background: var(--terracotta-light);
}

.testimonials .section-label {
    color: var(--terracotta-light);
}

.testimonials .section-title {
    color: var(--sand);
}

.testimonials-header {
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 2rem;
    border: 1px solid rgba(245, 240, 235, 0.1);
    transition: border-color 0.3s var(--ease-smooth);
}

.testimonial-card:hover {
    border-color: rgba(245, 240, 235, 0.25);
}

.testimonial-card p {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.7;
    color: var(--sand);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

/* VISIT */
.visit {
    padding: clamp(5rem, 12vw, 10rem) clamp(1.5rem, 4vw, 4rem);
}

.visit-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.visit-block h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.visit-block p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--warm-gray);
}

.visit-block a {
    color: var(--terracotta);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s var(--ease-smooth);
}

.visit-block a:hover {
    border-bottom-color: var(--terracotta);
}

.visit-map {
    position: relative;
    overflow: hidden;
}

.visit-map img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 56/38;
    object-fit: cover;
}

.map-link {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--charcoal);
    padding: 0.6rem 1rem;
    text-decoration: none;
    transition: background 0.3s var(--ease-smooth);
}

.map-link:hover {
    background: var(--terracotta);
}

/* CONTACT */
.contact {
    padding: clamp(5rem, 12vw, 10rem) clamp(1.5rem, 4vw, 4rem);
    background: var(--sand);
}

.contact-content {
    max-width: 640px;
    margin: 0 auto;
}

.contact-sub {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--charcoal);
    background: var(--white);
    border: 1px solid var(--sand-dark);
    padding: 0.85rem 1rem;
    outline: none;
    transition: border-color 0.3s var(--ease-smooth);
    -webkit-appearance: none;
    border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(184, 92, 56, 0.08);
    border: 1px solid rgba(184, 92, 56, 0.2);
    color: var(--terracotta-deep);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* FOOTER */
.footer {
    padding: 4rem clamp(1.5rem, 4vw, 4rem) 2rem;
    background: var(--charcoal);
    color: var(--sand);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(245, 240, 235, 0.1);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--sand);
    display: block;
    margin-bottom: 0.25rem;
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--warm-gray);
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--warm-gray);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s var(--ease-smooth);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--warm-gray);
    transition: color 0.3s var(--ease-smooth);
}

.footer-social a:hover {
    color: var(--terracotta-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.75rem;
    color: var(--warm-gray);
}

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

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

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        background: var(--cream);
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu a {
        font-size: 1rem;
        letter-spacing: 0.12em;
    }

    .nav-cta {
        border: 1px solid var(--terracotta) !important;
        padding: 0.75rem 1.5rem !important;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-line {
        display: none;
    }

    .hero-content {
        padding: 7rem 1.5rem 4rem;
        order: 2;
    }

    .hero-image {
        height: 50vh;
        order: 1;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

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

    .about-image,
    .food-image {
        order: -1;
    }

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

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

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

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

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

    .food-list li {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}
