/* ============================================
   VITO'S FAMOUS CHEESESTEAKS - Landing Page
   Brand Palette:
     Primary Red:    #B91C1C
     Dark Red:       #7F1D1D
     Dark:           #1A1A2E
     Charcoal:       #2D2D3F
     Gold Accent:    #F59E0B
     Warm White:     #FFF8F0
     Light BG:       #F7F5F2
   Fonts: Oswald (headlines), Inter (body)
   ============================================ */

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

:root {
    --red: #B91C1C;
    --red-dark: #7F1D1D;
    --red-light: #DC2626;
    --dark: #000000;
    --charcoal: #111111;
    --gold: #F59E0B;
    --gold-dark: #D97706;
    --warm-white: #FFF8F0;
    --light-bg: #F7F5F2;
    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-400: #9CA3AF;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --font-head: 'Oswald', 'Arial Narrow', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- ANIMATIONS ---------- */
@media (prefers-reduced-motion: reduce) {
    .fade-up { opacity: 1 !important; transform: none !important; }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback: if JS hasn't loaded after 2s, show everything */
@keyframes fadeUpFallback {
    to { opacity: 1; transform: translateY(0); }
}
.fade-up {
    animation: fadeUpFallback 0s ease-out 2s forwards;
}

/* Stagger children */
.menu-grid .fade-up:nth-child(2) { transition-delay: 0.1s; }
.menu-grid .fade-up:nth-child(3) { transition-delay: 0.15s; }
.menu-grid .fade-up:nth-child(4) { transition-delay: 0.2s; }
.menu-grid .fade-up:nth-child(5) { transition-delay: 0.25s; }
.menu-grid .fade-up:nth-child(6) { transition-delay: 0.3s; }

.sides-grid .fade-up:nth-child(2) { transition-delay: 0.05s; }
.sides-grid .fade-up:nth-child(3) { transition-delay: 0.1s; }
.sides-grid .fade-up:nth-child(4) { transition-delay: 0.15s; }
.sides-grid .fade-up:nth-child(5) { transition-delay: 0.2s; }
.sides-grid .fade-up:nth-child(6) { transition-delay: 0.25s; }
.sides-grid .fade-up:nth-child(7) { transition-delay: 0.3s; }
.sides-grid .fade-up:nth-child(8) { transition-delay: 0.35s; }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    gap: 8px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(185, 28, 28, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline--dark {
    color: var(--dark);
    border-color: var(--gray-200);
}

.btn-outline--dark:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ---------- SECTION UTILITIES ---------- */
.section-tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    position: relative;
    padding-left: 36px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 2px;
    background: var(--red);
}

.section-tag--light {
    color: var(--gold);
}

.section-tag--light::before {
    background: var(--gold);
}

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

.section-header h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Menu PDF link */
.menu-pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--red);
    padding: 10px 20px;
    border: 2px solid var(--red);
    border-radius: 50px;
    transition: all var(--transition);
}

.menu-pdf-link:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(185, 28, 28, 0.25);
}

.menu-pdf-link svg {
    flex-shrink: 0;
}

/* ---------- HEADER / NAV ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #000;
    padding: 0;
    transition: all var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 70px;
}

/* Center logo */
.nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: 2;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    display: block;
    transition: all var(--transition);
}

.site-header.scrolled .nav-logo-img {
    height: 36px;
}

/* Nav links shared */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 28px;
}

.nav-links--left {
    grid-column: 1;
    justify-self: start;
}

.nav-links--right {
    grid-column: 3;
    justify-self: end;
}

.nav-links a {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    transition: color var(--transition);
    position: relative;
}

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

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

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

.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600 !important;
}

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

.nav-cta:hover {
    background: var(--red-dark) !important;
    transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    grid-column: 3;
    justify-self: end;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    border-radius: 2px;
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

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

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease-in-out, transform 6s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.12);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-accent {
    color: var(--gold);
    display: inline-block;
}

/* Rotating text - simple fade */
.rotating-text {
    display: inline-block;
}

.rotate-word {
    display: none;
    white-space: nowrap;
}

.rotate-word.active {
    display: inline;
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

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

/* Hero PDF button */
.btn-pdf {
    font-size: 0.85rem !important;
    padding: 12px 24px;
    border-color: rgba(255,255,255,0.3);
    gap: 6px;
}

.btn-pdf svg {
    flex-shrink: 0;
}

.hero-hours {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.hero-hours svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounceDown 2s ease-in-out infinite;
}

.hero-scroll a {
    color: rgba(255,255,255,0.4);
    transition: color var(--transition);
}

.hero-scroll a:hover {
    color: var(--gold);
}

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

/* ---------- ORDER ONLINE ---------- */
.order-online {
    background: var(--gold);
    padding: 28px 0;
    position: relative;
    overflow: hidden;
}

.order-online::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.order-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.order-text h2 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.order-text p {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

.order-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.order-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.order-btn-icon {
    display: flex;
    align-items: center;
}

.order-btn--doordash {
    background: var(--dark);
    color: var(--white);
}

.order-btn--doordash:hover {
    background: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.order-btn--toast {
    background: var(--red);
    color: var(--white);
}

.order-btn--toast:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 28, 28, 0.35);
}

.order-btn--orderhub {
    background: var(--white);
    color: var(--dark);
    border-color: rgba(0, 0, 0, 0.15);
}

.order-btn--orderhub:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ---------- RATINGS BAR ---------- */
.ratings-bar {
    background: var(--dark);
    padding: 24px 0;
    border-bottom: 3px solid var(--red);
}

.ratings-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    transition: all var(--transition);
}

.rating-badge:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.rating-logo {
    flex-shrink: 0;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.rating-score {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.rating-count {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ---------- REVIEWS SECTION ---------- */
.reviews-section {
    padding: 80px 0;
    background: var(--white);
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.review-card:hover {
    border-color: var(--gray-400);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.review-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-bottom: 10px;
}

.review-stars {
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-text {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.review-author {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.reviews-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- MENU SECTION ---------- */
.menu-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.menu-category-title {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    margin-bottom: 64px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.menu-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.menu-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--red);
    padding: 6px 14px;
    border-radius: 50px;
}

.menu-badge--hot {
    background: var(--gold-dark);
}

.menu-card-body {
    padding: 24px;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 12px;
}

.menu-card-header h4 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
}

.menu-price {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--red);
    white-space: nowrap;
}

.price-sm {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-400);
}

.menu-card-body p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 12px;
}

.menu-size {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-card--featured {
    border: 2px solid var(--red);
}

/* Sides Grid */
.sides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.side-item {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all var(--transition);
    border-left: 3px solid transparent;
}

.side-item:hover {
    border-left-color: var(--red);
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.side-item h4 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.side-price {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--red);
    display: block;
    margin-bottom: 6px;
}

.side-item p {
    font-size: 0.82rem;
    color: var(--gray-400);
}

/* Category Note */
.menu-category-note {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-top: -24px;
    margin-bottom: 28px;
    font-style: italic;
}

/* Add Ons Bar */
.addons-bar {
    background: var(--white);
    border: 2px dashed var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 24px 28px;
    margin-bottom: 56px;
    margin-top: 8px;
}

.addons-bar h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark);
    margin-bottom: 14px;
}

.addons-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.addon-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: var(--gray-600);
    background: var(--light-bg);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--gray-200);
}

.addon-chip strong {
    color: var(--red);
    font-weight: 700;
}

/* Smaller appetizer grid */
.menu-grid--sm {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.menu-grid--sm .menu-card-img {
    height: 160px;
}

/* Wings Section */
.wings-burger-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 56px;
}

.wings-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
}

.wings-card-img {
    width: 200px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.wings-card-body {
    padding: 28px;
    flex: 1;
}

.wings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.wings-header h4 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
}

.wings-sauces-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 10px;
    font-weight: 500;
}

.wings-sauces {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sauce-chip {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--dark);
    background: var(--warm-white);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.sauce-chip:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}


/* Toppings Bar */
.toppings-bar {
    background: var(--white);
    border: 2px dashed var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 24px 28px;
    margin-bottom: 40px;
}

.toppings-bar h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark);
    margin-bottom: 14px;
}

.toppings-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.topping-chip {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--light-bg);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--gray-200);
}

/* Combo Banner */
.menu-combo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--dark);
    border-radius: var(--radius);
    padding: 36px 48px;
    gap: 32px;
    flex-wrap: wrap;
}

.combo-tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.combo-text h3 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.combo-text p {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.combo-plus {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
    padding: 100px 0;
    background: var(--dark);
    overflow: hidden;
}

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

/* Image collage */
.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    position: relative;
}

.about-img-main {
    grid-column: 1 / -1;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-img-main img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.about-img-secondary {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.about-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.about-img-accent {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 3px solid var(--gold);
}

.about-img-accent img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Text side */
.about-text h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 24px;
    border-radius: 2px;
}

.about-lead {
    font-size: 1.15rem !important;
    color: var(--gold) !important;
    font-weight: 500;
    font-style: italic;
}

.about-text p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 14px;
}

/* Pillar cards */
.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.pillar {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 24px 20px;
    transition: all var(--transition);
}

.pillar:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(245, 158, 11, 0.25);
}

.pillar-number {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.4;
}

.pillar h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.pillar p {
    font-size: 0.82rem !important;
    color: rgba(255,255,255,0.45) !important;
    line-height: 1.5;
    margin-bottom: 0 !important;
}

/* ---------- HISTORY SECTION ---------- */
.history-section {
    padding: 100px 0;
    background: var(--warm-white);
}

/* Split layout */
.history-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    margin-bottom: 72px;
}

.history-image {
    position: sticky;
    top: 100px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.history-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Timeline */
.history-timeline {
    position: relative;
    padding-left: 48px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--gray-200);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -42px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gray-400);
    z-index: 1;
}

.timeline-item--vitos::before {
    background: var(--red);
    border-color: var(--red);
    width: 14px;
    height: 14px;
    left: -43px;
    box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.2);
}

.timeline-year {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 6px;
}

.timeline-item--vitos .timeline-year {
    color: var(--red);
    font-size: 0.85rem;
}

.timeline-content h3 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.timeline-item--vitos .timeline-content h3 {
    font-size: 1.4rem;
    color: var(--red);
}

.timeline-content p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.75;
}

/* Anatomy block */
.anatomy-block {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 56px;
}

.anatomy-block h3 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.anatomy-item {
    text-align: center;
}

.anatomy-letter {
    font-family: 'Rockwell', 'Rockwell Nova', 'Georgia', 'Times New Roman', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    margin: 0 auto 16px;
    position: relative;
}

.anatomy-letter::after {
    content: attr(data-letter);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.anatomy-item h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.anatomy-item p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
}

/* ---------- PROMOTIONS ---------- */
.promos-section {
    padding: 100px 0;
    background: var(--white);
}

.promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 28px;
}

.promo-card {
    display: flex;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 300px;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition);
}

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

.promo-card--lunch {
    background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
}

.promo-card--family {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
}

.promo-card-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-label {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.promo-card h3 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.promo-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.promo-price-block {
    margin-bottom: 20px;
}

.promo-from {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-amount {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
}

.promo-card-visual {
    width: 220px;
    flex-shrink: 0;
}

.promo-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* ---------- LOCATION ---------- */
.location-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    min-height: 500px;
}

.location-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.location-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.location-details {
    padding: 32px;
}

.location-details h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.detail-row svg {
    flex-shrink: 0;
    color: var(--red);
    margin-top: 2px;
}

.detail-row a {
    color: var(--red);
    font-weight: 600;
    transition: color var(--transition);
}

.detail-row a:hover {
    color: var(--red-dark);
}

address {
    font-style: normal;
    margin-bottom: 24px;
}

.hours-block {
    margin-bottom: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.hours-block h4 {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--gray-600);
    padding: 6px 0;
}

.location-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.location-map {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 400px;
    box-shadow: var(--shadow);
}

.location-map iframe {
    border-radius: var(--radius);
}

/* ---------- FINAL CTA ---------- */
.final-cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.final-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.75) 100%
    );
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--dark);
    padding: 64px 0 0;
}

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

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
    max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: color var(--transition);
}

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

.footer-contact p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--gold);
    font-weight: 600;
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-align: center;
}

/* ============================================
   RESPONSIVE DESIGN (Mobile-First Overrides)
   ============================================ */

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

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

    .about-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

@media (max-width: 768px) {
    /* Nav - mobile */
    .nav-container {
        min-height: 60px;
    }

    .nav-logo-img {
        height: 36px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links--left,
    .nav-links--right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transition: right var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        grid-column: auto;
        justify-self: auto;
    }

    .nav-links--left {
        padding-bottom: 40px;
    }

    .nav-links--right {
        padding-top: 40px;
    }

    .nav-links--left.nav-open,
    .nav-links--right.nav-open {
        right: 0;
    }

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

    .nav-cta {
        margin-top: 16px;
    }

    /* Hero */
    .hero-content {
        padding: 100px 20px 60px;
    }

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

    /* Order Online */
    .order-inner {
        flex-direction: column;
        text-align: center;
    }

    .order-buttons {
        justify-content: center;
    }

    .order-btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    /* Reviews */
    .reviews-carousel {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .reviews-section {
        padding: 48px 0;
    }

    .reviews-cta {
        flex-direction: column;
        align-items: center;
    }

    /* Menu */
    .menu-section {
        padding: 64px 0;
    }

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

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

    .menu-combo-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    /* Promos */
    .promos-section {
        padding: 64px 0;
    }

    .promo-card {
        flex-direction: column;
    }

    .promo-card-visual {
        width: 100%;
        height: 180px;
    }

    .promo-card-content {
        padding: 28px;
    }

    /* History */
    .history-section {
        padding: 64px 0;
    }

    .history-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .history-image {
        position: static;
        max-width: 400px;
    }

    .anatomy-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .anatomy-block {
        padding: 36px 28px;
    }

    /* About */
    .about-section {
        padding: 64px 0;
    }

    .about-images {
        grid-template-columns: 1fr 1fr;
    }

    .about-img-main img {
        height: 240px;
    }

    .about-img-secondary img,
    .about-img-accent img {
        height: 160px;
    }

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

    .wings-card {
        flex-direction: column;
    }

    .wings-card-img {
        width: 100%;
        height: 180px;
    }

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

    .about-pillars {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pillar {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px 20px;
    }

    .pillar-number {
        font-size: 1.4rem;
        margin-bottom: 0;
        min-width: 32px;
    }

    .pillar h4 {
        margin-bottom: 2px;
    }

    /* Location */
    .location-section {
        padding: 64px 0;
    }

    .location-map {
        min-height: 300px;
    }

    .location-actions {
        flex-direction: column;
    }

    .location-actions .btn {
        text-align: center;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Final CTA */
    .final-cta {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.1rem;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }

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

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

    .promo-card h3 {
        font-size: 1.4rem;
    }

    .promo-amount {
        font-size: 1.8rem;
    }
}

/* ---------- PRINT STYLES ---------- */
@media print {
    .site-header,
    .hero-scroll,
    .nav-toggle,
    .final-cta,
    .location-map iframe {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }
}
