/* ===========================
   CSS Variables — Premium Fire Dining
   =========================== */
:root {
    /* === Core Brand Palette === */
    --charcoal:        #1C1C1E;      /* deep charcoal black — main dark bg */
    --charcoal-mid:    #2D2D30;      /* smoke gray — card/panel dark bg */
    --charcoal-light:  #3A3A3C;      /* lighter smoke — borders on dark */
    --ember-red:       #C0392B;      /* ember red — primary brand action */
    --ember-dark:      #96281B;      /* deep ember — hover states */
    --flame-orange:    #E8502A;      /* flame orange — secondary CTA */
    --flame-bright:    #FF6B3D;      /* bright flame — hover glow */
    --copper-gold:     #C9A84C;      /* copper gold — luxury accent */
    --copper-light:    #E8C46A;      /* warm gold — highlights */
    --off-white:       #FAF8F5;      /* warm off-white — light bg */
    --white:           #FFFFFF;
    --smoke-text:      rgba(255,255,255,0.85); /* text on dark bg */
    --smoke-muted:     rgba(255,255,255,0.55); /* muted text on dark bg */

    /* === Legacy aliases (keep old code working) === */
    --primary-color:   var(--ember-red);
    --primary-dark:    var(--ember-dark);
    --primary-light:   var(--flame-orange);
    --secondary-color: var(--charcoal);
    --accent-color:    var(--copper-gold);
    --dark-color:      var(--charcoal);
    --light-bg:        var(--off-white);
    --gray-100: #F5F5F4;
    --gray-200: #E8E6E1;
    --gray-300: #D4D0C8;
    --gray-400: #B0A99A;
    --gray-500: #8A8278;
    --gray-600: #5C574F;
    --gray-700: #3E3A34;
    --gray-800: #2A2620;
    --gray-900: #1A1714;
    --success: #2E7D32;

    /* === Shadows & Glow === */
    --box-shadow:      0 2px 12px rgba(0,0,0,0.12);
    --box-shadow-lg:   0 8px 32px rgba(0,0,0,0.22);
    --glow-ember:      0 0 24px rgba(232, 80, 42, 0.55);
    --glow-gold:       0 0 20px rgba(201, 168, 76, 0.45);
    --glow-card:       0 12px 40px rgba(232, 80, 42, 0.18);

    /* === Gradients === */
    --grad-flame:      linear-gradient(135deg, #E8502A 0%, #C0392B 60%, #96281B 100%);
    --grad-fire:       linear-gradient(135deg, #FF6B3D 0%, #E8502A 40%, #C0392B 100%);
    --grad-gold:       linear-gradient(135deg, #C9A84C 0%, #E8C46A 50%, #C9A84C 100%);
    --grad-dark:       linear-gradient(160deg, #1C1C1E 0%, #2D2D30 100%);
    --grad-charcoal:   linear-gradient(135deg, #2D2D30 0%, #1C1C1E 100%);

    /* === Typography === */
    --font-display: 'Georgia', 'Times New Roman', serif;
    --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* === Transitions === */
    --transition:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================
   Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden; /* prevent horizontal scroll on mobile */
}

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

a {
    color: var(--ember-red);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--ember-dark);
}

/* ===========================
   Container & Layout
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-light {
    background-color: var(--off-white);
}

.section-dark {
    background: var(--charcoal);
    color: var(--white);
}

/* ===========================
   Scroll Reveal Animations
   =========================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===========================
   Header & Navigation
   =========================== */
header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.35s ease, box-shadow 0.35s ease;
    padding: 0.5rem 0;
}

/* 仅首页透明导航 */
header.transparent-nav {
    background: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

header.transparent-nav.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1001;
}

.logo img {
    height: 160px;
    width: auto;
    position: relative;
    margin-top: 5px;
    margin-bottom: -55px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.logo a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.logo a:hover {
    opacity: 0.9;
}

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

.nav-menu a {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--flame-orange);
    transition: left 0.3s ease, right 0.3s ease;
    border-radius: 1px;
}

.nav-menu a:hover::after {
    left: 0.9rem;
    right: 0.9rem;
}

.nav-menu a:hover {
    color: var(--ember-red);
    background-color: rgba(232, 80, 42, 0.06);
}

/* Logo 切换：默认显示原版，透明导航时显示白色版 */
.logo-white {
    display: none;
}

header.transparent-nav .logo-default {
    display: none;
}

header.transparent-nav .logo-white {
    display: block;
}

header.transparent-nav.scrolled .logo-default {
    display: block;
}

header.transparent-nav.scrolled .logo-white {
    display: none;
}

/* 首页透明导航时文字白色 */
header.transparent-nav .nav-menu a {
    color: var(--white);
}

header.transparent-nav .nav-menu a:hover {
    color: var(--white);
    background-color: rgba(255,255,255,0.12);
}

header.transparent-nav.scrolled .nav-menu a {
    color: var(--gray-700);
}

header.transparent-nav.scrolled .nav-menu a:hover {
    color: var(--ember-red);
    background-color: rgba(232, 80, 42, 0.06);
}

.nav-menu .btn-book {
    background: var(--grad-flame);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 16px rgba(232, 80, 42, 0.35);
    transition: var(--transition);
}

.nav-menu .btn-book::after {
    display: none;
}

.nav-menu .btn-book:hover {
    background: var(--grad-fire);
    transform: translateY(-2px);
    box-shadow: var(--glow-ember);
    color: var(--white);
}

header.transparent-nav .nav-menu .btn-book {
    color: var(--white);
}

header.transparent-nav.scrolled .nav-menu .btn-book {
    color: var(--white);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
}

.menu-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

header.transparent-nav .menu-toggle span {
    background: var(--white);
}

header.transparent-nav.scrolled .menu-toggle span {
    background: var(--charcoal);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    color: var(--white);
    padding: 8rem 0 6rem;
    text-align: center;
}

/* 子页面 hero — 深色 Premium 风格 */
.hero:not(.hero-video) {
    background: linear-gradient(160deg, var(--charcoal) 0%, #2A2020 50%, var(--charcoal-mid) 100%);
    color: var(--white);
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero:not(.hero-video)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(232,80,42,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.08) 0%, transparent 55%);
    pointer-events: none;
}

.hero:not(.hero-video) h1 {
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero:not(.hero-video) p {
    color: rgba(255,255,255,0.80);
}

/* Accent underline on sub-page hero h1 */
.hero:not(.hero-video) .hero-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--copper-gold);
    margin-bottom: 1rem;
}

/* Video Hero */
.hero-video {
    position: relative;
    width: 100%;
    height: 56.25vw; /* 16:9 ratio */
    min-height: 500px;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-video-content {
    position: relative;
    z-index: 2;
    padding: 4rem 1rem;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.01em;
}

.hero h1 em {
    font-style: normal;
    color: var(--copper-light);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.92;
    line-height: 1.7;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--copper-gold);
    margin-bottom: 1.2rem;
    padding: 0.3rem 1rem;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 50px;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 0.95rem 2.4rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Primary — Flame Gradient */
.btn-primary {
    background: var(--grad-flame);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(232, 80, 42, 0.4);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background 0.3s ease;
    border-radius: inherit;
}

.btn-primary:hover {
    background: var(--grad-fire);
    transform: translateY(-3px);
    box-shadow: var(--glow-ember);
    color: var(--white);
}

/* Secondary — Ghost on dark */
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.75);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}

/* Outline */
.btn-outline {
    background: transparent;
    color: var(--ember-red);
    border: 2px solid var(--ember-red);
}

.btn-outline:hover {
    background: var(--ember-red);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(192, 57, 43, 0.35);
    transform: translateY(-2px);
}

/* Gold accent button */
.btn-gold {
    background: var(--grad-gold);
    color: var(--charcoal);
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-gold);
    color: var(--charcoal);
}

/* ===========================
   Section Headers
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--copper-gold);
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    background: var(--grad-flame);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Dark section headers */
.section-dark .section-header h2 {
    color: var(--white);
}

.section-dark .section-header p {
    color: var(--smoke-muted);
}

/* ===========================
   Cards & Grid — Premium
   =========================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-flame);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-card);
    border-color: rgba(232,80,42,0.15);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: block;
}

.card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

.card p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 0.97rem;
}

/* Dark variant cards */
.card-dark {
    background: var(--charcoal-mid);
    border: 1px solid var(--charcoal-light);
    color: var(--white);
}

.card-dark::before {
    background: var(--grad-gold);
}

.card-dark h3 {
    color: var(--white);
}

.card-dark p {
    color: var(--smoke-muted);
}

.card-dark:hover {
    border-color: rgba(201,168,76,0.35);
    box-shadow: 0 12px 40px rgba(201,168,76,0.15);
}

/* ===========================
   Feature / Info Sections
   =========================== */
.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(232,80,42,0.12), rgba(192,57,43,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.25rem;
    border: 1px solid rgba(232,80,42,0.2);
    transition: var(--transition);
}

.card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(232,80,42,0.2), rgba(192,57,43,0.15));
    transform: scale(1.1) rotate(-4deg);
}

/* ===========================
   Forms
   =========================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.92rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.1rem;
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    color: var(--charcoal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ember-red);
    box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.10);
}

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

.form-group .error {
    color: var(--ember-red);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: var(--ember-red);
}

.form-group.has-error .error {
    display: block;
}

.form-required {
    color: var(--ember-red);
}

/* ===========================
   Gallery
   =========================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: var(--transition);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.28);
    transform: translateY(-4px);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

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

/* ===========================
   FAQ — Premium Dark
   =========================== */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 14px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 6px 28px rgba(232,80,42,0.12);
    border-color: rgba(232,80,42,0.15);
}

.faq-item.active {
    border-color: rgba(232,80,42,0.25);
    box-shadow: 0 6px 28px rgba(232,80,42,0.14);
}

.faq-question {
    width: 100%;
    padding: 1.4rem 1.6rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    line-height: 1.5;
}

.faq-question:hover {
    background: rgba(232,80,42,0.04);
    color: var(--ember-red);
}

.faq-item.active .faq-question {
    color: var(--ember-red);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(232,80,42,0.08);
    border: 1.5px solid rgba(232,80,42,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ember-red);
    transition: var(--transition);
    line-height: 1;
}

.faq-question::after {
    content: '+';
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(232,80,42,0.08);
    border: 1.5px solid rgba(232,80,42,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ember-red);
    transition: var(--transition);
    line-height: 1;
    text-align: center;
    padding-bottom: 1px;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    background: var(--grad-flame);
    border-color: transparent;
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.faq-answer-content {
    padding: 0 1.6rem 1.6rem;
    color: var(--gray-600);
    line-height: 1.85;
    font-size: 0.97rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 1.1rem;
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

/* ===========================
   Tabs
   =========================== */
.tabs {
    margin-bottom: 2rem;
}

.tab-buttons {
    display: flex;
    gap: 0.75rem;
    border-bottom: 2px solid var(--gray-200);
}

.tab-button {
    padding: 0.9rem 2rem;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-500);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    margin-bottom: -2px;
    letter-spacing: 0.03em;
    border-radius: 8px 8px 0 0;
}

.tab-button:hover {
    color: var(--ember-red);
    background: rgba(232,80,42,0.04);
}

.tab-button.active {
    color: var(--ember-red);
    border-bottom-color: var(--ember-red);
    background: rgba(232,80,42,0.04);
}

.tab-content {
    display: none;
    padding: 2rem 0;
}

.tab-content.active {
    display: block;
}

/* ===========================
   CTA Banner — Premium Fire
   =========================== */
.cta-banner {
    background: linear-gradient(135deg, #1C1C1E 0%, #2A1510 45%, #1C1C1E 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 2rem;
    margin: 4rem 0 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(232,80,42,0.22) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 30%, rgba(192,57,43,0.16) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(201,168,76,0.08) 0%, transparent 45%);
    pointer-events: none;
}

.cta-banner > * {
    position: relative;
    z-index: 1;
}

.cta-banner .section-eyebrow {
    margin-bottom: 1rem;
}

.cta-banner h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-banner h2 em {
    font-style: normal;
    color: var(--copper-gold);
}

.cta-banner p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-banner .btn-primary {
    font-size: 1.1rem;
    padding: 1.1rem 3rem;
}

.cta-banner .btn-secondary {
    font-size: 1.1rem;
    padding: 1.1rem 3rem;
}

.cta-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   Contact Card
   =========================== */
.contact-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
}

.contact-card h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--gray-600);
}

.contact-info a {
    color: var(--ember-red);
    font-weight: 700;
    font-size: 1.15rem;
}

.contact-info a:hover {
    color: var(--ember-dark);
}

/* ===========================
   State / Location Cards
   =========================== */
.state-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.state-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-flame);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.state-card:hover {
    transform: translateY(-8px);
    border-color: rgba(232,80,42,0.2);
    box-shadow: var(--glow-card);
}

.state-card:hover::before {
    transform: scaleX(1);
}

/* ===========================
   Gallery Page — Tabs & Pagination
   =========================== */
.gallery-tab-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.gallery-tab-btn {
    padding: 0.75rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid var(--ember-red);
    background: transparent;
    color: var(--ember-red);
    transition: var(--transition);
    letter-spacing: 0.03em;
}

.gallery-tab-btn.active,
.gallery-tab-btn:hover {
    background: var(--grad-flame);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(232,80,42,0.35);
}

.gallery-pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.gallery-pagination a,
.gallery-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1.5px solid var(--gray-300);
    color: var(--gray-700);
    cursor: pointer;
}

.gallery-pagination .active,
.gallery-pagination a:hover {
    background: var(--grad-flame);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(232,80,42,0.35);
}

/* ===========================
   Footer — Premium Dark
   =========================== */
footer {
    background: linear-gradient(180deg, #1A1714 0%, #111010 100%);
    color: var(--white);
    padding: 3.5rem 0 1.5rem;
    margin-top: 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-flame);
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo-section img {
    width: 160px;
    height: 160px;
    background: #ffffff;
    border-radius: 50%;
    padding: 10px;
    border: 3px solid #1C1C1E;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 4px 20px rgba(0,0,0,0.4);
    filter: brightness(1.05);
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.10);
}

.social-icon:hover {
    background: var(--grad-flame);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(232,80,42,0.45);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.7rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--grad-flame);
    border-radius: 1px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.9;
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--copper-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-partner {
    margin-top: 1rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.50);
}

.footer-partner a {
    color: var(--copper-gold);
    text-decoration: none;
    transition: var(--transition);
}

.footer-partner a:hover {
    color: var(--copper-light);
}

/* ===========================
   Success/Error Messages
   =========================== */
.message {
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: none;
    font-weight: 500;
}

.message.show {
    display: block;
}

.message-success {
    background: #ECFDF5;
    color: #065F46;
    border: 1.5px solid #6EE7B7;
}

.message-error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1.5px solid #FCA5A5;
}

/* ===========================
   Layout Grids (base — must come before media queries so mobile overrides win)
   =========================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1.5rem;
}

.menu-side-by-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Service coverage cards — desktop grid, mobile horizontal scroll */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Gallery collapse toggle — desktop shows all, hides toggle button */
.gallery-toggle-wrap { display: none; }

/* ===========================
   Responsive Design — Tablet (≤ 900px)
   =========================== */
@media (max-width: 900px) {
    .menu-side-by-side {
        grid-template-columns: 1fr;
    }

    .content-split {
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* ===========================
   Responsive Design — Mobile (≤ 768px)
   =========================== */
@media (max-width: 768px) {

    /* --- Navigation --- */
    .menu-toggle {
        display: flex;
        z-index: 1002;
    }

    .logo img {
        height: 90px;
        margin-top: -5px;
        margin-bottom: -25px;
    }

    nav {
        min-height: 64px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 0 2rem;
        box-shadow: -4px 0 40px rgba(0,0,0,0.18);
        transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
        gap: 0;
        overflow-y: auto;
        z-index: 1001;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: left;
        margin: 0;
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        padding: 1rem 1.5rem;
        width: 100%;
        font-size: 1.05rem;
        font-weight: 600;
        border-bottom: 1px solid var(--gray-100);
        border-radius: 0;
        color: var(--gray-700);
        min-height: 54px;
    }

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

    .nav-menu a:hover {
        background: rgba(232,80,42,0.05);
        color: var(--ember-red);
    }

    .nav-menu .btn-book {
        margin: 1.25rem 1.5rem;
        width: calc(100% - 3rem);
        text-align: center;
        border-bottom: none;
        border-radius: 50px;
        justify-content: center;
    }

    /* Mobile nav overlay backdrop */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.45);
        z-index: -1;
    }

    /* --- Hero --- */
    .hero {
        padding: 4rem 0 3rem;
    }

    .hero:not(.hero-video) {
        padding: 4.5rem 0 3.5rem;
    }

    .hero h1 {
        font-size: 1.85rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .hero-eyebrow {
        font-size: 0.72rem;
        padding: 0.25rem 0.8rem;
    }

    .hero-video {
        height: auto;
        min-height: 0;
        max-height: none;
        padding: 6rem 0 3rem;
    }

    .hero-video-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: none;
    }

    .hero-video-content {
        padding: 1.5rem 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* --- Sections --- */
    .section {
        padding: 3.5rem 0;
    }

    /* --- Section Headers --- */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-eyebrow {
        font-size: 0.72rem;
    }

    /* --- Content Split (two-column → single) --- */
    .content-split {
        flex-direction: column;
        gap: 2rem;
    }

    .content-split-col {
        width: 100%;
        min-width: 0;
    }

    .split-img {
        max-height: 280px;
    }

    /* --- Step Items --- */
    .step-num {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    /* --- Cards --- */
    .card-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .card {
        padding: 1.75rem 1.5rem;
    }

    /* --- Gallery collapsed on mobile — show 3 by default --- */
    .gallery-grid .gallery-extra {
        display: none;
    }

    .gallery-grid.expanded .gallery-extra {
        display: block;
    }

    .gallery-toggle-wrap {
        display: block;
    }

    .view-full-gallery-wrap {
        display: none;
    }

    /* --- Service Coverage & Reviews — horizontal swipe on mobile --- */
    .coverage-grid,
    .reviews-grid {
        display: flex;
        grid-template-columns: none;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0.5rem 1rem 1.25rem;
        margin: 0 -1rem;
        scrollbar-width: thin;
    }

    .coverage-grid > .card,
    .reviews-grid > .card {
        flex: 0 0 78%;
        max-width: 300px;
        scroll-snap-align: center;
        margin: 0;
    }

    .coverage-grid::-webkit-scrollbar,
    .reviews-grid::-webkit-scrollbar {
        height: 6px;
    }

    .coverage-grid::-webkit-scrollbar-thumb,
    .reviews-grid::-webkit-scrollbar-thumb {
        background: rgba(232,80,42,0.4);
        border-radius: 3px;
    }

    /* Disable hover lift on touch screens */
    @media (hover: none) {
        .card:hover {
            transform: none;
            box-shadow: 0 4px 24px rgba(0,0,0,0.08);
        }
        .gallery-item:hover {
            transform: none;
        }
        .gallery-item:hover img {
            transform: none;
        }
    }

    /* --- Pricing Grid --- */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* --- Reviews Grid --- */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* --- Gallery --- */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    /* --- Contact Grid --- */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* --- Protein Grid --- */
    .protein-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem 1rem;
    }

    /* --- Tabs --- */
    .tab-buttons {
        flex-direction: column;
        gap: 0;
    }

    .tab-button {
        text-align: left;
        border-left: 3px solid transparent;
        border-bottom: 1px solid var(--gray-200);
        border-top: none;
        border-right: none;
        border-radius: 0;
        padding: 0.85rem 1.25rem;
        font-size: 1rem;
        min-height: 50px;
    }

    .tab-button.active {
        border-left-color: var(--ember-red);
        border-bottom-color: var(--gray-200);
    }

    /* --- FAQ --- */
    .faq-question {
        padding: 1.1rem 1.2rem;
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 1.2rem 1.2rem;
        padding-top: 0.9rem;
    }

    /* --- Buttons --- */
    .btn {
        padding: 0.9rem 1.75rem;
        font-size: 1rem;
    }

    /* --- CTA Banner --- */
    .cta-banner {
        padding: 3.5rem 1.5rem;
    }

    .cta-banner h2 {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    .cta-banner p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        max-width: 320px;
        margin: 0 auto;
    }

    .cta-actions .btn {
        width: 100%;
        text-align: center;
    }

    /* --- Footer --- */
    footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo-section {
        order: -1;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section p,
    .footer-section a {
        display: block;
    }

    .footer-social {
        justify-content: center;
    }

    /* --- Menu side-by-side override --- */
    .menu-side-by-side {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===========================
   Responsive Design — Small Mobile (≤ 480px)
   =========================== */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 1.65rem;
    }

    .hero-video {
        padding: 5.5rem 0 2.5rem;
    }

    .hero-video-content {
        padding: 1rem 0.75rem;
    }

    .section-header h2 {
        font-size: 1.65rem;
    }

    .cta-banner h2 {
        font-size: 1.5rem;
    }

    /* Gallery single column on very small screens */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

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

    .card {
        padding: 1.5rem 1.25rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem;
    }

    /* Protein grid single column */
    .protein-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing cards bigger price numbers */
    .btn {
        padding: 0.85rem 1.5rem;
    }
}

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

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(232,80,42,0.35); }
    50%       { box-shadow: 0 4px 32px rgba(232,80,42,0.65); }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

.pulse-glow {
    animation: pulseGlow 2.5s ease-in-out infinite;
}

/* ===========================
   Responsive Layout Utilities
   =========================== */

/* Two-column content split (How It Works, How We Do, etc.) */
.content-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.content-split-col {
    flex: 1;
    min-width: min(100%, 280px);
}

/* Responsive image in split layout */
.split-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 480px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    display: block;
}

/* Step list items (numbered) */
.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    margin-bottom: 1.75rem;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-flame);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(232,80,42,0.4);
}

.step-content h3 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    color: var(--charcoal);
}

.step-content p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.97rem;
}

/* Review card header row */
.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* ===========================
   Utility Classes
   =========================== */
.text-center { text-align: center; }
.text-ember  { color: var(--ember-red); }
.text-gold   { color: var(--copper-gold); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--gray-600); }

.bg-dark     { background: var(--charcoal); }
.bg-charcoal { background: var(--charcoal-mid); }
.bg-light    { background: var(--off-white); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden { display: none; }
