/* ================================
   NOIR & SAFFRON
   GLOBAL STYLES
================================ */

:root {
    --black: #10100f;
    --dark: #171715;
    --cream: #f3eee4;
    --warm: #d5b06a;
    --muted: #aaa59b;
    --line: rgba(243, 238, 228, 0.18);

    --serif: "Playfair Display", serif;
    --sans: "DM Sans", sans-serif;
}


/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--cream);
    font-family: var(--sans);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* ================================
   NAVBAR
================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;

    padding: 0 6vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 1000;

    transition:
        background 0.4s ease,
        backdrop-filter 0.4s ease;
}

.navbar.scrolled {
    background: rgba(16, 16, 15, 0.88);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--line);
}


.logo {
    font-family: var(--serif);
    font-size: 22px;
    letter-spacing: 3px;
    white-space: nowrap;
}

.logo span,
.footer-logo span {
    color: var(--warm);
}


.nav-links {
    display: flex;
    gap: 38px;
}

.nav-links a {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ddd8ce;

    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: var(--warm);

    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}


.reserve-btn {
    padding: 13px 20px;
    border: 1px solid var(--warm);

    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.reserve-btn:hover {
    background: var(--warm);
    color: var(--black);
}


.menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: var(--cream);
    font-size: 24px;
    cursor: pointer;
}


/* ================================
   HERO
================================ */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    padding: 140px 8vw 80px;

    background:
        linear-gradient(
            90deg,
            rgba(10, 10, 9, 0.88) 0%,
            rgba(10, 10, 9, 0.48) 48%,
            rgba(10, 10, 9, 0.2) 100%
        ),
        url("https://images.unsplash.com/photo-1515003197210-e0cd71810b5f?auto=format&fit=crop&w=2200&q=90")
        center / cover;

    overflow: hidden;
}


.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(213, 176, 106, 0.12),
            transparent 35%
        );

    pointer-events: none;
}


.hero-content {
    position: relative;
    z-index: 2;

    max-width: 760px;
}


.eyebrow,
.section-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--warm);
}


.hero h1 {
    margin-top: 28px;

    font-family: var(--serif);
    font-size: clamp(64px, 8vw, 120px);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -4px;
}

.hero h1 em {
    display: block;
    color: var(--warm);
    font-weight: 400;
}


.hero-description {
    max-width: 460px;

    margin-top: 35px;

    color: #c4bfb5;
    font-size: 14px;
    line-height: 1.8;
}


.hero-actions {
    display: flex;
    gap: 15px;

    margin-top: 42px;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 28px;

    border: 1px solid var(--warm);

    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}


.btn-primary {
    background: var(--warm);
    color: var(--black);
}


.btn-primary:hover {
    background: #e4c17b;
}


.btn-outline {
    color: var(--cream);
}


.btn-outline:hover {
    background: var(--cream);
    color: var(--black);
}


.hero-bottom {
    position: absolute;
    bottom: 35px;
    left: 8vw;
    right: 8vw;

    display: flex;
    justify-content: space-between;

    color: #aaa59b;

    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;

    border-top: 1px solid rgba(243, 238, 228, 0.18);
    padding-top: 15px;
}


/* ================================
   INTRO
================================ */

.intro {
    min-height: 80vh;

    padding: 150px 12vw;

    background: var(--cream);
    color: var(--black);

    position: relative;

    display: grid;
    grid-template-columns: 80px minmax(0, 760px) 1fr;

    align-items: center;
}


.section-number {
    align-self: start;

    padding-top: 5px;

    font-size: 10px;
    letter-spacing: 2px;
    color: #80796e;
}


.intro-content {
    max-width: 700px;
}


.intro h2 {
    margin-top: 28px;

    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 90px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -3px;
}


.intro h2 em {
    color: #9b6d32;
}


.intro-content > p:last-child {
    max-width: 520px;

    margin-top: 38px;

    color: #686157;

    font-size: 15px;
    line-height: 1.9;
}


.intro-accent {
    width: 150px;
    height: 150px;

    border: 1px solid rgba(155, 109, 50, 0.4);
    border-radius: 50%;

    display: grid;
    place-items: center;

    justify-self: end;

    animation: rotateAccent 12s linear infinite;
}

.intro-accent span {
    color: #9b6d32;
    font-size: 28px;
}


@keyframes rotateAccent {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
/* ================================
   SIGNATURE MENU
================================ */

.menu-section {
    padding: 150px 8vw;
    background: var(--dark);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 75px;
}

.section-heading h2 {
    max-width: 800px;
    margin-top: 25px;

    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -3px;
}

.section-heading h2 em {
    display: block;
    color: var(--warm);
    font-weight: 400;
}

.text-link {
    flex-shrink: 0;

    padding-bottom: 8px;
    border-bottom: 1px solid var(--warm);

    color: var(--cream);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* DISH GRID */

.dish-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 25px;
}

.dish-card {
    min-width: 0;
}

.dish-large {
    grid-row: span 2;
}

.dish-image {
    width: 100%;
    height: 390px;

    background-position: center;
    background-size: cover;

    transition:
        transform .7s cubic-bezier(.2,.7,.2,1),
        filter .7s ease;
}

.dish-large .dish-image {
    height: 620px;
}

.dish-card:hover .dish-image {
    transform: scale(1.025);
    filter: brightness(1.08);
}


/* FOOD IMAGES */

.dish-one {
    background-image:
        linear-gradient(
            to bottom,
            transparent 55%,
            rgba(0,0,0,.25)
        ),
        url("https://images.unsplash.com/photo-1601050690597-df0568f70950?auto=format&fit=crop&w=1200&q=85");
}

.dish-two {
    background-image:
        url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1000&q=85");
}

.dish-three {
    background-image:
        url("https://images.unsplash.com/photo-1601050690117-94f5f6fa8bd7?auto=format&fit=crop&w=1000&q=85");
}


/* DISH INFORMATION */

.dish-info {
    min-height: 95px;

    padding: 20px 0;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    border-bottom: 1px solid var(--line);

    gap: 25px;
}

.dish-category {
    display: block;

    margin-bottom: 8px;

    font-size: 8px;
    letter-spacing: 2px;
    color: var(--warm);
}

.dish-info h3 {
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 400;
}

.price {
    flex-shrink: 0;

    font-size: 11px;
    color: var(--muted);
}


/* ================================
   CHEF EXPERIENCE
================================ */

.experience {
    min-height: 90vh;

    display: grid;
    grid-template-columns: 1fr 1fr;

    background: #0c0c0b;
}

.experience-image {
    min-height: 700px;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(12,12,11,.35)
        ),
        url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1400&q=90")
        center / cover;
}

.experience-content {
    padding: 100px 9vw 100px 7vw;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-content h2 {
    margin-top: 25px;

    font-family: var(--serif);
    font-size: clamp(52px, 5vw, 82px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -3px;
}

.experience-content h2 em {
    display: block;
    color: var(--warm);
}

.experience-content > p:not(.section-label) {
    max-width: 430px;

    margin-top: 30px;

    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

.btn-light {
    width: fit-content;

    margin-top: 38px;

    color: var(--cream);
}


/* ================================
   MENU LIST
================================ */

.menu-list {
    padding: 150px 8vw;

    background: var(--cream);
    color: var(--black);
}

.menu-list .section-heading {
    margin-bottom: 70px;
}

.menu-list .section-label {
    color: #9b6d32;
}

.menu-list h2 {
    color: var(--black);
}

.menu-list h2 em {
    color: #9b6d32;
}


.menu-items {
    border-top: 1px solid #c9c1b4;
}

.menu-item {
    min-height: 120px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 25px 0;

    border-bottom: 1px solid #c9c1b4;

    transition:
        padding-left .35s ease,
        background .35s ease;
}

.menu-item:hover {
    padding-left: 25px;
    background: rgba(155,109,50,.06);
}

.menu-item > div {
    display: grid;
    grid-template-columns: 45px minmax(220px, 1fr);
    align-items: center;
}

.menu-item span {
    font-size: 9px;
    color: #8b8276;
}

.menu-item h3 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
}

.menu-item p {
    grid-column: 2;

    margin-top: 7px;

    color: #7a7369;
    font-size: 11px;
}

.menu-item strong {
    font-size: 12px;
    font-weight: 500;
    color: #9b6d32;
}
/* ================================
   RESERVATION
================================ */

.reservation {
    min-height: 75vh;
    padding: 140px 8vw;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.reservation-inner {
    max-width: 850px;
}

.reservation .section-label {
    color: var(--warm);
}

.reservation h2 {
    font-family: var(--serif);
    font-size: clamp(55px, 8vw, 110px);
    line-height: 0.95;
    font-weight: 400;
    margin: 25px 0;
}

.reservation h2 em {
    color: var(--warm);
}

.reservation p {
    max-width: 550px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.reservation-email {
    display: inline-block;
    margin-top: 40px;
    color: var(--cream);
    font-size: 13px;
    letter-spacing: 0.08em;
    border-bottom: 1px solid var(--warm);
    padding-bottom: 8px;
    transition: color 0.3s ease;
}

.reservation-email:hover {
    color: var(--warm);
}
/* ================================
   FOOTER
================================ */

.footer {
    padding: 55px 8vw 30px;
    background: #090909;
    color: var(--cream);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 55px;
    border-bottom: 1px solid var(--line);
}

.footer-logo {
    font-family: var(--serif);
    font-size: 28px;
    letter-spacing: 0.05em;
}

.footer-logo span {
    color: var(--warm);
}

.footer-location {
    margin-top: 12px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 35px;
}

.footer-links a {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--warm);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    color: #77736c;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
/* ================================
   RESPONSIVE
================================ */

@media (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .reserve-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--cream);
        font-size: 24px;
        cursor: pointer;
    }

    .hero-content {
        max-width: 90%;
    }

    .hero h1 {
        font-size: clamp(55px, 13vw, 90px);
    }

    .intro {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .dish-grid {
        grid-template-columns: 1fr;
    }

    .dish-large {
        grid-row: auto;
    }

    .dish-large .dish-image {
        height: 450px;
    }

    .experience {
        grid-template-columns: 1fr;
    }

    .experience-image {
        min-height: 500px;
    }

    .menu-item > div {
        grid-template-columns: 35px minmax(0, 1fr);
    }
}


@media (max-width: 600px) {

    .navbar {
        height: 75px;
        padding: 0 5vw;
    }

    .logo {
        font-size: 16px;
    }

    .hero {
        padding: 120px 6vw 50px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .intro,
    .menu-section,
    .menu-list {
        padding-left: 6vw;
        padding-right: 6vw;
    }

    .section-heading {
        display: block;
    }

    .section-heading h2 {
        margin-top: 20px;
    }

    .dish-large .dish-image {
        height: 360px;
    }

    .dish-image {
        height: 280px;
    }

    .experience-content {
        padding: 80px 6vw;
    }

    .experience-image {
        min-height: 400px;
    }

    .menu-item {
        align-items: flex-start;
        gap: 20px;
    }

    .menu-item h3 {
        font-size: 21px;
    }

    .menu-item p {
        font-size: 10px;
    }

    .reservation {
        padding: 110px 6vw;
    }

    .reservation h2 {
        font-size: 55px;
    }

    .footer {
        padding-left: 6vw;
        padding-right: 6vw;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 20px;
    }
}
/* ================================
   MOBILE MENU
================================ */

@media (max-width: 900px) {

    .nav-links.mobile-open {
        display: flex;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        padding: 35px 6vw;
        background: rgba(16, 16, 15, 0.98);

        flex-direction: column;
        align-items: flex-start;
        gap: 25px;

        border-top: 1px solid var(--line);
    }

}
/* ================================
   SCROLL REVEAL
================================ */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}