/* ============================================
   CRITTER CRUNCHIES - Cereal Brand Website
   Color palette inspired by Crunchy's fur:
   Teal, Hot Pink, Orange, Yellow, Blue, Purple
   ============================================ */

:root {
    --teal: #00b4a6;
    --teal-dark: #009688;
    --pink: #e91e8c;
    --pink-light: #ff4db8;
    --pink-dark: #c2185b;
    --orange: #ff6d00;
    --orange-light: #ff9e40;
    --yellow: #ffd600;
    --yellow-light: #fff176;
    --blue: #2979ff;
    --blue-light: #64b5f6;
    --purple: #7c4dff;
    --purple-dark: #6200ea;
    --green: #76ff03;
    --red: #ff1744;
    --white: #ffffff;
    --off-white: #fef9f0;
    --dark: #2d1b4e;
    --gray: #666;
    --light-gray: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--white);
}

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

/* ---- Floating Cereal Background ---- */
.cereal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.cereal-piece {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    opacity: 0.12;
    animation: float-up linear infinite;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.12;
    }
    90% {
        opacity: 0.12;
    }
    100% {
        transform: translateY(-100px) rotate(720deg) scale(0.5);
        opacity: 0;
    }
}

/* ---- Navigation ---- */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-kappa {
    font-family: 'Bangers', cursive;
    font-size: 12px;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-critter {
    font-family: 'Fredoka One', cursive;
    font-size: 22px;
    background: linear-gradient(135deg, var(--teal), var(--pink), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    background: var(--light-gray);
    color: var(--teal-dark);
}

.nav-shop-btn {
    background: linear-gradient(135deg, var(--pink), var(--orange)) !important;
    color: white !important;
    font-weight: 800 !important;
}

.nav-shop-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.4) !important;
    background: linear-gradient(135deg, var(--pink), var(--orange)) !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #00b4a6 0%, #00c9b8 25%, #e91e8c 50%, #ff6d00 75%, #ffd600 100%);
    padding-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.15) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-subtitle {
    font-family: 'Bangers', cursive;
    font-size: 20px;
    color: var(--yellow);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
    margin-bottom: 16px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.title-critter {
    font-family: 'Fredoka One', cursive;
    font-size: 80px;
    color: white;
    text-shadow: 4px 4px 0 rgba(0,0,0,0.15), 0 0 40px rgba(255,255,255,0.3);
    line-height: 0.9;
}

.title-crunchies {
    font-family: 'Fredoka One', cursive;
    font-size: 90px;
    color: var(--yellow);
    text-shadow: 4px 4px 0 rgba(0,0,0,0.15), 0 0 40px rgba(255,214,0,0.3);
    line-height: 0.9;
}

.hero-tagline {
    font-size: 22px;
    color: rgba(255,255,255,0.95);
    font-weight: 700;
    margin-bottom: 36px;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Fredoka One', cursive;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--yellow);
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(255, 214, 0, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 214, 0, 0.6);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 3px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--teal-dark);
    transform: translateY(-3px);
}

.btn-small {
    padding: 10px 24px;
    font-size: 14px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    color: white;
    box-shadow: 0 3px 12px rgba(0, 180, 166, 0.3);
}

.btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 180, 166, 0.4);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-wrapper {
    width: 100%;
    max-width: 520px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 5px solid rgba(255,255,255,0.3);
}

.hero-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Bangers', cursive;
    font-size: 18px;
    color: white;
    box-shadow: 0 4px 20px rgba(255, 23, 68, 0.5);
    border: 4px solid var(--yellow);
    z-index: 3;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ---- Products Section ---- */
.products {
    padding: 100px 0 80px;
    background: white;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 48px;
    text-align: center;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--teal), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title.light {
    color: white;
    -webkit-text-fill-color: white;
    background: none;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 60px;
}

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

.product-card {
    background: white;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.15);
    border-color: var(--teal);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--teal);
    color: white;
    font-family: 'Bangers', cursive;
    font-size: 14px;
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.product-badge.new {
    background: linear-gradient(135deg, var(--pink), var(--orange));
}

.product-image {
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.placeholder-product {
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka One', cursive;
    font-size: 28px;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
    border-radius: 16px;
}

.placeholder-box.chocolate {
    background: linear-gradient(135deg, #5d4037, #3e2723, #8d6e63);
}

.placeholder-box.rainbow {
    background: linear-gradient(135deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--purple));
}

.product-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
}

.product-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ---- Meet Crunchy Section ---- */
.meet-crunchy {
    background: linear-gradient(135deg, var(--purple-dark), var(--pink-dark), var(--teal-dark));
    position: relative;
    padding: 80px 0;
    z-index: 1;
}

.meet-wave-top,
.meet-wave-bottom {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
}

.meet-wave-top {
    top: -2px;
}

.meet-wave-bottom {
    bottom: -2px;
}

.meet-wave-top svg,
.meet-wave-bottom svg {
    display: block;
    width: 100%;
    height: 80px;
}

.meet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px 0;
}

.meet-image {
    position: relative;
}

.meet-img-frame {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 5px solid rgba(255,255,255,0.2);
    transform: rotate(-3deg);
    transition: transform 0.4s ease;
}

.meet-img-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.meet-img-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.splat {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.splat-1 {
    width: 120px;
    height: 120px;
    background: var(--yellow);
    opacity: 0.3;
    top: -20px;
    right: -20px;
}

.splat-2 {
    width: 80px;
    height: 80px;
    background: var(--orange);
    opacity: 0.3;
    bottom: -10px;
    left: -10px;
}

.splat-3 {
    width: 60px;
    height: 60px;
    background: var(--blue);
    opacity: 0.3;
    top: 50%;
    right: -30px;
}

.meet-text {
    color: white;
}

.meet-description {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--yellow-light);
}

.meet-text p {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}

.crunchy-facts {
    display: grid;
    gap: 16px;
}

.fact {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.1);
    padding: 16px 20px;
    border-radius: 16px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.fact:hover {
    background: rgba(255,255,255,0.18);
    transform: translateX(8px);
}

.fact-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.fact strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.fact span {
    font-weight: 700;
    font-size: 16px;
}

/* ---- Adventures Section ---- */
.adventures {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 1;
}

.adventures-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.adventure-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.adventure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.adventure-card.large {
    grid-row: span 2;
}

.adventure-card.large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.adventure-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.adventure-overlay h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 28px;
    margin-bottom: 8px;
}

.adventure-overlay p {
    font-size: 16px;
    opacity: 0.9;
}

.adventure-placeholder {
    height: 100%;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    color: white;
    border-radius: 24px;
}

.adventure-placeholder.game {
    background: linear-gradient(135deg, var(--blue), var(--purple));
}

.adventure-placeholder.color {
    background: linear-gradient(135deg, var(--orange), var(--pink));
}

.adventure-icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

.adventure-placeholder h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 24px;
    margin-bottom: 8px;
}

.adventure-placeholder p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 12px;
}

.coming-soon {
    background: rgba(255,255,255,0.2);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---- Ticker ---- */
.ticker-section {
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.ticker {
    overflow: hidden;
    padding: 20px 0;
}

.ticker-inner {
    display: flex;
    gap: 60px;
    animation: scroll-ticker 20s linear infinite;
    white-space: nowrap;
}

.ticker-inner span {
    font-family: 'Fredoka One', cursive;
    font-size: 20px;
    color: var(--dark);
    flex-shrink: 0;
}

@keyframes scroll-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- Newsletter ---- */
.newsletter {
    padding: 100px 0;
    background: var(--off-white);
    position: relative;
    z-index: 1;
}

.newsletter-card {
    background: white;
    border-radius: 32px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.newsletter-text h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 36px;
    background: linear-gradient(135deg, var(--teal), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.newsletter-text > p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: 3px solid #e0e0e0;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--teal);
}

.newsletter-form .btn {
    white-space: nowrap;
    font-size: 16px;
    padding: 16px 28px;
}

.newsletter-disclaimer {
    font-size: 13px !important;
    color: #aaa !important;
    margin-top: 12px;
    font-style: italic;
}

.subscribe-status {
    font-size: 14px;
    font-weight: 700;
    margin-top: 8px;
    min-height: 20px;
}

.subscribe-status.error {
    color: var(--red);
}

.newsletter-image {
    border-radius: 20px;
    overflow: hidden;
}

.newsletter-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* ---- Footer ---- */
.main-footer {
    background: var(--dark);
    color: white;
    position: relative;
    z-index: 1;
}

.footer-wave {
    position: relative;
    top: -2px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.footer-wave path {
    fill: var(--off-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
}

.footer-logo {
    font-family: 'Fredoka One', cursive;
    font-size: 28px;
    background: linear-gradient(135deg, var(--teal), var(--pink), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 8px;
}

.footer-tagline {
    font-style: italic;
    color: var(--yellow) !important;
    opacity: 0.8 !important;
}

.footer-links h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--teal);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--teal);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.5;
    margin-bottom: 8px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--teal);
}

/* ---- Modal ---- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: white;
    border-radius: 32px;
    padding: 48px;
    max-width: 440px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modal-pop 0.4s ease;
}

@keyframes modal-pop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.modal h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 28px;
    background: linear-gradient(135deg, var(--teal), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.modal p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

.modal-crunchy {
    font-size: 80px;
    margin-top: 20px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--light-gray);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--red);
    color: white;
}

/* ---- Animations ---- */
.bounce-in {
    animation: bounceIn 0.8s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.wobble {
    animation: wobble 4s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

.spin-slow {
    animation: spinSlow 8s linear infinite;
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 214, 0, 0.5); }
    50% { box-shadow: 0 4px 40px rgba(255, 214, 0, 0.8), 0 0 80px rgba(255, 214, 0, 0.3); }
}

/* ---- Scroll Animations ---- */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

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

/* ---- Responsive ---- */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 24px;
    }

    .title-critter { font-size: 56px; }
    .title-crunchies { font-size: 64px; }

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

    .hero-image {
        order: -1;
    }

    .hero-img-wrapper {
        max-width: 400px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .meet-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fact {
        justify-content: center;
    }

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

    .adventure-card.large {
        grid-row: span 1;
        height: 400px;
    }

    .newsletter-card {
        grid-template-columns: 1fr;
        padding: 40px 24px;
    }

    .newsletter-image {
        display: none;
    }

    .newsletter-form {
        flex-direction: column;
    }

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

@media (max-width: 640px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .title-critter { font-size: 44px; }
    .title-crunchies { font-size: 52px; }

    .section-title { font-size: 36px; }

    .hero-tagline { font-size: 18px; }

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