:root {
    --bg-darkest: #0a0604;
    --bg-dark: #0d0906;
    --bg-section: #130d09;
    --brown-deep: #1e120b;
    --brown-rich: #3c2415;
    --brown-warm: #5c3d2e;
    --brown-medium: #8b6b4a;
    --gold: #c9a96e;
    --gold-light: #d4b483;
    --gold-bright: #e8c992;
    --gold-pale: #f0dbb8;
    --cream: #f5efe6;
    --offwhite: #faf6f0;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

::selection {
    background-color: var(--gold);
    color: var(--bg-darkest);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.4s var(--ease-out-expo);
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-darkest);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Mobile perf: no full-screen preloader delay; hero text paints immediately */
html.perf-mobile .preloader {
    display: none !important;
}

html.perf-mobile .hero-badge,
html.perf-mobile .hero-title,
html.perf-mobile .hero-subtitle,
html.perf-mobile .hero-actions,
html.perf-mobile .hero-scroll {
    opacity: 1;
    transform: none;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateY(20px);
    animation: preloaderFadeIn 1s var(--ease-out-expo) 0.2s forwards;
}

.preloader-line {
    width: 120px;
    height: 1px;
    background: var(--brown-warm);
    position: relative;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: var(--gold);
    animation: preloaderSlide 1.2s var(--ease-in-out-circ) infinite;
}

@keyframes preloaderFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes preloaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: background-color 0.6s var(--ease-out-expo),
                padding 0.6s var(--ease-out-expo),
                backdrop-filter 0.6s var(--ease-out-expo);
}

.nav.scrolled {
    background-color: rgba(10, 6, 4, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    position: relative;
    z-index: 1001;
}

.nav-logo span {
    color: var(--cream);
    font-weight: 300;
    letter-spacing: 0.15em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.5s var(--ease-out-expo);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bg-darkest);
    background: var(--gold);
    padding: 0.75rem 1.8rem;
    border-radius: 0;
    transition: all 0.5s var(--ease-out-expo);
    border: 1px solid var(--gold);
}

.nav-cta:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-1px);
}

.nav-cta:active {
    transform: scale(0.98);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    cursor: pointer;
    z-index: 1001;
    padding: 4px 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--cream);
    transition: all 0.5s var(--ease-out-expo);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--gold);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--gold);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 6, 4, 0.95);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s var(--ease-out-expo);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--cream);
    padding: 0.8rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--ease-out-expo),
                color 0.3s var(--ease-out-expo);
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu a:hover {
    color: var(--gold);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-lcp-picture {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

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

@media (min-width: 900px) {
    .hero-lcp-picture {
        display: none;
    }
}

@media (max-width: 899px) {
    .hero-bg-video {
        display: none !important;
    }
}

.hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 6, 4, 0.4) 0%,
        rgba(10, 6, 4, 0.2) 40%,
        rgba(10, 6, 4, 0.3) 70%,
        rgba(10, 6, 4, 0.95) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-badge::before,
.hero-badge::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7.5rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--offwhite);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(40px);
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245, 239, 230, 0.7);
    max-width: 500px;
    margin: 0 auto 3rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bg-darkest);
    background: var(--gold);
    padding: 1rem 2.5rem;
    border: 1px solid var(--gold);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-bright);
    transform: translateX(-101%);
    transition: transform 0.5s var(--ease-out-expo);
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 169, 110, 0.2);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cream);
    padding: 1rem 2.5rem;
    border: 1px solid rgba(245, 239, 230, 0.2);
    transition: all 0.5s var(--ease-out-expo);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: scale(0.98);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
}

.hero-scroll span {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.6;
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(201, 169, 110, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--gold);
    animation: scrollLine 2s var(--ease-in-out-circ) infinite;
}

@keyframes scrollLine {
    0% { top: -50%; }
    100% { top: 150%; }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
    padding: clamp(5rem, 12vw, 10rem) 0;
    position: relative;
}

.section-eyebrow {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--offwhite);
    margin-bottom: 1.5rem;
}

.section-heading em {
    font-style: italic;
    color: var(--gold);
}

.section-text {
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(245, 239, 230, 0.55);
    max-width: 55ch;
}

.longform {
    background: linear-gradient(180deg, var(--bg-darkest) 0%, rgba(12, 8, 6, 0.98) 100%);
    padding-bottom: clamp(3rem, 8vw, 6rem);
}

.longform .section-heading {
    max-width: 22ch;
}

.longform-body {
    max-width: 65ch;
    margin-top: 2rem;
}

.longform-body .section-text {
    max-width: none;
    margin-bottom: 1.35rem;
}

.longform-body .section-text:last-child {
    margin-bottom: 0;
}

/* ============================================
   ABOUT / PHILOSOPHY SECTION
   ============================================ */
.about {
    background: var(--bg-darkest);
    overflow: hidden;
}

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

.about-content {
    padding-right: clamp(1rem, 3vw, 3rem);
}

.about-text-secondary {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(245, 239, 230, 0.4);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.about-stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 239, 230, 0.4);
}

.about-image-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.about-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 169, 110, 0.1);
    z-index: 2;
    pointer-events: none;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out-expo);
}

.about-image-wrap:hover img {
    transform: scale(1.05);
}

.about-image-tag {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 3;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-style: italic;
    color: var(--gold-pale);
    letter-spacing: 0.05em;
}

/* ============================================
   THE CUT / MENU HIGHLIGHTS
   ============================================ */
.thecut {
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.thecut::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201, 169, 110, 0.15) 50%,
        transparent 100%
    );
}

.thecut-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.thecut-header .section-heading {
    margin-bottom: 1rem;
}

.thecut-header .section-text {
    margin: 0 auto;
    text-align: center;
}

.thecut-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.thecut-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.thecut-card:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
}

.thecut-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out-expo);
}

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

.thecut-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 6, 4, 0.85) 0%,
        rgba(10, 6, 4, 0.1) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    transition: background 0.6s var(--ease-out-expo);
}

.thecut-card:hover .thecut-card-overlay {
    background: linear-gradient(
        to top,
        rgba(10, 6, 4, 0.9) 0%,
        rgba(10, 6, 4, 0.2) 50%,
        transparent 100%
    );
}

.thecut-card-category {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.thecut-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 400;
    color: var(--offwhite);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.thecut-card-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(245, 239, 230, 0.5);
    line-height: 1.5;
}

.thecut-cta {
    text-align: center;
    margin-top: clamp(3rem, 5vw, 4rem);
}

/* ============================================
   EXPERIENCE / AMBIANCE SECTION
   ============================================ */
.experience {
    background: var(--bg-darkest);
    overflow: hidden;
}

.experience-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(6rem, 10vw, 10rem);
}

.experience-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.experience-item:nth-child(even) {
    direction: rtl;
}

.experience-item:nth-child(even) > * {
    direction: ltr;
}

.experience-item-media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.experience-item-media::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 169, 110, 0.08);
    z-index: 2;
    pointer-events: none;
}

.experience-item-media img,
.experience-item-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out-expo);
}

.experience-item-media:hover img,
.experience-item-media:hover video {
    transform: scale(1.05);
}

.experience-item-content {
    padding: 0 clamp(0, 2vw, 2rem);
}

.experience-item-content .section-text {
    margin-bottom: 2rem;
}

.experience-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    transition: all 0.4s var(--ease-out-expo);
}

.experience-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s var(--ease-out-expo);
}

.experience-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   PARALLAX QUOTE SECTION
   ============================================ */
.parallax-quote {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.pexels.com/photos/2403391/pexels-photo-2403391.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&dpr=1');
}

.parallax-quote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 6, 4, 0.75);
}

.parallax-quote-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.parallax-quote-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    color: var(--offwhite);
    margin-bottom: 2rem;
}

.parallax-quote-author {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    background: var(--bg-section);
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201, 169, 110, 0.15) 50%,
        transparent 100%
    );
}

.gallery-header {
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 5rem);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 0.75rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1/1;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
    aspect-ratio: 1/1;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery-item:nth-child(5) {
    aspect-ratio: 1/1;
}

.gallery-item:nth-child(6) {
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out-expo);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 6, 4, 0);
    transition: background 0.5s var(--ease-out-expo);
}

.gallery-item:hover::after {
    background: rgba(10, 6, 4, 0.2);
}

/* ============================================
   RESERVATION CTA SECTION
   ============================================ */
.reserve-cta {
    background: var(--bg-darkest);
    position: relative;
    overflow: hidden;
}

.reserve-cta-inner {
    position: relative;
    background: var(--brown-deep);
    padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 5vw, 5rem);
    text-align: center;
    border: 1px solid rgba(201, 169, 110, 0.1);
    overflow: hidden;
}

.reserve-cta-inner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.reserve-cta .section-eyebrow {
    justify-content: center;
}

.reserve-cta .section-eyebrow::before {
    display: none;
}

.reserve-cta .section-heading {
    max-width: 600px;
    margin: 0 auto 1rem;
}

.reserve-cta .section-text {
    margin: 0 auto 3rem;
    text-align: center;
}

.reserve-cta-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    flex-wrap: wrap;
}

.reserve-cta-detail {
    text-align: center;
}

.reserve-cta-detail-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.reserve-cta-detail-value {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(245, 239, 230, 0.6);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
    padding: clamp(2rem, 4vw, 3rem) 0;
    overflow: hidden;
    background: var(--bg-darkest);
    border-top: 1px solid rgba(201, 169, 110, 0.06);
    border-bottom: 1px solid rgba(201, 169, 110, 0.06);
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 3rem;
    white-space: nowrap;
}

.marquee-text {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(245, 239, 230, 0.15);
    text-transform: uppercase;
}

.marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.3;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-darkest);
    padding: clamp(4rem, 8vw, 6rem) 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    padding-bottom: clamp(3rem, 5vw, 4rem);
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.footer-brand-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-brand-logo span {
    color: var(--cream);
    font-weight: 300;
    letter-spacing: 0.15em;
}

.footer-brand-text {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245, 239, 230, 0.4);
    max-width: 35ch;
}

.footer-col-title {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(245, 239, 230, 0.4);
    transition: color 0.3s var(--ease-out-expo);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(245, 239, 230, 0.25);
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 239, 230, 0.3);
    transition: color 0.3s var(--ease-out-expo);
}

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

/* ============================================
   REVEAL / SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s var(--ease-out-expo),
                transform 1s var(--ease-out-expo);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 1s var(--ease-out-expo),
                transform 1s var(--ease-out-expo);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 1s var(--ease-out-expo),
                transform 1s var(--ease-out-expo);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s var(--ease-out-expo),
                transform 1s var(--ease-out-expo);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   PAGE HEADER (For sub-pages)
   ============================================ */
.page-header {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-section);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg-darkest), transparent);
}

.page-header-content {
    position: relative;
    z-index: 2;
    padding-top: 6rem;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

/* ============================================
   MENU PAGE
   ============================================ */
.menu-section {
    background: var(--bg-darkest);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    flex-wrap: wrap;
}

.menu-cat-btn {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245, 239, 230, 0.4);
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
}

.menu-cat-btn.active,
.menu-cat-btn:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.05);
}

.menu-list {
    max-width: 800px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.06);
    gap: 1rem;
}

.menu-item-info {
    flex: 1;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 400;
    color: var(--offwhite);
    margin-bottom: 0.35rem;
}

.menu-item-desc {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(245, 239, 230, 0.35);
    line-height: 1.5;
}

.menu-item-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(201, 169, 110, 0.15);
    margin: 0 0.5rem;
    min-width: 40px;
    align-self: center;
    transform: translateY(-4px);
}

.menu-item-price {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 400;
    color: var(--gold);
    white-space: nowrap;
}

.menu-group-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 0.5rem;
    padding-top: 3rem;
}

.menu-group-subtitle {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(245, 239, 230, 0.35);
    margin-bottom: 2rem;
    font-style: italic;
}

/* ============================================
   RESERVATION PAGE
   ============================================ */
.reservation-section {
    background: var(--bg-darkest);
}

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

.reservation-info {
    padding-right: clamp(1rem, 3vw, 3rem);
}

.reservation-info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.reservation-info-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.reservation-info-value {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(245, 239, 230, 0.6);
    line-height: 1.6;
}

.reservation-form {
    background: var(--brown-deep);
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid rgba(201, 169, 110, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--cream);
    background: rgba(10, 6, 4, 0.5);
    border: 1px solid rgba(201, 169, 110, 0.12);
    outline: none;
    transition: border-color 0.4s var(--ease-out-expo);
    -webkit-appearance: none;
    appearance: none;
}

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

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(245, 239, 230, 0.25);
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a96e' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-select option {
    background: var(--brown-deep);
    color: var(--cream);
}

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

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

.form-submit {
    width: 100%;
    margin-top: 0.5rem;
}

/* ============================================
   NOISE TEXTURE OVERLAY
   ============================================ */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-cta.desktop-only {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .about-image-wrap {
        aspect-ratio: 16/10;
        max-height: 500px;
    }

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

    .thecut-card:first-child {
        grid-row: span 1;
        aspect-ratio: 16/10;
    }

    .thecut-card {
        aspect-ratio: 16/10;
    }

    .experience-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-item:nth-child(even) {
        direction: ltr;
    }

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

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        aspect-ratio: 16/9;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 2;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-top > div:first-child {
        grid-column: span 2;
    }

    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

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

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item {
        aspect-ratio: 16/10 !important;
    }

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

    .footer-top > div:first-child {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .reserve-cta-details {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .parallax-quote {
        background-attachment: scroll;
    }

    .menu-categories {
        gap: 0.75rem;
    }

    .menu-cat-btn {
        font-size: 0.6rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-heading {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
}

/* ============================================
   MOBILE TOUCH & ACCESSIBILITY
   ============================================ */
.hamburger {
    min-width: 44px;
    min-height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
}

.nav-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.mobile-menu a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
}

.btn-primary,
.btn-secondary {
    min-height: 48px;
}

.menu-cat-btn {
    min-height: 44px;
}

.form-input,
.form-select,
.form-textarea {
    min-height: 48px;
    font-size: 16px;
    border-radius: 0;
}

.form-submit {
    min-height: 52px;
}

.footer-col a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.footer-socials a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

@media (max-width: 768px) {
    .experience-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .section-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-text-secondary {
        font-size: 0.9rem;
    }

    .menu-item-desc {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .menu-item {
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .menu-item-dots {
        display: none;
    }

    .menu-item-info {
        flex: 1 1 100%;
    }

    .menu-item-price {
        flex: 0 0 auto;
    }

    .reserve-cta-inner {
        padding: 3rem 1.5rem;
    }

    .thecut-card-desc {
        font-size: 0.8rem;
    }

    .parallax-quote-text {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .page-header {
        min-height: 40vh;
    }

    .reservation-info {
        padding-right: 0;
    }
}

