/* ========== RESET & BASE ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: #2D1B28;
    background-color: #FDFCFA;
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ========== UTILITIES ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C49A3C;
    margin-bottom: 16px;
}

.label--light {
    color: #E8C07A;
}

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

.h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    color: #2D1B28;
    margin-bottom: 24px;
}

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

.text-white {
    color: #FDFCFA !important;
}

.text-plum-700 {
    color: #4A2C3D;
}

.text-amber-450 {
    color: #D4A054;
}

.section {
    padding: 120px 0;
}

.section--light {
    background-color: #F5EDE8;
}

.section--plum-dark {
    background-color: #3D2235;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--primary {
    background: #D4A054;
    color: #2D1B28;
    border: 1.5px solid #D4A054;
}

.btn--primary:hover {
    background: #C49A3C;
    border-color: #C49A3C;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(212, 160, 84, 0.3);
}

.btn--ghost {
    background: transparent;
    color: #FDFCFA;
    border: 1.5px solid rgba(253, 252, 250, 0.5);
}

.btn--ghost:hover {
    border-color: #FDFCFA;
    background: rgba(253, 252, 250, 0.08);
}

.btn--outline {
    background: transparent;
    color: #4A2C3D;
    border: 1.5px solid #4A2C3D;
}

.btn--outline:hover {
    background: #4A2C3D;
    color: #FDFCFA;
}

.btn--full {
    width: 100%;
}

/* ========== NAV ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(74, 44, 61, 0.08);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 101;
}

.nav__logo-mark {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: #D4A054;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #D4A054;
    border-radius: 50%;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav__logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 1.35rem;
    letter-spacing: 0.04em;
    color: #FDFCFA;
    transition: color 0.3s ease;
}

.nav.scrolled .nav__logo-text {
    color: #2D1B28;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(253, 252, 250, 0.8);
    transition: color 0.3s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #D4A054;
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: #D4A054;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    padding: 8px 20px;
    border: 1.5px solid rgba(212, 160, 84, 0.6);
    border-radius: 2px;
    color: #D4A054;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

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

.nav__link--cta:hover {
    background: #D4A054;
    color: #2D1B28;
}

.nav.scrolled .nav__link {
    color: #4A2C3D;
}

.nav.scrolled .nav__link--cta {
    border-color: #4A2C3D;
    color: #4A2C3D;
}

.nav.scrolled .nav__link--cta:hover {
    background: #4A2C3D;
    color: #FDFCFA;
}

/* Burger */
.nav__burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    z-index: 101;
    color: #FDFCFA;
    transition: color 0.3s ease;
}

.nav.scrolled .nav__burger {
    color: #2D1B28;
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(45, 27, 40, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-menu__link {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 2rem;
    color: rgba(253, 252, 250, 0.7);
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
}

.mobile-menu__link:hover {
    color: #D4A054;
}

.mobile-menu__link--cta {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #D4A054;
    margin-top: 12px;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(45, 27, 40, 0.55) 0%,
        rgba(45, 27, 40, 0.40) 50%,
        rgba(45, 27, 40, 0.70) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    padding: 0 24px;
}

.hero__eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #E8C07A;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
}

.hero__headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    line-height: 1.1;
    color: #FDFCFA;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
}

.hero__sub {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    color: rgba(253, 252, 250, 0.8);
    max-width: 520px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(253, 252, 250, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    animation: float 2.5s ease-in-out infinite;
    transition: color 0.3s ease;
}

.hero__scroll:hover {
    color: #D4A054;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ========== DIVIDER ========== */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.divider__line {
    width: 80px;
    height: 1px;
    background: #D4A054;
    opacity: 0.5;
}

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

.about__text .label {
    margin-bottom: 20px;
}

.about__text p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #4A2C3D;
    margin-bottom: 20px;
}

.about__text p:last-child {
    margin-bottom: 0;
}

.about__image {
    position: relative;
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.about__image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid #D4A054;
    border-radius: 2px;
    z-index: -1;
    opacity: 0.4;
}

/* ========== MENU ========== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.menu-card {
    background: #FDFCFA;
    border: 1px solid rgba(74, 44, 61, 0.1);
    border-radius: 2px;
    padding: 44px 40px;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.menu-card:hover {
    box-shadow: 0 16px 48px rgba(74, 44, 61, 0.08);
    transform: translateY(-2px);
}

.menu-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D4A054;
    border-radius: 50%;
    color: #C49A3C;
    margin-bottom: 24px;
}

.menu-card__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: #2D1B28;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(74, 44, 61, 0.1);
}

.menu-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.menu-card__item {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.88rem;
    color: #2D1B28;
}

.menu-card__desc {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    color: #6E4660;
    margin-left: auto;
    display: block;
    margin-top: 2px;
}

.menu-note {
    text-align: center;
    font-size: 0.8rem;
    color: #6E4660;
    margin-top: 48px;
    font-style: italic;
}

/* ========== GALLERY ========== */
.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 64px;
}

.gallery__item {
    overflow: hidden;
    border-radius: 2px;
}

.gallery__item--wide {
    grid-column: 1 / -1;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img {
    transform: scale(1.03);
}

/* ========== SPLIT (Hours + Location) ========== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.split__left .label,
.split__right .label {
    margin-bottom: 16px;
}

.hours-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(74, 44, 61, 0.1);
}

.hours-row:first-child {
    border-top: 1px solid rgba(74, 44, 61, 0.1);
}

.hours-day {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.88rem;
    color: #2D1B28;
}

.hours-time {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.88rem;
    color: #6E4660;
}

.hours-note {
    font-size: 0.8rem;
    color: #6E4660;
    margin-top: 20px;
    font-style: italic;
}

.visit-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.visit-card__icon {
    color: #C49A3C;
    flex-shrink: 0;
    margin-top: 2px;
}

.visit-card__name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 1.3rem;
    color: #2D1B28;
    margin-bottom: 4px;
}

.visit-card__addr {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: #6E4660;
    line-height: 1.6;
}

.parking-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #6E4660;
    margin-top: 16px;
}

.parking-note svg {
    color: #C49A3C;
    flex-shrink: 0;
}

/* ========== CONTACT ========== */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4A2C3D;
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: #4A2C3D;
    transition: color 0.3s ease;
}

.contact__detail:hover {
    color: #C49A3C;
}

.contact__detail svg {
    color: #C49A3C;
    flex-shrink: 0;
}

/* ========== FORM ========== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4A2C3D;
}

.form-input {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: #2D1B28;
    background: #F5EDE8;
    border: 1px solid rgba(74, 44, 61, 0.15);
    border-radius: 2px;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
    -webkit-appearance: none;
}

.form-input:focus {
    border-color: #D4A054;
    background: #FDFCFA;
}

.form-input::placeholder {
    color: #6E4660;
    opacity: 0.6;
}

.form-select {
    cursor: pointer;
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(74, 44, 61, 0.05);
    border: 1px solid rgba(74, 44, 61, 0.1);
    border-radius: 2px;
    font-size: 0.88rem;
    color: #4A2C3D;
}

.form-success svg {
    color: #C49A3C;
    flex-shrink: 0;
}

/* ========== FOOTER ========== */
.footer {
    background: #2D1B28;
    padding: 80px 0 40px;
}

.footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(253, 252, 250, 0.08);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav__logo-mark--footer {
    background: transparent;
    border-color: #D4A054;
    color: #D4A054;
}

.footer__brand-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #FDFCFA;
    letter-spacing: 0.04em;
}

.footer__tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    color: rgba(253, 252, 250, 0.5);
    max-width: 260px;
    line-height: 1.6;
}

.footer__nav {
    display: flex;
    gap: 32px;
}

.footer__nav a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(253, 252, 250, 0.5);
    transition: color 0.3s ease;
}

.footer__nav a:hover {
    color: #D4A054;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.78rem;
    color: rgba(253, 252, 250, 0.35);
}

.footer__bottom a {
    color: rgba(253, 252, 250, 0.35);
    transition: color 0.3s ease;
}

.footer__bottom a:hover {
    color: #D4A054;
}

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

.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; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .about {
        gap: 48px;
    }

    .split,
    .contact {
        gap: 56px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .nav__links {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .hero__headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .about {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__image {
        order: -1;
        max-height: 400px;
    }

    .about__image::after {
        display: none;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 48px;
    }

    .menu-card {
        padding: 32px 28px;
    }

    .gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery__item--wide {
        grid-column: 1;
    }

    .gallery__item img {
        height: 260px;
    }

    .split {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .contact {
        grid-template-columns: 1fr;
        gap: 56px;
    }

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

    .footer__top {
        flex-direction: column;
        gap: 32px;
    }

    .footer__nav {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

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

    .hero__actions .btn {
        width: 100%;
    }

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