/* =========================================================
   AETHELGARD FINE DINING & MIXOLOGY
   MASTER GLOBAL STYLESHEET
   ========================================================= */

/* -----------------------------
   01. ROOT VARIABLES
------------------------------ */

:root {
    --burgundy-950: #19070d;
    --burgundy-900: #260b15;
    --burgundy-800: #3a101f;
    --burgundy-700: #53162b;
    --burgundy-600: #6d1d38;

    --emerald-950: #031612;
    --emerald-900: #06251d;
    --emerald-800: #093a2e;
    --emerald-700: #0d4d3c;
    --emerald-600: #12634c;

    --gold: #d4af37;
    --gold-light: #f3d879;
    --gold-bright: #ffe89a;
    --gold-dark: #99761b;

    --cream: #fff8e8;
    --cream-soft: #f5ead2;
    --ivory: #f8f0df;
    --silk: #eadfc8;

    --white: #ffffff;
    --muted: #cbbfae;
    --muted-dark: #978b79;

    --success: #69e5a4;
    --danger: #ff7e7e;

    --glass: rgba(255, 248, 232, 0.075);
    --glass-strong: rgba(255, 248, 232, 0.11);
    --glass-border: rgba(212, 175, 55, 0.25);

    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.22);
    --shadow-md: 0 20px 55px rgba(0, 0, 0, 0.34);
    --shadow-lg: 0 35px 90px rgba(0, 0, 0, 0.48);

    --gold-glow:
        0 0 10px rgba(212, 175, 55, 0.22),
        0 0 30px rgba(212, 175, 55, 0.10);

    --transition-fast: 180ms ease;
    --transition: 350ms cubic-bezier(0.22, 1, 0.36, 1);
    --transition-slow: 650ms cubic-bezier(0.22, 1, 0.36, 1);

    --container: 1240px;
    --nav-height: 82px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-xl: 38px;
}

/* -----------------------------
   02. RESET
------------------------------ */

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

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

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 12% 10%,
            rgba(109, 29, 56, 0.52),
            transparent 32%
        ),
        radial-gradient(
            circle at 88% 22%,
            rgba(13, 77, 60, 0.42),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            var(--burgundy-950) 0%,
            #210b15 38%,
            var(--emerald-950) 100%
        );
    color: var(--cream);
    font-family:
        "Inter",
        "Helvetica Neue",
        Arial,
        sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.08;
    background-image:
        linear-gradient(
            rgba(255,255,255,0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.04) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
}

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

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

button {
    cursor: pointer;
}

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

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

::selection {
    background: var(--gold);
    color: var(--burgundy-950);
}

/* -----------------------------
   03. SCROLLBAR
------------------------------ */

::-webkit-scrollbar {
    width: 11px;
}

::-webkit-scrollbar-track {
    background: var(--burgundy-950);
}

::-webkit-scrollbar-thumb {
    background:
        linear-gradient(
            180deg,
            var(--gold-light),
            var(--gold),
            var(--gold-dark)
        );
    border-radius: 20px;
    border: 3px solid var(--burgundy-950);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-bright);
}

/* Firefox */

html {
    scrollbar-color: var(--gold) var(--burgundy-950);
    scrollbar-width: thin;
}

/* -----------------------------
   04. TYPOGRAPHY
------------------------------ */

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-weight: 500;
    line-height: 1.1;
    color: var(--cream);
}

h1 {
    font-size: clamp(3.5rem, 8vw, 7.8rem);
    letter-spacing: -0.045em;
}

h2 {
    font-size: clamp(2.4rem, 5vw, 4.7rem);
    letter-spacing: -0.035em;
}

h3 {
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--gold);
    box-shadow: var(--gold-glow);
}

.section-heading {
    max-width: 800px;
    margin-bottom: 55px;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading.center .eyebrow {
    justify-content: center;
}

.section-heading p {
    max-width: 650px;
    margin-top: 20px;
    font-size: 1.05rem;
}

/* -----------------------------
   05. LAYOUT
------------------------------ */

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

.section {
    position: relative;
    padding: 120px 0;
}

.section-sm {
    padding: 75px 0;
}

.grid {
    display: grid;
}

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

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.gap-40 {
    gap: 40px;
}

.align-center {
    align-items: center;
}

/* -----------------------------
   06. DECORATIVE ELEMENTS
------------------------------ */

.gold-line {
    width: 90px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );
    box-shadow: var(--gold-glow);
}

.gold-orb {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    pointer-events: none;
    background:
        radial-gradient(
            circle,
            rgba(212,175,55,0.16),
            rgba(212,175,55,0.03) 42%,
            transparent 70%
        );
    filter: blur(4px);
}

.ornament {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
    font-size: 1.1rem;
}

.ornament::before,
.ornament::after {
    content: "";
    width: 35px;
    height: 1px;
    background: var(--gold);
}

/* -----------------------------
   07. NAVIGATION
------------------------------ */

.site-header {
    position: fixed;
    top: 18px;
    left: 50%;
    width: min(
        calc(100% - 34px),
        1340px
    );
    height: var(--nav-height);
    transform: translateX(-50%);
    z-index: 1000;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 22px;
    background:
        linear-gradient(
            110deg,
            rgba(36, 9, 19, 0.82),
            rgba(5, 38, 30, 0.76)
        );
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow:
        0 15px 45px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.07);
    transition:
        top var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.site-header.scrolled {
    top: 8px;
    border-color: rgba(212, 175, 55, 0.42);
    background:
        linear-gradient(
            110deg,
            rgba(30, 6, 15, 0.96),
            rgba(3, 30, 24, 0.94)
        );
    box-shadow:
        0 20px 55px rgba(0,0,0,0.42),
        var(--gold-glow);
}

.nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 0 24px;
}

.logo {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    flex-shrink: 0;
}

.logo-main {
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 1.55rem;
    letter-spacing: 0.16em;
}

.logo-sub {
    margin-top: 7px;
    color: var(--cream-soft);
    font-size: 0.51rem;
    font-weight: 700;
    letter-spacing: 0.31em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 7px;
}

.main-nav a {
    position: relative;
    padding: 10px 13px;
    color: var(--cream-soft);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 4px;
    height: 1px;
    transform: scaleX(0);
    transform-origin: center;
    background: var(--gold);
    box-shadow: var(--gold-glow);
    transition: transform var(--transition);
}

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

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.mobile-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    color: var(--gold-light);
    font-size: 1.25rem;
}

/* -----------------------------
   08. BUTTONS
------------------------------ */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    overflow: hidden;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    transform: skewX(-25deg);
    background: rgba(255,255,255,0.2);
    transition: left 650ms ease;
}

.btn:hover::before {
    left: 140%;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    color: var(--burgundy-950);
    background:
        linear-gradient(
            135deg,
            var(--gold-bright),
            var(--gold),
            #b99020
        );
    border-color: var(--gold-light);
    box-shadow:
        0 8px 30px rgba(212,175,55,0.22),
        inset 0 1px 0 rgba(255,255,255,0.6);
}

.btn-primary:hover {
    box-shadow:
        0 15px 45px rgba(212,175,55,0.34),
        var(--gold-glow);
}

.btn-outline {
    color: var(--gold-light);
    border-color: rgba(212,175,55,0.55);
    background: rgba(212,175,55,0.045);
}

.btn-outline:hover {
    color: var(--burgundy-950);
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: var(--gold-glow);
}

.btn-ghost {
    color: var(--cream);
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.04);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

/* -----------------------------
   09. HERO
------------------------------ */

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding:
        170px 0
        110px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(20,4,10,0.98) 0%,
            rgba(31,7,17,0.86) 42%,
            rgba(4,31,24,0.50) 100%
        ),
        url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=2200&q=90")
        center / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(
            circle at 76% 50%,
            rgba(212,175,55,0.13),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            rgba(17,3,9,0.15),
            rgba(17,3,9,0.88)
        );
}

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

.hero h1 {
    max-width: 900px;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--gold-light);
    text-shadow:
        0 0 20px rgba(212,175,55,0.12);
}

.hero-description {
    max-width: 670px;
    font-size: 1.1rem;
    color: var(--cream-soft);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 32px;
    padding: 9px 15px;
    border: 1px solid rgba(105,229,164,0.3);
    border-radius: 999px;
    color: #c9f7dd;
    background: rgba(17,79,52,0.28);
    backdrop-filter: blur(12px);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.status-dot {
    color: var(--success);
    text-shadow: 0 0 12px var(--success);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* -----------------------------
   10. PAGE HERO
------------------------------ */

.page-hero {
    position: relative;
    padding:
        200px 0
        100px;
    overflow: hidden;
    border-bottom: 1px solid rgba(212,175,55,0.13);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(212,175,55,0.14),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            var(--burgundy-900),
            var(--emerald-900)
        );
}

.page-hero p {
    max-width: 680px;
    margin-top: 20px;
    font-size: 1.05rem;
}

/* -----------------------------
   11. GLASS CARDS
------------------------------ */

.glass-card {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.085),
            rgba(255,255,255,0.025)
        );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        var(--shadow-md),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

/* -----------------------------
   12. FEATURED DISHES
------------------------------ */

.dish-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.18);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(
            145deg,
            rgba(79,20,42,0.68),
            rgba(5,44,34,0.58)
        );
    box-shadow: var(--shadow-md);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.dish-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212,175,55,0.6);
    box-shadow:
        var(--shadow-lg),
        0 0 35px rgba(212,175,55,0.08);
}

.dish-image {
    position: relative;
    height: 330px;
    overflow: hidden;
}

.dish-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(18,4,10,0.7)
        );
}

.dish-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 900ms cubic-bezier(0.22,1,0.36,1);
}

.dish-card:hover .dish-image img {
    transform: scale(1.08);
}

.dish-content {
    padding: 27px;
}

.dish-content h3 {
    margin-bottom: 10px;
}

.dish-content p {
    font-size: 0.9rem;
}

.dish-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
}

.price {
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 1.45rem;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.badge {
    display: inline-flex;
    padding: 5px 9px;
    border: 1px solid rgba(212,175,55,0.28);
    border-radius: 999px;
    color: var(--gold-light);
    background: rgba(212,175,55,0.06);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

/* -----------------------------
   13. AMBIENCE GRID
------------------------------ */

.ambience-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: 280px 280px;
    gap: 18px;
}

.ambience-card {
    position: relative;
    overflow: hidden;
    min-height: 200px;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: var(--radius-md);
    transform-style: preserve-3d;
    transition:
        transform 500ms cubic-bezier(0.22,1,0.36,1),
        border-color var(--transition),
        box-shadow var(--transition);
}

.ambience-card:first-child {
    grid-row: span 2;
}

.ambience-card:hover {
    border-color: rgba(212,175,55,0.65);
    box-shadow:
        var(--shadow-lg),
        0 0 35px rgba(212,175,55,0.12);
}

.ambience-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms ease;
}

.ambience-card:hover img {
    transform: scale(1.07);
}

.ambience-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 27px;
    background:
        linear-gradient(
            transparent 35%,
            rgba(12,3,8,0.9)
        );
}

.ambience-overlay h3 {
    font-size: 1.5rem;
}

/* -----------------------------
   14. TESTIMONIALS
------------------------------ */

.review-section {
    position: relative;
    overflow: hidden;
}

.review-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.review-slide {
    display: none;
    padding: 55px;
    text-align: center;
}

.review-slide.active {
    display: block;
    animation: reviewIn 500ms ease both;
}

@keyframes reviewIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-stars {
    margin-bottom: 22px;
    color: var(--gold-light);
    letter-spacing: 0.2em;
}

.review-quote {
    margin-bottom: 28px;
    color: var(--cream);
    font-family: Georgia, serif;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1.45;
}

.review-author {
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 20px;
}

.slider-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: transparent;
}

.slider-dot.active {
    background: var(--gold);
    box-shadow: 0 0 12px rgba(212,175,55,0.6);
}

/* -----------------------------
   15. MICHELIN / AWARDS
------------------------------ */

.award-card {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 35px;
}

.award-emblem {
    display: grid;
    width: 90px;
    height: 90px;
    place-items: center;
    flex-shrink: 0;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold-light);
    background:
        radial-gradient(
            circle,
            rgba(212,175,55,0.16),
            transparent 70%
        );
    box-shadow:
        0 0 35px rgba(212,175,55,0.13),
        inset 0 0 20px rgba(212,175,55,0.08);
    font-family: Georgia, serif;
    font-size: 1.35rem;
    text-align: center;
}

/* -----------------------------
   16. MENU
------------------------------ */

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 55px;
}

.menu-tab {
    padding: 12px 21px;
    border: 1px solid rgba(212,175,55,0.24);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255,255,255,0.035);
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.menu-tab:hover,
.menu-tab.active {
    color: var(--burgundy-950);
    border-color: var(--gold);
    background: var(--gold);
    box-shadow: var(--gold-glow);
}

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

.menu-card {
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.17);
    border-radius: var(--radius-md);
    background:
        linear-gradient(
            145deg,
            rgba(67,16,36,0.7),
            rgba(5,43,34,0.62)
        );
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.menu-card:hover {
    transform: translateY(-7px);
    border-color: rgba(212,175,55,0.52);
    box-shadow:
        var(--shadow-md),
        var(--gold-glow);
}

.menu-card.hidden {
    display: none;
}

.menu-card-image {
    height: 230px;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

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

.menu-card-body {
    padding: 23px;
}

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

.menu-card-title h3 {
    font-size: 1.35rem;
}

.menu-card-description {
    margin-top: 10px;
    font-size: 0.86rem;
    line-height: 1.65;
}

.menu-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 19px;
}

.quick-view {
    min-height: 38px;
    padding: 8px 13px;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 999px;
    color: var(--gold-light);
    background: rgba(212,175,55,0.05);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.quick-view:hover {
    color: var(--burgundy-950);
    background: var(--gold);
}

/* -----------------------------
   17. FORMS
------------------------------ */

.form-card {
    padding: clamp(28px, 5vw, 55px);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--cream-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    min-height: 53px;
    padding: 13px 16px;
    outline: none;
    border: 1px solid rgba(212,175,55,0.22);
    border-radius: 11px;
    color: var(--cream);
    background:
        rgba(7, 20, 17, 0.62);
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.form-control::placeholder {
    color: #8f8576;
}

.form-control:focus {
    border-color: var(--gold);
    background: rgba(7,20,17,0.82);
    box-shadow:
        0 0 0 3px rgba(212,175,55,0.07),
        var(--gold-glow);
}

textarea.form-control {
    min-height: 145px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--gold) 50%),
        linear-gradient(135deg, var(--gold) 50%, transparent 50%);
    background-position:
        calc(100% - 19px) 22px,
        calc(100% - 14px) 22px;
    background-size: 5px 5px;
    background-repeat: no-repeat;
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 25px;
}

.form-note {
    color: var(--muted-dark);
    font-size: 0.75rem;
}

/* -----------------------------
   18. STORY / ABOUT
------------------------------ */

.story-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 75px;
    align-items: center;
}

.story-image {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(212,175,55,0.24);
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
}

.story-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(84,22,43,0.12),
            rgba(5,57,43,0.28)
        );
}

.story-copy p {
    max-width: 680px;
    margin-top: 18px;
}

.signature {
    margin-top: 30px;
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 1.7rem;
    font-style: italic;
}

/* -----------------------------
   19. CHEF PROFILE
------------------------------ */

.chef-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            120deg,
            rgba(67,15,35,0.78),
            rgba(4,43,33,0.68)
        );
    box-shadow: var(--shadow-lg);
}

.chef-image {
    min-height: 540px;
}

.chef-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chef-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.chef-content p {
    margin-top: 20px;
}

.signature-dish {
    margin-top: 30px;
    padding: 22px;
    border-left: 2px solid var(--gold);
    background: rgba(255,255,255,0.035);
}

.signature-dish strong {
    display: block;
    margin-bottom: 5px;
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 1.2rem;
}

/* -----------------------------
   20. PHILOSOPHY CARDS
------------------------------ */

.philosophy-card {
    padding: 34px;
    transition:
        transform var(--transition),
        border-color var(--transition);
}

.philosophy-card:hover {
    transform: translateY(-7px);
    border-color: rgba(212,175,55,0.55);
}

.philosophy-number {
    margin-bottom: 22px;
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 1.5rem;
}

.philosophy-card h3 {
    margin-bottom: 12px;
}

/* -----------------------------
   21. CONTACT
------------------------------ */

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 25px;
}

.contact-details {
    display: grid;
    gap: 15px;
}

.contact-item {
    padding: 27px;
}

.contact-item small {
    display: block;
    margin-bottom: 7px;
    color: var(--gold);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-item strong {
    display: block;
    color: var(--cream);
    font-family: Georgia, serif;
    font-size: 1.18rem;
    font-weight: 500;
}

.map-frame {
    width: 100%;
    min-height: 510px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: var(--radius-lg);
    background: var(--burgundy-950);
    box-shadow: var(--shadow-lg);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 510px;
    border: 0;
    filter:
        grayscale(1)
        contrast(1.1)
        brightness(0.55)
        sepia(0.25);
}

/* -----------------------------
   22. MODAL
------------------------------ */

.modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: rgba(8,2,5,0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.modal.open {
    display: flex;
    animation: modalFade 220ms ease both;
}

@keyframes modalFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-panel {
    position: relative;
    width: min(100%, 720px);
    max-height: min(90vh, 850px);
    overflow-y: auto;
    padding: 35px;
    border: 1px solid rgba(212,175,55,0.42);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(
            145deg,
            rgba(59,13,30,0.97),
            rgba(3,37,29,0.97)
        );
    box-shadow:
        var(--shadow-lg),
        0 0 55px rgba(212,175,55,0.10);
    animation: modalUp 350ms cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes modalUp {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 50%;
    color: var(--gold-light);
    background: rgba(255,255,255,0.05);
    font-size: 1.2rem;
}

.modal-close:hover {
    background: var(--gold);
    color: var(--burgundy-950);
}

.modal-image {
    width: 100%;
    height: 310px;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 18px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-price {
    margin: 16px 0;
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 1.5rem;
}

/* -----------------------------
   23. RESERVATION CONFIRMATION
------------------------------ */

.confirmation-icon {
    display: grid;
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold-light);
    background: rgba(212,175,55,0.09);
    box-shadow: var(--gold-glow);
    font-size: 2rem;
}

.confirmation-content {
    text-align: center;
}

.confirmation-content p {
    margin: 15px auto 25px;
    max-width: 530px;
}

/* -----------------------------
   24. NEWSLETTER
------------------------------ */

.newsletter {
    display: flex;
    gap: 10px;
}

.newsletter input {
    min-width: 0;
    flex: 1;
}

.newsletter .btn {
    flex-shrink: 0;
}

/* -----------------------------
   25. FOOTER
------------------------------ */

.site-footer {
    position: relative;
    padding: 85px 0 30px;
    border-top: 1px solid rgba(212,175,55,0.18);
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(212,175,55,0.08),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            rgba(30,6,15,0.96),
            rgba(3,29,23,0.98)
        );
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.8fr 0.8fr 1.25fr;
    gap: 45px;
}

.footer-brand p {
    max-width: 370px;
    margin-top: 20px;
}

.footer-title {
    margin-bottom: 20px;
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 9px;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.88rem;
    transition: color var(--transition-fast);
}

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

.footer-contact {
    display: grid;
    gap: 9px;
    color: var(--muted);
    font-size: 0.87rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.social-link {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border: 1px solid rgba(212,175,55,0.24);
    border-radius: 50%;
    color: var(--gold-light);
    background: rgba(255,255,255,0.035);
    font-size: 0.68rem;
    font-weight: 800;
    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition),
        border-color var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    color: var(--burgundy-950);
    border-color: var(--gold);
    background: var(--gold);
    box-shadow: var(--gold-glow);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 70px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: var(--muted-dark);
    font-size: 0.72rem;
}

/* -----------------------------
   26. REVEAL ANIMATIONS
------------------------------ */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 800ms ease,
        transform 800ms cubic-bezier(0.22,1,0.36,1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* -----------------------------
   27. RESERVATION SIDEBAR
------------------------------ */

.reservation-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 25px;
    align-items: start;
}

.reservation-info {
    position: sticky;
    top: 125px;
    padding: 35px;
}

.reservation-info h3 {
    margin-bottom: 18px;
}

.reservation-info-list {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.reservation-info-list div {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.reservation-info-list strong {
    display: block;
    color: var(--cream);
    font-family: Georgia, serif;
    font-size: 1.05rem;
}

.reservation-info-list span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.8rem;
}

/* -----------------------------
   28. EVENT BANNER
------------------------------ */

.event-banner {
    position: relative;
    overflow: hidden;
    padding: 65px;
    border: 1px solid rgba(212,175,55,0.28);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            110deg,
            rgba(83,22,43,0.8),
            rgba(6,58,44,0.8)
        );
    box-shadow: var(--shadow-lg);
}

.event-banner::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -170px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(212,175,55,0.15),
            transparent 70%
        );
}

.event-banner-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.event-banner-content p {
    margin: 18px 0 25px;
}

/* -----------------------------
   29. RESPONSIVE
------------------------------ */

@media (max-width: 1100px) {
    .main-nav {
        gap: 0;
    }

    .main-nav a {
        padding-inline: 8px;
        font-size: 0.69rem;
    }

    .site-header .btn {
        display: none;
    }

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

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

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

    .story-grid {
        gap: 45px;
    }

    .reservation-layout {
        grid-template-columns: 1fr;
    }

    .reservation-info {
        position: static;
    }
}

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

    .section {
        padding: 90px 0;
    }

    .site-header {
        top: 10px;
        height: 70px;
        border-radius: 17px;
    }

    .nav-inner {
        padding: 0 15px;
    }

    .mobile-toggle {
        display: grid;
        place-items: center;
    }

    .main-nav {
        position: fixed;
        top: 87px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 12px;
        border: 1px solid rgba(212,175,55,0.28);
        border-radius: 18px;
        background:
            linear-gradient(
                135deg,
                rgba(42,9,21,0.98),
                rgba(3,39,30,0.98)
            );
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav a {
        padding: 15px;
        border-radius: 10px;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav a:hover,
    .main-nav a.active {
        background: rgba(212,175,55,0.08);
    }

    .hero {
        min-height: 850px;
        padding-top: 180px;
    }

    .hero::before {
        background-position: 63% center;
    }

    .grid-2,
    .grid-3,
    .story-grid,
    .chef-card,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .ambience-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 300px 300px 300px;
    }

    .ambience-card:first-child {
        grid-row: auto;
    }

    .story-image,
    .story-image img {
        min-height: 450px;
    }

    .chef-image {
        min-height: 420px;
    }

    .chef-content {
        padding: 40px 30px;
    }

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

    .form-group.full {
        grid-column: auto;
    }

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

@media (max-width: 600px) {
    h1 {
        font-size: clamp(3rem, 16vw, 5rem);
    }

    h2 {
        font-size: clamp(2.25rem, 12vw, 3.4rem);
    }

    .logo-main {
        font-size: 1.22rem;
    }

    .logo-sub {
        font-size: 0.43rem;
    }

    .hero {
        min-height: 800px;
        padding-bottom: 100px;
    }

    .hero-description {
        font-size: 0.96rem;
    }

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

    .hero-actions .btn {
        width: 100%;
    }

    .section-heading {
        margin-bottom: 35px;
    }

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

    .menu-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }

    .menu-tab {
        white-space: nowrap;
    }

    .dish-image {
        height: 270px;
    }

    .review-slide {
        padding: 30px 20px;
    }

    .award-card {
        align-items: flex-start;
        flex-direction: column;
        padding: 27px;
    }

    .event-banner {
        padding: 40px 27px;
    }

    .newsletter {
        flex-direction: column;
    }

    .newsletter .btn {
        width: 100%;
    }

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

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

    .modal {
        padding: 12px;
    }

    .modal-panel {
        padding: 25px 20px;
    }

    .modal-image {
        height: 240px;
    }

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

    .form-actions .btn {
        width: 100%;
    }
}

/* -----------------------------
   30. REDUCED MOTION
------------------------------ */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
