/* ============================================
   Mariscos Nuevo Nayarit — Custom Styles
   Palette: Terracotta + Sand | Fresh & Airy
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Terracotta */
    --terracotta-50: #fef7f4;
    --terracotta-100: #fdeada;
    --terracotta-200: #fad4b8;
    --terracotta-300: #f5b48e;
    --terracotta-400: #ee8a5c;
    --terracotta-500: #e06b38;
    --terracotta-600: #c9502a;
    --terracotta-700: #a83d22;
    --terracotta-800: #8a3320;
    --terracotta-900: #712c1d;

    /* Sand */
    --sand-50: #fefcf8;
    --sand-100: #fdf8ef;
    --sand-200: #faedda;
    --sand-300: #f5dab8;
    --sand-400: #edc18a;
    --sand-500: #e0a55f;

    /* Neutrals */
    --neutral-50: #faf9f7;
    --neutral-100: #f5f3ef;
    --neutral-200: #e8e4dc;
    --neutral-300: #d4cfc5;
    --neutral-400: #a8a094;
    --neutral-500: #6b6359;
    --neutral-600: #4a443d;
    --neutral-700: #332e29;
    --neutral-800: #1e1b17;
    --neutral-900: #110f0d;

    /* Semantic */
    --color-bg: var(--sand-50);
    --color-surface: #ffffff;
    --color-primary: var(--terracotta-600);
    --color-primary-hover: var(--terracotta-700);
    --color-primary-light: var(--terracotta-50);
    --color-text: var(--neutral-800);
    --color-text-muted: var(--neutral-500);
    --color-border: var(--neutral-200);
    --color-accent: var(--terracotta-400);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: clamp(4rem, 10vw, 8rem);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(30, 27, 23, 0.06), 0 1px 2px rgba(30, 27, 23, 0.04);
    --shadow-md: 0 4px 16px rgba(30, 27, 23, 0.08), 0 2px 6px rgba(30, 27, 23, 0.04);
    --shadow-lg: 0 12px 40px rgba(30, 27, 23, 0.1), 0 4px 12px rgba(30, 27, 23, 0.05);
    --shadow-glow: 0 0 60px rgba(224, 107, 56, 0.15);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* --- Accent Italic Utility --- */
.accent-italic {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--color-primary);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(224, 107, 56, 0.3);
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 107, 56, 0.4);
}

.btn-secondary {
    background: var(--color-surface);
    color: var(--color-text);
    border: 1.5px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: 1rem;
}

/* --- Section Tags & Titles --- */
.section-tag {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    background: var(--terracotta-50);
    padding: 0.375rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--neutral-800);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 239, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(228, 224, 220, 0.5);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(253, 248, 239, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--neutral-800);
}

.logo-icon {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-600);
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--color-primary);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--color-primary);
    color: #ffffff !important;
    padding: 0.625rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
}

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    color: var(--neutral-700);
    transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
    background: var(--neutral-100);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(30, 27, 23, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--sand-50);
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--neutral-600);
    transition: background 0.2s ease;
}

.mobile-close:hover {
    background: var(--neutral-100);
}

.mobile-link {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--neutral-700);
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--color-border);
    transition: color 0.2s ease;
}

.mobile-link:hover {
    color: var(--color-primary);
}

.mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    background: var(--color-primary);
    color: #ffffff;
    border-radius: 100px;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border-bottom: none;
}

.mobile-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.mobile-contact a {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.mobile-contact p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sand-50) 0%, var(--terracotta-50) 50%, var(--sand-100) 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(224, 107, 56, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(224, 165, 95, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(253, 234, 218, 0.5) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    position: relative;
    z-index: 1;
    padding: clamp(2rem, 5vw, 4rem) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    background: var(--color-surface);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--neutral-800);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    color: var(--color-text-muted);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-800);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-main img {
    width: 100%;
    height: 620px;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--sand-50);
}

.hero-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    top: 2rem;
    right: -1.5rem;
    background: var(--color-surface);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

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

.floating-icon {
    font-size: 1.75rem;
}

.hero-floating-card strong {
    display: block;
    font-size: 0.875rem;
    color: var(--neutral-800);
}

.hero-floating-card span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* --- Freshness Section --- */
.freshness {
    padding: var(--section-padding) 0;
    background: var(--color-surface);
}

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

.fresh-card {
    background: var(--sand-50);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 3vw, 2.5rem);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.fresh-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--terracotta-100);
}

.fresh-card-icon {
    width: 56px;
    height: 56px;
    background: var(--terracotta-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.fresh-card:hover .fresh-card-icon {
    background: var(--color-primary);
    color: #ffffff;
}

.fresh-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 0.75rem;
}

.fresh-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* --- Menu Section --- */
.menu-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--sand-50) 0%, var(--terracotta-50) 100%);
}

.menu-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.menu-tab {
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-600);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    transition: all 0.2s ease;
}

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

.menu-tab.active {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.menu-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
}

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

.menu-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.05);
}

.menu-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--color-primary);
    color: #ffffff;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.menu-tag.spicy {
    background: var(--terracotta-700);
}

.menu-tag.refreshing {
    background: var(--sand-500);
}

.menu-card-body {
    padding: 1.25rem;
}

.menu-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 0.5rem;
}

.menu-card-body p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.menu-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    border: 1px dashed var(--terracotta-200);
}

.menu-cta p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

/* --- About Section --- */
.about {
    padding: var(--section-padding) 0;
    background: var(--color-surface);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-surface);
}

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

.about-accent-bar {
    position: absolute;
    top: -1rem;
    left: -1rem;
    background: var(--color-primary);
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.about-content .section-tag {
    margin-bottom: 1rem;
}

.about-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-700);
}

.highlight-icon {
    font-size: 1.25rem;
}

/* --- Testimonials --- */
.testimonials {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--terracotta-50) 0%, var(--sand-100) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

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

.testimonial-quote {
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.author-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--neutral-800);
}

.author-location {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* --- Visit Section --- */
.visit {
    padding: var(--section-padding) 0;
    background: var(--color-surface);
}

.visit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.visit-info .section-tag {
    margin-bottom: 1rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--sand-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: all 0.2s ease;
}

.contact-card:hover {
    border-color: var(--terracotta-200);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--terracotta-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-card strong {
    display: block;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.contact-card span {
    font-size: 0.9375rem;
    color: var(--neutral-700);
    font-weight: 500;
}

.hours-card {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--sand-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.hours-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 1rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9375rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.hour-row:last-child {
    border-bottom: none;
}

.hour-row span:first-child {
    color: var(--neutral-600);
    font-weight: 500;
}

.hour-row span:last-child {
    color: var(--neutral-800);
    font-weight: 600;
}

.hours-note {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: 0.75rem;
    font-style: italic;
}

.visit-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--sand-100);
}

.map-placeholder {
    aspect-ratio: 4/3;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
}

/* --- CTA Banner --- */
.cta-banner {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, var(--terracotta-600) 0%, var(--terracotta-800) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.cta-content p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.cta-actions .btn-outline:hover {
    background: #ffffff;
    color: var(--color-primary);
    border-color: #ffffff;
}

/* --- Footer --- */
.footer {
    background: var(--neutral-800);
    color: rgba(255, 255, 255, 0.7);
    padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand .logo {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

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

.footer-contact a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

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

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

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-image-main img {
        height: 450px;
    }

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

    .about-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .visit-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 3rem;
    }

    .hero-floating-card {
        right: 0;
        top: 1rem;
    }

    .hero-image-accent {
        width: 150px;
        height: 150px;
        bottom: -1rem;
        left: -1rem;
    }

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

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

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

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

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

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