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

:root {
    --plum-50: #faf5f7;
    --plum-100: #f3e8ed;
    --plum-200: #e8d0d9;
    --plum-300: #d4a8b8;
    --plum-400: #b87a92;
    --plum-500: #96526e;
    --plum-600: #7a3d56;
    --plum-700: #5c3a5c;
    --plum-800: #3d253d;
    --plum-900: #2a1829;
    --plum-950: #1a0e1a;

    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;

    --white: #ffffff;
    --off-white: #fefcf8;
    --cream: #faf8f4;
    --warm-gray-50: #f9f8f6;
    --warm-gray-100: #f3f0ec;
    --warm-gray-200: #e8e4de;
    --warm-gray-300: #d4cfc7;
    --warm-gray-400: #a8a096;
    --warm-gray-500: #7a7268;
    --warm-gray-600: #5c554e;
    --warm-gray-700: #3d3832;
    --warm-gray-800: #2a2520;
    --warm-gray-900: #1a1612;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--warm-gray-800);
    background-color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ─── NAVIGATION ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(254, 252, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--ease-out);
}

.nav.scrolled {
    border-bottom-color: var(--warm-gray-200);
}

.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: var(--plum-700);
}

.nav__logo-icon {
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.nav__right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--warm-gray-500);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav__link:hover {
    color: var(--plum-700);
}

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

.nav__cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--plum-600);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--plum-200);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.nav__cta:hover {
    background: var(--plum-700);
    border-color: var(--plum-700);
    color: var(--white);
}

.nav__menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--plum-700);
    padding: 0.5rem;
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: rgba(254, 252, 248, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

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

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--plum-700);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu__link:hover {
    color: var(--plum-400);
}

.mobile-menu__phone {
    font-family: var(--font-body);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--warm-gray-200);
    color: var(--warm-gray-500);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    padding: 72px clamp(1.5rem, 4vw, 3rem) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, var(--plum-50) 0%, var(--cream) 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.hero__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    flex: 1;
    padding-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum-500);
    margin-bottom: 1.5rem;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--plum-900);
    margin-bottom: 1.75rem;
    max-width: 560px;
}

.hero__headline em {
    font-style: italic;
    color: var(--plum-600);
}

.hero__sub {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--warm-gray-600);
    max-width: 440px;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
    border: none;
}

.btn--primary {
    background: var(--plum-700);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--plum-800);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(92, 58, 92, 0.2);
}

.btn--primary svg {
    transition: transform 0.3s var(--ease-out);
}

.btn--primary:hover svg {
    transform: translate(3px, -3px);
}

.btn--ghost {
    background: transparent;
    color: var(--plum-600);
    border: 1px solid var(--plum-200);
}

.btn--ghost:hover {
    border-color: var(--plum-400);
    background: var(--plum-50);
}

.hero__image {
    position: relative;
    height: clamp(480px, 70vh, 720px);
}

.hero__image-frame {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 0;
}

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

.hero__image-accent {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--amber-300);
    z-index: -1;
    pointer-events: none;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: clamp(1.5rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-gray-400);
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--plum-300), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
}

/* ─── DIVIDER ─── */
.divider {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.divider__line {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--warm-gray-200), transparent);
}

/* ─── SECTION COMMON ─── */
.section__eyebrow {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum-500);
    margin-bottom: 1rem;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--plum-900);
    margin-bottom: 1.5rem;
}

.text-accent {
    color: var(--plum-600);
    font-style: italic;
}

/* ─── ABOUT ─── */
.about {
    padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 4vw, 3rem);
    max-width: 1280px;
    margin: 0 auto;
}

.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
    margin-bottom: 3rem;
}

.about__text {
    font-size: 0.9375rem;
    line-height: 1.85;
    color: var(--warm-gray-600);
    margin-bottom: 1.25rem;
}

.about__details {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--warm-gray-200);
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.detail-item__label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-gray-400);
}

.detail-item__value {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--plum-700);
}

.about__image {
    overflow: hidden;
}

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

/* ─── MENU ─── */
.menu {
    padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 4vw, 3rem);
    background: var(--plum-950);
    color: var(--white);
}

.menu__header {
    max-width: 1280px;
    margin: 0 auto 4rem;
}

.menu__header .section__title {
    color: var(--white);
}

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

.menu__category {
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    transition: border-color 0.3s ease;
}

.menu__category:hover {
    border-color: rgba(251, 191, 36, 0.3);
}

.menu__category-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--amber-400);
}

.menu__category-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.625rem;
}

.menu__category-desc {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.75rem;
}

.menu__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.menu__item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.menu__item-name {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--warm-gray-100);
}

.menu__item-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
}

.menu__note {
    max-width: 1280px;
    margin: 3rem auto 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    font-style: italic;
    font-family: var(--font-display);
    font-size: 1rem;
}

/* ─── VISIT ─── */
.visit {
    padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 4vw, 3rem);
    max-width: 1280px;
    margin: 0 auto;
}

.visit__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--warm-gray-200);
}

.visit__detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.visit__detail-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--plum-200);
    border-radius: 50%;
    color: var(--plum-600);
    margin-top: 0.125rem;
}

.visit__detail-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-gray-400);
    margin-bottom: 0.25rem;
}

.visit__detail-value {
    font-size: 0.9375rem;
    color: var(--warm-gray-700);
    line-height: 1.6;
}

.visit__phone {
    color: var(--plum-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.visit__phone:hover {
    color: var(--plum-400);
}

.visit__map-btn {
    margin-top: 1.5rem;
}

.visit__image {
    position: relative;
    overflow: hidden;
}

.visit__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 7/6;
    object-fit: cover;
    display: block;
}

.visit__image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 64px;
    height: 64px;
    background: var(--amber-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-900);
}

/* ─── FOOTER ─── */
.footer {
    background: var(--plum-950);
    color: var(--white);
    padding: 3rem clamp(1.5rem, 4vw, 3rem);
}

.footer__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--white);
}

.footer__logo-icon {
    opacity: 0.7;
}

.footer__name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
}

.footer__tagline {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 280px;
    line-height: 1.6;
}

.footer__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__bottom a:hover {
    color: var(--amber-400);
}

/* ─── SCROLL REVEAL (below fold only) ─── */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
}

@media (prefers-reduced-motion: no-preference) {
    .reveal[data-reveal] {
        opacity: 0;
        transform: translateY(24px);
    }
    .reveal.visible[data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1023px) {
    .nav__link,
    .nav__cta {
        display: none;
    }

    .nav__menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero::before {
        display: none;
    }

    .hero__image {
        height: clamp(360px, 50vh, 520px);
        order: -1;
    }

    .hero__headline {
        max-width: none;
    }

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

    .about__image {
        order: -1;
    }

    .menu__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .visit__image {
        order: -1;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 72px;
    }

    .hero__scroll {
        display: none;
    }

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

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

    .about__details {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer__top {
        flex-direction: column;
    }

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