:root {
    /* Baby Spring Colors */
    --sky-top: #B5D8EB;
    --sky-bottom: #FCE2E3;
    --sun-glow: #FFFACA;
    --hill-back: #E0F2E9;
    --hill-mid: #C1E1C1;
    --hill-front: #A3D1A3;
    --blossom-pink: #FFD1DC;
    --blossom-white: #FFFFFF;

    /* Portfolio Cursor Vars */
    --ease-cinematic: cubic-bezier(0.25, 1, 0.5, 1);
    --font-mono: "JetBrains Mono", monospace;

    /* Card Colors */
    --text-primary: #4A5568;
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-border: rgba(255, 255, 255, 0.6);
}

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

body.js-cursor-active,
body.js-cursor-active a,
body.js-cursor-active button,
body.js-cursor-active .interactive,
body.js-cursor-active .litter-card,
body.js-cursor-active .faq-question {
    cursor: none !important;
}

/* Custom Cursor Styling */
#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: #D4897A;
    /* Warm Peach */
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    box-shadow: 0 0 12px rgba(212, 137, 122, 0.4);
    transition:
        transform 0.5s var(--ease-cinematic),
        width 0.5s var(--ease-cinematic),
        height 0.5s var(--ease-cinematic),
        background-color 0.5s var(--ease-cinematic),
        box-shadow 0.5s var(--ease-cinematic),
        opacity 0.5s var(--ease-cinematic);
    will-change: transform, width, height, opacity;
}

#custom-cursor.is-hover {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 209, 220, 0.15);
    /* Soft Blossom Pink */
    border: 1.5px solid #FFD1DC;
    box-shadow: 0 0 25px rgba(255, 209, 220, 0.7);
    backdrop-filter: blur(2px);
}

/* Rotating Dashed Border on Hover */
#custom-cursor::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1.5px dashed #FFD1DC;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8) rotate(0deg);
    transition: all 0.5s var(--ease-cinematic);
}

#custom-cursor.is-hover::after {
    opacity: 1;
    transform: scale(1) rotate(180deg);
}

/* Subtle Paw Icon inside on hover */
#custom-cursor::before {
    content: '🐾';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 14px;
    opacity: 0;
    transition: all 0.4s var(--ease-cinematic);
}

#custom-cursor.is-hover::before {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
}

.cursor-text {
    position: absolute;
    top: 110%;
    left: 110%;
    padding: 6px 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: #D4897A;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(5px);
    transition:
        opacity 0.3s var(--ease-cinematic),
        transform 0.3s var(--ease-cinematic);
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

#custom-cursor.is-moving .cursor-text {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   GLASS HEADER
   ========================================= */

.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    height: 46px;
    /* Reduced vertical length */
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.header-main {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    user-select: none;
    text-decoration: none;
    min-width: max-content;
}

.glass-header .brand-logo-text {
    font-size: 1.25rem;
    /* Smaller header logo */
}

.glass-header .logo-icon {
    font-size: 1.1rem;
}

.brand-logo-text {
    font-family: 'Pacifico', cursive;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0;
    display: inline-block;
    /* Essential for padding/transform to work */
    padding-bottom: 0.15em;
    /* Room for descenders (p, g, y) */
    margin-bottom: -0.15em;
    /* Compensation */
    background: linear-gradient(120deg,
            #2D6A4F 0%,
            #9F7AEA 25%,
            #F6AD55 50%,
            #9F7AEA 75%,
            #2D6A4F 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 6s linear infinite;
}

.logo-icon {
    font-size: 1.4rem;
    display: inline-block;
    animation: pawHeartbeat 4s ease-in-out infinite;
    /* Slow heartbeat effect */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header-logo:hover .logo-icon {
    transform: scale(1.2) rotate(15deg);
}

.header-logo:hover .brand-logo-text {
    filter: brightness(1.1);
    text-shadow: 0 0 20px rgba(82, 183, 136, 0.3);
}

@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

@keyframes pawHeartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-usda {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.1;
    margin-right: 5px;
}

.usda-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #3A8C63;
    opacity: 0.9;
}

.usda-id {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0.7;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.social-icon:hover {
    color: #3A8C63;
    background: white;
    transform: translateY(-2px);
}

.music-toggle {
    border: none;
    cursor: pointer;
    outline: none;
}

.music-toggle.playing {
    color: #3A8C63;
    background: white;
    box-shadow: 0 0 15px rgba(58, 140, 99, 0.3);
}

.music-toggle.playing i {
    animation: musicPulse 1.5s ease-in-out infinite;
}

@keyframes musicPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.header-divider {
    width: 1px;
    height: 20px;
    background: var(--glass-border);
}

.header-phone {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.header-phone i {
    font-size: 0.85rem;
    opacity: 0.7;
}

.header-phone:hover {
    color: #3A8C63;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3A8C63;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #3A8C63;
}

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

/* =========================================
   PAGE SECTIONS
   ========================================= */

.hero-section {
    min-height: 75vh;
    /* Balanced height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}

.page-section {
    padding: 100px 8% 80px;
    /* Increased top padding from 40px to 100px */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: none;
}

.page-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 3.5rem;
    background: linear-gradient(135deg, #2D3748 0%, #3A8C63 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    text-align: center;
}

.about-content {
    max-width: 1100px;
    /* Wider layout */
    padding: 20px 0;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2D3748;
    margin-bottom: 25px;
    opacity: 0.9;
}

.about-content p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #3A8C63;
    font-size: 1.2rem;
}

.placeholder-content {
    font-size: 1.4rem;
    opacity: 0.5;
    font-style: italic;
    color: var(--text-primary);
}

/* GALLERY CTA LINK (under Happy Tails heading) */
.gallery-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #3A8C63;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(58, 140, 99, 0.3);
    box-shadow: 0 6px 20px rgba(58, 140, 99, 0.1);
    margin-bottom: 2.5rem;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 0.3px;
}

.gallery-cta-link:hover {
    background: linear-gradient(135deg, #2D6A4F, #3A8C63);
    color: white;
    border-color: transparent;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 16px 40px rgba(58, 140, 99, 0.35);
}

.gallery-cta-arrow {
    transition: transform 0.3s ease;
}

.gallery-cta-link:hover .gallery-cta-arrow {
    transform: translateX(5px);
}

/* HAPPY TAILS SLIDER */

.tails-slider-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
    padding: 0 60px;
}

.tails-slider-viewport {
    width: 100%;
    height: 440px;
    overflow: hidden;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.tails-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.tail-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    height: 440px;
}

.tail-image-side {
    height: 440px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #000;
}

.tail-image-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    filter: blur(25px) brightness(0.8);
    opacity: 0.6;
    z-index: 1;
}

.tail-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: transform 0.6s var(--ease-cinematic);
}

.tail-slide:hover .tail-main-img {
    transform: scale(1.05);
}

.tail-text-side {
    padding: 40px 50px;
    text-align: left;
}

.tail-quote-icon {
    font-size: 3rem;
    color: #3A8C63;
    opacity: 0.2;
    margin-bottom: 20px;
}

.tail-message {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2D3748;
    font-style: italic;
    margin-bottom: 30px;
}

.tail-family {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #3A8C63;
}

.tail-puppy {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 5px;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    color: #3A8C63;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: #3A8C63;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: -15px;
    /* Slight negative offset so it sits outside the viewport */
}

.next-arrow {
    right: -15px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(58, 140, 99, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #3A8C63;
    width: 30px;
    border-radius: 10px;
}

/* Removed redundant media query */

/* Scroll Indicator */
.scroll-indicator {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.7;
    animation: fadeInOut 3s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3A8C63;
}

.scroll-arrow {
    font-size: 1.2rem;
    color: #3A8C63;
    animation: bounce 2s infinite;
    text-shadow: 0 0 10px rgba(58, 140, 99, 0.3);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

/* =========================================
   LITTERS GRID & TILES
   ========================================= */

.litters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    /* The "Best Fit" for detailed cards */
    gap: 50px;
    width: 100%;
    text-align: left;
}

.litter-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.5s var(--ease-cinematic);
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.litter-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2.5px;
    /* border thickness */
    border-radius: 30px;
    background: linear-gradient(90deg, #A3D1A3, #FFD1DC, #A3D1A3, #FFD1DC);
    background-size: 300% 300%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradientBorderFlow 4s linear infinite;
    z-index: 20;
}

.litter-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), 0 0 20px rgba(163, 209, 163, 0.3);
    background: rgba(255, 255, 255, 0.7);
}

.litter-card:hover::before {
    opacity: 1;
}

@keyframes gradientBorderFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.litter-thumb-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    /* stacking context for the tag */
    background: #000;
}

.litter-thumb-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    opacity: 0.6;
    z-index: 1;
    transition: transform 0.8s var(--ease-cinematic);
    /* Scale with image */
}

.litter-card:hover .litter-thumb-bg {
    transform: scale(1.1);
    /* Match image zoom */
}

.litter-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: transform 0.8s var(--ease-cinematic);
}

.litter-card:hover .litter-thumb {
    transform: scale(1.1);
}

.litter-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    /* Above both blur layer and image */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* Status Colors */
.tag-available {
    background: #FFD700;
    color: #744210;
}

/* Golden */
.tag-ready {
    background: #48BB78;
    color: white;
}

/* Green */
.tag-found {
    background: #A0AEC0;
    color: white;
}

/* Grey */

.litter-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Push title to bottom initially */
    transition: all 0.5s var(--ease-cinematic);
}

.litter-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0px;
    color: #2D3748;
    transition: all 0.5s var(--ease-cinematic);
}

.litter-card:hover .litter-title {
    margin-bottom: 15px;
    color: #3A8C63;
}

.litter-expandable {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        max-height 1.2s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(20px);
}

.litter-card:hover .litter-expandable {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

.litter-parents {
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.9;
    color: #2D3748;
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
    transform: translateY(0);
    /* No starting offset — prevents jump glitch */
}

.litter-card:hover .litter-parents {
    opacity: 1;
    transform: translateY(0);
}

.litter-breed {
    font-size: 0.8rem;
    font-weight: 700;
    color: #3A8C63;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
    transform: translateY(0);
    /* No starting offset */
}

.litter-card:hover .litter-breed {
    opacity: 1;
    transform: translateY(0);
}

.litter-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
    transform: translateY(10px);
    opacity: 0;
}

.litter-card:hover .litter-info-row {
    opacity: 1;
    transform: translateY(0);
}

.info-item label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 3px;
    font-weight: 600;
}

.info-item span {
    font-weight: 600;
}

.litter-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0;
    margin-bottom: 10px;
    transition: opacity 0.6s ease 0.8s, transform 0.6s ease 0.8s;
    transform: translateY(10px);
}

.litter-card:hover .litter-desc {
    opacity: 0.85;
    transform: translateY(0);
}

.litter-footer {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3A8C63;
    font-weight: 600;
    font-size: 0.9rem;
}

.litter-footer i {
    transition: transform 0.3s var(--ease-cinematic);
}

.litter-card:hover .litter-footer i {
    transform: translateX(5px);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--sky-bottom);
    scroll-behavior: smooth;
    position: relative;
}

/* =========================================
   NORTH COUNTRY SPRING BACKGROUND
   ========================================= */

.north-country-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* 1. Sky Gradient */
.sky-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--sky-top) 0%, var(--sky-bottom) 100%);
}

/* 2. Breathing Sun Glow */
.sun-glow {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 60vh;
    height: 60vh;
    background: radial-gradient(circle, var(--sun-glow) 0%, rgba(255, 250, 202, 0) 70%);
    border-radius: 50%;
    animation: breatheSun 8s infinite alternate ease-in-out;
}

@keyframes breatheSun {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* 3. Drifting Clouds */
.clouds-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: rgba(253, 251, 247, 0.8);
    border-radius: 100px;
    filter: blur(8px);
    will-change: transform;
}

.sun-glow {
    will-change: transform;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: inherit;
    /* Inherit background from parent cloud */
    border-radius: 50%;
    opacity: 1;
    /* Solid overlap to prevent 'circle' look */
}

/* ================================================
   FAST TIER (~22-28s) — 3 clouds, delay = -i*(dur/3)
   Always ~2 visible simultaneously
   ================================================ */
.c1 {
    width: 105px;
    height: 33px;
    top: 8%;
    left: -135px;
    opacity: 0.90;
    animation: driftClouds 22s linear infinite 0s;
}

.c1::before {
    width: 52px;
    height: 52px;
    top: -26px;
    left: 14px;
}

.c1::after {
    width: 42px;
    height: 42px;
    top: -19px;
    left: 50px;
}

.c2 {
    width: 145px;
    height: 44px;
    top: 17%;
    left: -175px;
    opacity: 0.85;
    animation: driftClouds 27s linear infinite -9s;
}

.c2::before {
    width: 66px;
    height: 66px;
    top: -35px;
    left: 22px;
}

.c2::after {
    width: 50px;
    height: 50px;
    top: -26px;
    left: 80px;
}

.c3 {
    width: 88px;
    height: 28px;
    top: 11%;
    left: -115px;
    opacity: 0.80;
    animation: driftClouds 23s linear infinite -15s;
}

.c3::before {
    width: 40px;
    height: 40px;
    top: -18px;
    left: 16px;
}

/* ================================================
   MEDIUM TIER (~48-55s) — 4 clouds, delay = -i*(dur/4)
   Always ~2 visible simultaneously
   ================================================ */
.c4 {
    width: 205px;
    height: 62px;
    top: 26%;
    left: -235px;
    opacity: 0.75;
    animation: driftClouds 50s linear infinite 0s;
}

.c4::before {
    width: 92px;
    height: 92px;
    top: -52px;
    left: 32px;
}

.c4::after {
    width: 72px;
    height: 72px;
    top: -42px;
    left: 115px;
}

.c5 {
    width: 165px;
    height: 50px;
    top: 36%;
    left: -195px;
    opacity: 0.65;
    animation: driftClouds 48s linear infinite -12s;
}

.c5::before {
    width: 76px;
    height: 76px;
    top: -42px;
    left: 28px;
}

.c5::after {
    width: 58px;
    height: 58px;
    top: -32px;
    left: 98px;
}

.c6 {
    width: 235px;
    height: 68px;
    top: 15%;
    left: -265px;
    opacity: 0.60;
    animation: driftClouds 55s linear infinite -24s;
}

.c6::before {
    width: 105px;
    height: 105px;
    top: -58px;
    left: 38px;
}

.c6::after {
    width: 82px;
    height: 82px;
    top: -48px;
    left: 140px;
}

.c7 {
    width: 130px;
    height: 40px;
    top: 30%;
    left: -160px;
    opacity: 0.55;
    animation: driftClouds 52s linear infinite -36s;
}

.c7::before {
    width: 60px;
    height: 60px;
    top: -32px;
    left: 20px;
}

/* ================================================
   SLOW TIER (~75-85s) — 3 clouds, delay = -i*(dur/3)
   Always ~1 visible simultaneously
   ================================================ */
.c8 {
    width: 285px;
    height: 78px;
    top: 5%;
    left: -315px;
    opacity: 0.50;
    animation: driftClouds 80s linear infinite 0s;
}

.c8::before {
    width: 125px;
    height: 125px;
    top: -70px;
    left: 48px;
}

.c8::after {
    width: 98px;
    height: 98px;
    top: -58px;
    left: 170px;
}

.c9 {
    width: 215px;
    height: 62px;
    top: 22%;
    left: -245px;
    opacity: 0.42;
    animation: driftClouds 76s linear infinite -25s;
}

.c9::before {
    width: 94px;
    height: 94px;
    top: -52px;
    left: 42px;
}

.c9::after {
    width: 72px;
    height: 72px;
    top: -40px;
    left: 132px;
}

.c10 {
    width: 260px;
    height: 72px;
    top: 40%;
    left: -290px;
    opacity: 0.35;
    animation: driftClouds 84s linear infinite -52s;
}

.c10::before {
    width: 112px;
    height: 112px;
    top: -62px;
    left: 52px;
}

.c10::after {
    width: 86px;
    height: 86px;
    top: -52px;
    left: 162px;
}

@keyframes driftClouds {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(100vw + 350px));
    }
}

/* 4. Rolling Hills with Subtle Breeze */
.hills-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    display: flex;
    align-items: flex-end;
}

.hill {
    position: absolute;
    bottom: -10px;
    /* Hide bottom edge */
    left: -5%;
    width: 110%;
    /* Extend slightly past edges */
    height: 100%;
    transform-origin: bottom center;
}

.hill-back {
    z-index: 1;
    height: 100%;
    animation: breezeBack 12s infinite alternate ease-in-out;
}

.hill-mid {
    z-index: 2;
    height: 80%;
    animation: breezeMid 10s infinite alternate ease-in-out;
}

/* House layer sits between mid (z:2) and front hill (z:3) */
.house-layer {
    z-index: 3;
}

.hill-front {
    z-index: 4;
    height: 60%;
    animation: breezeFront 8s infinite alternate ease-in-out;
}

.front-trees {
    z-index: 5;
}

/* Subtle rotation/translation to mimic a gentle breeze */
@keyframes breezeBack {
    0% {
        transform: rotate(0deg) translateY(0);
    }

    100% {
        transform: rotate(0.5deg) translateY(-10px);
    }
}

@keyframes breezeMid {
    0% {
        transform: rotate(0deg) translateY(0);
    }

    100% {
        transform: rotate(-0.5deg) translateY(-5px);
    }
}

@keyframes breezeFront {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(5px);
    }
}

/* 5. Floating Blossoms Overlay */
#blossom-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
    /* Prevent leaves from expanding page height */
}

.leaf {
    position: absolute;
    animation-name: fallLeaf;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes fallLeaf {
    0% {
        transform: translate(0, -10px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translate(var(--drift), 105vh) rotate(720deg);
        opacity: 0;
    }
}

/* Smoke puffs — SVG circles animated to rise, expand, fade */
.smoke {
    animation: riseSmoke 3.5s ease-out infinite;
    transform-origin: center center;
    transform-box: fill-box;
}

.s1 {
    animation-delay: 0s;
}

.s2 {
    animation-delay: 1.1s;
}

.s3 {
    animation-delay: 2.2s;
}

.s4 {
    animation-delay: 3.3s;
}

@keyframes riseSmoke {
    0% {
        transform: translate(0, 0) scale(0.4);
        opacity: 0;
    }

    8% {
        opacity: 0.7;
    }

    40% {
        transform: translate(-8px, -30px) scale(1.6);
        opacity: 0.45;
    }

    100% {
        transform: translate(-18px, -75px) scale(3.5);
        opacity: 0;
    }
}

/* =========================================
   FOREGROUND CONTENT
   ========================================= */

.content-wrapper {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 100px 20px;
    z-index: 100;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    padding: 4rem 5rem;
    border-radius: 40px;
    text-align: center;
    box-shadow:
        0 20px 50px -15px rgba(163, 209, 163, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    max-width: 700px;
    width: 90%;
    z-index: 100;
    animation: cardFloat 6s infinite alternate ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    /* Closer tagline */
    overflow: visible;
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Closer paw */
    overflow: visible;
}

.main-hero-logo .brand-logo-text {
    font-family: 'Pacifico', cursive;
    font-size: 5rem;
    line-height: 1.6;
    /* Increased for Pacifico descenders */
    padding-bottom: 0.1em;
    margin-bottom: -0.1em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.main-hero-logo .logo-icon {
    font-size: 4.5rem;
    /* Bigger */
}

.hero-subtitle {
    margin-top: 2px;
    /* Much closer to logo */
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0.85;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.hero-location {
    margin-top: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0.8;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.hero-location i {
    color: #d4897a;
    opacity: 1;
    font-size: 0.85rem;
}

/* ── THE JOURNEY SECTION ── */
.process-container {
    max-width: 900px;
    width: 100%;
    position: relative;
    padding-left: 50px;
}

.process-container::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #3A8C63 0%, rgba(58, 140, 99, 0.1) 100%);
    opacity: 0.3;
}

.process-step {
    position: relative;
    margin-bottom: 50px;
}

.step-number {
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #E0F2E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #3A8C63;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    color: #2D3748;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4A5568;
    opacity: 0.9;
}

.step-content em {
    font-size: 0.9rem;
    color: #d4897a;
    font-style: normal;
    font-weight: 600;
}

/* ── WHY CHOOSE US SECTION ── */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.why-us-tile {
    text-align: left;
    padding: 2rem !important;
    animation: none !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-tile:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.tile-icon {
    font-size: 2.2rem;
    color: #3A8C63;
    margin-bottom: 15px;
}

.why-us-tile h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2D3748;
}

.why-us-tile p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4A5568;
    opacity: 0.9;
    margin: 0;
}

.why-us-tile.theme-blue {
    border-top: 4px solid #B5D8EB;
}

.why-us-tile.theme-green {
    border-top: 4px solid #C1E1C1;
}

.why-us-tile.theme-gold {
    border-top: 4px solid #FFE5B4;
}

/* Licensing Section Styles */
.license-info-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.license-card {
    padding: 3.5rem !important;
    max-width: 1000px !important;
    animation: none !important;
    /* Static card for trust */
}

.license-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 3rem;
    width: 100%;
    text-align: left;
}

.usda-seal {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid #E0F2E9;
}

.seal-icon {
    font-size: 2.5rem;
}

.license-title-group h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: #2D3748;
    margin-bottom: 5px;
}

.license-number-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #3A8C63;
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.license-intro {
    font-size: 1.15rem;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
}

.license-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
    text-align: left;
}

.pillar {
    background: rgba(255, 255, 255, 0.3);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.5);
}

.pillar-icon {
    font-size: 1.8rem;
    color: #3A8C63;
    margin-bottom: 15px;
}

.pillar h4 {
    font-size: 1.1rem;
    color: #2D3748;
    margin-bottom: 10px;
}

.pillar p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4A5568;
    opacity: 0.8;
}

.mini-text {
    display: block;
    font-size: 0.8rem;
    line-height: 1.6;
    opacity: 0.7;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.license-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
    font-size: 0.95rem;
    font-style: italic;
    color: #718096;
    max-width: 800px;
    line-height: 1.6;
}

/* Legal Notice Box */
.legal-notice-box {
    margin-top: 2.5rem;
    background: rgba(197, 48, 48, 0.05);
    border-left: 4px solid #C53030;
    border-radius: 4px 12px 12px 4px;
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.legal-notice-icon {
    font-size: 1.4rem;
    color: #C53030;
    margin-top: 2px;
}

.legal-notice-text {
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.6;
}

.legal-notice-text strong {
    color: #C53030;
    font-weight: 700;
}

.legal-link {
    color: #C53030;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #9B2C2C;
}

@keyframes cardFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

/* Archive Accordion */
.archive-accordion {
    width: 100%;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.archive-toggle {
    background: none;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    color: #4A5568;
    cursor: pointer;
    transition: color 0.3s ease;
}

.archive-toggle:hover {
    color: #3A8C63;
}

.archive-toggle i {
    transition: transform 0.3s ease;
}

.archive-toggle.active i {
    transform: rotate(180deg);
}

.archive-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

#archive-grid {
    margin-top: 20px;
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */

@media (max-width: 900px) {

    /* ── 1. GLOBAL ── */
    #custom-cursor {
        display: none !important;
    }

    body {
        cursor: auto !important;
    }

    /* ── 2. HEADER ──
       Use direct font-size scaling (NOT transform) so flexbox
       calculates correct widths and the phone number never wraps. */
    .glass-header {
        height: auto;
        padding: 8px 14px;
        background: rgba(255, 255, 255, 0.96);
    }

    .header-main {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    /* Shrink logo text directly — no transforms */
    .glass-header .brand-logo-text {
        font-size: 1.05rem !important;
    }

    .glass-header .logo-icon {
        font-size: 0.9rem !important;
    }

    .header-logo {
        gap: 4px;
    }

    /* Hide desktop nav links */
    .nav-links {
        display: none !important;
    }

    /* Keep right side compact */
    .header-right {
        display: flex !important;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    .social-links {
        display: none !important;
    }

    .header-divider {
        display: none;
    }

    .header-phone {
        font-size: 0.8rem;
        white-space: nowrap;
        gap: 5px;
        color: #3A8C63;
        /* Make phone stand out more if socials are gone */
    }

    .header-usda {
        display: flex !important;
        flex-direction: column;
        align-items: flex-end;
        line-height: 1;
        gap: 2px;
    }

    .usda-label {
        font-size: 0.45rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0.6;
    }

    .usda-id {
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--text-primary);
    }

    /* ── 3. HERO SECTION ──
       Logo MUST be the biggest element. Punchline is smaller. */
    .hero-section {
        min-height: 75vh;
        padding: 60px 20px 40px;
        justify-content: center;
    }

    .main-hero-logo {
        width: 100%;
        padding: 0;
        transform: none;
    }

    .logo-row {
        justify-content: center;
        gap: 10px;
        white-space: nowrap;
    }

    /* BIG logo on mobile */
    .main-hero-logo .brand-logo-text {
        font-size: 3rem !important;
        letter-spacing: -0.5px;
    }

    .main-hero-logo .logo-icon {
        font-size: 2.6rem;
    }

    /* Punchline: smaller to prevent awkward wrapping */
    .hero-subtitle {
        font-size: 0.65rem;
        line-height: 1.2;
        margin: 8px auto 0;
        white-space: nowrap;
        letter-spacing: 1.5px;
        max-width: 100%;
        text-align: center;
        opacity: 0.8;
    }

    .hero-location {
        font-size: 0.65rem;
        margin-top: 6px;
        letter-spacing: 1px;
    }

    /* ── 4. PAGE SECTIONS ── */
    .page-section {
        padding: 40px 16px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: center;
    }

    #licensing.page-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .page-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
        width: 100%;
    }

    /* ── 5. ABOUT SECTION ── */
    .about-content {
        padding: 0;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .about-content p:last-child {
        font-size: 1.05rem;
    }

    /* ── 6. PUPPY TILES — always fully visible on mobile ── */
    .litters-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
    }

    /* Keep glow border always on for mobile — no hover available */
    .litter-card::before {
        opacity: 1;
        border-radius: 22px;
    }

    .litter-card {
        border-radius: 22px;
        transform: none !important;
    }

    .litter-thumb-wrapper {
        height: 240px;
    }

    .litter-content {
        padding: 22px;
    }

    /* Force all expandable content visible — no hover needed */
    .litter-expandable {
        max-height: none !important;
        opacity: 1 !important;
        transform: none !important;
        display: block !important;
        margin-top: 12px;
    }

    .litter-parents,
    .litter-breed,
    .litter-info-row,
    .litter-desc {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .litter-title {
        margin-bottom: 12px;
        color: #3A8C63;
    }

    /* Fix text wrapping on mobile for litter cards */
    .litter-parents {
        font-size: 0.8rem !important;
        line-height: 1.4;
    }

    .litter-breed {
        font-size: 0.75rem !important;
        margin-bottom: 15px;
    }

    .litter-info-row {
        gap: 8px;
        justify-content: space-between;
    }

    .info-item label {
        font-size: 0.6rem !important;
    }

    .info-item span {
        font-size: 0.8rem !important;
        white-space: nowrap;
        /* Prevent dates from wrapping onto 2 lines */
    }

    .litter-desc {
        font-size: 0.85rem !important;
    }

    /* Why Choose Us Mobile Optimization */
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .why-us-tile {
        padding: 1.8rem 1.5rem !important;
        text-align: center;
        align-items: center;
        border-radius: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .why-us-tile h3,
    .why-us-tile p {
        text-align: center;
    }

    .tile-icon {
        margin-bottom: 12px;
        width: 100%;
        text-align: center;
    }

    /* ── Gallery CTA ── */
    .gallery-cta-link {
        font-size: 0.9rem;
        padding: 10px 20px;
        margin-bottom: 1.8rem;
    }

    /* ── 7. HAPPY TAILS SLIDER ── */

    .tails-slider-container {
        padding: 0;
        margin: 0 10px;
        /* Prevent slider bleeding to screen edges */
    }

    .slider-arrow {
        display: none !important;
        /* Swipe + dots on mobile */
    }

    .tails-slider-viewport {
        height: auto;
    }

    .tail-slide {
        grid-template-columns: 1fr;
        grid-template-rows: 220px auto;
        height: auto;
    }

    .tail-image-side {
        height: 220px;
    }

    .tail-text-side {
        padding: 25px 20px 30px;
        text-align: center;
    }

    .tail-message {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .slider-dots {
        margin-top: 18px;
    }

    /* ── 8. BACKGROUND ── */
    .cloud {
        opacity: 0.6 !important;
    }

    /* Scale down scenery so it never overlaps content */
    .house-layer {
        transform: scale(0.5);
        transform-origin: bottom right;
        bottom: 2vh;
        right: -60px;
    }

    .front-trees {
        transform: scale(0.5);
        transform-origin: bottom left;
        bottom: 2vh;
        left: -60px;
    }

    .hills-layer {
        height: 22vh;
    }

    /* ── 9. LICENSING SECTION ── */
    .license-card {
        padding: 2rem 0.8rem !important;
        /* Reduced side padding */
    }

    .license-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        margin-bottom: 2rem;
    }

    .license-intro {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .license-pillars {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pillar {
        text-align: center;
    }

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

    .legal-notice-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-left: none;
        border-top: 4px solid #C53030;
        border-radius: 12px 12px 8px 8px;
        padding: 24px 16px;
        gap: 12px;
    }

    .legal-notice-icon {
        margin-top: 0;
        margin-bottom: 5px;
        font-size: 1.6rem;
    }

    /* ── 10. PROCESS & PREP MOBILE ── */
    .process-container {
        padding-left: 40px;
    }

    .process-container::before {
        left: 14px;
    }

    .step-number {
        left: -45px;
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .prep-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 450px;
        /* Slightly narrower for better balance */
        margin: 0 auto;
        gap: 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .prep-card {
        width: 100%;
        padding: 2.5rem 1.5rem !important;
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .prep-toolkit,
    .shopping-checklist {
        align-items: center;
        width: 100%;
    }

    .toolkit-item,
    .check-item {
        width: fit-content;
        text-align: left;
    }

    /* ── 11. FAQ ACCORDION MOBILE ── */
    .faq-question {
        padding: 16px 20px;
        gap: 15px;
    }

    .faq-question span {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.95rem;
    }
}

/* Extra small screens (iPhone SE, etc.) */
/* =========================================
   FAQ ACCORDION
   ========================================= */

.faq-accordion {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.7);
    border-color: #3A8C63;
}

.faq-question {
    width: 100%;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}

.faq-question span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #2D3748;
}

.faq-question i {
    color: #3A8C63;
    font-size: 1.1rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: #d4897a;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.3);
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4A5568;
}

/* =========================================
   CONTACT SECTION (OPEN LAYOUT)
   ========================================= */

.contact-open-layout {
    text-align: center;
    padding: 100px 20px 80px;
    background: transparent;
    /* Open layout, blends with BG */
}

.contact-header {
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2D3748;
}

.contact-header p {
    font-size: 1.1rem;
    color: #4A5568;
    opacity: 0.8;
}

.contact-nodes {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-node {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-node a,
.contact-node span {
    text-decoration: none;
    color: #2D3748;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-node a:hover {
    color: #3A8C63;
}

.contact-node i {
    color: #3A8C63;
    font-size: 1.1rem;
}

.contact-node-divider {
    width: 1px;
    height: 25px;
    background: rgba(0, 0, 0, 0.1);
}

.contact-social-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
}

.contact-social-row a {
    text-decoration: none;
    color: #4A5568;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-social-row a:hover {
    color: #3A8C63;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(58, 140, 99, 0.1);
}



@media (max-width: 768px) {
    .contact-open-layout {
        padding: 80px 24px 60px;
    }

    .contact-header h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .contact-header p {
        font-size: 1rem;
        max-width: 280px;
        margin: 0 auto;
    }

    .contact-nodes {
        flex-direction: column;
        gap: 24px;
        margin-top: 40px;
    }

    .contact-node-divider {
        display: none;
    }

    .contact-node {
        background: rgba(255, 255, 255, 0.4);
        padding: 12px 20px;
        border-radius: 30px;
        width: 100%;
        max-width: 320px;
        justify-content: center;
        border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .contact-node a,
    .contact-node span {
        font-size: 1.05rem;
    }

    .contact-social-row {
        gap: 20px;
        margin-bottom: 40px;
    }

    .contact-social-row a {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
}

@media (max-width: 400px) {
    .main-hero-logo .brand-logo-text {
        font-size: 2.4rem !important;
    }

    .main-hero-logo .logo-icon {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.58rem;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .hero-location {
        font-size: 0.55rem;
        margin-top: 4px;
    }

    .page-section h2 {
        font-size: 1.9rem;
    }

    .contact-header h2 {
        font-size: 1.7rem;
    }

    .contact-node a,
    .contact-node span {
        font-size: 1rem;
    }

    .contact-social-row a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}