:root {
    --gold:       #c9a461;
    --gold-light: #dfc080;
    --bg:         #0c0a09;
    --bg-glass:   rgba(10, 8, 6, 0.93);
    --text:       #f5ede0;
    --text-muted: rgba(245, 237, 224, 0.5);
    --border:     rgba(201, 164, 97, 0.2);
    --serif:      'Playfair Display', Georgia, serif;
    --sans:       'Inter', system-ui, sans-serif;
    --nav-h:      88px;
    --pad:        clamp(1.5rem, 5vw, 4.5rem);
    --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; }


/* ─── NAV ─────────────────────────────────────────────── */

.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--nav-h);
    z-index: 999;
    display: flex;
    align-items: center;
    padding: 0 var(--pad);
    border-bottom: 1px solid transparent;
    transition: height .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}

.navbar.scrolled {
    height: 66px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

.nav-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    flex-shrink: 0;
}
.logo-main {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
}
.logo-sub {
    font-size: 0.58rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}
.nav-links a {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    padding-bottom: 3px;
    transition: color .25s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-reserve {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(201, 164, 97, 0.55);
    transition: background .25s, color .25s, border-color .25s;
}
.nav-reserve:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px; height: 32px;
    background: none;
    border: none;
    cursor: pointer;
}
.hamburger span {
    display: block;
    height: 1px;
    background: #fff;
    transition: transform .3s var(--ease), opacity .3s;
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ─── HERO ────────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 100vh;
    background: var(--bg);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to right,
            rgba(8, 6, 4, 0.96) 0%,
            rgba(8, 6, 4, 0.90) 30%,
            rgba(8, 6, 4, 0.78) 55%,
            rgba(8, 6, 4, 0.65) 100%
        ),
        linear-gradient(to bottom,
            rgba(8, 6, 4, 0.5) 0%,
            transparent 20%,
            transparent 75%,
            rgba(8, 6, 4, 0.4) 100%
        );
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: -2vw;
    transform: translateY(-54%);
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(18rem, 32vw, 38rem);
    line-height: 1;
    color: rgba(201, 164, 97, 0.045);
    pointer-events: none;
    user-select: none;
    z-index: 2;
}

.hero-side {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    z-index: 4;
    pointer-events: none;
}
.hero-side span {
    font-size: 0.58rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(201, 164, 97, 0.4);
    white-space: nowrap;
}

.hero-grid {
    position: relative;
    z-index: 3;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: calc(var(--nav-h) + 2.5rem) var(--pad) 4rem;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
}
.tag-line {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}
.tag-text {
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 4.8vw, 4.6rem);
    line-height: 1.04;
    color: #fff;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.6rem;
}
.t-reg   { font-weight: 500; letter-spacing: -0.5px; }
.t-italic {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
    padding-left: 1.5rem;
    margin: 0.03em 0;
}

.hero-ornament {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.6rem;
    width: 96px;
}
.orn-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 164, 97, 0.7));
}
.orn-line:last-child {
    background: linear-gradient(to left, transparent, rgba(201, 164, 97, 0.7));
}
.orn-diamond {
    width: 5px;
    height: 5px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.hero-desc {
    font-size: 0.96rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 430px;
    margin-bottom: 2.4rem;
    letter-spacing: 0.1px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.75rem;
}

.btn-fill {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 1rem 2.4rem;
    background: var(--gold);
    color: var(--bg);
    transition: background .25s, transform .25s, box-shadow .25s;
}
.btn-fill:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(201, 164, 97, 0.2);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 237, 224, 0.65);
    border-bottom: 1px solid rgba(245, 237, 224, 0.2);
    padding-bottom: 3px;
    transition: color .25s, border-color .25s;
}
.btn-link svg { transition: transform .25s var(--ease); }
.btn-link:hover { color: var(--gold); border-color: rgba(201, 164, 97, 0.5); }
.btn-link:hover svg { transform: translateX(5px); }

.hero-signature {
    border-top: 1px solid rgba(201, 164, 97, 0.13);
    padding-top: 1.5rem;
    max-width: 400px;
}
.sig-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.02rem;
    font-weight: 400;
    color: rgba(245, 237, 224, 0.7);
    line-height: 1.6;
    margin-bottom: 0.6rem;
}
.sig-author {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

/* ─── Image card ── */

.hero-visual {
    position: relative;
    z-index: 2;
    padding: 1.2rem 0 1.8rem 0;
}

.visual-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    width: 100%;
    border: 1px solid rgba(201, 164, 97, 0.2);
    padding: 0.65rem;
    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.55),
        0  8px 24px rgba(0, 0, 0, 0.3);
}
.visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.visual-tag {
    position: absolute;
    top: -1.1rem;
    left: -1.1rem;
    background: var(--bg);
    border: 1px solid var(--gold);
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 3;
}
.visual-num {
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}
.visual-label {
    font-size: 0.56rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1.4;
    font-weight: 500;
}

.visual-caption {
    position: absolute;
    bottom: -1.3rem;
    right: -1.1rem;
    background: var(--bg);
    border: 1px solid rgba(201, 164, 97, 0.28);
    padding: 0.8rem 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    z-index: 3;
    min-width: 155px;
}
.cap-label {
    font-size: 0.55rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.cap-time {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    line-height: 1;
}


/* ─── ABOUT ───────────────────────────────────────────── */

.about {
    position: relative;
    background: #0f0c09;
    padding: 7rem 0 6rem;
    overflow: hidden;
    border-top: 1px solid rgba(201, 164, 97, 0.08);
}

.about-num {
    position: absolute;
    top: -0.18em;
    right: -0.04em;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(14rem, 22vw, 28rem);
    line-height: 1;
    color: rgba(201, 164, 97, 0.03);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.about-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--pad);
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
    margin-bottom: 5rem;
}

.about-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.8vw, 3.6rem);
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.75rem;
    letter-spacing: -0.3px;
}
.about-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
}

.about-lead {
    font-size: 1.02rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(245, 237, 224, 0.68);
    letter-spacing: 0.1px;
}

.about-body {
    font-size: 0.94rem;
    font-weight: 300;
    line-height: 1.95;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 164, 97, 0.4);
    padding: 0.9rem 2rem;
    transition: background .25s, border-color .25s, color .25s;
}
.btn-outline-gold:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg);
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(201, 164, 97, 0.1);
    padding-top: 3.5rem;
}

.pillar {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding-right: 3rem;
    position: relative;
}
.pillar:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 1px;
    background: rgba(201, 164, 97, 0.1);
}
.pillar:not(:first-child) { padding-left: 3rem; padding-right: 3rem; }
.pillar:last-child        { padding-right: 0; }

.pillar-num {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
    opacity: 0.55;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.pillar-title {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.65rem;
    letter-spacing: 0.2px;
}

.pillar-text {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
}


/* ─── MENU ────────────────────────────────────────────── */

.menu {
    position: relative;
    background: #0a0806;
    padding: 7rem 0 6rem;
    overflow: hidden;
    border-top: 1px solid rgba(201, 164, 97, 0.08);
}

.menu-num {
    position: absolute;
    top: -0.18em;
    right: -0.04em;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(14rem, 22vw, 28rem);
    line-height: 1;
    color: rgba(201, 164, 97, 0.03);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.menu-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--pad);
}

.menu-header {
    margin-bottom: 3.5rem;
}

.menu-header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: end;
    margin-top: 1.5rem;
}

.menu-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.8vw, 3.6rem);
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.3px;
}
.menu-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
}

.menu-intro {
    font-size: 0.94rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-muted);
    max-width: 400px;
}

.menu-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3.5rem;
}
.menu-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.25rem;
    padding-bottom: 0.25rem;
}
.menu-intro {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 340px;
    text-align: right;
}

.dish-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.dish-card {
    background: #13100d;
    border: 1px solid rgba(201, 164, 97, 0.1);
    overflow: hidden;
    transition: border-color .3s var(--ease), transform .3s var(--ease);
    cursor: default;
}
.dish-card:hover {
    border-color: rgba(201, 164, 97, 0.35);
    transform: translateY(-4px);
}

.dish-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.dish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .55s var(--ease);
}
.dish-card:hover .dish-img img {
    transform: scale(1.04);
}
.dish-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 8, 6, 0.55) 0%, transparent 55%);
}

.dish-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--gold);
    padding: 0.28rem 0.7rem;
}

.dish-info {
    padding: 1.5rem 1.5rem 1.75rem;
}

.dish-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.6rem;
}
.dish-cat {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}
.dish-price {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
}

.dish-name {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.6rem;
    letter-spacing: 0.2px;
    line-height: 1.2;
}
.dish-desc {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-muted);
}

.item-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.item-name {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.chef-pick {
    font-family: var(--sans);
    font-size: 0.52rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--gold);
    padding: 0.18rem 0.55rem;
    vertical-align: middle;
    margin-left: 0.5rem;
    white-space: nowrap;
}

.item-price {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.item-desc {
    font-size: 0.83rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
}

.menu-footer {
    margin-top: 3.5rem;
    display: flex;
    justify-content: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 164, 97, 0.08);
}


/* ─── REVIEWS ─────────────────────────────────────────── */

.reviews {
    position: relative;
    background: #0f0c09;
    padding: 7rem 0 6rem;
    overflow: hidden;
    border-top: 1px solid rgba(201, 164, 97, 0.08);
}

.reviews-num {
    position: absolute;
    top: -0.18em;
    right: -0.04em;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(14rem, 22vw, 28rem);
    line-height: 1;
    color: rgba(201, 164, 97, 0.03);
    pointer-events: none;
    user-select: none;
}

.reviews-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--pad);
}

.reviews-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.reviews-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.8vw, 3.6rem);
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.3px;
}
.reviews-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
}

.featured-quote {
    position: relative;
    border: 1px solid rgba(201, 164, 97, 0.14);
    padding: 3.5rem 4rem 3rem;
    margin-bottom: 2rem;
    background: rgba(201, 164, 97, 0.02);
}

.quote-mark {
    position: absolute;
    top: -0.5rem;
    left: 3.5rem;
    font-family: var(--serif);
    font-size: 8rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.18;
    pointer-events: none;
    font-weight: 700;
}

.featured-quote blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(245, 237, 224, 0.88);
    max-width: 820px;
    margin-bottom: 2rem;
    letter-spacing: 0.2px;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.author-line {
    width: 32px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
}
.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.author-info strong {
    font-size: 0.82rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
}
.author-info span {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.author-stars {
    margin-left: auto;
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.review-card {
    background: #13100d;
    border: 1px solid rgba(201, 164, 97, 0.08);
    padding: 2rem 2rem 1.75rem;
    transition: border-color .3s var(--ease);
}
.review-card:hover {
    border-color: rgba(201, 164, 97, 0.28);
}

.review-stars {
    font-size: 0.78rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1.1rem;
}

.review-text {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.97rem;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(245, 237, 224, 0.72);
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(201, 164, 97, 0.1);
}
.reviewer-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.3px;
}
.reviewer-tag {
    font-size: 0.62rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border: 1px solid rgba(201, 164, 97, 0.1);
    background: rgba(201, 164, 97, 0.02);
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem clamp(2rem, 5vw, 4.5rem);
}
.rating-score {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}
.rating-detail {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.rating-stars {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold);
}
.rating-label {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(245, 237, 224, 0.7);
    letter-spacing: 1px;
}
.rating-source {
    font-size: 0.6rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.rating-divider {
    width: 1px;
    height: 40px;
    background: rgba(201, 164, 97, 0.12);
    flex-shrink: 0;
}


/* ─── GALLERY ─────────────────────────────────────────── */

.gallery {
    position: relative;
    background: #0f0c09;
    padding: 7rem 0 6rem;
    overflow: hidden;
    border-top: 1px solid rgba(201, 164, 97, 0.08);
}

.gallery-num {
    position: absolute;
    top: -0.18em;
    right: -0.04em;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(14rem, 22vw, 28rem);
    line-height: 1;
    color: rgba(201, 164, 97, 0.03);
    pointer-events: none;
    user-select: none;
}

.gallery-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--pad);
}

.gallery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.gallery-header-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.gallery-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    padding-bottom: 0.25rem;
}

.gallery-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.8vw, 3.6rem);
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.3px;
}
.gallery-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
}

.gallery-intro {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-muted);
    max-width: 340px;
    text-align: right;
}

.gallery-count {
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(201, 164, 97, 0.45);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 295px 295px 275px;
    gap: 0.65rem;
}

.gi-1 { grid-column: 1 / 8;  grid-row: 1 / 3; }
.gi-2 { grid-column: 8 / 13; grid-row: 1 / 2; }
.gi-3 { grid-column: 8 / 13; grid-row: 2 / 3; }
.gi-4 { grid-column: 1 / 5;  grid-row: 3 / 4; }
.gi-5 { grid-column: 5 / 13; grid-row: 3 / 4; }

.gallery-item {
    position: relative;
    overflow: hidden;
    background: #13100d;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .7s var(--ease);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(8, 6, 4, 0.88) 0%,
        rgba(8, 6, 4, 0.25) 40%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity .4s;
    z-index: 1;
}

.gallery-item:hover img    { transform: scale(1.05); }
.gallery-item:hover::before { opacity: 1; }

.gi-num {
    position: absolute;
    top: 1.1rem;
    right: 1.25rem;
    font-family: var(--serif);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(201, 164, 97, 0.35);
    z-index: 2;
    transition: color .3s;
}
.gallery-item:hover .gi-num { color: rgba(201, 164, 97, 0.7); }

.gallery-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .38s var(--ease), transform .38s var(--ease);
}
.gallery-item:hover .gallery-label {
    opacity: 1;
    transform: translateY(0);
}

.gl-line {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 0.2rem;
}
.gl-cat {
    font-size: 0.58rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}
.gl-name {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.2px;
    line-height: 1.2;
}

.gallery-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
}


/* ─── RESERVATION ─────────────────────────────────────── */

.reserve {
    position: relative;
    background: #0a0806;
    padding: 7rem 0 6rem;
    overflow: hidden;
    border-top: 1px solid rgba(201, 164, 97, 0.08);
}

.reserve-num {
    position: absolute;
    top: -0.18em;
    right: -0.04em;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(14rem, 22vw, 28rem);
    line-height: 1;
    color: rgba(201, 164, 97, 0.03);
    pointer-events: none;
    user-select: none;
}

.reserve-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--pad);
}

.reserve-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(3rem, 7vw, 8rem);
    align-items: start;
}

.reserve-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.8vw, 3.6rem);
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.3px;
    margin-bottom: 1.25rem;
}
.reserve-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
}

.reserve-lead {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(201, 164, 97, 0.1);
}

.info-block {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(201, 164, 97, 0.1);
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    align-items: start;
}

.info-label {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    padding-top: 0.15rem;
}

.info-value {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245, 237, 224, 0.75);
}

.reserve-form-wrap {
    background: #13100d;
    border: 1px solid rgba(201, 164, 97, 0.12);
    padding: 2.75rem;
}

.reserve-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding-bottom: 1.75rem;
}

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

.form-group label {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(245, 237, 224, 0.12);
    color: var(--text);
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 300;
    padding: 0.65rem 0;
    outline: none;
    transition: border-color .25s;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 237, 224, 0.2);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a461' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.25rem center;
    padding-right: 1.5rem;
    color: rgba(245, 237, 224, 0.5);
}
.form-group select:valid { color: var(--text); }

.form-group select option {
    background: #1a1410;
    color: var(--text);
}

.form-group textarea {
    resize: none;
    line-height: 1.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--gold);
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.4) sepia(1) saturate(2) hue-rotate(5deg);
    cursor: pointer;
    opacity: 0.6;
}

.form-submit {
    margin-top: 0.5rem;
    width: 100%;
    background: var(--gold);
    color: var(--bg);
    border: none;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 1.1rem 2rem;
    cursor: pointer;
    transition: background .25s, transform .25s, box-shadow .25s;
}
.form-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201, 164, 97, 0.18);
}


/* ─── FOOTER ──────────────────────────────────────────── */

.footer {
    background: #080605;
    border-top: 1px solid rgba(201, 164, 97, 0.1);
}

.footer-top {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 5rem var(--pad) 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(245, 237, 224, 0.45);
    margin-bottom: 1.75rem;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border: 1px solid rgba(201, 164, 97, 0.18);
    color: var(--text-muted);
    transition: border-color .25s, color .25s;
}
.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col-title {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-links a {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(245, 237, 224, 0.5);
    transition: color .25s;
    position: relative;
    width: fit-content;
}
.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .3s var(--ease);
}
.footer-links a:hover { color: var(--gold); }
.footer-links a:hover::after { width: 100%; }

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.footer-info li {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.fi-label {
    font-size: 0.56rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(201, 164, 97, 0.4);
}
.footer-info span:not(.fi-label),
.footer-info a {
    font-size: 0.86rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(245, 237, 224, 0.55);
    transition: color .25s;
}
.footer-info a:hover { color: var(--gold); }

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
}
.footer-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.86rem;
    font-weight: 300;
    color: rgba(245, 237, 224, 0.55);
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(245, 237, 224, 0.05);
}
.fh-time {
    color: var(--gold) !important;
    font-weight: 400;
    letter-spacing: 0.5px;
}
.footer-hours-note {
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(245, 237, 224, 0.28);
}

.footer-bottom {
    border-top: 1px solid rgba(245, 237, 224, 0.06);
}
.footer-bottom-inner {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 1.4rem var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.footer-copy {
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(245, 237, 224, 0.25);
}
.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.footer-legal a {
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(245, 237, 224, 0.25);
    transition: color .25s;
}
.footer-legal a:hover { color: var(--gold); }
.footer-legal span {
    color: rgba(245, 237, 224, 0.15);
    font-size: 0.7rem;
}


/* ─── NAV ACTIVE STATE ────────────────────────────────── */

.nav-links a.nav-active {
    color: var(--gold);
}
.nav-links a.nav-active::after {
    width: 100%;
}


/* ─── MENU PAGE ───────────────────────────────────────── */

.menu-page-hero {
    background: #0a0806;
    padding: calc(var(--nav-h) + 5rem) var(--pad) 5rem;
    border-bottom: 1px solid rgba(201, 164, 97, 0.08);
    position: relative;
    overflow: hidden;
}
.menu-page-hero::before {
    content: 'Menu';
    position: absolute;
    top: -0.1em;
    right: -0.04em;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(14rem, 22vw, 28rem);
    line-height: 1;
    color: rgba(201, 164, 97, 0.03);
    pointer-events: none;
    user-select: none;
}

.menu-page-hero-container {
    max-width: 1300px;
    margin: 0 auto;
}

.menu-page-title {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 500;
    line-height: 1.04;
    color: #fff;
    letter-spacing: -0.5px;
    margin: 1.5rem 0 1.5rem;
}
.menu-page-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
}

.menu-page-desc {
    font-size: 0.96rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 520px;
    margin-top: 1.5rem;
    letter-spacing: 0.1px;
}

/* ─── MENU NOTE BAR ───────────────────────────────────── */

.menu-note-bar {
    background: rgba(201, 164, 97, 0.05);
    border-bottom: 1px solid rgba(201, 164, 97, 0.1);
    padding: 0.9rem var(--pad);
}

.menu-note-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.menu-note-text {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.menu-note-sep {
    color: rgba(201, 164, 97, 0.35);
    font-size: 0.75rem;
}

/* ─── MENU CATEGORIES ─────────────────────────────────── */

.menu-cat {
    padding: 6rem 0 5rem;
    background: #0a0806;
    border-top: 1px solid rgba(201, 164, 97, 0.08);
}

.menu-cat--alt {
    background: #0f0c09;
}

.menu-cat-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--pad);
}

.menu-cat-header {
    margin-bottom: 3rem;
}

.menu-cat-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.3px;
    margin-top: 0.75rem;
}

/* ─── MENU LIST ───────────────────────────────────────── */

.menu-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.menu-row {
    padding: 1.6rem 0;
    border-bottom: 1px solid rgba(201, 164, 97, 0.07);
    padding-right: 3rem;
}
.menu-row:nth-child(even) {
    padding-right: 0;
    padding-left: 3rem;
    border-left: 1px solid rgba(201, 164, 97, 0.07);
}

/* ─── BEVERAGES GRID ──────────────────────────────────── */

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

.drinks-col {
    padding-right: 3rem;
    border-right: 1px solid rgba(201, 164, 97, 0.08);
}
.drinks-col:last-child {
    border-right: none;
    padding-right: 0;
}
.drinks-col:not(:first-child) {
    padding-left: 3rem;
}

.drinks-sub {
    font-family: var(--serif);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.68rem;
    letter-spacing: 3.5px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 164, 97, 0.1);
}

.drinks-col .menu-list {
    grid-template-columns: 1fr;
}
.drinks-col .menu-row {
    padding-right: 0;
    padding-left: 0;
    border-left: none;
}
.drinks-col .menu-row:nth-child(even) {
    padding-left: 0;
    border-left: none;
}

/* ─── MENU PAGE CTA ───────────────────────────────────── */

.menu-cta {
    background: #13100d;
    border-top: 1px solid rgba(201, 164, 97, 0.08);
    padding: 6rem var(--pad);
    text-align: center;
}

.menu-cta-inner {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.menu-cta-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.3px;
}
.menu-cta-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
}

.menu-cta-desc {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}


/* ─── RESPONSIVE ──────────────────────────────────────── */

@media (max-width: 900px) {
    .menu-list          { grid-template-columns: 1fr; }
    .menu-row           { padding-right: 0; }
    .menu-row:nth-child(even) { padding-left: 0; border-left: none; }
    .drinks-grid        { grid-template-columns: 1fr; gap: 2.5rem; }
    .drinks-col         { border-right: none; padding-right: 0; }
    .drinks-col:not(:first-child) { padding-left: 0; border-top: 1px solid rgba(201, 164, 97, 0.08); padding-top: 2.5rem; }
}

@media (max-width: 900px) {
    .about-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-pillars { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 2.5rem; }
    .pillar        { padding: 0 0 2.5rem 0; }
    .pillar:not(:last-child)::after { top: auto; bottom: 0; left: 0; right: 0; width: auto; height: 1px; }
    .pillar:not(:first-child) { padding-left: 0; }

    .footer-grid         { grid-template-columns: 1fr 1fr; gap: 3rem 2.5rem; }
    .footer-brand        { grid-column: 1 / -1; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

    .gallery-header      { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    .gallery-header-right{ align-items: flex-start; }
    .gallery-intro       { text-align: left; max-width: 100%; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px 220px;
    }
    .gi-1 { grid-column: 1 / 2; grid-row: 1 / 3; }
    .gi-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
    .gi-3 { grid-column: 2 / 3; grid-row: 2 / 3; }
    .gi-4 { grid-column: 1 / 2; grid-row: 3 / 4; }
    .gi-5 { grid-column: 2 / 3; grid-row: 3 / 4; }

    .reserve-grid      { grid-template-columns: 1fr; }
    .reserve-form-wrap { padding: 2rem 1.5rem; }
    .form-row          { grid-template-columns: 1fr; gap: 0; }

    .dish-grid         { grid-template-columns: 1fr; max-width: 480px; }
    .menu-header       { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .menu-header-right { align-items: flex-start; }
    .menu-intro        { text-align: left; }

    .review-grid       { grid-template-columns: 1fr; }
    .featured-quote    { padding: 2.5rem 1.75rem 2rem; }
    .author-stars      { display: none; }
    .reviews-rating    { flex-direction: column; gap: 0; }
    .rating-divider    { width: 100%; height: 1px; }
    .rating-item       { width: 100%; justify-content: center; }
}


/* ─── ABOUT PAGE ──────────────────────────────────────── */

.about-page-hero {
    background: #0a0806;
    padding: calc(var(--nav-h) + 5rem) var(--pad) 5rem;
    border-bottom: 1px solid rgba(201, 164, 97, 0.08);
    position: relative;
    overflow: hidden;
}
.about-page-hero::before {
    content: 'About';
    position: absolute;
    top: -0.1em;
    right: -0.04em;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(10rem, 18vw, 22rem);
    line-height: 1;
    color: rgba(201, 164, 97, 0.03);
    pointer-events: none;
    user-select: none;
}

.about-page-hero-container {
    max-width: 1300px;
    margin: 0 auto;
}

.abt-story-section {
    background: #0f0c09;
}

/* ─── STATS BAR ───────────────────────────────────────── */

.abt-stats-bar {
    background: rgba(201, 164, 97, 0.04);
    border-top: 1px solid rgba(201, 164, 97, 0.1);
    border-bottom: 1px solid rgba(201, 164, 97, 0.1);
    padding: 3rem var(--pad);
}

.abt-stats-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.abt-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0 clamp(2rem, 5vw, 5rem);
}

.abt-stat-num {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1;
    letter-spacing: -0.3px;
}

.abt-stat-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.abt-stat-sep {
    width: 1px;
    height: 2.5rem;
    background: rgba(201, 164, 97, 0.15);
    flex-shrink: 0;
}

/* ─── CHEF SECTION ────────────────────────────────────── */

.abt-chef {
    position: relative;
    background: #0a0806;
    padding: 7rem 0 6rem;
    overflow: hidden;
    border-top: 1px solid rgba(201, 164, 97, 0.08);
}

.abt-chef-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--pad);
}

.abt-chef-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}

.abt-chef-left .about-body {
    margin-bottom: 0;
}

.chef-quote {
    margin: 0;
    padding: 2.5rem 0 2.5rem 2.5rem;
    border-left: 2px solid rgba(201, 164, 97, 0.3);
}

.chef-quote p {
    font-family: var(--serif);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(245, 237, 224, 0.82);
    margin-bottom: 2rem;
}

.chef-quote-sig {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.chef-name {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 0.2px;
}

.chef-title {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ─── ABOUT PAGE RESPONSIVE ───────────────────────────── */

@media (max-width: 900px) {
    .abt-chef-grid    { grid-template-columns: 1fr; gap: 3rem; }
    .chef-quote       { padding: 2rem 0 0 2rem; }
    .abt-stats-inner  { flex-wrap: wrap; gap: 2rem; }
    .abt-stat-sep     { display: none; }
    .abt-stat         { padding: 0 1.5rem; }
}

@media (max-width: 900px) {
    .nav-links,
    .nav-reserve { display: none; }
    .hamburger   { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 66px; left: 0; right: 0;
        background: var(--bg-glass);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 2rem var(--pad) 2.5rem;
        gap: 1.5rem;
        border-top: 1px solid var(--border);
    }
    .nav-links.open a { font-size: 0.88rem; letter-spacing: 2px; }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding-top: calc(var(--nav-h) + 2rem);
        padding-bottom: 5rem;
    }
    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
        padding: 1.2rem 1.2rem 1.8rem 0;
    }
    .hero-side { display: none; }
    .hero-watermark { opacity: 0.5; }
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 220px);
    }
    .gi-1, .gi-2, .gi-3,
    .gi-4, .gi-5 {
        grid-column: 1 / 2;
        grid-row: auto;
    }
}

@media (max-width: 600px) {
    :root { --nav-h: 66px; }

    .hero-watermark { display: none; }
    .footer-grid         { grid-template-columns: 1fr; }
    .footer-brand        { grid-column: auto; }
    .hero-actions   { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
    .btn-fill       { width: 100%; justify-content: center; }
    .hero-visual    { max-width: 100%; padding-right: 1rem; }
    .visual-num     { font-size: 1.2rem; }
    .cap-time       { font-size: 0.95rem; }
}
