:root {
    --background: #0b0907;
    --background-soft: #12100d;
    --surface: #17130f;
    --surface-light: #201a14;

    --gold: #d4a85a;
    --gold-light: #f0d49b;
    --cream: #f5efe5;

    --text: #fffaf2;
    --text-soft: #b9afa2;
    --text-muted: #81786d;

    --border: rgba(255, 255, 255, 0.10);
    --gold-border: rgba(212, 168, 90, 0.32);

    --container: 1200px;

    --font-body: "DM Sans", sans-serif;
    --font-heading: "Playfair Display", serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background: var(--background);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

/* Demo notice */

.demo-notice {
    position: relative;
    z-index: 1200;
    background: #050403;
    border-bottom: 1px solid var(--border);
}

.demo-notice-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--text-soft);
    font-size: 11px;
}

.demo-notice a {
    color: var(--gold-light);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
}

/* Header */

.site-header {
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 18px 0;
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.site-header.scrolled {
    position: fixed;
    top: 0;
    background: rgba(11, 9, 7, 0.94);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.navbar {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-symbol {
    width: 43px;
    height: 43px;
    border: 1px solid var(--gold-border);
    border-radius: 50%;
    color: var(--gold);
    display: grid;
    place-items: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-copy strong {
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1.1;
}

.brand-copy small {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 8px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.navigation-wrapper {
    display: flex;
    align-items: center;
    gap: 35px;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.navigation a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.navigation a:hover,
.navigation a.active {
    color: var(--gold-light);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: var(--surface);
}

.mobile-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--cream);
}

/* Buttons */

.button {
    min-height: 52px;
    padding: 8px 9px 8px 21px;
    border: none;
    border-radius: 7px;
    background: var(--gold);
    color: #171008;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 27px;
    font-size: 13px;
    font-weight: 800;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.button:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.button > span {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.14);
    display: grid;
    place-items: center;
}

.button-small {
    min-height: 43px;
    padding: 8px 17px;
}

.secondary-button,
.outline-button {
    min-height: 52px;
    padding: 0 21px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--cream);
    font-size: 13px;
    font-weight: 700;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.secondary-button:hover,
.outline-button:hover {
    border-color: var(--gold-border);
    background: rgba(212, 168, 90, 0.08);
}

/* Hero */

.hero-section {
    position: relative;
    min-height: 920px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background,
.hero-overlay {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(8, 6, 4, 0.96) 0%,
            rgba(8, 6, 4, 0.76) 48%,
            rgba(8, 6, 4, 0.30) 100%
        ),
        linear-gradient(
            to top,
            rgba(8, 6, 4, 0.82),
            transparent 45%
        );
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 110px;
}

.hero-content {
    max-width: 760px;
}

.eyebrow,
.section-label {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-content h1 {
    margin-top: 25px;
    font-family: var(--font-heading);
    font-size: clamp(68px, 8vw, 112px);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.055em;
}

.hero-content h1 em {
    display: block;
    color: var(--gold-light);
    font-weight: 500;
}

.hero-content > p {
    max-width: 620px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.8;
}

.hero-actions {
    margin-top: 39px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-details {
    margin-top: 100px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

.hero-details div {
    display: flex;
    flex-direction: column;
}

.hero-details span {
    color: var(--gold);
    font-size: 8px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-details strong {
    margin-top: 8px;
    font-family: var(--font-heading);
    font-size: 18px;
}

.hero-details small {
    margin-top: 4px;
    color: var(--text-soft);
    font-size: 10px;
}

.scroll-indicator {
    position: absolute;
    right: 40px;
    bottom: 45px;
    z-index: 3;
    color: rgba(255, 255, 255, 0.58);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transform: rotate(90deg);
    transform-origin: right center;
}

.scroll-indicator span {
    width: 38px;
    height: 1px;
    background: var(--gold);
}

/* Shared headings */

.section-heading {
    margin-bottom: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.section-heading h2,
.about-content h2,
.chef-content h2,
.reservation-copy h2,
.location-content h2 {
    margin-top: 15px;
    max-width: 760px;
    font-family: var(--font-heading);
    font-size: clamp(43px, 5vw, 67px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.section-heading > p {
    max-width: 430px;
    color: var(--text-soft);
}

/* About */

.about-section {
    background: var(--background-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr 0.7fr;
    align-items: center;
    gap: 45px;
}

.about-image-large,
.about-image-small {
    overflow: hidden;
    border-radius: 4px;
}

.about-image-large img {
    height: 600px;
    object-fit: cover;
}

.about-image-small {
    position: relative;
}

.about-image-small img {
    height: 430px;
    object-fit: cover;
}

.about-image-large img,
.about-image-small img {
    transition: transform 0.8s ease;
}

.about-image-large:hover img,
.about-image-small:hover img {
    transform: scale(1.04);
}

.about-content > p {
    margin-top: 21px;
    color: var(--text-soft);
    font-size: 14px;
}

.about-statistics {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-statistics div {
    display: flex;
    flex-direction: column;
}

.about-statistics strong {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 30px;
}

.about-statistics span {
    color: var(--text-muted);
    font-size: 9px;
}

.image-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
    background: linear-gradient(to top, rgba(8, 6, 4, 0.94), transparent);
}

.image-caption span,
.image-caption strong {
    display: block;
}

.image-caption span {
    color: var(--gold);
    font-size: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.image-caption strong {
    margin-top: 6px;
    font-family: var(--font-heading);
    font-size: 18px;
}

/* Menu */

.menu-section {
    background: var(--background);
}

.menu-filter {
    margin-bottom: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.menu-filter button {
    padding: 9px 15px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: transparent;
    color: var(--text-soft);
    font-size: 10px;
}

.menu-filter button.active,
.menu-filter button:hover {
    border-color: var(--gold-border);
    background: rgba(212, 168, 90, 0.10);
    color: var(--gold-light);
}

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

.menu-card {
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.menu-card:hover {
    transform: translateY(-7px);
    border-color: var(--gold-border);
}

.menu-image {
    position: relative;
    overflow: hidden;
}

.menu-image img {
    height: 270px;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.menu-card:hover .menu-image img {
    transform: scale(1.05);
}

.menu-image > span {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 10px;
    border-radius: 30px;
    background: rgba(8, 6, 4, 0.82);
    color: var(--gold-light);
    font-size: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.menu-content {
    padding: 25px;
}

.menu-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.menu-title-row h3 {
    max-width: 230px;
    font-family: var(--font-heading);
    font-size: 21px;
    line-height: 1.15;
}

.menu-title-row strong {
    flex: 0 0 auto;
    color: var(--gold-light);
    font-size: 14px;
}

.menu-content > p {
    min-height: 60px;
    margin-top: 13px;
    color: var(--text-soft);
    font-size: 11px;
}

.menu-content > a {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
}

.full-menu-action {
    margin-top: 42px;
    display: flex;
    justify-content: center;
}

/* Experience */

.experience-section {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.experience-background,
.experience-overlay {
    position: absolute;
    inset: 0;
}

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

.experience-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(8, 6, 4, 0.95),
            rgba(8, 6, 4, 0.64),
            rgba(8, 6, 4, 0.30)
        );
}

.experience-content {
    position: relative;
    z-index: 2;
    max-width: 840px;
}

.light-label {
    color: var(--gold-light);
}

.experience-content h2 {
    margin-top: 17px;
    font-family: var(--font-heading);
    font-size: clamp(50px, 6vw, 78px);
    font-weight: 500;
    line-height: 1;
}

.experience-content h2 em {
    display: block;
    color: var(--gold-light);
    font-weight: 500;
}

.experience-content > p {
    max-width: 580px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.68);
}

.experience-features {
    margin-top: 65px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.experience-features article {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.experience-features span {
    color: var(--gold);
    font-size: 9px;
}

.experience-features h3 {
    margin: 21px 0 8px;
    font-family: var(--font-heading);
    font-size: 18px;
}

.experience-features p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
}

/* Chef */

.chef-section {
    background: var(--cream);
    color: #261d14;
}

.chef-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    align-items: center;
    gap: 90px;
}

.chef-content .section-label {
    color: #936b2f;
}

.chef-content > blockquote {
    margin-top: 35px;
    padding-left: 25px;
    border-left: 2px solid #b98742;
    color: #66584a;
    font-family: var(--font-heading);
    font-size: 21px;
    line-height: 1.55;
}

.chef-name {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
}

.chef-name strong {
    font-family: var(--font-heading);
    font-size: 18px;
}

.chef-name span {
    margin-top: 3px;
    color: #817264;
    font-size: 10px;
    text-transform: uppercase;
}

.chef-image {
    overflow: hidden;
}

.chef-image img {
    height: 620px;
    object-fit: cover;
    object-position: center top;
}

/* Testimonials */

.testimonial-section {
    background: var(--background-soft);
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.overall-rating strong {
    font-family: var(--font-heading);
    font-size: 42px;
}

.overall-rating span {
    color: var(--gold);
    letter-spacing: 0.1em;
}

.overall-rating small {
    color: var(--text-muted);
    font-size: 9px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-grid article {
    min-height: 290px;
    padding: 30px;
    border: 1px solid var(--border);
    background: var(--surface);
    display: flex;
    flex-direction: column;
}

.review-stars {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 0.08em;
}

.testimonial-grid article > p {
    margin-top: 32px;
    color: var(--text-soft);
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1.55;
}

.testimonial-grid article > div {
    margin-top: auto;
    padding-top: 28px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.testimonial-grid article > div > span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(212, 168, 90, 0.13);
    color: var(--gold-light);
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
}

.testimonial-grid article > div strong {
    font-size: 11px;
}

/* Reservation */

.reservation-section {
    background: var(--background);
}

.reservation-card {
    padding: 65px;
    border: 1px solid var(--gold-border);
    background:
        radial-gradient(
            circle at 0% 100%,
            rgba(212, 168, 90, 0.12),
            transparent 36%
        ),
        var(--surface);
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 75px;
}

.reservation-copy > p {
    margin-top: 22px;
    color: var(--text-soft);
}

.reservation-contact {
    margin-top: 45px;
    display: grid;
    gap: 18px;
}

.reservation-contact div {
    display: flex;
    flex-direction: column;
}

.reservation-contact span {
    color: var(--gold);
    font-size: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.reservation-contact strong {
    margin-top: 4px;
    font-size: 13px;
}

.reservation-form {
    padding: 32px;
    background: var(--cream);
    color: #241d16;
}

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

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 10px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #d8ccbc;
    border-radius: 5px;
    outline: none;
    background: #fffaf2;
    color: #241d16;
}

.form-group input,
.form-group select {
    height: 48px;
    padding: 0 13px;
}

.form-group textarea {
    min-height: 100px;
    padding: 12px 13px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #b98742;
    box-shadow: 0 0 0 4px rgba(185, 135, 66, 0.12);
}

.form-button {
    width: 100%;
}

.form-message {
    min-height: 18px;
    margin-top: 12px;
    color: #936b2f;
    font-size: 10px;
    text-align: center;
}

/* Location */

.location-section {
    background: var(--background-soft);
}

.location-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 70px;
}

.location-details {
    margin: 40px 0;
    display: grid;
    gap: 18px;
}

.location-details div {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.location-details span {
    color: var(--gold);
    font-size: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.location-details strong {
    margin-top: 4px;
    font-size: 13px;
}

.location-image img {
    height: 550px;
    object-fit: cover;
}

/* Footer */

.site-footer {
    padding: 75px 0 24px;
    border-top: 1px solid var(--border);
    background: #050403;
}

.footer-grid {
    padding-bottom: 55px;
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 45px;
}

.footer-about > p {
    max-width: 360px;
    margin-top: 22px;
    color: var(--text-soft);
    font-size: 11px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 9px;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 14px;
}

.footer-column a,
.footer-column p {
    color: var(--text-muted);
    font-size: 10px;
}

.footer-column a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--text-muted);
    font-size: 9px;
}

.footer-bottom a {
    display: inline-flex;
    gap: 7px;
}

/* Floating WhatsApp */

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    min-height: 48px;
    padding: 7px 16px 7px 7px;
    border-radius: 50px;
    background: #25d366;
    color: #07190e;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.30);
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 10px;
    font-weight: 800;
}

.floating-whatsapp span {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.13);
    display: grid;
    place-items: center;
}

/* Responsive */

@media (max-width: 980px) {
    .mobile-menu-button {
        display: block;
    }

    .navigation-wrapper {
        position: fixed;
        top: 92px;
        left: 20px;
        right: 20px;
        padding: 22px;
        border: 1px solid var(--border);
        background: rgba(11, 9, 7, 0.98);
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    .navigation-wrapper.open {
        display: flex;
    }

    .navigation {
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
    }

    .navigation a {
        display: block;
        padding: 11px;
    }

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

    .about-content {
        grid-column: 1 / 3;
        grid-row: 1;
    }

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

    .chef-grid,
    .reservation-card,
    .location-grid {
        grid-template-columns: 1fr;
    }

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

    .testimonial-grid article:last-child {
        grid-column: 1 / 3;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2 / 4;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 78px 0;
    }

    .demo-notice-inner {
        min-height: 50px;
    }

    .demo-notice p,
    .demo-notice a {
        font-size: 8px;
    }

    .site-header {
        top: 50px;
    }

    .site-header.scrolled {
        top: 0;
    }

    .hero-section {
        min-height: 850px;
    }

    .hero-container {
        padding-top: 135px;
    }

    .hero-content h1 {
        font-size: 64px;
    }

    .hero-content > p {
        font-size: 14px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button,
    .secondary-button {
        width: 100%;
    }

    .hero-details {
        margin-top: 65px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .scroll-indicator {
        display: none;
    }

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

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

    .about-content {
        grid-column: auto;
    }

    .about-image-large img,
    .about-image-small img {
        height: 420px;
    }

    .about-statistics {
        gap: 12px;
    }

    .menu-image img {
        height: 250px;
    }

    .experience-features {
        grid-template-columns: 1fr;
    }

    .chef-grid {
        gap: 50px;
    }

    .chef-image img {
        height: 480px;
    }

    .testimonial-grid article:last-child {
        grid-column: auto;
    }

    .reservation-card {
        padding: 34px 20px;
    }

    .reservation-form {
        padding: 24px 18px;
    }

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

    .location-image img {
        height: 400px;
    }

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

    .footer-about {
        grid-column: 1 / 3;
    }

    .footer-column:last-child {
        grid-column: 1 / 3;
    }

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

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
    }
}
