:root {
    --bg: #0d0d0d;
    --bg-soft: #151515;
    --bg-card: #1b1b1b;

    --cream: #f4efe6;
    --cream-soft: #d8d1c5;

    --gold: #c7a86b;
    --gold-soft: #e0c99e;

    --text: #f7f3ec;
    --text-muted: #b7afa3;

    --line: rgba(255, 255, 255, 0.1);
    --line-gold: rgba(199, 168, 107, 0.35);

    --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);

    --radius: 24px;

    --container: min(1180px, 92vw);

    --header-height: 84px;
}

/* =========================
   RESET
========================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    min-height: 100vh;

    font-family: "Vazirmatn", sans-serif;

    background: var(--bg);
    color: var(--text);

    line-height: 1.9;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open,
body.lightbox-open {
    overflow: hidden;
}

img {
    display: block;

    width: 100%;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    background: var(--gold);
    color: #111;
}

/* =========================
   GENERAL
========================= */

.container {
    width: var(--container);
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 14px;

    color: var(--gold);

    font-size: 0.86rem;
    font-weight: 600;
}

.section-label::before {
    content: "";

    width: 28px;
    height: 1px;

    flex-shrink: 0;

    background: var(--gold);
}

.section-label.light {
    color: var(--gold-soft);
}

.section-title {
    margin-bottom: 24px;

    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;

    line-height: 1.25;
}

.section-title span {
    color: var(--gold);
}

.section-description,
.section-heading p {
    max-width: 700px;

    color: var(--text-muted);

    font-size: 1rem;
}

.section-heading.centered {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 54px;

    text-align: center;
}

/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 0 24px;

    border: 1px solid transparent;
    border-radius: 999px;

    font-weight: 600;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.btn-primary {
    background: var(--gold);
    color: #111;
}

.btn-primary:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--line-gold);
    color: var(--gold-soft);
}

.btn-outline:hover {
    border-color: var(--gold);

    background: rgba(199, 168, 107, 0.08);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
    border-color: #2a2a2a;

    background: #101010;
    color: #fff;
}

.btn-dark:hover {
    border-color: var(--gold);
    color: var(--gold-soft);
}

.btn-small {
    min-height: 42px;

    padding-inline: 18px;

    font-size: 0.88rem;
}

.btn-large {
    min-height: 56px;

    padding-inline: 32px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #8c6b34;

    font-weight: 600;

    transition:
        gap 0.25s ease,
        color 0.25s ease;
}

.text-link:hover {
    gap: 13px;

    color: #684b1f;
}

/* =========================
   DEMO BADGE
========================= */

.demo-badge {
    position: fixed;

    left: 18px;
    bottom: 18px;

    z-index: 1000;

    padding: 8px 14px;

    border: 1px solid var(--line-gold);
    border-radius: 999px;

    background: rgba(13, 13, 13, 0.88);

    color: var(--gold-soft);

    font-size: 0.78rem;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* =========================
   HEADER
========================= */

.header {
    position: fixed;

    top: 0;
    right: 0;
    left: 0;

    z-index: 900;

    border-bottom: 1px solid transparent;

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.header.scrolled {
    border-color: var(--line);

    background: rgba(10, 10, 10, 0.92);

    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: var(--header-height);

    gap: 32px;
}

.brand {
    display: inline-flex;
    flex-direction: column;

    line-height: 1.05;
}

.brand-name {
    color: #fff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;

    letter-spacing: 0.18em;
}

.brand-fa {
    margin-top: 5px;

    color: var(--gold);

    font-size: 0.7rem;
}

.desktop-nav {
    display: flex;
    align-items: center;

    gap: 28px;
}

.nav-link {
    position: relative;

    padding: 10px 0;

    color: #ded8ce;

    font-size: 0.9rem;

    transition: color 0.25s ease;
}

.nav-link::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 2px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;

    gap: 12px;
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu-button {
    width: 46px;
    height: 46px;

    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    border: 1px solid var(--line);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.03);
}

.mobile-menu-button span {
    display: block;

    width: 18px;
    height: 1px;

    background: #fff;

    transform-origin: center;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;

    inset: var(--header-height) 0 0 0;

    z-index: 899;

    overflow-y: auto;

    background: rgba(10, 10, 10, 0.98);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.mobile-nav nav {
    width: min(92vw, 520px);

    margin-inline: auto;

    padding: 40px 0 80px;

    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    padding: 18px 0;

    border-bottom: 1px solid var(--line);

    font-size: 1.05rem;
}

.mobile-reservation-link {
    color: var(--gold-soft);
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;

    min-height: 100svh;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero-background {
    position: absolute;

    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.05);

    will-change: transform;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.22),
            rgba(0, 0, 0, 0.64)
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.18),
            rgba(0, 0, 0, 0.72)
        );
}

.hero-content {
    position: relative;

    z-index: 2;

    padding-top: 130px;
    padding-bottom: 100px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: var(--gold-soft);

    font-size: 0.88rem;
}

.hero-eyebrow span {
    width: 36px;
    height: 1px;

    background: var(--gold);
}

.hero h1 {
    max-width: 860px;

    margin-bottom: 26px;

    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 700;

    line-height: 1.1;
}

.hero h1 span {
    color: var(--gold-soft);
}

.hero p {
    max-width: 660px;

    color: #d8d2c9;

    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;
}

.hero-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 28px;

    margin-top: 74px;
}

.hero-info-item {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.hero-info-label {
    color: #9f988e;

    font-size: 0.78rem;
}

.hero-info-item strong {
    font-size: 0.88rem;
    font-weight: 500;
}

.hero-info-divider {
    width: 1px;
    height: 38px;

    background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;

    z-index: 3;

    left: 50%;
    bottom: 24px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 8px;

    color: #bfb7ac;

    font-size: 0.72rem;

    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 42px;

    background: linear-gradient(var(--gold), transparent);
}

/* =========================
   ABOUT
========================= */

.about-section {
    background: var(--cream);
    color: #161616;
}

.about-grid {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 80px;

    align-items: center;
}

.about-images {
    position: relative;

    min-height: 640px;
}

.about-main-image {
    width: 74%;
    height: 540px;

    overflow: hidden;
}

.about-main-image img,
.about-secondary-image img {
    height: 100%;

    object-fit: cover;
}

.about-secondary-image {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 46%;
    height: 270px;

    overflow: hidden;

    border: 10px solid var(--cream);
}

.about-experience {
    position: absolute;

    right: 61%;
    top: 72px;

    width: 126px;
    height: 126px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #131313;
    color: #fff;

    box-shadow: var(--shadow);
}

.about-experience strong {
    color: var(--gold-soft);

    font-size: 1.6rem;
}

.about-experience span {
    color: #c9c1b5;

    font-size: 0.72rem;
}

.about-content .section-title {
    color: #171717;
}

.about-content > p {
    margin-bottom: 16px;

    color: #5c574f;
}

.about-content .section-description {
    color: #5c574f;
}

.about-features {
    margin: 34px 0;

    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.about-feature {
    display: grid;

    grid-template-columns: 48px 1fr;

    gap: 16px;

    padding: 20px 0;

    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-number {
    color: #a18450;

    font-family: Georgia, serif;
}

.about-feature h3 {
    margin-bottom: 3px;

    font-size: 1rem;
}

.about-feature p {
    color: #777067;

    font-size: 0.86rem;
}

/* =========================
   PHILOSOPHY
========================= */

.philosophy-section {
    position: relative;

    min-height: 560px;

    display: grid;
    place-items: center;

    overflow: hidden;

    text-align: center;
}

.philosophy-background,
.philosophy-background img,
.philosophy-overlay {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}

.philosophy-background img {
    object-fit: cover;
}

.philosophy-overlay {
    background: rgba(0, 0, 0, 0.72);
}

.philosophy-content {
    position: relative;

    z-index: 2;

    max-width: 900px;
}

.quote-symbol {
    color: var(--gold);

    font-family: Georgia, serif;
    font-size: 5rem;

    line-height: 1;
}

.philosophy-content blockquote {
    margin-bottom: 18px;

    font-size: clamp(2rem, 4.7vw, 4.8rem);

    line-height: 1.35;
}

.philosophy-content strong {
    color: var(--gold-soft);
}

.philosophy-content p {
    color: #c9c0b5;
}

/* =========================
   MENU
========================= */

.menu-section {
    background: #f3eee5;
    color: #171717;
}

.menu-section .section-heading p {
    color: #716b61;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 42px;
}

.menu-tab {
    padding: 10px 18px;

    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 999px;

    background: transparent;

    color: #5e594f;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.menu-tab:hover,
.menu-tab.active {
    border-color: #151515;

    background: #151515;

    color: var(--gold-soft);
}

.menu-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 26px;
}

.menu-card {
    overflow: hidden;

    border: 1px solid rgba(0, 0, 0, 0.07);

    background: #fff;

    transition:
        opacity 0.22s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.menu-card.filter-hidden {
    display: none;
}

.menu-card-image {
    position: relative;

    height: 300px;

    overflow: hidden;
}

.menu-card-image img {
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.045);
}

.menu-badge {
    position: absolute;

    top: 16px;
    right: 16px;

    padding: 7px 12px;

    border-radius: 999px;

    background: rgba(17, 17, 17, 0.9);

    color: var(--gold-soft);

    font-size: 0.72rem;
}

.menu-card-content {
    padding: 24px;
}

.menu-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 18px;

    margin-bottom: 10px;
}

.menu-card h3 {
    font-size: 1.05rem;
}

.menu-price {
    color: #8b6d37;

    font-weight: 700;

    white-space: nowrap;
}

.menu-price small {
    font-size: 0.7rem;
}

.menu-card p {
    color: #716b61;

    font-size: 0.88rem;
}

.menu-action {
    margin-top: 44px;

    text-align: center;
}

/* =========================
   EXPERIENCE
========================= */

.experience-section {
    background: #121212;
}

.experience-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 720px;
}

.experience-image {
    min-height: 720px;
}

.experience-image img {
    height: 100%;

    object-fit: cover;
}

.experience-content {
    align-self: center;

    padding: 100px max(6vw, 48px);
}

.experience-content h2 {
    margin-bottom: 22px;

    font-size: clamp(2.2rem, 4vw, 4.5rem);

    line-height: 1.2;
}

.experience-content h2 span {
    color: var(--gold);
}

.experience-content > p {
    max-width: 580px;

    color: var(--text-muted);
}

.experience-list {
    margin: 36px 0;
}

.experience-item {
    display: grid;

    grid-template-columns: 52px 1fr;

    gap: 18px;

    padding: 22px 0;

    border-bottom: 1px solid var(--line);
}

.experience-item > span {
    color: var(--gold);

    font-family: Georgia, serif;
}

.experience-item h3 {
    margin-bottom: 3px;

    font-size: 1rem;
}

.experience-item p {
    color: #9f988e;

    font-size: 0.85rem;
}

/* =========================
   CHEF
========================= */

.chef-section {
    background: #f7f2e9;
    color: #161616;
}

.chef-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;

    align-items: center;
}

.chef-content p {
    margin-bottom: 16px;

    color: #625c53;
}

.chef-signature {
    display: flex;
    flex-direction: column;

    margin-top: 32px;
    padding-top: 20px;

    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.chef-signature span {
    color: #8b8173;

    font-size: 0.8rem;
}

.chef-signature strong {
    margin-top: 4px;

    font-size: 1.1rem;
}

.chef-image {
    position: relative;

    padding: 20px 0 0 20px;
}

.chef-image img {
    height: 650px;

    object-fit: cover;
}

.chef-image-border {
    position: absolute;

    inset: 0 20px 20px 0;

    border: 1px solid rgba(161, 132, 80, 0.5);

    pointer-events: none;
}

/* =========================
   GALLERY
========================= */

.gallery-section {
    padding: 110px 0 0;

    background: #101010;
}

.gallery-grid {
    display: grid;

    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    grid-auto-rows: 280px;
}

.gallery-item {
    position: relative;

    overflow: hidden;

    padding: 0;

    border: 0;

    background: #161616;
}

.gallery-item img {
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease,
        filter 0.4s ease;
}

.gallery-item::after {
    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0);

    transition: background 0.3s ease;

    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.14);
}

.gallery-large {
    grid-row: span 2;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials-section {
    background: #f3eee5;
    color: #171717;
}

.testimonials-wrapper {
    max-width: 880px;

    margin-inline: auto;

    display: grid;

    grid-template-columns: 58px 1fr 58px;

    align-items: center;

    gap: 26px;
}

.slider-button {
    width: 52px;
    height: 52px;

    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 50%;

    background: transparent;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.slider-button:hover {
    background: #151515;

    color: var(--gold-soft);
}

.testimonials-slider {
    min-height: 260px;

    display: grid;
    place-items: center;
}

.testimonial {
    display: none;

    text-align: center;
}

.testimonial.active {
    display: block;

    animation: testimonialFade 0.45s ease;
}

@keyframes testimonialFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-stars {
    margin-bottom: 20px;

    color: #a77d30;

    letter-spacing: 0.12em;
}

.testimonial blockquote {
    color: #292621;

    font-size: clamp(1.2rem, 2.2vw, 1.85rem);

    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;

    margin-top: 26px;
}

.testimonial-author span {
    color: #837c72;

    font-size: 0.78rem;
}

.slider-dots {
    display: flex;
    justify-content: center;

    gap: 8px;

    margin-top: 28px;
}

.slider-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #c9c1b6;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.slider-dot.active {
    background: #171717;

    transform: scale(1.25);
}

/* =========================
   RESERVATION CTA
========================= */

.reservation-cta {
    position: relative;

    min-height: 600px;

    display: grid;
    place-items: center;

    overflow: hidden;

    text-align: center;
}

.reservation-background,
.reservation-background img,
.reservation-overlay {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}

.reservation-background img {
    object-fit: cover;
}

.reservation-overlay {
    background: rgba(0, 0, 0, 0.73);
}

.reservation-content {
    position: relative;

    z-index: 2;

    max-width: 760px;
}

.reservation-content h2 {
    margin-bottom: 18px;

    font-size: clamp(2.4rem, 5vw, 5rem);

    line-height: 1.2;
}

.reservation-content h2 span {
    color: var(--gold-soft);
}

.reservation-content p {
    margin-bottom: 28px;

    color: #c9c1b6;
}

/* =========================
   CONTACT
========================= */

.contact-section {
    background: #f7f2e9;
    color: #171717;
}

.contact-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 70px;

    align-items: stretch;
}

.contact-content > p {
    max-width: 560px;

    color: #686159;
}

.contact-info {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;

    margin-top: 34px;
}

.contact-item {
    padding: 18px 0;

    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.contact-label {
    display: block;

    margin-bottom: 6px;

    color: #887f73;

    font-size: 0.75rem;
}

.contact-item strong,
.contact-item a {
    font-size: 0.9rem;
}

.map-placeholder {
    min-height: 520px;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 0, 0, 0.08);

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.75),
            rgba(255, 255, 255, 0.75)
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 34px,
            rgba(0, 0, 0, 0.06) 35px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 34px,
            rgba(0, 0, 0, 0.06) 35px
        );

    text-align: center;
}

.map-marker {
    width: 72px;
    height: 72px;

    display: grid;
    place-items: center;

    margin-bottom: 18px;

    border: 1px solid rgba(151, 116, 54, 0.45);
    border-radius: 50%;
}

.marker-dot {
    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #9f7837;

    box-shadow: 0 0 0 10px rgba(159, 120, 55, 0.12);
}

.map-brand {
    font-family: Georgia, serif;

    letter-spacing: 0.18em;
}

.map-placeholder p {
    margin: 6px 0 16px;

    color: #786f64;
}

/* =========================
   FOOTER
========================= */

.footer {
    padding: 74px 0 24px;

    background: #0a0a0a;
}

.footer-top {
    display: grid;

    grid-template-columns: 1.6fr repeat(3, 1fr);

    gap: 50px;

    padding-bottom: 48px;
}

.footer-brand p {
    max-width: 350px;

    margin-top: 20px;

    color: #969087;

    font-size: 0.86rem;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 10px;

    color: #fff;

    font-size: 0.9rem;
}

.footer-column a {
    color: #908a81;

    font-size: 0.84rem;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-column a:hover {
    color: var(--gold-soft);

    transform: translateX(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    gap: 20px;

    padding-top: 22px;

    border-top: 1px solid var(--line);

    color: #777169;

    font-size: 0.75rem;
}

.demo-notice {
    max-width: 460px;
}

/* =========================
   LIGHTBOX
========================= */

.lightbox {
    position: fixed;

    inset: 0;

    z-index: 1200;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 6vw;

    background: rgba(0, 0, 0, 0.95);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    width: auto;
    max-width: min(1100px, 92vw);
    max-height: 82vh;

    object-fit: contain;

    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
}

.lightbox-close {
    position: absolute;

    top: 24px;
    left: 28px;

    width: 50px;
    height: 50px;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.25);

    color: #fff;

    font-size: 1.7rem;

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.lightbox-close:hover {
    border-color: var(--gold);

    background: rgba(199, 168, 107, 0.12);
}

/* =========================
   BACK TO TOP
========================= */

.back-to-top {
    position: fixed;

    right: 18px;
    bottom: 18px;

    z-index: 800;

    width: 46px;
    height: 46px;

    border: 1px solid var(--line-gold);
    border-radius: 50%;

    background: rgba(12, 12, 12, 0.88);

    color: var(--gold-soft);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.25s ease;
}

.back-to-top:hover {
    background: #181818;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

/* =========================
   REVEAL
========================= */

.reveal {
    opacity: 0;

    transform: translateY(28px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {

    :root {
        --header-height: 78px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .header-actions .btn {
        display: none;
    }

    .about-grid,
    .chef-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .chef-grid {
        gap: 54px;
    }

    .about-images {
        max-width: 720px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-image {
        min-height: 500px;
    }

    .experience-content {
        padding: 80px 6vw;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-large {
        grid-row: span 1;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 760px) {

    :root {
        --header-height: 72px;
    }

    .section {
        padding: 82px 0;
    }

    .hero {
        min-height: 900px;
    }

    .hero-content {
        padding-top: 125px;
        padding-bottom: 90px;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 12vw, 4.4rem);
    }

    .hero-info {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 22px;

        margin-top: 52px;
    }

    .hero-info-divider {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .about-images {
        min-height: 520px;
    }

    .about-main-image {
        width: 86%;
        height: 430px;
    }

    .about-secondary-image {
        width: 48%;
        height: 210px;
    }

    .about-experience {
        right: auto;
        left: 17%;
        top: 20px;

        width: 110px;
        height: 110px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-card-image {
        height: 270px;
    }

    .chef-image img {
        height: 520px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 320px;
    }

    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }

    .slider-button {
        display: none;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .demo-badge {
        bottom: 76px;
    }

}

@media (max-width: 480px) {

    .container {
        width: 92vw;
    }

    .hero {
        min-height: 840px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-info {
        grid-template-columns: 1fr;
    }

    .about-images {
        min-height: 430px;
    }

    .about-main-image {
        height: 350px;
    }

    .about-secondary-image {
        height: 175px;
    }

    .about-experience {
        left: 10%;

        width: 96px;
        height: 96px;
    }

    .menu-card-header {
        flex-direction: column;

        gap: 8px;
    }

    .chef-image img {
        height: 420px;
    }

    .gallery-grid {
        grid-auto-rows: 260px;
    }

    .reservation-cta {
        min-height: 520px;
    }

    .map-placeholder {
        min-height: 420px;
    }

}

/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;

        transform: none;
    }

}