/* ═══════════════════════════════════════════════════════════
   FOODIE ADVENTURES — Pixel-Perfect CSS
   Colors: #FFD700, #000000, #111111, #FFFFFF, #AAAAAA, #666666
   Font: Montserrat (400, 500, 600, 700, 800, 900)
   ═══════════════════════════════════════════════════════════ */

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background: #000000;
    color: #FFFFFF;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input { font-family: inherit; }

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #000000;
    height: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    gap: 0;
    flex-shrink: 0;
}

.logo-foodie {
    font-size: 18px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo-adventures {
    font-size: 10px;
    font-weight: 600;
    color: #FFD700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: -1px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 12px;
    font-weight: 600;
    color: #AAAAAA;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 0;
    position: relative;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #FFFFFF;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #FFD700;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-icon {
    color: #FFFFFF;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, transform 0.2s;
}

.social-icon:hover {
    color: #FFD700;
    transform: scale(1.15);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.btn-subscribe {
    background: #FFD700;
    color: #000000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.1s;
}

.btn-subscribe:hover {
    background: #e6c200;
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 560px;
    padding-top: 60px;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0800 0%, #1a1008 30%, #0d0800 60%, #1a0a00 100%);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(255,180,50,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(255,100,0,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-headline {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.highlight-yellow {
    color: #FFD700;
    font-size: 56px;
}

.hero-subtext {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFD700;
    color: #000000;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: 6px;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
}

.btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255,215,0,0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: 6px;
    border: 1.5px solid rgba(255,255,255,0.4);
    text-transform: uppercase;
    transition: border-color 0.2s, background 0.2s, transform 0.1s;
}

.btn-outline:hover {
    border-color: #FFFFFF;
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.hero-stats {
    display: flex;
    gap: 36px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
}

.stat-icon.youtube-icon { color: #FF0000; }
.stat-icon.tiktok-icon { color: #FFFFFF; }
.stat-icon.instagram-icon { color: #FFFFFF; }

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

.stat-number {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}

.stat-label {
    font-size: 10px;
    font-weight: 600;
    color: #AAAAAA;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero Media (Right) */
.hero-media {
    position: relative;
    flex-shrink: 0;
    width: 420px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 300px;
    height: 420px;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.hero-image-placeholder svg {
    width: 100%;
    height: 100%;
}

.hero-curved-text {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 700;
    color: #FFD700;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    letter-spacing: 0.5px;
}

.hero-float-card {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 200px;
    background: #111111;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    transform: rotate(2deg);
    transition: transform 0.3s;
    z-index: 2;
}

.hero-float-card:hover {
    transform: rotate(0deg) scale(1.03);
}

.float-card-thumb {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.float-card-thumb svg {
    width: 100%;
    height: 100%;
}

.float-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: 24px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.float-card-info {
    padding: 10px 12px;
}

.float-card-title {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 4px;
}

.float-card-meta {
    display: block;
    font-size: 10px;
    color: #666666;
    font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════
   CREATOR INTRO BAND
   ═══════════════════════════════════════════════════════════ */
.intro-band {
    background: #111111;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.intro-band-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.intro-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.intro-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #FFD700;
}

.intro-avatar svg {
    width: 100%;
    height: 100%;
}

.intro-text-block {
    min-width: 0;
}

.intro-greeting {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.hey-im {
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.foodie-name {
    font-size: 22px;
    font-weight: 800;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.foodie-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #FFD700;
    border-radius: 1px;
}

.intro-desc {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 400px;
}

.intro-features {
    display: flex;
    gap: 36px;
    flex-shrink: 0;
}

.intro-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.feature-desc {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #666666;
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   MAIN CONTENT LAYOUT
   ═══════════════════════════════════════════════════════════ */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.content-area {
    flex: 1;
    min-width: 0;
}

.sidebar {
    width: 300px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADER
   ═══════════════════════════════════════════════════════════ */
.section-block {
    margin-bottom: 40px;
}

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

.section-title {
    font-size: 22px;
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all {
    font-size: 13px;
    font-weight: 600;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.view-all:hover {
    color: #e6c200;
}

/* ═══════════════════════════════════════════════════════════
   VIDEO GRID
   ═══════════════════════════════════════════════════════════ */
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.video-card {
    background: #111111;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255,215,0,0.08);
}

.video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #1a1206;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-placeholder {
    width: 100%;
    height: 100%;
}

.thumb-placeholder svg {
    width: 100%;
    height: 100%;
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.85);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-btn-large {
    color: #FFFFFF;
    font-size: 36px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.video-title {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    padding: 12px 14px 4px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-meta {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #666666;
    padding: 0 14px 14px;
}

/* ═══════════════════════════════════════════════════════════
   RESTAURANT GRID
   ═══════════════════════════════════════════════════════════ */
.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.restaurant-card {
    background: #111111;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
}

.restaurant-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255,215,0,0.08);
}

.restaurant-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #1a1206;
}

.restaurant-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FFD700;
    color: #000000;
    font-size: 14px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    min-width: 36px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.restaurant-name {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    padding: 12px 14px 4px;
    line-height: 1.3;
}

.restaurant-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 400;
    color: #666666;
    padding: 0 14px 14px;
}

.pin-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    color: #666666;
}

/* ═══════════════════════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════════════════════ */
.sidebar-card {
    background: #111111;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.find-me-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.find-me-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.find-me-item:first-of-type {
    padding-top: 0;
}

.find-me-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.find-me-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.find-me-icon svg {
    width: 20px;
    height: 20px;
}

.find-me-icon.youtube-icon { color: #FF0000; }
.find-me-icon.tiktok-icon { color: #FFFFFF; }
.find-me-icon.instagram-icon { color: #E4405F; }

.find-me-platform {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.find-me-count {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #666666;
}

.btn-yt-subscribe,
.btn-tt-follow,
.btn-ig-follow {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.2s, transform 0.1s;
    flex-shrink: 0;
}

.btn-yt-subscribe {
    background: #FF0000;
    color: #FFFFFF;
}

.btn-tt-follow {
    background: #111111;
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-ig-follow {
    background: #1877F2;
    color: #FFFFFF;
}

.btn-yt-subscribe:hover,
.btn-tt-follow:hover,
.btn-ig-follow:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* ── Merch Card ── */
.merch-card {
    background: #FFD700;
    padding: 0;
    overflow: hidden;
}

.merch-banner {
    background: #FFD700;
    color: #000000;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 20px 8px;
    text-align: center;
}

.merch-images {
    padding: 8px 20px 16px;
    text-align: center;
}

.merch-placeholder {
    display: flex;
    justify-content: center;
}

.merch-placeholder svg {
    width: 180px;
    height: 130px;
}

.btn-shop-now {
    display: block;
    background: #000000;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 20px;
    text-align: center;
    border-radius: 0 0 10px 10px;
    transition: background 0.2s;
}

.btn-shop-now:hover {
    background: #222222;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
    background: #111111;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 20px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 40px 30px;
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 40px;
}

.footer-brand .logo {
    align-items: flex-start;
    margin-bottom: 14px;
}

.footer-desc {
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-brand .social-icons {
    gap: 12px;
}

.footer-brand .social-icon {
    width: 20px;
    height: 20px;
}

.footer-brand .social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-heading {
    font-size: 13px;
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 4px;
}

.newsletter-form input {
    flex: 1;
    background: #000000;
    border: 1px solid rgba(255,255,255,0.15);
    border-right: none;
    border-radius: 4px 0 0 4px;
    padding: 10px 14px;
    font-size: 13px;
    color: #FFFFFF;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-form input::placeholder {
    color: #555555;
}

.newsletter-form input:focus {
    border-color: #FFD700;
}

.btn-newsletter {
    background: #FFD700;
    color: #000000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 18px;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-newsletter:hover {
    background: #e6c200;
}

/* ── Footer Bottom ── */
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom span {
    font-size: 12px;
    font-weight: 400;
    color: #555555;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 12px;
    font-weight: 400;
    color: #555555;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #FFFFFF;
}

/* ═══════════════════════════════════════════════════════════
   FLASH MESSAGES
   ═══════════════════════════════════════════════════════════ */
.flash-messages {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flash-msg {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.flash-msg.success { background: #22c55e; color: #000; }
.flash-msg.error { background: #ef4444; color: #fff; }
.flash-msg.info { background: #3b82f6; color: #fff; }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ── Fade-in animation ── */
.fade-in-hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .hero-inner { flex-direction: column; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-media { width: 100%; justify-content: center; margin-top: 20px; }
    .intro-band-inner { flex-direction: column; text-align: center; }
    .intro-left { flex-direction: column; align-items: center; }
    .intro-greeting { justify-content: center; }
    .intro-desc { text-align: center; }
    .intro-features { flex-wrap: wrap; justify-content: center; }
    .main-content { flex-direction: column; }
    .sidebar { width: 100%; }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .restaurant-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header-inner { padding: 0 20px; }
    .main-nav { display: none; }
    .hero-headline { font-size: 32px; }
    .highlight-yellow { font-size: 38px; }
    .hero-inner { padding: 40px 20px 30px; }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .restaurant-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .intro-features { flex-direction: column; align-items: center; gap: 16px; }
}
