/* ============================================
   Tony's Pizza — Palm Valley, FL
   Complete Stylesheet
   Mobile-First Responsive Design
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --red: #B22222;
    --red-dark: #8B1A1A;
    --red-light: #D44A4A;
    --cream: #F8F1E7;
    --cream-dark: #EDE4D4;
    --green: #2E6B3E;
    --green-light: #3D8B50;
    --charcoal: #2B2B2B;
    --charcoal-light: #4A4A4A;
    --golden: #E3A82B;
    --golden-dark: #C8911E;
    --golden-light: #F0C85A;
    --white: #FFFFFF;
    --off-white: #FAFAF7;
    --gray-100: #F5F5F3;
    --gray-200: #E8E6E1;
    --gray-300: #D1CEC7;
    --gray-400: #9E9A92;
    --gray-500: #6B675F;
    --shadow-sm: 0 1px 3px rgba(43,43,43,0.08);
    --shadow-md: 0 4px 12px rgba(43,43,43,0.1);
    --shadow-lg: 0 8px 30px rgba(43,43,43,0.12);
    --shadow-xl: 0 16px 50px rgba(43,43,43,0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 999px;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.3s ease;
    --header-height: 70px;
    --header-top-height: 36px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: calc(var(--header-height) + var(--header-top-height) + 20px);
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

button {
    border: 0;
    background: none;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
}

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

.accent-green {
    color: var(--green) !important;
    font-weight: 600;
}

.lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--charcoal-light);
    margin-bottom: 1.25rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
    line-height: 1.4;
}

.btn i {
    font-size: 0.9em;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

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

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--red);
    border-color: var(--red);
}

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

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

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

.btn-golden {
    background: var(--golden);
    color: var(--charcoal);
    border-color: var(--golden);
    font-weight: 700;
}

.btn-golden:hover {
    background: var(--golden-dark);
    border-color: var(--golden-dark);
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.header-top-bar {
    background: var(--charcoal);
    color: var(--white);
    font-size: 0.8rem;
    padding: 6px 0;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-phone:hover {
    color: var(--golden);
}

.header-location {
    display: none;
    align-items: center;
    gap: 6px;
    color: var(--gray-300);
}

.header-social {
    display: flex;
    gap: 12px;
}

.header-social a {
    color: var(--gray-300);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.header-social a:hover {
    color: var(--golden);
}

/* --- Navbar --- */
.navbar {
    padding: 0;
    background: var(--white);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--charcoal);
    text-decoration: none;
    flex-shrink: 0;
}

.brand:hover {
    color: var(--charcoal);
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: var(--red);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--charcoal);
}

.brand-text small {
    font-size: 0.7rem;
    color: var(--gray-400);
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* Hamburger */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav Panel */
.nav-panel {
    position: fixed;
    top: calc(var(--header-height) + var(--header-top-height));
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
    z-index: 999;
}

.nav-panel.is-open {
    transform: translateX(0);
}

.nav-link {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background: var(--cream);
    color: var(--red);
}

.nav-cta {
    background: var(--red);
    color: var(--white) !important;
    text-align: center;
    border-radius: var(--radius-full);
    margin-top: 12px;
    font-weight: 700;
}

.nav-cta:hover {
    background: var(--red-dark);
    color: var(--white) !important;
}

.nav-actions {
    display: none;
}

/* --- Promo Banner --- */
.promo-banner {
    background: var(--golden);
    color: var(--charcoal);
    padding: 10px 0;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 500;
    margin-top: calc(var(--header-height) + var(--header-top-height));
}

.promo-banner p {
    margin: 0;
}

.promo-banner a {
    color: var(--red-dark);
    font-weight: 700;
    text-decoration: underline;
}

.promo-banner a:hover {
    color: var(--charcoal);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(135deg,
            rgba(178,34,34,0.94) 0%,
            rgba(139,26,26,0.96) 40%,
            rgba(90,15,15,0.97) 70%,
            rgba(43,43,43,0.95) 100%),
        url('/images/gallery-5.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Animated gradient shimmer layer */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 600px at 20% 50%, rgba(227,168,43,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 600px 400px at 80% 30%, rgba(46,107,62,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 60% 80%, rgba(178,34,34,0.15) 0%, transparent 70%);
    animation: heroShimmer 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

@keyframes heroShimmer {
    0%   { opacity: 0.6; transform: scale(1) translate(0, 0); }
    50%  { opacity: 1;   transform: scale(1.05) translate(-10px, 5px); }
    100% { opacity: 0.7; transform: scale(1.02) translate(10px, -5px); }
}

/* Subtle noise texture */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

/* --- Floating Decorations --- */
.hero-floats {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-float {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.07);
    animation: heroFloat 12s ease-in-out infinite;
}

.hero-float--1 { top: 12%; left: 8%;  font-size: 2.2rem; animation-duration: 14s; animation-delay: 0s; }
.hero-float--2 { top: 22%; right: 12%; font-size: 1.4rem; animation-duration: 10s; animation-delay: 2s; }
.hero-float--3 { bottom: 25%; left: 15%; font-size: 1.6rem; animation-duration: 16s; animation-delay: 4s; }
.hero-float--4 { top: 35%; right: 8%;  font-size: 1.8rem; animation-duration: 11s; animation-delay: 1s; color: rgba(227,168,43,0.08); }
.hero-float--5 { bottom: 15%; right: 18%; font-size: 2rem; animation-duration: 13s; animation-delay: 3s; }
.hero-float--6 { top: 60%; left: 5%;  font-size: 1.3rem; animation-duration: 15s; animation-delay: 5s; }

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    25%      { transform: translateY(-20px) rotate(8deg); opacity: 1; }
    50%      { transform: translateY(10px) rotate(-5deg); opacity: 0.7; }
    75%      { transform: translateY(-15px) rotate(3deg); opacity: 0.9; }
}

/* --- Decorative Rings --- */
.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
    pointer-events: none;
    z-index: 1;
}

.hero-ring--1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -120px;
    animation: heroRingSpin 30s linear infinite;
}

.hero-ring--2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -80px;
    border-color: rgba(227,168,43,0.06);
    animation: heroRingSpin 25s linear infinite reverse;
}

@keyframes heroRingSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* --- Hero Content --- */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    margin: 0 auto;
}

/* --- Staggered entrance animations --- */
.hero-anim {
    opacity: 0;
    transform: translateY(30px);
}

.hero.is-active .hero-anim {
    animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-anim--1 { animation-delay: 0.1s !important; }
.hero-anim--2 { animation-delay: 0.25s !important; }
.hero-anim--3 { animation-delay: 0.4s !important; }
.hero-anim--4 { animation-delay: 0.55s !important; }
.hero-anim--5 { animation-delay: 0.7s !important; }
.hero-anim--6 { animation-delay: 0.85s !important; }

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

/* --- Badge --- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    letter-spacing: 0.02em;
    transition: background 0.3s;
}

.hero-badge:hover {
    background: rgba(255,255,255,0.18);
}

.hero-badge i {
    color: var(--golden);
    filter: drop-shadow(0 0 4px rgba(227,168,43,0.5));
}

/* Live pulse dot */
.hero-badge-pulse {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.hero-badge-pulse::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(74,222,128,0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50%      { transform: scale(1.8); opacity: 0; }
}

/* --- Title --- */
.hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-title-line {
    display: block;
    font-size: 0.55em;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, var(--white) 0%, var(--golden) 60%, #f5d98a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 12px rgba(227,168,43,0.2));
}

/* --- Subtitle --- */
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* --- CTAs --- */
.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    margin-bottom: 32px;
}

/* Glowing primary button */
.btn-glow {
    position: relative;
    overflow: visible;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: var(--red);
    filter: blur(16px);
    opacity: 0.4;
    z-index: -1;
    transition: opacity 0.3s;
}

.btn-glow:hover::after {
    opacity: 0.6;
}

/* --- Quick Info Pills --- */
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.3s, color 0.3s;
}

.hero-pill:hover {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.95);
}

.hero-pill i {
    font-size: 0.7rem;
    color: var(--golden);
}

/* --- Tagline --- */
.hero-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    margin: 0;
}

/* --- Scroll Indicator --- */
.hero-scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    z-index: 4;
    transition: color 0.3s;
}

.hero-scroll-indicator:hover {
    color: rgba(255,255,255,0.9);
}

.hero-scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.hero-scroll-arrow {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
}

/* --- Trust Bar --- */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 24px 0;
}

.trust-bar-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--golden);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.trust-text {
    text-align: left;
}

.trust-text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--charcoal);
}

.trust-text span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* --- Sections --- */
.section {
    padding: 60px 0;
}

.section-cream {
    background: var(--cream);
}

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

.section-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-light h2,
.section-header-light .section-eyebrow {
    color: var(--white);
}

.section-header-light .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--red);
    margin-bottom: 8px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.section-cta {
    text-align: center;
    margin-top: 36px;
}

/* --- Menu Highlights Grid --- */
.menu-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.menu-highlight-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    text-decoration: none;
    color: var(--charcoal);
    border: 1px solid var(--gray-200);
}

.menu-highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red);
    color: var(--charcoal);
}

.menu-highlight-icon {
    width: 56px;
    height: 56px;
    background: var(--cream);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--red);
    margin-bottom: 14px;
}

.menu-highlight-card h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.menu-highlight-card p {
    font-size: 0.82rem;
    color: var(--gray-500);
    margin: 0;
}

/* --- Features / Why Tony's Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 18px;
}

.feature-card h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* --- Reviews Grid --- */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.section-dark .review-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.review-card-icon {
    font-size: 2rem;
    color: var(--golden);
    margin-bottom: 12px;
}

.review-card-featured {
    border-left: 4px solid var(--golden);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
    color: var(--golden);
    font-size: 0.95rem;
}

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

.section-dark .review-text {
    color: rgba(255,255,255,0.9);
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    font-size: 2rem;
    color: var(--gray-300);
}

.review-meta strong {
    display: block;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.section-dark .review-meta strong {
    color: var(--white);
}

.review-meta span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* --- CTA Strip --- */
.cta-strip {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    padding: 48px 0;
    color: var(--white);
}

.cta-strip-inner {
    text-align: center;
}

.cta-strip-text {
    margin-bottom: 24px;
}

.cta-strip-text h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-strip-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
}

.cta-strip-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
    position: relative;
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--charcoal) 0%, rgba(43,43,43,0.95) 100%);
    color: var(--white);
    text-align: center;
    margin-top: calc(var(--header-height) + var(--header-top-height));
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(178,34,34,0.3), transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(227,168,43,0.15), transparent 50%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--golden);
    margin-bottom: 8px;
}

.page-hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-cta {
    margin-top: 24px;
}

.page-hero-short {
    padding: 120px 0 48px;
}

/* --- Content Split (About page) --- */
.content-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.content-split-text .section-eyebrow {
    text-align: left;
}

.content-split-text .section-title {
    text-align: left;
}

.image-placeholder {
    background: var(--cream);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gray-400);
    border: 2px dashed var(--gray-300);
    min-height: 250px;
}

.image-placeholder i {
    font-size: 3rem;
}

.image-placeholder span {
    font-size: 0.85rem;
    font-weight: 600;
}

.image-placeholder-lg {
    min-height: 320px;
}

.image-placeholder-round {
    border-radius: 50%;
    width: 140px;
    height: 140px;
    min-height: auto;
    margin: 0 auto;
}

.image-placeholder-food {
    min-height: 180px;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
}

.image-placeholder-gallery {
    min-height: 220px;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    cursor: pointer;
    transition: all var(--transition);
}

.image-placeholder-gallery:hover {
    border-color: var(--red);
    color: var(--red);
}

/* --- Values Grid --- */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--green);
    margin: 0 auto 16px;
}

.value-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.92rem;
    color: var(--gray-500);
}

/* --- Team Grid --- */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.team-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.team-photo {
    margin-bottom: 16px;
}

.team-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-card p {
    font-size: 0.92rem;
    color: var(--gray-500);
}

/* --- Menu Page --- */
.menu-nav-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 0;
    position: sticky;
    top: calc(var(--header-height) + var(--header-top-height));
    z-index: 100;
    overflow-x: auto;
}

.menu-nav {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.menu-nav::-webkit-scrollbar {
    display: none;
}

.menu-nav-link {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
    white-space: nowrap;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    text-decoration: none;
    flex-shrink: 0;
}

.menu-nav-link:hover,
.menu-nav-link.active {
    background: var(--red);
    color: var(--white);
}

.menu-section-header {
    margin-bottom: 28px;
}

.menu-section-header h2 {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-section-header h2 i {
    color: var(--red);
    font-size: 0.9em;
}

.menu-section-header p {
    color: var(--gray-500);
    margin-top: 6px;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.menu-item-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.menu-item-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.menu-item-badges {
    display: flex;
    gap: 8px;
    padding: 12px 16px 0;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-popular {
    background: var(--golden);
    color: var(--charcoal);
}

.badge-family {
    background: var(--green);
    color: var(--white);
}

.menu-item-image {
    padding: 12px 16px;
}

.menu-item-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-md);
    background: var(--gray-100);
    box-shadow: var(--shadow-sm);
}

.menu-item-info {
    padding: 16px;
}

.menu-item-compact .menu-item-info {
    padding: 20px;
}

.menu-item-info h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.menu-item-info p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.menu-item-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--red);
}

.price-label {
    font-size: 0.78rem;
    color: var(--gray-400);
    font-weight: 600;
    text-transform: uppercase;
}

/* --- Ratings Summary --- */
.ratings-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.ratings-big {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ratings-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: var(--charcoal);
    line-height: 1;
}

.ratings-stars {
    display: flex;
    gap: 4px;
    font-size: 1.5rem;
    color: var(--golden);
}

.ratings-label {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.ratings-details {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.ratings-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ratings-detail-label {
    font-size: 0.78rem;
    color: var(--gray-400);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.ratings-detail-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--charcoal);
}

/* --- Review CTA Block --- */
.review-cta-block {
    padding: 48px 24px;
    max-width: 600px;
    margin: 0 auto;
}

.review-cta-icon {
    font-size: 3rem;
    color: var(--golden);
    margin-bottom: 16px;
}

.review-cta-block h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.review-cta-block p {
    color: var(--gray-500);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

/* --- Gallery --- */
.gallery-filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 0;
    position: sticky;
    top: calc(var(--header-height) + var(--header-top-height));
    z-index: 100;
    overflow-x: auto;
}

.gallery-filter {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
}

.gallery-filter::-webkit-scrollbar {
    display: none;
}

.gallery-filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
    white-space: nowrap;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    cursor: pointer;
    flex-shrink: 0;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--red);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.gallery-caption {
    padding: 10px 14px;
    font-size: 0.85rem;
    color: var(--gray-500);
    background: var(--white);
}

.gallery-item.hidden {
    display: none;
}

/* --- FAQ --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item.active {
    border-color: var(--red);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: var(--charcoal);
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--red);
}

.faq-icon {
    transition: transform var(--transition);
    color: var(--gray-400);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--red);
    font-weight: 600;
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--red);
    margin: 0 auto 14px;
}

.contact-card h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-card-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--red);
    display: block;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 14px;
}

.contact-social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.contact-form-wrap h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form-wrap > p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

/* --- Forms --- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--off-white);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(178,34,34,0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
}

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

.form-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

.form-section h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
}

.form-note {
    font-size: 0.85rem;
    color: var(--gray-400);
    text-align: center;
    margin-top: 16px;
}

.form-note a {
    font-weight: 600;
}

/* --- Hours Grid (Contact page) --- */
.hours-grid {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.hours-day {
    display: flex;
    justify-content: space-between;
    padding: 14px 24px;
    border-bottom: 1px solid var(--gray-200);
}

.hours-day:last-child {
    border-bottom: none;
}

.hours-day-name {
    font-weight: 600;
    color: var(--charcoal);
}

.hours-day-time {
    color: var(--gray-500);
}

/* --- Map --- */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.map-container iframe {
    display: block;
    width: 100%;
    min-height: 350px;
}

/* --- Order Page --- */
.order-type-selector {
    text-align: center;
}

.order-type-selector h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.order-type-options {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.order-type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 28px 40px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition);
    min-width: 160px;
}

.order-type-btn i {
    font-size: 2rem;
    color: var(--gray-400);
    transition: color var(--transition);
}

.order-type-btn strong {
    font-size: 1.1rem;
}

.order-type-btn span {
    font-size: 0.82rem;
    color: var(--gray-500);
}

.order-type-btn.active,
.order-type-btn:hover {
    border-color: var(--red);
    background: var(--cream);
}

.order-type-btn.active i,
.order-type-btn:hover i {
    color: var(--red);
}

.order-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

/* --- After Hours Block --- */
.after-hours-block {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.after-hours-icon {
    font-size: 3rem;
    color: var(--golden);
    margin-bottom: 16px;
}

.after-hours-block h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.after-hours-block p {
    color: var(--gray-500);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.after-hours-contact {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Footer --- */
.site-footer {
    background: var(--charcoal);
    color: var(--gray-300);
    padding: 48px 0 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo i {
    font-size: 1.5rem;
    color: var(--golden);
}

.footer-logo h3 {
    font-size: 1.35rem;
    color: var(--white);
}

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

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

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 0.95rem;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--red);
    color: var(--white);
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

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

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

.footer-links ul li a:hover {
    color: var(--golden);
}

.footer-contact ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact ul li i {
    color: var(--red-light);
    width: 16px;
}

.footer-contact ul li a {
    color: var(--gray-400);
}

.footer-contact ul li a:hover {
    color: var(--golden);
}

.footer-hours .hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.footer-hours .hours-list li span:first-child {
    color: var(--gray-300);
    font-weight: 500;
}

.footer-hours .hours-list li span:last-child {
    color: var(--gray-500);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--gray-500);
}

/* --- Floating Call Button --- */
.floating-call-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: var(--shadow-lg);
    z-index: 900;
    transition: all var(--transition);
    animation: pulse-ring 2s infinite;
}

.floating-call-btn:hover {
    background: var(--green-light);
    color: var(--white);
    transform: scale(1.1);
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(46,107,62,0.4); }
    70% { box-shadow: 0 0 0 12px rgba(46,107,62,0); }
    100% { box-shadow: 0 0 0 0 rgba(46,107,62,0); }
}

/* --- Mobile Sticky Footer --- */
.mobile-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 950;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}

.mobile-sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition);
}

.call-btn {
    background: var(--charcoal);
    color: var(--white);
}

.call-btn:hover {
    background: #1a1a1a;
    color: var(--white);
}

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

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

/* --- Animations --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Body Padding for Fixed Header --- */
body {
    padding-bottom: 56px; /* for mobile sticky footer */
}

/* Hero page doesn't have promo, needs margin */
.hero {
    margin-top: calc(var(--header-height) + var(--header-top-height));
}

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

/* Tablet (600px+) */
@media (min-width: 600px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-title-line {
        font-size: 0.5em;
        margin-bottom: 10px;
    }

    .hero-ctas {
        flex-direction: row;
        justify-content: center;
    }

    .hero-pills {
        gap: 12px;
    }

    .trust-bar-inner {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

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

    .cta-strip-actions {
        flex-direction: row;
        justify-content: center;
    }

    .page-hero-title {
        font-size: 3rem;
    }

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

    .content-split-reverse .content-split-text {
        order: 2;
    }

    .content-split-reverse .content-split-image {
        order: 1;
    }

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

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

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

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

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

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

    .gallery-item-wide {
        grid-column: span 2;
    }

    .ratings-summary {
        flex-direction: row;
        text-align: left;
        padding: 48px 40px;
    }

    .ratings-big {
        padding-right: 40px;
        border-right: 1px solid var(--gray-200);
    }

    .section {
        padding: 80px 0;
    }
}

/* Desktop (900px+) */
@media (min-width: 900px) {
    .header-location {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .nav-panel {
        position: static;
        transform: none;
        flex-direction: row;
        padding: 0;
        gap: 0;
        background: transparent;
        align-items: center;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 8px 14px;
    }

    .nav-cta {
        padding: 8px 20px;
        margin-top: 0;
        margin-left: 8px;
    }

    .nav-actions {
        display: flex;
        gap: 10px;
        margin-left: 16px;
    }

    .floating-call-btn {
        display: none;
    }

    .mobile-sticky-footer {
        display: none;
    }

    body {
        padding-bottom: 0;
    }

    .hero-title {
        font-size: 4.2rem;
    }

    .hero-title-line {
        font-size: 0.45em;
        letter-spacing: 0.16em;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-scroll-indicator {
        bottom: 32px;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .cta-strip-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .cta-strip-text {
        margin-bottom: 0;
    }

    .cta-strip-actions {
        flex-shrink: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 48px;
    }

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

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

    .gallery-item-wide {
        grid-column: span 2;
    }

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

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

    .section {
        padding: 100px 0;
    }

    .page-hero {
        padding: 160px 0 80px;
    }

    .page-hero-title {
        font-size: 3.5rem;
    }

    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 5rem;
    }

    .hero {
        min-height: 92vh;
        padding: 140px 0 100px;
    }

    .hero-title-line {
        font-size: 0.42em;
        margin-bottom: 12px;
    }

    .hero-pills {
        gap: 16px;
    }

    .hero-pill {
        font-size: 0.85rem;
        padding: 8px 20px;
    }
}

/* --- Print Styles --- */
@media print {
    .site-header,
    .floating-call-btn,
    .mobile-sticky-footer,
    .promo-banner,
    .cta-strip {
        display: none !important;
    }

    .hero,
    .page-hero {
        margin-top: 0 !important;
        padding-top: 40px !important;
    }

    body {
        padding-bottom: 0 !important;
    }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    .hero-float,
    .hero-ring,
    .hero-scroll-arrow,
    .hero-badge-pulse::after,
    .hero::before {
        animation: none !important;
    }

    .hero-anim {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .floating-call-btn {
        animation: none !important;
    }
}
