/* ═══════════════════════════════════════════════════════
   EPICUREANS 8 KITCHEN — OPUS6
   Style System: Earthy luxury, dark maroon, forest green,
   sunflower gold, warm cream. Premium food brand aesthetic.
═══════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
    --maroon: #6B1D1D;
    --maroon-light: #8B2828;
    --maroon-dark: #4A1212;
    --green: #2D5016;
    --green-light: #3D6B1F;
    --gold: #C8860A;
    --gold-light: #E8A020;
    --gold-pale: #F5D78E;
    --cream: #FAF4E8;
    --cream-dark: #EFE5CC;
    --brown: #2A1A0A;
    --brown-mid: #4A3015;
    --sky: #4A8FA8;
    --white: #FFFFFF;
    --text-dark: #1A0E05;
    --text-mid: #4A3828;
    --text-light: #7A6050;
    --card-shadow: 0 8px 40px rgba(26, 14, 5, 0.18);
    --card-shadow-hover: 0 20px 60px rgba(26, 14, 5, 0.28);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.35s ease;
    --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

/* ─── LAYOUT ─────────────────────────────────────────── */
.container {
    width: min(1200px, 92%);
    margin-inline: auto;
}

.section {
    padding-block: 100px;
}

/* ─── ANIMATIONS ─────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: none;
    }

    from {
        opacity: 0;
        transform: translateY(40px);
    }
}

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
h1,
h2,
h3 {
    font-family: var(--font-display);
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 600;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 500;
}

em {
    font-style: italic;
}

p {
    line-height: 1.75;
    color: var(--text-mid);
}

/* ─── SECTION HEADER ─────────────────────────────────── */
.section-header {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: 60px;
}

.section-header p {
    margin-top: 16px;
    font-size: 1.05rem;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(200, 134, 10, 0.1);
    border: 1px solid rgba(200, 134, 10, 0.25);
    border-radius: 100px;
    padding: 5px 16px;
    margin-bottom: 16px;
}

.section-header h2 {
    margin-top: 8px;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 100px;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--brown);
    box-shadow: 0 4px 20px rgba(200, 134, 10, 0.35);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 134, 10, 0.5);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.btn-maroon {
    background: var(--maroon);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(107, 29, 29, 0.35);
}

.btn-maroon:hover {
    background: var(--maroon-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107, 29, 29, 0.45);
}

/* ─── NAVBAR ─────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 20px 0;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background: rgba(26, 14, 5, 0.97);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1200px, 92%);
    margin-inline: auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.nav-brand em {
    color: var(--gold-light);
    font-style: normal;
}

.brand-icon {
    color: var(--gold-light);
    font-size: 1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color var(--transition);
    position: relative;
}

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

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

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

.btn-nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--brown);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 10px 24px;
    border-radius: 100px;
    transition: var(--transition);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 134, 10, 0.45);
    color: var(--brown);
}

.btn-nav-cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

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

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

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

/* ─── HERO ───────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    transform-origin: center;
    animation: kenBurns 22s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(26, 9, 0, 0.82) 0%,
            rgba(107, 29, 29, 0.55) 45%,
            rgba(26, 9, 0, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, 88%);
    margin-inline: auto;
    padding-top: 80px;
    text-align: center;
    color: var(--white);
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-pale);
    margin-bottom: 20px;
    opacity: 0.85;
}

.hero-content h1 {
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 24px;
}

.hero-content h1 em {
    color: var(--gold-pale);
    display: block;
    font-size: 0.92em;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    max-width: 560px;
    margin-inline: auto;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-tagline {
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.06em;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.9;
        transform: scaleY(1.2);
    }
}

/* ─── PILLARS ────────────────────────────────────────── */
.pillars {
    background: var(--brown);
    padding-block: 28px;
}

.pillars-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.pillar:last-child {
    border-right: none;
}

.pillar-icon {
    font-size: 1.1rem;
}

/* ─── ABOUT ──────────────────────────────────────────── */
.about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--card-shadow);
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.about-img-accent {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(200, 134, 10, 0.25);
    pointer-events: none;
}

.about-text .section-badge {
    margin-bottom: 12px;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text h2 em {
    color: var(--maroon);
    display: block;
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 16px;
}

.about-text .btn-maroon {
    margin-top: 12px;
}

/* ─── HOW IT WORKS ───────────────────────────────────── */
.how-it-works {
    background: var(--brown);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.how-it-works .section-header h2 {
    color: var(--white);
}

.how-it-works .section-badge {
    color: var(--gold-light);
    background: rgba(200, 134, 10, 0.12);
    border-color: rgba(200, 134, 10, 0.2);
}

.how-it-works .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-6px);
    border-color: rgba(200, 134, 10, 0.3);
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(200, 134, 10, 0.15);
    line-height: 1;
    margin-bottom: 12px;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.step-card h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.step-card p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
}

/* ─── MENU SECTION ───────────────────────────────────── */
.menu-section {
    background: var(--cream-dark);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.menu-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--card-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.menu-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--card-shadow-hover);
}

.menu-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

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

.menu-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(26, 9, 0, 0.92) 0%,
            rgba(26, 9, 0, 0.45) 50%,
            rgba(26, 9, 0, 0.1) 100%);
    transition: background 0.4s ease;
}

.menu-card:hover .menu-card-overlay {
    background: linear-gradient(to top,
            rgba(107, 29, 29, 0.92) 0%,
            rgba(107, 29, 29, 0.5) 55%,
            rgba(26, 9, 0, 0.15) 100%);
}

.menu-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    color: var(--white);
    z-index: 2;
}

.menu-card-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-pale);
    background: rgba(200, 134, 10, 0.2);
    border: 1px solid rgba(200, 134, 10, 0.3);
    border-radius: 100px;
    padding: 4px 12px;
    margin-bottom: 10px;
}

.menu-card-content h3 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}

.menu-card-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    margin-bottom: 16px;
    line-height: 1.55;
}

.btn-menu-view {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 9px 22px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    letter-spacing: 0.04em;
}

.btn-menu-view:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--brown);
}

/* ─── SUBSCRIPTIONS ──────────────────────────────────── */
.subscriptions {
    background: var(--cream);
}

.promo-bar {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    color: var(--white);
    text-align: center;
    border-radius: var(--radius);
    padding: 16px 24px;
    font-size: 0.88rem;
    margin-bottom: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    line-height: 1.5;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(26, 14, 5, 0.06);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow);
    border-color: rgba(200, 134, 10, 0.3);
}

.pricing-card.popular {
    background: var(--maroon);
    border-color: var(--maroon-light);
    color: var(--white);
    transform: scale(1.04);
    box-shadow: 0 12px 40px rgba(107, 29, 29, 0.4);
}

.pricing-card.popular:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 20px 60px rgba(107, 29, 29, 0.5);
}

.pricing-card.elite {
    background: var(--brown);
    border: 1px solid rgba(200, 134, 10, 0.3);
    color: var(--white);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--brown);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 4px 14px;
    white-space: nowrap;
}

.elite-badge {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pricing-tier {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: inherit;
}

.pricing-card.popular .pricing-tier,
.pricing-card.elite .pricing-tier {
    color: var(--white);
}

.pricing-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 16px;
    line-height: 1.3;
}

.pricing-card.popular .pricing-price {
    color: var(--gold-pale);
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.elite .pricing-price {
    color: var(--gold-light);
    border-color: rgba(200, 134, 10, 0.2);
}

.pricing-price span {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.7;
}

.pricing-features {
    margin-bottom: 24px;
    flex: 1;
}

.pricing-features li {
    font-size: 0.82rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-mid);
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
    font-size: 0.8rem;
}

.pricing-card.popular .pricing-features li {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.popular .pricing-features li::before {
    color: var(--gold-pale);
}

.pricing-card.elite .pricing-features li {
    color: rgba(255, 255, 255, 0.72);
    border-color: rgba(255, 255, 255, 0.08);
}

.pricing-card.elite .pricing-features li::before {
    color: var(--gold-light);
}

.btn-pricing {
    display: block;
    text-align: center;
    background: var(--maroon);
    color: var(--white);
    border-radius: 100px;
    padding: 11px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    margin-top: auto;
}

.btn-pricing:hover {
    background: var(--maroon-light);
    transform: translateY(-2px);
}

.pricing-card.popular .btn-pricing {
    background: var(--white);
    color: var(--maroon);
}

.pricing-card.popular .btn-pricing:hover {
    background: var(--cream);
}

.btn-pricing-elite {
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    color: var(--brown) !important;
}

.btn-pricing-elite:hover {
    box-shadow: 0 4px 16px rgba(200, 134, 10, 0.4);
}

.pricing-note {
    text-align: center;
    margin-top: 36px;
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ─── GALLERY STRIP ──────────────────────────────────── */
.gallery-strip {
    display: flex;
    height: 260px;
}

.gallery-img {
    flex: 1;
    background-size: cover;
    background-position: center;
    transition: flex 0.5s ease, filter 0.5s ease;
    filter: brightness(0.75) saturate(0.9);
}

.gallery-img:hover {
    flex: 2.5;
    filter: brightness(1) saturate(1.1);
}

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer {
    background: var(--brown);
    color: rgba(255, 255, 255, 0.7);
    padding-block: 72px 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-text {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo-text em {
    color: var(--gold-light);
    font-style: normal;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 280px;
}

.footer-tagline {
    color: var(--gold-light) !important;
    font-family: var(--font-display);
    margin-top: 12px;
    font-size: 1rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--gold-light);
}

.footer-col a,
.footer-col p {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 10px;
    transition: color var(--transition);
    line-height: 1.5;
    cursor: pointer;
}

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

.footer-social {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.social-link {
    font-size: 0.82rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.social-link:hover {
    color: var(--gold-light) !important;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ─── MODAL ──────────────────────────────────────────── */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 5, 0, 0.82);
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    backdrop-filter: blur(6px);
    transition: opacity 0.35s ease;
}

.modal-backdrop.hidden {
    display: none;
}

.modal-panel {
    width: min(600px, 100%);
    height: 100svh;
    background: var(--cream);
    overflow-y: auto;
    position: relative;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
    animation: slideInRight 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.modal-close {
    position: sticky;
    top: 0;
    float: right;
    width: 44px;
    height: 44px;
    background: var(--maroon);
    border: none;
    border-radius: 0 0 0 var(--radius);
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    margin-left: auto;
}

.modal-close:hover {
    background: var(--maroon-dark);
}

#modal-body {
    padding: 0 40px 40px;
}

.modal-header {
    margin-bottom: 32px;
    padding-top: 12px;
}

.modal-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(200, 134, 10, 0.1);
    border: 1px solid rgba(200, 134, 10, 0.25);
    border-radius: 100px;
    padding: 4px 14px;
    margin-bottom: 12px;
}

.modal-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 0.9rem;
}

.modal-category-desc {
    background: var(--cream-dark);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 14px 18px;
    font-size: 0.88rem;
    color: var(--text-mid);
    margin-bottom: 32px;
    font-style: italic;
}

.menu-item {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.menu-item:hover {
    border-color: rgba(200, 134, 10, 0.25);
    box-shadow: 0 4px 20px rgba(26, 14, 5, 0.08);
}

.menu-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 8px;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.menu-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--maroon);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-item-desc {
    font-size: 0.85rem;
    color: var(--text-mid);
    margin-bottom: 10px;
    line-height: 1.55;
}

.menu-item-ingredients {
    font-size: 0.78rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.5;
}

.menu-item-macros {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.macro-chip {
    font-size: 0.72rem;
    font-weight: 600;
    background: var(--cream-dark);
    color: var(--green);
    border-radius: 100px;
    padding: 3px 10px;
    letter-spacing: 0.04em;
}

.protein-addon {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--cream-dark);
}

.protein-addon strong {
    color: var(--text-mid);
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-photo {
        order: -1;
    }

    .about-img-wrap {
        aspect-ratio: 16/9;
        max-height: 380px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-inline: auto;
    }

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

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

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

    .pillars-grid {
        gap: 0;
    }

    .pillar {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 50%;
    }
}

@media (max-width: 720px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 9, 0, 0.98);
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 800;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
        z-index: 901;
    }

    .section {
        padding-block: 72px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-inline: auto;
    }

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

    .gallery-strip {
        height: 180px;
    }

    #modal-body {
        padding: 0 24px 32px;
    }

    .modal-header h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        text-align: center;
        justify-content: center;
    }

    .pillar {
        width: 100%;
    }
}