/* ==============================================================
   SHATO STEAKHOUSE — Theme: Smoke & Ember
   Premium cinematic dark theme for premium steakhouse
   ============================================================== */

:root {
    /* Background */
    --bg-base: #0F0B08;
    --bg-surface: #1A1410;
    --bg-elevated: #241B16;
    --bg-glow: rgba(194, 105, 63, 0.06);

    /* Text */
    --text-primary: #EDE4D3;
    --text-secondary: #B8AC98;
    --text-muted: #7A6E5C;
    --text-subtle: #4A4036;

    /* Accents */
    --ember: #C2693F;
    --ember-bright: #D17847;
    --ember-deep: #9C5230;
    --brass: #B8895A;
    --brass-light: #D4AC7E;

    /* Borders */
    --border: rgba(237, 228, 211, 0.08);
    --border-strong: rgba(237, 228, 211, 0.15);
    --border-ember: rgba(194, 105, 63, 0.3);

    /* Fonts */
    --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
    --shadow-md: 0 12px 40px rgba(0,0,0,0.5);
    --shadow-lg: 0 24px 80px rgba(0,0,0,0.7);
    --shadow-glow: 0 0 60px rgba(194, 105, 63, 0.18);

    /* Easing */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET + BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Film grain overlay for cinematic feel */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

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

a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--ember); color: var(--bg-base); }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

h1 em, h2 em, h3 em {
    font-style: italic;
    font-weight: 300;
    color: var(--ember);
    font-variation-settings: "opsz" 144;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--ember);
    margin-bottom: 24px;
    padding-bottom: 8px;
    position: relative;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 1px;
    background: var(--ember);
}

.section-title {
    font-size: clamp(40px, 5vw, 72px);
    margin-bottom: 28px;
    letter-spacing: -0.025em;
}

.section-sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.7;
    font-weight: 300;
}

.section-header {
    text-align: center;
    margin: 0 auto 80px;
    max-width: 720px;
}

.section-header .section-tag { margin-left: auto; margin-right: auto; display: inline-block; }
.section-header .section-tag::after { left: 50%; transform: translateX(-50%); }
.section-header .section-sub { margin: 0 auto; }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--ember);
    color: var(--bg-base);
}

.btn-primary:hover {
    background: var(--ember-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(194, 105, 63, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-strong);
}

.btn-outline:hover {
    border-color: var(--ember);
    color: var(--ember);
}

.btn-full { width: 100%; }
.btn-sm { padding: 14px 24px; font-size: 12px; }

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
    background: var(--bg-base);
    border-bottom: 1px solid var(--border);
    font-size: 11px;
    color: var(--text-muted);
    padding: 12px 0;
    font-family: var(--font-mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.top-info {
    display: flex;
    gap: 28px;
    align-items: center;
}

.top-info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-info svg { color: var(--ember); }

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ADE80;
    animation: pulse 2s infinite;
}

.status-dot.closed {
    background: #EF4444;
    box-shadow: 0 0 8px #EF4444;
}

.status-text {
    color: #4ADE80;
    font-weight: 500;
    letter-spacing: 0.15em;
}

.status-indicator.closed .status-text {
    color: #EF4444;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.top-social {
    display: flex;
    gap: 14px;
    align-items: center;
}

.top-bio {
    color: var(--brass-light);
    font-style: italic;
    text-transform: none;
    letter-spacing: 0.05em;
    font-family: var(--font-display);
    font-size: 13px;
    padding-right: 16px;
    border-right: 1px solid var(--border);
}

.top-social a {
    color: var(--text-muted);
    transition: color 0.3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-social a:hover { color: var(--ember); }

/* ============================================
   SCROLL PROGRESS
   ============================================ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ember), var(--brass-light));
    z-index: 200;
    transition: width 0.1s linear;
}

/* ============================================
   SECTION MARKERS
   ============================================ */

.section-marker {
    position: absolute;
    top: 80px;
    right: 32px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    text-transform: uppercase;
    z-index: 2;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.section-marker::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 32px;
    background: var(--ember);
    margin-bottom: 12px;
    vertical-align: middle;
}

/* ============================================
   MARQUEE
   ============================================ */

.marquee {
    overflow: hidden;
    background: var(--ember);
    color: var(--bg-base);
    padding: 24px 0;
    border-top: 1px solid rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(0,0,0,0.15);
}

.marquee-track {
    display: flex;
    gap: 64px;
    animation: marqueeScroll 40s linear infinite;
    white-space: nowrap;
    width: fit-content;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 24px;
}

.marquee-track i {
    font-style: normal;
    font-size: 0.6em;
    opacity: 0.6;
}

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

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 11, 8, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(15, 11, 8, 0.95);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    max-width: 1280px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border: 1px solid var(--ember);
    color: var(--ember);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    transition: all 0.5s var(--ease);
}

.logo:hover .logo-mark {
    background: var(--ember);
    color: var(--bg-base);
    transform: rotate(-5deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.logo-sub {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.4em;
    color: var(--text-muted);
    margin-top: 4px;
}

.nav-links {
    display: flex;
    gap: 48px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active::after { background: var(--ember); }

.nav-cta {
    padding: 14px 28px;
    font-size: 12px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 1px;
    background: var(--text-primary);
    transition: all 0.4s var(--ease);
}

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/shato_01_DSZsw7xDR4c.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -3;
    animation: kenburns 25s ease infinite alternate;
    filter: brightness(0.45) contrast(1.1) saturate(0.9) blur(2px);
}

.hero-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2 !important;
    background: radial-gradient(
        ellipse at center,
        rgba(15, 11, 8, 0.4) 0%,
        rgba(15, 11, 8, 0.75) 70%,
        rgba(15, 11, 8, 0.95) 100%
    );
}

@keyframes kenburns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, -2%); }
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(15, 11, 8, 0.6) 100%
    );
}

.hero-content {
    text-align: center;
    padding: 120px 32px 80px;
    max-width: 1100px;
    position: relative;
    z-index: 1;
}

.hero-side {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    animation: fadeIn 1.5s var(--ease) 1.2s forwards;
}

.hero-side-left { left: 32px; }
.hero-side-right { right: 32px; }

.hero-side-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--brass-light);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-side-label::before {
    content: '';
    width: 1px;
    height: 60px;
    background: var(--brass-light);
    opacity: 0.5;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 40px;
    animation: fadeUp 1s var(--ease) both;
}

.hero-tagline span {
    font-size: 8px;
    color: var(--brass-light);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(64px, 11vw, 168px);
    font-weight: 200;
    line-height: 0.9;
    letter-spacing: -0.045em;
    margin-bottom: 40px;
    animation: fadeUp 1.2s var(--ease) 0.2s both;
}

.hero-title em {
    font-style: italic;
    font-weight: 200;
    color: var(--ember);
    font-variation-settings: "opsz" 144;
}

.hero-desc {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 48px;
    font-weight: 300;
    animation: fadeUp 1s var(--ease) 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 100px;
    animation: fadeUp 1s var(--ease) 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 60px;
    border-top: 1px solid var(--border);
    animation: fadeUp 1s var(--ease) 0.8s both;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 48px;
    position: relative;
}

.stat-divider::before,
.stat-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 1px;
    height: 40px;
    background: var(--border-strong);
    transform: translateY(-50%);
}

.stat-divider::before { left: 0; }
.stat-divider::after { right: 0; }

.stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    color: var(--brass-light);
    letter-spacing: 0.05em;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-down {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--ember));
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { height: 40px; opacity: 1; }
    50% { height: 56px; opacity: 0.5; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

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

/* ============================================
   ABOUT - editorial spread
   ============================================ */

.about {
    padding: 0;
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.about-grid {
    display: contents;
}

.about-images {
    position: relative;
    min-height: 90vh;
    background-image: url('images/shato_03_DJhCrnoI8IN.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.about-images::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(15, 11, 8, 0.25));
    pointer-events: none;
}

.about-img,
.about-img-1,
.about-img-2 { display: none; }

.about-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: var(--bg-base);
    border: 1px solid var(--ember);
    color: var(--ember);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.6s var(--ease);
}

.about-images:hover .about-badge {
    transform: rotate(10deg);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    color: var(--ember);
}

.badge-text {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px clamp(40px, 8vw, 120px);
    background: var(--bg-base);
}

.about-content .section-title {
    font-size: clamp(48px, 5.5vw, 88px);
    margin-bottom: 32px;
    font-weight: 300;
}

.lead {
    font-size: 24px;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-family: var(--font-display);
    font-weight: 300;
    font-style: italic;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
    max-width: 520px;
}

.about-features {
    list-style: none;
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.about-features svg {
    color: var(--ember);
    flex-shrink: 0;
}

/* ============================================
   FEATURES - editorial values band
   ============================================ */

.features {
    padding: 140px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    padding: 64px 40px;
    text-align: left;
    border-right: 1px solid var(--border);
    transition: background 0.5s var(--ease);
    position: relative;
}

.feature-card:last-child { border-right: none; }
.feature-card:hover { background: var(--bg-elevated); }

.feature-icon {
    color: var(--ember);
    margin-bottom: 32px;
    display: inline-flex;
    transition: transform 0.5s var(--ease);
}

.feature-card:hover .feature-icon {
    transform: translateY(-4px);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

/* ============================================
   MENU
   ============================================ */

.menu-section {
    padding: 180px 0 160px;
    position: relative;
    background: var(--bg-base);
}

.menu-section .section-title {
    font-size: clamp(56px, 8vw, 120px);
    font-weight: 300;
    margin-bottom: 32px;
}

.menu-section .section-sub {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    font-weight: 300;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 100px;
    flex-wrap: wrap;
    padding-bottom: 0;
    border-bottom: 1px solid var(--border);
}

.menu-tab {
    padding: 14px 28px;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease);
    border: 1px solid transparent;
    position: relative;
}

.menu-tab::before {
    content: '';
    position: absolute;
    bottom: -33px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--ember);
    transition: width 0.4s var(--ease);
}

.menu-tab:hover {
    color: var(--text-primary);
}

.menu-tab.active {
    color: var(--ember);
}

.menu-tab.active::before {
    width: 32px;
}

.menu-panels {
    position: relative;
}

.menu-panel {
    display: none;
    animation: fadeIn 0.6s var(--ease);
}

.menu-panel.active { display: block; }

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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    padding: 48px 40px;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    position: relative;
    transition: all 0.5s var(--ease);
    cursor: default;
}

.menu-item:nth-child(2n) { border-right: none; }

.menu-item:hover {
    background: var(--bg-surface);
}

.menu-item.featured {
    background: linear-gradient(135deg, rgba(194, 105, 63, 0.04), transparent);
}

.menu-item.featured::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 0;
    width: 24px;
    height: 1px;
    background: var(--ember);
}

.menu-item.featured {
    padding-left: 64px;
}

.menu-item h4 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.05;
    letter-spacing: -0.015em;
    transition: color 0.4s var(--ease);
}

.menu-item h4::after { display: none; }

.menu-item:hover h4 { color: var(--ember); }

.menu-item p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 460px;
}

.menu-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 12px;
    background: var(--ember);
    color: var(--bg-base);
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.menu-cta {
    text-align: center;
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.menu-cta p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-style: italic;
    font-family: var(--font-display);
}

/* ============================================
   COLLECTION (editorial spreads — Gucci-style)
   ============================================ */

.collection {
    position: relative;
    background: var(--bg-base);
}

.collection-intro {
    padding: 160px 32px 120px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.collection-intro .section-tag {
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
}

.collection-intro .section-tag::after {
    left: 50%;
    transform: translateX(-50%);
}

.collection-headline {
    font-family: var(--font-display);
    font-size: clamp(56px, 8vw, 120px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
}

.collection-headline em {
    font-style: italic;
    font-weight: 200;
    color: var(--ember);
    font-variation-settings: "opsz" 144;
}

.collection-sub {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Each spread = full-bleed 50/50 split */
.spread {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.spread + .spread {
    border-top: 1px solid var(--border);
}

.spread-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    transition: transform 1.2s var(--ease);
}

.spread-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(15, 11, 8, 0.3));
    pointer-events: none;
}

.spread:hover .spread-image {
    transform: scale(1.02);
}

.spread-right .spread-image { order: 2; }
.spread-right .spread-content { order: 1; }

.spread-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px clamp(40px, 8vw, 120px);
    background: var(--bg-base);
    position: relative;
}

/* Alternating subtle background tones */
.spread:nth-child(odd of .spread) .spread-content {
    background: var(--bg-base);
}

.spread:nth-child(even of .spread) .spread-content {
    background: var(--bg-surface);
}

.spread-num {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 32px;
    display: inline-block;
}

.spread-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.spread-title em {
    font-style: italic;
    font-weight: 200;
    color: var(--ember);
    font-variation-settings: "opsz" 144;
    display: block;
}

.spread-text {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 460px;
    margin-bottom: 32px;
}

.spread-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--brass-light);
    padding: 8px 14px;
    border: 1px solid var(--border-strong);
    align-self: flex-start;
}

.collection-cta {
    padding: 120px 32px 160px;
    text-align: center;
    background: var(--bg-base);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-display);
    font-size: 28px;
    font-style: italic;
    font-weight: 300;
    color: var(--text-primary);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--ember);
    transition: gap 0.5s var(--ease), color 0.3s var(--ease);
}

.link-arrow svg {
    transition: transform 0.5s var(--ease);
}

.link-arrow:hover {
    color: var(--ember);
    gap: 24px;
}

.link-arrow:hover svg {
    transform: translateX(8px);
}

/* ============================================
   RESERVATION
   ============================================ */

.reservation {
    padding: 160px 0;
    position: relative;
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.reservation-info .section-title { font-size: clamp(36px, 4vw, 60px); }

.reservation-info p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

.reservation-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.contact-card:hover {
    border-color: var(--ember);
    transform: translateY(-2px);
    background: var(--bg-elevated);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ember);
    border: 1px solid var(--border-ember);
    flex-shrink: 0;
    transition: all 0.4s var(--ease);
}

.contact-card:hover .contact-icon {
    background: var(--ember);
    color: var(--bg-base);
}

.contact-card > div:last-child {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-value {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-primary);
}

.reservation-form {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 48px;
    position: relative;
}

.reservation-form::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 60px;
    height: 60px;
    border-top: 2px solid var(--ember);
    border-left: 2px solid var(--ember);
}

.reservation-form::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid var(--ember);
    border-right: 2px solid var(--ember);
}

.reservation-form h3 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 32px;
    font-weight: 400;
}

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

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

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s var(--ease);
    border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ember);
    background: var(--bg-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-subtle);
}

.form-note {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
    font-family: var(--font-display);
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
    padding: 160px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.contact-info-block {
    padding: 48px;
    background: var(--bg-base);
    border: 1px solid var(--border);
    position: relative;
}

.contact-info-block h3 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 400;
}

.contact-info-block > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-weight: 300;
    line-height: 1.7;
}

.contact-list {
    list-style: none;
    margin-bottom: 32px;
}

.contact-list li {
    display: flex;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.contact-list li:last-child { border-bottom: none; }

.contact-list-icon {
    width: 40px;
    height: 40px;
    color: var(--ember);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-ember);
}

.contact-list li .label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.contact-list li > div:last-child a,
.contact-list li > div:last-child span:not(.label) {
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

.contact-list li a:hover { color: var(--ember); }

.contact-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.contact-actions .btn { flex: 1; }

.contact-socials {
    display: flex;
    gap: 12px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.contact-socials a {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-strong);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease);
}

.contact-socials a:hover {
    background: var(--ember);
    color: var(--bg-base);
    border-color: var(--ember);
    transform: translateY(-2px);
}

.contact-map {
    height: 600px;
    border: 1px solid var(--border);
    overflow: hidden;
    filter: grayscale(0.3) contrast(0.95) brightness(0.9);
    transition: filter 0.5s var(--ease);
}

.contact-map:hover {
    filter: grayscale(0) contrast(1) brightness(1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(0.92) hue-rotate(180deg);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-base);
    border-top: 1px solid var(--border);
    padding: 100px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand .logo { margin-bottom: 24px; }

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 360px;
    font-weight: 300;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-strong);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease);
}

.footer-socials a:hover {
    background: var(--ember);
    color: var(--bg-base);
    border-color: var(--ember);
}

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 24px;
    font-weight: 500;
}

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

.footer-col ul li, .footer-col ul a {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.3s var(--ease);
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 12px;
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: all 0.4s var(--ease);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

/* ============================================
   ANIMATIONS / SCROLL REVEALS
   ============================================ */

.feature-card,
.menu-item,
.gallery-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.feature-card.in-view,
.menu-item.in-view,
.gallery-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .container { padding: 0 24px; }
    .nav-inner { padding: 20px 24px; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .feature-card { border-right: 1px solid var(--border); }
    .feature-card:nth-child(2n) { border-right: none; }
    .feature-card:nth-child(1), .feature-card:nth-child(2) { border-bottom: 1px solid var(--border); }
    .about { grid-template-columns: 1fr; }
    .about-images { min-height: 70vh; }
    .reservation-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    .spread {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .spread-image {
        min-height: 60vh;
    }
    .spread-right .spread-image { order: 1; }
    .spread-right .spread-content { order: 2; }
    .spread-content {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
    .top-bio { display: none; }
    .section-marker { display: none; }
    .hero-side { display: none; }
    .marquee-track span { font-size: 32px !important; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-base);
        flex-direction: column;
        padding: 32px;
        gap: 24px;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open { display: flex; }
    .nav-cta { display: none; }
    .mobile-toggle { display: flex; }

    .hero-content { padding: 100px 24px 60px; }
    .hero-stats { gap: 40px; }

    .features-grid { grid-template-columns: 1fr; }
    .feature-card {
        border-right: none !important;
        border-bottom: 1px solid var(--border);
    }
    .feature-card:last-child { border-bottom: none; }

    .menu-grid {
        grid-template-columns: 1fr;
    }
    .menu-item {
        border-right: none !important;
    }

    .menu-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        scrollbar-width: none;
        padding-bottom: 12px;
    }
    .menu-tabs::-webkit-scrollbar { display: none; }

    .about-features {
        grid-template-columns: 1fr;
    }
    .about-images { min-height: 50vh; }

    .spread-content { padding: 60px 24px; }
    .spread-title { font-size: 42px !important; }
    .spread-image { min-height: 50vh; }
    .collection-intro { padding: 100px 24px 60px; }
    .collection-headline { font-size: 56px !important; }

    .reservation-form { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    .contact-info-block { padding: 32px 24px; }
    .contact-map { height: 400px; }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .section-title { font-size: 40px !important; }
    .about, .menu-section, .gallery, .reservation, .contact { padding: 100px 0; }

    .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero-title { font-size: 52px; }
    .btn { padding: 16px 28px; font-size: 12px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
}
