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

:root {
    --plum-deep: #2d1b36;
    --plum: #4a2c5a;
    --plum-light: #6b3f7a;
    --plum-muted: #8a5a9e;
    --amber: #d4a017;
    --amber-light: #e8b930;
    --amber-muted: #c4900f;
    --cream: #faf8f5;
    --cream-dark: #f0ece6;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text: #2d2d44;
    --text-muted: #6b6b80;
    --text-light: #9090a0;
    --border: #e8e4de;
    --shadow-sm: 0 1px 3px rgba(45, 27, 54, 0.06);
    --shadow-md: 0 4px 16px rgba(45, 27, 54, 0.08);
    --shadow-lg: 0 8px 32px rgba(45, 27, 54, 0.12);
    --shadow-xl: 0 16px 48px rgba(45, 27, 54, 0.16);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

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

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

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

/* ── Header ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(250, 248, 245, 0.97);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

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

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--plum);
}

.logo-text {
    letter-spacing: -0.01em;
}

/* ── Nav ── */
.nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav__link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--plum);
    background: rgba(74, 44, 90, 0.06);
}

.nav__link--cta {
    background: var(--plum);
    color: var(--white) !important;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--plum-light);
    transform: translateY(-1px);
}

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

.nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--plum);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(45, 27, 54, 0.82) 0%,
        rgba(74, 44, 90, 0.70) 50%,
        rgba(45, 27, 54, 0.60) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    max-width: 720px;
}

.hero__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 20px;
    padding: 6px 14px;
    border: 1px solid rgba(212, 160, 23, 0.4);
    border-radius: 50px;
}

.hero__headline {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

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

.hero__subhead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn--primary {
    background: var(--amber);
    color: var(--plum-deep);
    border-color: var(--amber);
}

.btn--primary:hover {
    background: var(--amber-light);
    border-color: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.35);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn--large {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ── Hero scroll indicator ── */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

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

/* ── Section shared ── */
.section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber-muted);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--plum-deep);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 640px;
}

/* ── Features ── */
.features {
    padding: 120px 0;
    background: var(--white);
}

.features__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.features__header .section-subtitle {
    margin: 0 auto;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 36px 28px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 44, 90, 0.08);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--plum-deep);
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── Menu Preview ── */
.menu-preview {
    padding: 120px 0;
    background: var(--cream);
}

.menu-preview__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.menu-preview__header .section-subtitle {
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.menu-card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.menu-card:hover .menu-card__image {
    transform: scale(1.04);
}

.menu-card__image-wrapper {
    overflow: hidden;
}

.menu-card__body {
    padding: 24px;
}

.menu-card__title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--plum-deep);
    margin-bottom: 8px;
}

.menu-card__description {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.menu-preview__note {
    text-align: center;
    padding: 24px;
    background: rgba(74, 44, 90, 0.04);
    border-radius: var(--radius-md);
    border: 1px dashed var(--border);
}

.menu-preview__note p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.menu-preview__note a {
    color: var(--plum);
    font-weight: 600;
    border-bottom: 1px solid var(--amber);
}

.menu-preview__note a:hover {
    color: var(--plum-light);
}

/* ── Philosophy ── */
.philosophy {
    padding: 120px 0;
    background: var(--white);
}

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

.philosophy__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.philosophy__content .section-title {
    margin-bottom: 24px;
}

.philosophy__text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 20px;
}

.philosophy__values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.value-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
}

.value-item__number {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--amber);
    line-height: 1;
    padding-top: 2px;
}

.value-item h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--plum-deep);
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Gallery ── */
.gallery {
    padding: 120px 0;
    background: var(--cream);
}

.gallery__header {
    text-align: center;
    margin-bottom: 48px;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery__item--wide {
    grid-column: span 7;
    height: 320px;
}

.gallery__item:not(.gallery__item--wide) {
    height: 240px;
}

/* ── CTA ── */
.cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(45, 27, 54, 0.88) 0%,
        rgba(74, 44, 90, 0.82) 100%
    );
}

.cta__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.cta__content .section-title {
    color: var(--white);
    margin-bottom: 16px;
}

.cta__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 48px;
}

.cta__details {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.cta-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.cta-detail svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.cta-detail strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 4px;
}

.cta-detail p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-detail a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.cta-detail a:hover {
    color: var(--amber);
}

/* ── Form ── */
.cta__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 520px;
    margin: 0 auto;
}

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

.cta__form input,
.cta__form textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
}

.cta__form input::placeholder,
.cta__form textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.cta__form input:focus,
.cta__form textarea:focus {
    border-color: var(--amber);
    background: rgba(255, 255, 255, 0.12);
}

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

.form-success {
    display: none;
    text-align: center;
    color: var(--amber-light);
    font-weight: 600;
    padding: 16px;
    background: rgba(212, 160, 23, 0.12);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212, 160, 23, 0.3);
}

.form-success.visible {
    display: block;
}

/* ── Footer ── */
.footer {
    background: var(--plum-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer__col h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 20px;
}

.footer__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col ul li {
    font-size: 0.9rem;
}

.footer__col ul li a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer__col ul li a:hover {
    color: var(--white);
}

.footer__col address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer__col address a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer__col address a:hover {
    color: var(--amber);
}

.footer__col ul li span {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

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

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .philosophy__grid {
        gap: 40px;
    }

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

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

    .nav__list {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

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

    .nav__link {
        width: 100%;
        padding: 12px 16px;
    }

    .nav__link--cta {
        margin-left: 0;
        text-align: center;
    }

    .hero__content {
        padding: 100px 0 60px;
    }

    .hero__headline {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .features {
        padding: 80px 0;
    }

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

    .menu-preview {
        padding: 80px 0;
    }

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

    .philosophy {
        padding: 80px 0;
    }

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

    .philosophy__image {
        order: -1;
    }

    .gallery {
        padding: 80px 0;
    }

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

    .gallery__item--wide {
        grid-column: span 2;
        height: 220px;
    }

    .gallery__item:not(.gallery__item--wide) {
        height: 180px;
    }

    .cta {
        padding: 80px 0;
    }

    .cta__details {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

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

    .hero {
        min-height: 600px;
    }

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

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

/* ── Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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