:root {
    --color-dark: #0f2814;
    --color-primary: #1f6b37;
    --color-secondary: #298547;
    --color-light: #ffffff;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Supreme', sans-serif;
    --font-display: "Supreme", "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.btn {
    text-decoration: none;
}

.book-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    font-family: "Supreme", Poppins, system-ui, -apple-system, "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: normal;
    font-style: normal;
}

.book-call-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-1px);
}

.book-call-btn__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

body {
    background-color: var(--color-light);
    color: var(--color-dark);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Navbar */
/* Hero Section Container */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #000000;
    overflow: hidden;
}

/* Dark Gradient Overlay equivalent to the image's dark, moody vibe */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Deep dark green fading out, matching the provided image */
    background: linear-gradient(to right, rgba(6, 26, 17, 0.95) 0%, rgba(6, 26, 17, 0.8) 35%, rgba(6, 26, 17, 0.2) 65%, rgba(6, 26, 17, 0) 100%),
        linear-gradient(to top, rgba(6, 26, 17, 0.4) 0%, rgba(6, 26, 17, 0) 40%);
    z-index: 1;
}

/* Navbar */
.navbar {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 44px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo,
.logo:hover,
.logo:focus,
.logo:visited,
.logo-text,
.logo-text-top,
.logo-text-bottom {
    text-decoration: none;
}

.hero-logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo-text-top {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.logo-text-bottom {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.1em;
}

.nav-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-size: 0.95rem;
    color: #ffffff;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #a3f470;
    opacity: 0;
    transform: translateX(-110%);
    pointer-events: none;
}

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

.nav-links a:hover::after {
    animation: navUnderlineIn 0.3s ease forwards;
}

@keyframes navUnderlineIn {
    0% {
        transform: translateX(-110%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes navUnderlineOut {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(110%);
        opacity: 0;
    }
}

.nav-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 600px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.btn-primary {
    background: #a3f470;
    color: #123b02;
}

.btn-primary:hover {
    background: #b2fc82;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(163, 244, 112, 0.3);
}

.btn-book-call {
    gap: 10px;
    min-height: 44px;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(45, 65, 38, 0.55);
    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 8px 20px rgba(10, 21, 10, 0.26);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    text-decoration: none;
}

.btn-book-call svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.btn-book-call:hover {
    background: rgba(53, 78, 44, 0.72);
    border-color: rgba(255, 255, 255, 0.58);
    transform: translateY(-1px);
}

/* Main Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 48px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-text-block {
    max-width: 750px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: -3rem;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(58px, 7vw, 94px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin: 0 0 24px 0;
    max-width: 700px;
    text-wrap: balance;
}

.hero-dot {
    color: #c9fb37;
}

.hero-subline {
    font-family: var(--font-display);
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px 0;
    font-weight: 400;
    max-width: 480px;
}

.btn-hero {
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    text-decoration: none;
    border-radius: 4px !important;
}

.hero-arrow {
    font-size: 1.4em;
    font-weight: 300;
    line-height: 1;
}

.hero-whatsapp {
    position: absolute;
    right: 34px;
    bottom: 28px;
    z-index: 12;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(24, 184, 38, 0.28);
    backdrop-filter: blur(6px);
    isolation: isolate;
    box-shadow: 0 0 0 0 rgba(24, 184, 38, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-whatsapp::before,
.hero-whatsapp::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(24, 184, 38, 0.48);
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    animation: hero-whatsapp-ripple 2.05s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.hero-whatsapp::after {
    animation-delay: 1.02s;
}

.hero-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.38), 0 0 0 6px rgba(24, 184, 38, 0.08);
}

.hero-whatsapp svg {
    width: 35px;
    height: 35px;
    fill: #a3f470;
    display: block;
    filter: drop-shadow(0 0 8px rgba(163, 244, 112, 0.4));
}

@keyframes hero-whatsapp-ripple {
    0% {
        transform: scale(0.86);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.62);
        opacity: 0;
    }

    100% {
        transform: scale(1.62);
        opacity: 0;
    }
}

/* Mission statement — manifesto block below hero */
.mission-statement {
    background-color: var(--color-light);
    padding: clamp(4rem, 10vw, 7.25rem) clamp(1.25rem, 4vw, 3rem);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-statement__text {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-weight: 700;
    font-size: clamp(1.75rem, 4.65vw, 4.375rem);
    line-height: 1.04;
    letter-spacing: 0.018em;
    text-transform: uppercase;
    text-align: center;
    max-width: 17.85em;
    margin: 0 auto;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.mission-statement__line {
    display: block;
}

/* Video Banner Section */
.video-banner {
    width: 100vw;
    margin: 0 auto;
    box-sizing: border-box;
    border-color: #123b02;
    border: 2px solid var(--color-dark);
    height: 95vh;
    min-height: 600px;
    max-height: 1200px;
    position: relative;
    overflow: hidden;
}

.video-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #e5e7eb;
}

.mute-btn {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mute-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.mute-btn svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

/* About Section */
.about-section {
    display: flex;
    justify-content: space-between;
    margin-top: 5rem;
    margin-bottom: 6rem;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    flex: 1;
    line-height: 0.9;
    letter-spacing: 1px;
}

.about-content {
    flex: 1;
    max-width: 500px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.btn-find-event {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid var(--color-dark);
    border-radius: 50px;
    text-decoration: none;
    color: var(--color-dark);
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-find-event:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
    border-color: var(--color-primary);
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1rem, 2.8vw, 8.5rem);
    max-width: 1980px;
    margin: 0 auto 5rem;
    align-items: center;
}

.stat-item {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
}

.stat-number {
    font-family: 'Bebas Neue', var(--font-display);
    font-size: 123px;
    font-weight: 1900;
    line-height: 123px;
    letter-spacing: -0.02em;
    color: #0f2814;
    margin: 0;
}

.stat-desc {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.25;
    max-width: 16ch;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

/* Partners Section */
.partners-section {
    padding: 6rem 0;
    margin: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partners-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    width: 100%;
}

.partners-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #000;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.partners-label::after {
    content: '';
    display: block;
    width: 45px;
    height: 1px;
    background-color: #ddd;
}

.partners-logos {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.partner-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(100%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-logo:hover {
    filter: grayscale(0%) opacity(100%);
    transform: translateY(-3px) scale(1.02);
}

/* Impact Section */
.impact-section {
    margin-bottom: 6rem;
    margin-top: 5rem;
}

.impact-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    line-height: 0.9;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.impact-header-text {
    max-width: 800px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.impact-header-text p {
    margin-bottom: 1rem;
}

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

.impact-card {
    display: flex;
    flex-direction: column;
}

.impact-image-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.impact-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.impact-card:hover .impact-image-wrap img {
    transform: scale(1.05);
}

.impact-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.impact-card-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.impact-card-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.impact-link {
    font-weight: 600;
    color: var(--color-dark);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

/* Gallery Section */
.gallery-section {
    margin-bottom: 6rem;
}

/* =========================================
   TRIPS AND VACATIONS MARQUEE
========================================= */
.trips-vacations {
    background-color: var(--color-light);
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
    margin-bottom: 4rem;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
}

.trips-title {
    font-size: 4rem;
    font-family: "Rancho", cursive;
    color: var(--color-primary);
    margin-bottom: 3rem;
    font-weight: 500;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    padding: 40px 0 60px;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    padding-left: 20px;
    animation: marquee-scroll 60s linear infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

@keyframes marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-33.333333333%, 0, 0);
    }
}

.marquee-item {
    width: 260px;
    background-color: #F2F2F2;
    padding: 14px 14px 56px 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e5e5;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, z-index 0s;
    will-change: transform;
    z-index: 1;
}

.marquee-item img {
    width: 100%;
    height: 232px;
    object-fit: cover;
    display: block;
    pointer-events: none;
    background-color: #e5e5e5;
}

.marquee-item::before {
    content: "";
    position: absolute;
    left: 14px;
    bottom: 13px;
    width: 20px;
    height: 20px;
    background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M208 56H180.28L166.65 35.56A8 8 0 0 0 160 32H96a8 8 0 0 0-6.65 3.56L75.71 56H48A24 24 0 0 0 24 80V192a24 24 0 0 0 24 24H208a24 24 0 0 0 24-24V80A24 24 0 0 0 208 56Zm8 136a8 8 0 0 1-8 8H48a8 8 0 0 1-8-8V80a8 8 0 0 1 8-8H80a8 8 0 0 0 6.66-3.56L100.28 48h55.43l13.63 20.44A8 8 0 0 0 176 72h32a8 8 0 0 1 8 8ZM128 88a44 44 0 1 0 44 44A44.05 44.05 0 0 0 128 88Zm0 72a28 28 0 1 1 28-28A28 28 0 0 1 128 160Z'/%3E%3C/svg%3E");
    opacity: 0.92;
}

.marquee-item::after {
    content: "snapshots";
    position: absolute;
    right: 14px;
    bottom: 12px;
    font-family: "Awesome Ways", "Rancho", cursive;
    font-size: 18px;
    line-height: 1;
    color: #111111;
    letter-spacing: 0.01em;
}

.marquee-item:hover {
    transform: scale(1.1) rotate(0deg) translateY(-10px) !important;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2), 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Professional scattered tilt rotations */
.tilt-1 { transform: rotate(-4.5deg) translateY(5px); }
.tilt-2 { transform: rotate(3.5deg) translateY(-8px); }
.tilt-3 { transform: rotate(-2.5deg) translateY(12px); }
.tilt-4 { transform: rotate(5.5deg) translateY(-4px); }
.tilt-5 { transform: rotate(-3.5deg) translateY(8px); }
.tilt-6 { transform: rotate(2.5deg) translateY(3px); }
.tilt-7 { transform: rotate(-6.5deg) translateY(-6px); }
.tilt-8 { transform: rotate(4.5deg) translateY(10px); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
}
/* =========================================
   REVIEWS SECTION
========================================= */
.reviews-section {
    background-color: #eef0ed;
    padding: 84px 4% 108px;
    color: var(--color-dark);
    margin-left: calc(50% - 50vw);
    width: 100vw;
    margin-bottom: 0;
    overflow: hidden;
}

.reviews-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0;
}

.reviews-header {
    text-align: center;
    margin-bottom: 38px;
}

.reviews-title {
    font-family: var(--font-heading);
    font-size: 3.875rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.reviews-header p {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(12px, 1vw, 15px);
    font-weight: 500;
    line-height: 1.5;
    color: #202020;
}

.reviews-body {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 20px 0 64px;
    position: relative;
    display: flex;
}

.reviews-slider {
    display: flex;
    align-items: stretch;
    gap: 32px;
    width: max-content;
    padding-left: 16px;
    animation: marquee-reviews-scroll 45s linear infinite;
    will-change: transform;
}

.reviews-slider:hover {
    animation-play-state: paused;
}

@keyframes marquee-reviews-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.review-item {
    flex-shrink: 0;
    width: 380px;
    display: flex;
    flex-direction: column;
}

.review-bubble {
    background: #ffffff;
    width: 100%;
    padding: 32px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 100%;
}

.review-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.profile-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-name {
    font-weight: 700;
    font-size: 1.15rem;
    color: #111;
    line-height: 1.1;
    font-family: var(--font-body);
}

.profile-role {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.2;
    font-family: var(--font-body);
    font-weight: 500;
}

.review-text {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #444;
    font-weight: 500;
    line-height: 1.6;
}

/* Locations Section */
.locations-section {
    background-color: #0f2814;
    color: #ffffff;
    padding: 4.5rem 4% 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 3rem;
}
.locations-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    line-height: 0.9;
    color: #298547;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}
.locations-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 3rem;
}
.locations-list {
    background-color: var(--color-dark);
    color: var(--color-light);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
.locations-list-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.locations-column {
    min-width: 0;
}
.location-item {
    font-family: var(--font-heading);
    font-size: 4rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 1px;
}
.location-item:last-child {
    border-bottom: none;
}

/* The Founders section */
.container .team-section {
    margin-left: -4rem;
    margin-right: -4rem;
    width: auto;
}

.team-section {
    background: var(--color-light);
    padding: 40px 4% 112px;
    position: relative;
    font-family: var(--font-body);
    margin-top: 6rem;
    margin-bottom: 74px;
}

.team-container {
    max-width: 1240px;
    margin: 0 auto;
}

.team-header {
    text-align: left;
    margin-bottom: 52px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.team-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    line-height: 0.9;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.team-desc {
    margin: 0;
    max-width: 800px;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: #444444;
    position: relative;
    z-index: 5;
    font-family: var(--font-body);
    font-weight: 500;
}

.team-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    max-width: 1160px;
    margin: 0 auto;
}

.team-card {
    border: 2px solid var(--color-dark);
    border-radius: 22px;
    padding: 16px 14px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 340px;
    position: relative;
    overflow: hidden;
    background: var(--color-light);
}

.tone-sand .team-photo-wrap {
    background-color: #d1f4ba;
}

.tone-lilac .team-photo-wrap {
    background-color: #a3f470;
}

.tone-violet .team-photo-wrap {
    background-color: var(--color-dark);
}

.team-tag {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    color: #3a0824;
    background: #f8d986;
    padding: 10px 18px;
    border-radius: 55% 45% 54% 46% / 44% 56% 46% 54%;
    transform: rotate(-17deg);
}

.team-photo-wrap {
    width: min(100%, 160px);
    aspect-ratio: 1 / 1;
    margin: 32px auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.18);
    -webkit-mask-image: url('assets/team-frame-shape.svg');
    mask-image: url('assets/team-frame-shape.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.team-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.team-name {
    margin: 0;
    font-size: 1.35rem;
    line-height: 0.92;
    letter-spacing: -0.04em;
    color: var(--color-dark);
    font-weight: 600;
}

.team-surname {
    margin: 0 0 12px;
    font-size: 1.35rem;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #3a0824;
    font-weight: 700;
}

.team-role {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.09em;
    color: #3a0824;
    font-weight: 700;
}

.team-social {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #3a0824;
}

.team-social a {
    color: inherit;
    opacity: 0.95;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.team-social a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.team-social svg {
    width: 24px;
    height: 24px;
    display: block;
}

.team-card-hiring {
    justify-content: flex-start;
}

.team-hiring-frame {
    width: min(100%, 160px);
    aspect-ratio: 1 / 1;
    margin-top: 22px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7db55;
    overflow: hidden;
    -webkit-mask-image: url('assets/team-frame-shape.svg');
    mask-image: url('assets/team-frame-shape.svg');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.team-hiring-frame img {
    width: 104%;
    height: 104%;
    display: block;
    object-fit: cover;
    object-position: center 48%;
}

.team-card-hiring .team-role {
    margin-top: 6px;
}

.team-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    width: 100%;
    max-width: 168px;
    border-radius: 99px;
    background: #f7db55;
    color: var(--color-dark);
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.02em;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 7px 0 var(--color-dark);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 0 var(--color-dark);
}

/* Top Health Products */
.product-progress-slider {
    background: linear-gradient(180deg, #fcfcfc 0%, #f6f8f5 100%);
    color: #152510;
    min-height: 100vh;
    overflow: hidden;
}

.pps-pin {
    min-height: 100vh;
    padding: 74px 0 88px;
    background: transparent;
}

.pps-title {
    margin: 0 0 88px;
    text-align: center;
    font-family: 'Bebas Neue', var(--font-display);
    font-size: clamp(42px, 4.2vw, 62px);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: 0.02em;
    color: rgb(17, 17, 17);
}

.pps-layout {
    display: grid;
    grid-template-columns: 94px minmax(380px, 500px) minmax(0, 1fr);
    align-items: start;
    column-gap: 62px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 44px;
}

.pps-progress-nav {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 404px;
    margin-top: 12px;
}

.pps-progress-nav::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #294722;
    transform: translateX(-50%);
    opacity: 0.35;
}

.pps-dot {
    position: relative;
    z-index: 1;
    width: 14px;
    height: 14px;
    padding: 0;
    border: 1px solid rgba(21, 37, 16, 0.45);
    border-radius: 50%;
    background: #f2f5f0;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: all 0.28s ease;
}

.pps-dot.active {
    width: 36px;
    height: 36px;
    border: none;
    background: #15330d;
    box-shadow: 0 8px 20px rgba(21, 51, 13, 0.28);
}

.pps-copy {
    position: relative;
    min-height: 420px;
    padding-top: 8px;
}

.pps-copy-item {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px);
}

.pps-copy-item.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pps-copy-item h3 {
    margin: 0 0 24px;
    font-family: var(--font-display);
    font-size: clamp(36px, 3.8vw, 56px);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -0.03em;
    color: #173712;
    max-width: 460px;
}

.pps-copy-item p {
    max-width: 480px;
    margin: 0 0 34px;
    font-family: var(--font-body);
    font-size: clamp(15px, 1.12vw, 18px);
    font-weight: 500;
    line-height: 1.55;
    color: #333;
    text-wrap: pretty;
}

.pps-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid #0f2814;
    background: linear-gradient(180deg, #173f10 0%, #0f2f09 100%);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(16, 45, 8, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.pps-card-btn:hover,
.pps-card-btn:focus-visible {
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(16, 45, 8, 0.27);
    filter: brightness(1.03);
}

.pps-card-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Hide mobile-only elements on desktop */
@media (min-width: 992px) {
    .pps-price {
        display: none !important;
    }
}

.pps-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 214px;
    height: 52px;
    border-radius: 999px;
    background: linear-gradient(180deg, #173f10 0%, #0f2f09 100%);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(16, 45, 8, 0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pps-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(16, 45, 8, 0.28);
}

.pps-mobile-controls,
.insights-mobile-controls,
.pps-mobile-arrow {
    display: none;
}

.pps-card-window {
    --pps-card-w: 300px;
    --pps-card-h: 404px;
    --pps-card-gap: 44px;
    overflow: hidden;
    width: 100%;
    padding-top: 10px;
}

.pps-card-track {
    display: flex;
    align-items: center;
    gap: var(--pps-card-gap);
    width: max-content;
    will-change: transform;
}

.pps-card {
    flex: 0 0 var(--pps-card-w);
    width: var(--pps-card-w);
    height: var(--pps-card-h);
    border-radius: 16px;
    background: linear-gradient(180deg, #e6e8e4 0%, #d3d8d1 100%);
    border: 1px solid rgba(18, 35, 15, 0.1);
    transform-origin: 50% 50%;
    will-change: transform, opacity, filter;
    box-shadow: 0 14px 34px rgba(16, 45, 8, 0.11);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.pps-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.18));
}

.pps-scroll-hint {
    margin: 24px auto 0;
    max-width: 172px;
    height: 5px;
    border-radius: 2px;
    background: #d9ddd6;
    overflow: hidden;
}

.pps-scroll-hint-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #102d08;
    transform-origin: left center;
    transform: scaleX(var(--pps-scroll-fill, 0));
    transition: transform 0.05s linear;
}

@media (max-width: 1024px) {
    .pps-layout {
        grid-template-columns: 60px minmax(0, 1fr);
        row-gap: 40px;
        column-gap: 28px;
        padding: 0 30px;
    }

    .pps-progress-nav {
        min-height: 340px;
        margin-top: 4px;
    }

    .pps-copy {
        min-height: 360px;
    }

    .pps-card-window {
        grid-column: 1 / -1;
        padding-left: 74px;
    }
}

@media (max-width: 700px) {
    .pps-pin {
        padding: 40px 0 58px;
    }

    .pps-title {
        font-size: 34px;
        line-height: 36px;
        margin-bottom: 42px;
        padding: 0 22px;
        letter-spacing: 0.01em;
    }

    .pps-layout {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }

    .pps-progress-nav {
        display: none;
    }

    .pps-copy {
        min-height: auto;
    }

    .pps-copy-item {
        position: relative;
        display: none;
    }

    .pps-copy-item.active {
        display: block;
    }

    .pps-button {
        width: 100%;
        height: 50px;
    }

    .pps-card-window {
        grid-column: auto;
        padding-left: 0;
        --pps-card-w: 214px;
        --pps-card-h: 312px;
        --pps-card-gap: 32px;
    }
}

/* =========================================
   HEALTH TIPS & INSIGHTS SECTION
========================================= */
.health-insights {
    background-color: #ffffff;
    padding: 100px 0;
    color: #111;
    font-family: var(--font-body);
}

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

.insights-header {
    text-align: center;
    margin-bottom: 60px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 999px;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
}

.insights-header h2 {
    font-family: 'Bebas Neue', var(--font-display);
    font-size: 3.875rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.insights-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

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

.article-card {
    display: flex;
    flex-direction: column;
}

.article-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 24px;
}

.article-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.article-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.article-tags .tag {
    padding: 4px 12px;
    border: 1px solid #eaeaea;
    border-radius: 999px;
    font-size: 0.75rem;
    color: #555;
    font-weight: 500;
}

.article-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}

.article-content p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 24px;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 999px;
    font-size: 0.85rem;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-learn-more:hover {
    border-color: #333;
    background-color: #f5f5f5;
}

@media (max-width: 900px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* Instagram Section */
.instagram-section {
    background-color: #1a3215;
    padding: 72px 4% 62px;
    position: relative;
    z-index: 50;
    overflow: hidden;
    width: 100vw;
    margin: 5rem 0 6rem;
    margin-left: calc(50% - 50vw);
}

.instagram-container {
    max-width: 1400px;
    margin: 0 auto;
}

.instagram-title {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 9vw, 8rem);
    font-weight: 900;
    color: #a4fc6a;
    line-height: 0.85;
    letter-spacing: -0.04em;
    margin: 0 0 42px;
    text-transform: uppercase;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.ig-post {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #111;
    cursor: pointer;
    display: block;
}

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

.ig-post:hover img {
    transform: scale(1.04);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    z-index: 2;
}

.play-icon.shift-down {
    top: 65%;
}

.instagram-footer {
    display: flex;
    justify-content: flex-start;
}

.btn-outline-lime {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #a4fc6a;
    border-radius: 999px;
    color: #a4fc6a;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-lime:hover {
    background-color: #a4fc6a;
    color: #1a3215;
}

.social-feed-intro {
    background: #ffffff;
    padding: clamp(3.75rem, 10vw, 7rem) 0 clamp(2rem, 5vw, 3rem);
}

.social-feed-heading {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 5.9rem;
    line-height: 0.95;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #0f2814;
    margin-left: -12px;
    margin-top: 10px;
}

.social-feed-subtext {
    margin: 12px 0 0 -10px;
    max-width: 780px;
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.9vw, 1.24rem);
    line-height: 1.55;
    color: rgba(15, 40, 20, 0.84);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 8rem;
    margin-top: 6rem;
}
.faq-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    line-height: 0.9;
    letter-spacing: 1px;
    margin-bottom: 3rem;
}
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.faq-item {
    border-bottom: 1px solid var(--color-dark);
    padding-bottom: 1.5rem;
}
.faq-question {
    font-size: 1.5rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question:hover {
    color: var(--color-primary);
}
.faq-answer {
    padding-top: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    max-width: 800px;
}
details[open] .faq-icon {
    transform: rotate(45deg);
}
.faq-icon {
    font-size: 2.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

/* Site footer */
.site-footer {
    padding: 0;
    margin-top: clamp(3rem, 8vw, 6rem);
}

.site-footer-inner {
    position: relative;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem) clamp(2rem, 4vw, 2.75rem);
    border-radius: 0;
    color: var(--color-light);
    font-family: var(--font-body);
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(41, 133, 71, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 0% 100%, rgba(31, 107, 55, 0.25) 0%, transparent 50%),
        linear-gradient(168deg, var(--color-dark) 0%, #0a1f10 42%, var(--color-primary) 100%);
    overflow: hidden;
}

.site-footer-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 28%);
    pointer-events: none;
}

.footer-cta {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem 2rem;
    padding-bottom: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta-text {
    margin: 0;
    max-width: 28rem;
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-light);
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-footer-primary {
    padding: 14px 28px;
    border-radius: 999px;
    background: #a3f470;
    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-footer-primary:hover {
    background: #b8ff85;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(163, 244, 112, 0.28);
}

.btn-footer-outline {
    padding: 14px 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn-footer-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-2px);
}

.footer-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(160px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--color-light);
}

.footer-brand-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.footer-brand-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-brand-lockup {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer-brand-sub {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.88;
    margin-top: 4px;
}

.footer-brand-copy {
    margin: 1.25rem 0 1.5rem;
    max-width: 22rem;
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

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

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #a3f470;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
    color: var(--color-light);
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-3px);
}

.footer-col-title {
    margin: 0 0 1.25rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-secondary);
}

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-list a,
.footer-contact-col a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.footer-nav-list a:hover,
.footer-contact-col a:hover {
    color: #a3f470;
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-col p {
    margin: 4px 0 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

.footer-newsletter-lead {
    margin: 0 0 1rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    max-width: 20rem;
}

.footer-newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    max-width: 26rem;
}

.footer-newsletter-form input {
    flex: 1 1 180px;
    min-width: 0;
    height: 48px;
    padding: 0 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-light);
    font-family: var(--font-body);
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.footer-newsletter-form input:focus {
    border-color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.1);
}

.footer-newsletter-form button {
    height: 48px;
    padding: 0 1.5rem;
    border: none;
    border-radius: 999px;
    background: var(--color-secondary);
    color: var(--color-light);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-newsletter-form button:hover {
    background: #34a35a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(41, 133, 71, 0.35);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-legal a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #a3f470;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive adjustments */
/* Responsive adjustments */
@media (max-width: 1100px) {
    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1024px) {
    .mission-statement__text {
        font-size: clamp(1.625rem, 5.2vw, 3.5rem);
        max-width: 18em;
    }

    .hero-title {
        font-size: clamp(42px, 8vw, 68px);
        line-height: 1;
    }
    .about-title {
        font-size: 4rem;
    }
    .stat-number {
        font-size: 4rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .locations-title, .faq-title, .impact-title {
        font-size: 4rem;
    }

    .team-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .location-item {
        font-size: 3rem;
    }

    .locations-list-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .team-section {
        padding: 32px 5% 88px;
    }

    .team-desc {
        font-size: clamp(16px, 2.5vw, 20px);
        line-height: 1.5;
    }

    .team-title {
        font-size: 4rem;
        margin-bottom: 16px;
    }

    .social-feed-heading {
        font-size: 4.3rem;
        margin-left: -8px;
        margin-top: 8px;
    }

    .social-feed-subtext {
        margin-left: -6px;
        font-size: 1.02rem;
    }

    .team-card {
        min-height: 340px;
    }

    .pps-pin {
        padding: 4rem 2rem;
    }

    .pps-layout {
        grid-template-columns: 48px minmax(0, 1fr);
        row-gap: 1.5rem;
        column-gap: 1.25rem;
    }

    .pps-card-window {
        grid-column: 1 / -1;
    }

    .pps-card-track {
        grid-template-columns: repeat(4, minmax(180px, 1fr));
    }

    .instagram-title {
        font-size: clamp(3rem, 8vw, 6rem);
        letter-spacing: -0.02em;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .faq-question {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 0 0.75rem;
        margin-top: 3rem;
    }

    .site-footer-inner {
        border-radius: 32px 32px 0 0;
        padding: 2.5rem 1.35rem 2rem;
    }

    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-footer-primary,
    .btn-footer-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

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

    .footer-newsletter-form {
        flex-direction: column;
        max-width: none;
    }

    .footer-newsletter-form input,
    .footer-newsletter-form button {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .locations-list-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .product-progress-slider {
        border-radius: 22px;
    }

    .pps-pin {
        padding: 3rem 1.25rem;
    }

    .pps-layout {
        grid-template-columns: 1fr;
    }

    .pps-progress-nav {
        display: none;
    }

    .pps-copy {
        min-height: auto;
    }

    .pps-copy-item h3 {
        font-size: clamp(1.8rem, 9vw, 2.6rem);
    }

    .pps-card-track {
        display: block;
    }

    .pps-card {
        display: none;
        max-width: 420px;
        margin: 0 auto;
    }

    .pps-card.active {
        display: block;
    }

    .mission-statement {
        padding: clamp(3rem, 12vw, 4.5rem) 1.25rem;
    }

    .mission-statement__text {
        font-size: clamp(1.5rem, 6.8vw, 2.25rem);
        line-height: 1.06;
        letter-spacing: 0.012em;
        max-width: 19em;
    }

    .container {
        padding: 0 2rem;
    }

    .container .team-section {
        margin-left: -2rem;
        margin-right: -2rem;
    }

    .team-cards-grid {
        grid-template-columns: 1fr;
    }

    .team-name {
        font-size: clamp(42px, 14vw, 60px);
    }

    .team-surname {
        font-size: clamp(28px, 9vw, 42px);
    }
    .navbar {
        padding: 20px;
    }
    .nav-links {
        display: none;
    }
    .about-section {
        flex-direction: column;
        gap: 2rem;
    }
    .stats-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.6rem 1.25rem;
        max-width: 100%;
    }
    .partners-section {
        padding: 4rem 0;
        margin: 1rem 0;
    }
    .partners-container {
        flex-direction: column;
        gap: 2.5rem;
    }
    .partners-label::after {
        display: none;
    }
    .partners-logos {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .partner-logo {
        height: 36px;
    }
    .stat-item {
        min-width: 0;
    }
    .locations-list-inner {
        padding: 0 2rem;
    }
    .location-item {
        font-size: 2.5rem;
    }
    .instagram-section {
        padding: 52px 1rem 48px;
        margin: 4rem 0 5rem;
    }

    .social-feed-intro {
        padding: 3rem 0 1.5rem;
    }

    .social-feed-heading {
        font-size: 4.15rem;
        margin-left: 0;
        margin-top: 6px;
    }

    .social-feed-subtext {
        margin: 10px 0 0;
        font-size: 0.98rem;
    }

    .instagram-title {
        font-size: clamp(2.4rem, 12vw, 3.5rem);
        letter-spacing: -0.01em;
        margin-bottom: 26px;
    }
}

/* ==========================================================================
   Project Details / Community Impact Page
   ========================================================================== */
.impact-project-page {
    background-color: #ffffff;
    color: #ffffff;
}

.impact-project-page .navbar {
    background-color: #102d08;
    position: relative;
    padding: 1.5rem 4%;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.project-hero {
    text-align: center;
    padding: 4rem 4% 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-overline {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: #9ca3af;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.project-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 1;
    margin: 0 0 3rem;
    color: #ffffff;
    max-width: 900px;
}

.project-hero-image {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto -8rem;
    position: relative;
    z-index: 2;
}

.project-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    display: block;
}

.project-content-section {
    background: #0f2814;
    padding: 14rem 4% 6rem;
    display: flex;
    justify-content: center;
}

.project-content-inner {
    max-width: 800px;
    width: 100%;
}

.project-section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin: 3rem 0 1rem;
    color: #ffffff;
}

.project-content-inner p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #e5e7eb;
    margin-bottom: 2rem;
}

.project-responsibilities {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-responsibilities li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #e5e7eb;
}

.project-responsibilities li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4b5563;
}

/* Culture Section */
.project-culture {
    background: #fffafa;
    color: #0f2814;
    padding: 8rem 4%;
}

.project-culture-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.culture-text-col {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.culture-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.culture-highlight {
    color: #298547;
    font-style: italic;
}

.culture-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

.culture-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.culture-gallery-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.culture-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .culture-gallery-grid {
        grid-template-columns: 1fr;
        font-size: 3.5rem;
    }
}

/* Spinning Text Badge styles */
.spinning-badge-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(20px) scale(0.9);
}

.spinning-badge-container.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.spinning-badge {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: #a3f470;
    position: relative;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #101010;
    text-decoration: none;
}

.spinning-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.spinning-badge-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: spin 12s linear infinite;
}

.spinning-badge-ring text {
    font-size: 22px;
    letter-spacing: 0.45px;
    fill: #101010;
    text-transform: none;
    font-family: var(--font-body);
    font-weight: 400;
}

.spinning-badge-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 2;
}

.spinning-badge-icon svg {
    width: 26px;
    height: 26px;
    fill: #101010;
}

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

@media (max-width: 768px) {
    .spinning-badge-container {
        bottom: 16px;
        right: 16px;
    }
    .spinning-badge {
        width: 92px;
        height: 92px;
    }
    .spinning-badge-ring text {
        font-size: 18px;
        letter-spacing: 0.4px;
    }
    .spinning-badge-icon svg {
        width: 22px;
        height: 22px;
    }
}

/* ==========================================================================
   MICRO-ANIMATIONS — "Learn more" links & buttons
   Designed to draw the eye and invite clicks without being distracting.
   ========================================================================== */

/* Subtle continuous horizontal nudge — used for the trailing → glyph */
@keyframes lm-nudge {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(5px); }
}

/* Light sheen sweep across pill buttons on hover */
@keyframes lm-sheen {
    0%   { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}

/* --- IMPACT CARD: "Learn more →" --- */
.impact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    padding-bottom: 4px;
    animation: lm-nudge 2.6s ease-in-out infinite;
    transition: color 0.3s ease, transform 0.3s ease, gap 0.3s ease;
}
.impact-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1.5px;
    width: 100%;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.impact-link:hover {
    animation-play-state: paused;
    gap: 12px;
    color: var(--color-primary);
}
.impact-link:hover::after {
    transform: scaleX(1);
}

/* --- HEALTH INSIGHTS: ".btn-learn-more" pill button --- */
.btn-learn-more {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.btn-learn-more svg {
    animation: lm-nudge 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}
.btn-learn-more::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(0, 0, 0, 0.06) 50%, transparent 100%);
    transform: translateX(-120%);
    pointer-events: none;
    z-index: -1;
}
.btn-learn-more:hover svg {
    animation-play-state: paused;
    transform: translateX(6px);
}
.btn-learn-more:hover::before {
    animation: lm-sheen 0.8s ease-out forwards;
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    .impact-link,
    .btn-learn-more svg {
        animation: none !important;
    }
}

/* ==========================================================================
   MOBILE OVERHAUL (≤ 991px) — Designer-grade fixes for index.html
   Goals: kill horizontal overflow, refine spacing, scale typography,
   adapt every section into a clean, mobile-first layout.
   Desktop (≥ 992px) is completely unaffected.
   ========================================================================== */
@media (min-width: 992px) {
    .hamburger      { display: none !important; }
    .mobile-menu    { display: none !important; }
}

@media (max-width: 991px) {

    /* ---------- GLOBAL OVERFLOW GUARDS ---------- */
    html, body {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }
    body { width: 100%; }
    img, video, iframe { max-width: 100%; height: auto; }

    /* Restore intentional full-bleed sections at 100vw on mobile (overflow-x: hidden on <html> prevents any scrollbar issue on touch devices). */
    .trips-vacations,
    .reviews-section,
    .reviews-body,
    .locations-section,
    .locations-list,
    .instagram-section,
    .social-feed-intro {
        position: relative;
        width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        max-width: 100vw !important;
    }

    /* ---------- CONTAINER ---------- */
    .container {
        padding: 0 1.5rem !important;
        max-width: 100% !important;
    }

    /* ---------- NAVBAR / HAMBURGER ---------- */
    .navbar {
        padding: 1rem 1.5rem !important;
        justify-content: space-between !important;
    }
    .nav-right { display: none !important; }

    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 200;
        padding: 0;
        margin-left: auto;
    }
    .hamburger span {
        width: 100%;
        height: 2px;
        background: #ffffff;
        border-radius: 2px;
        transition: 0.3s;
    }

    /* ---------- MOBILE MENU DRAWER ---------- */
    .mobile-menu {
        display: flex !important;
        flex-direction: column;
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #0f2814;
        z-index: 300;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding: 5rem 2rem 2rem;
        gap: 1.25rem;
        overflow-y: auto;
    }
    .mobile-menu.open { transform: translateX(0); }
    .mobile-close-btn {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 301;
        padding: 0.25rem;
        line-height: 0;
    }
    .mobile-menu a {
        color: #ffffff;
        text-decoration: none;
        font-size: 1.4rem;
        font-weight: 600;
        font-family: var(--font-body);
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }
    .mobile-menu a.active-menu-link {
        text-decoration: line-through;
        text-decoration-style: solid;
        text-decoration-color: #a3f470;
        text-decoration-thickness: 4px;
        text-underline-offset: 4px;
    }
    .mobile-menu .mobile-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        margin-top: 1rem;
    }
    .mobile-menu .mobile-buttons a {
        border-bottom: none;
        text-align: center;
        padding: 0.85rem 1rem;
        border-radius: 60px;
        font-weight: 700;
        font-size: 1rem;
    }
    
    /* New requested book-call-btn styling */
    .mobile-menu .book-call-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        padding: 10px 20px !important;
        border-radius: 999px !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        background: rgba(255, 255, 255, 0.10) !important;
        backdrop-filter: blur(6px) !important;
        color: #ffffff !important;
        text-decoration: none !important;
        transition: background-color 0.2s ease, border-color 0.2s ease !important;
        font-family: "Supreme", Poppins, system-ui, -apple-system, "Segoe UI", sans-serif !important;
        font-weight: 600 !important;
        font-size: 14px !important;
        line-height: normal !important;
        font-style: normal !important;
    }
    .mobile-menu .book-call-btn:hover {
        background: rgba(255, 255, 255, 0.20) !important;
        border-color: rgba(255, 255, 255, 0.45) !important;
    }
    .mobile-menu .book-call-btn__icon {
        width: 16px !important;
        height: 16px !important;
    }

    .mobile-menu .btn-primary {
        background: #a3f470;
        color: #123b02;
    }

    /* ---------- HERO ---------- */
    .hero-section {
        min-height: 96vh !important;
        min-height: 96svh !important;
        padding-bottom: 2rem;
        display: flex;
        flex-direction: column;
    }
    .hero-content {
        padding: 2rem 1.5rem 4rem !important;
        margin: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .hero-text-block {
        max-width: 100% !important;
        margin-left: 0 !important;
    }
    .hero-title {
        font-size: clamp(38px, 9vw, 56px) !important;
        line-height: 1.05 !important;
        margin-bottom: 1rem !important;
    }
    .hero-subline {
        font-size: 1rem !important;
        line-height: 1.55 !important;
        margin-bottom: 1.5rem !important;
        max-width: 100% !important;
    }
    .btn-hero {
        padding: 14px 28px !important;
        font-size: 1rem !important;
    }
    .hero-whatsapp {
        right: 16px !important;
        bottom: 16px !important;
        width: 48px !important;
        height: 48px !important;
    }
    .hero-whatsapp svg {
        width: 28px !important;
        height: 28px !important;
    }

    /* ---------- MISSION STATEMENT ---------- */
    .mission-statement {
        padding: 3rem 1.5rem !important;
    }
    .mission-statement__text {
        font-size: clamp(1.4rem, 6.5vw, 2rem) !important;
        line-height: 1.15 !important;
        max-width: 100% !important;
    }

    /* ---------- VIDEO BANNER ---------- */
    .video-banner {
        height: auto !important;
        aspect-ratio: 16 / 9;
    }
    .video-banner video {
        width: 100% !important;
        height: 100% !important;
    }

    /* ---------- ABOUT ---------- */
    .about-section {
        padding: 3rem 0 !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    .about-title {
        font-size: clamp(2.6rem, 10vw, 3.6rem) !important;
        line-height: 1 !important;
    }
    .about-content {
        max-width: 100% !important;
    }

    /* ---------- STATS ---------- */
    .stats-section {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem 1rem !important;
        margin: 1.5rem 0 3rem !important;
    }
    .stat-number {
        font-size: clamp(3.4rem, 15vw, 5rem) !important;
        line-height: 0.95 !important;
        font-weight: 900 !important;
        letter-spacing: -0.025em !important;
    }
    .stat-desc {
        font-size: 0.82rem !important;
        font-weight: 600 !important;
        max-width: 100% !important;
    }

    /* ---------- PARTNERS ---------- */
    .partners-section {
        padding: 3rem 1.5rem !important;
        margin: 0 !important;
    }
    .partners-container {
        flex-direction: column !important;
        gap: 1.5rem !important;
        text-align: center;
    }
    .partners-label { gap: 0 !important; justify-content: center; }
    .partners-label::after { display: none !important; }
    .partners-logos {
        gap: 1.5rem !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    .partner-logo { height: 32px !important; }

    /* ---------- IMPACT ---------- */
    .impact-section {
        margin: 2rem 0 4rem !important;
    }
    .impact-title {
        font-size: clamp(2.4rem, 10vw, 3.4rem) !important;
        line-height: 1 !important;
    }
    .impact-header-text {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    .impact-grid {
        grid-template-columns: 1fr !important;
        gap: 2.75rem !important;
    }
    .impact-card {
        border: 1px solid rgba(15, 40, 20, 0.12) !important;
        border-radius: 18px !important;
        padding: 14px 14px 18px !important;
        background: #ffffff;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
    }
    .impact-image-wrap { margin-bottom: 1.1rem !important; border-radius: 12px !important; }
    .impact-info { padding: 0 4px; }
    .impact-card-title { font-size: 1.5rem !important; }
    .impact-card-desc  { font-size: 0.95rem !important; }

    /* ---------- TRIPS / MARQUEE ---------- */
    .trips-vacations {
        padding: 3rem 0 !important;
        margin-bottom: 2rem !important;
    }
    .trips-title {
        font-size: 2.4rem !important;
        margin-bottom: 1.5rem !important;
    }
    .marquee-wrapper { padding: 16px 0 32px !important; }
    .marquee-content {
        gap: 20px !important;
        padding-left: 12px !important;
    }
    .marquee-item {
        width: 180px !important;
        padding: 10px 10px 40px !important;
    }
    .marquee-item img { height: 160px !important; }
    .marquee-item::after {
        font-size: 14px !important;
        bottom: 10px !important;
        right: 10px !important;
    }
    .marquee-item::before {
        width: 16px !important;
        height: 16px !important;
        left: 10px !important;
        bottom: 10px !important;
    }

    /* ---------- REVIEWS ---------- */
    .reviews-section {
        padding: 3rem 1.5rem 4rem !important;
    }
    .reviews-title {
        font-size: clamp(2rem, 8vw, 2.8rem) !important;
        line-height: 1.05 !important;
    }
    .reviews-header p { font-size: 0.9rem !important; }
    .reviews-body {
        padding: 16px 0 32px !important;
    }
    .review-item { width: 260px !important; }
    .review-bubble {
        padding: 16px 18px !important;
        border-radius: 14px !important;
    }
    .review-profile { margin-bottom: 12px !important; gap: 12px !important; }
    .profile-img  { width: 40px !important; height: 40px !important; }
    .profile-name { font-size: 0.95rem !important; }
    .profile-role { font-size: 0.75rem !important; }
    .review-text  { font-size: 0.82rem !important; line-height: 1.5 !important; }

    /* ---------- LOCATIONS ---------- */
    .locations-section {
        padding: 3rem 1.5rem 0 !important;
        margin-bottom: 2rem !important;
    }
    .locations-title {
        font-size: clamp(2.6rem, 10vw, 3.8rem) !important;
        line-height: 1 !important;
    }
    .locations-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    .locations-list-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0 1.5rem !important;
        padding: 0 1.5rem !important;
    }
    .locations-column { display: contents !important; }
    .location-item {
        font-size: 1.4rem !important;
        padding: 0.75rem 0 !important;
        letter-spacing: 0.5px !important;
    }
    .location-item:empty { display: none !important; }

    /* ---------- TEAM (G8 LEADERS) ---------- */
    .container .team-section {
        margin-left: -1.5rem !important;
        margin-right: -1.5rem !important;
    }
    .team-section {
        padding: 2.5rem 1.5rem 4rem !important;
        margin-top: 3rem !important;
        margin-bottom: 0 !important;
    }
    .team-header { margin-bottom: 2rem !important; }
    .team-title {
        font-size: clamp(2.6rem, 10vw, 3.6rem) !important;
        margin-bottom: 1rem !important;
        line-height: 1 !important;
    }
    .team-desc { font-size: 0.95rem !important; }
    .team-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .team-card {
        min-height: 280px !important;
        padding: 12px 10px 10px !important;
        border-radius: 16px !important;
    }
    .team-photo-wrap {
        width: min(100%, 130px) !important;
        margin: 18px auto 10px !important;
    }
    .team-name    { font-size: 1.1rem !important; }
    .team-surname { font-size: 1.05rem !important; margin-bottom: 8px !important; }
    .team-role    { font-size: 9px !important; letter-spacing: 0.05em !important; }
    .team-social {
        gap: 8px !important;
        margin-top: 10px !important;
    }
    .team-social svg { width: 18px !important; height: 18px !important; }

    /* =========================================
       HEALTH TIPS & INSIGHTS - Product-Style Cards
    ========================================= */
    .health-insights {
        padding: 2rem 0 3rem !important;
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: 0 !important;
        overflow: hidden !important;
    }

    .insights-container {
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .insights-header {
        margin-bottom: 2rem !important;
        text-align: left !important;
        padding: 0 1.25rem !important;
    }

    .insights-header h2 {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
    }

    .insights-header p {
        font-size: 0.9rem !important;
        color: #666 !important;
    }

    .articles-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0.75rem !important;
        width: 100vw !important;
        max-width: 100vw !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important; /* Firefox */
        scroll-padding-inline: 1rem !important;
        box-sizing: border-box !important;
        padding: 0 1rem 1.5rem !important;
    }
    
    .articles-grid::-webkit-scrollbar {
        display: none !important; /* Chrome/Safari */
    }

    .article-card {
        flex: 0 0 clamp(180px, 54vw, 228px) !important;
        scroll-snap-align: center !important;
        background: #ffffff !important;
        border-radius: 18px !important;
        overflow: hidden !important;
        box-shadow: 0 7px 18px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.02) !important;
        transition: transform 0.2s ease, box-shadow 0.2s ease !important;
        border: 1px solid rgba(0, 0, 0, 0.04) !important;
    }

    .article-card:hover {
        transform: translateY(-4px) !important;
        box-shadow: 0 20px 28px -12px rgba(0, 0, 0, 0.12) !important;
    }

    .article-img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 0.72 !important;
        object-fit: cover !important;
        border-radius: 0 !important;
        margin-bottom: 0 !important;
        display: block !important;
    }

    .article-content {
        padding: 0.85rem 0.85rem 0.95rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        min-height: 148px !important;
    }

    .article-tags {
        display: none !important;  /* Clean product-card look, tags hidden */
    }

    .article-content h3 {
        font-size: 0.98rem !important;
        font-weight: 700 !important;
        line-height: 1.22 !important;
        margin-bottom: 0.35rem !important;
        color: #0f2814 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        min-height: 2.4em !important;
    }

    .article-content p {
        font-size: 0.74rem !important;
        line-height: 1.35 !important;
        color: #4a4a4a !important;
        margin-bottom: 0.7rem !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        min-height: 2.7em !important;
    }

    .btn-learn-more {
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 6px 14px !important;
        background: transparent !important;
        border: 1px solid #0f2814 !important;
        border-radius: 40px !important;
        color: #0f2814 !important;
        font-size: 0.72rem !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        transition: all 0.2s ease !important;
        margin-top: auto !important;
    }

    .btn-learn-more:hover {
        background: #0f2814 !important;
        color: #ffffff !important;
        border-color: #0f2814 !important;
    }

    .btn-learn-more svg {
        transition: transform 0.2s ease !important;
    }

    .btn-learn-more:hover svg {
        transform: translateX(4px) !important;
    }

    .insights-mobile-controls {
        display: flex !important;
        justify-content: flex-end !important;
        gap: 0.55rem !important;
        margin: -0.35rem 1rem 0 !important;
    }

    /* =========================================
       OUR TOP WELLNESS PRODUCTS - Refined Product Cards
    ========================================= */
    .product-progress-slider {
        background: #f8faf6 !important;
        min-height: auto !important;
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: 0 !important;
        overflow: hidden !important;
    }

    .pps-pin {
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 2rem 0 3rem !important;
        min-height: auto !important;
    }

    .pps-title {
        font-size: 1.85rem !important;
        text-align: left !important;
        margin-bottom: 2rem !important;
        letter-spacing: -0.01em !important;
        line-height: 1.1 !important;
        padding: 0 1rem !important;
    }

    .pps-mobile-controls {
        display: flex !important;
        justify-content: flex-end !important;
        gap: 0.55rem !important;
        margin: -0.5rem 1rem 0.9rem !important;
    }

    .pps-mobile-arrow {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important;
        height: 40px !important;
        border: 1px solid rgba(15, 40, 20, 0.18) !important;
        border-radius: 999px !important;
        background: #ffffff !important;
        color: #0f2814 !important;
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        cursor: pointer !important;
        transition: transform 0.18s ease, background-color 0.18s ease, opacity 0.18s ease !important;
    }

    .pps-mobile-arrow:active {
        transform: scale(0.96) !important;
    }

    .pps-mobile-arrow:disabled {
        opacity: 0.42 !important;
        cursor: not-allowed !important;
    }

    .pps-layout {
        --pps-mobile-card-w: clamp(190px, 58vw, 240px) !important;
        display: grid !important;
        grid-template-columns: none !important;
        grid-template-rows: auto 1fr !important;
        grid-auto-columns: var(--pps-mobile-card-w) !important;
        grid-auto-flow: column !important;
        gap: 0 0.85rem !important;
        width: 100vw !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        padding: 0 1rem 1.5rem !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
        scroll-padding-inline: 1rem !important;
    }
    
    .pps-layout::-webkit-scrollbar {
        display: none !important;
    }

    /* Flatten wrapper containers for card stacking */
    .pps-copy,
    .pps-card-window,
    .pps-card-track {
        display: contents !important;
    }

    /* Each product card: image block (top) */
    .pps-card {
        grid-row: 1 !important;
        scroll-snap-align: center !important;
        display: block !important;
        width: var(--pps-mobile-card-w) !important;
        min-width: var(--pps-mobile-card-w) !important;
        max-width: var(--pps-mobile-card-w) !important;
        height: auto !important;
        aspect-ratio: 1 / 0.78 !important;
        background: #f0f3ec !important;
        border-radius: 24px 24px 0 0 !important;
        border: none !important;
        overflow: hidden !important;
        margin: 0 !important;
        box-shadow: none !important;
        position: relative !important;
        justify-self: start !important;
    }

    .pps-card.active {
        width: var(--pps-mobile-card-w) !important;
        min-width: var(--pps-mobile-card-w) !important;
        max-width: var(--pps-mobile-card-w) !important;
        transform: none !important;
    }

    .pps-product-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        padding: 0 !important;
        filter: none !important;
    }

    /* Text content block (bottom) - unified product card style */
    .pps-copy-item {
        grid-row: 2 !important;
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        width: var(--pps-mobile-card-w) !important;
        min-width: var(--pps-mobile-card-w) !important;
        max-width: var(--pps-mobile-card-w) !important;
        justify-self: start !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: #ffffff !important;
        border-radius: 0 0 24px 24px !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
        border-top: none !important;
        padding: 0.95rem 0.95rem 1.1rem !important;
        height: 170px !important;
        min-height: 170px !important;
        margin: 0 !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
        transition: box-shadow 0.2s ease !important;
    }

    .pps-copy-item.active {
        width: var(--pps-mobile-card-w) !important;
        min-width: var(--pps-mobile-card-w) !important;
        max-width: var(--pps-mobile-card-w) !important;
        transform: none !important;
    }

    .pps-copy-item:hover {
        box-shadow: 0 16px 28px -8px rgba(0, 0, 0, 0.1) !important;
    }

    .pps-copy-item h3 {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        margin: 0 0 0.35rem 0 !important;
        line-height: 1.25 !important;
        color: #0f2814 !important;
        max-width: 100% !important;
    }

    .pps-copy-item p {
        font-size: 0.78rem !important;
        line-height: 1.42 !important;
        color: #4a4a4a !important;
        margin: 0 0 0.7rem 0 !important;
        max-width: 100% !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        min-height: 2.85em !important;
    }

    .pps-price {
        display: none !important;
    }

    .pps-card-btn {
        margin-top: auto !important;
        width: 100% !important;
        min-height: 42px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0.72rem 0.95rem !important;
        border-radius: 999px !important;
        border: 1px solid #0f2814 !important;
        background: linear-gradient(180deg, #173f10 0%, #0f2f09 100%) !important;
        color: #ffffff !important;
        font-size: 0.74rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.05em !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        box-shadow: 0 8px 18px rgba(16, 45, 8, 0.2) !important;
        transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease !important;
    }

    .pps-card-btn:hover,
    .pps-card-btn:focus-visible {
        color: #ffffff !important;
        text-decoration: none !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 12px 22px rgba(16, 45, 8, 0.25) !important;
        filter: brightness(1.03) !important;
    }

    .pps-card-btn:active {
        transform: translateY(0) scale(0.98) !important;
    }

    .pps-copy-item::after {
        content: none !important;
        display: none !important;
    }

    /* Assign grid columns for the 3 mobile product slides */
    .pps-card[data-slide="0"]      { grid-column: 1 !important; }
    .pps-copy-item[data-slide="0"] { grid-column: 1 !important; }
    .pps-card[data-slide="1"]      { grid-column: 2 !important; }
    .pps-copy-item[data-slide="1"] { grid-column: 2 !important; }
    .pps-card[data-slide="2"]      { grid-column: 3 !important; }
    .pps-copy-item[data-slide="2"] { grid-column: 3 !important; }

    /* Global "View All Products" button - hide on mobile slider because each card has its own button now */
    .pps-button {
        display: none !important;
    }

    /* Hide original progress elements and scroll hint on mobile */
    .pps-progress-nav,
    .pps-scroll-hint {
        display: none !important;
    }

    /* ---------- SOCIAL FEED INTRO ---------- */
    .social-feed-intro { padding: 3rem 0 1rem !important; }
    .social-feed-heading {
        font-size: clamp(2.4rem, 10vw, 3.6rem) !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
    }
    .social-feed-subtext {
        font-size: 0.95rem !important;
        margin-left: 0 !important;
    }

    /* ---------- INSTAGRAM ---------- */
    .instagram-section {
        padding: 3rem 1.5rem !important;
        margin: 3rem 0 4rem !important;
    }
    .instagram-container { max-width: 100% !important; }
    .instagram-title {
        font-size: clamp(2.2rem, 11vw, 3.4rem) !important;
        margin-bottom: 1.5rem !important;
    }
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .play-icon { width: 40px !important; height: 40px !important; }
    .play-icon svg { width: 32px !important; height: 32px !important; }
    .btn-outline-lime {
        padding: 10px 22px !important;
        font-size: 0.9rem !important;
    }

    /* ---------- FAQ ---------- */
    .faq-section { margin: 3rem 0 4rem !important; }
    .faq-title {
        font-size: clamp(2.4rem, 10vw, 3.4rem) !important;
        line-height: 1 !important;
        margin-bottom: 1.5rem !important;
    }
    .faq-question { font-size: 1rem !important; gap: 1rem !important; }
    .faq-icon     { font-size: 1.6rem !important; }
    .faq-answer   { font-size: 0.9rem !important; line-height: 1.55 !important; }

    /* ---------- FOOTER ---------- */
    .site-footer {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding: 0 !important;
        margin-top: 2rem !important;
        border-radius: 0 !important;
    }
    .site-footer-inner {
        border-radius: 0 !important;
        padding: 2.5rem 1.5rem 2rem !important;
    }
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .footer-brand-col { grid-column: auto !important; }
    .footer-brand-icon {
        width: 42px !important;
        height: 42px !important;
    }
    .footer-brand-name {
        font-size: 1.2rem !important;
    }
    .footer-brand-sub {
        font-size: 0.64rem !important;
        margin-top: 2px !important;
    }
    .footer-brand-copy { max-width: 100% !important; }
    .footer-newsletter-form {
        flex-direction: column !important;
        max-width: 100% !important;
    }
    .footer-newsletter-form input,
    .footer-newsletter-form button {
        width: 100% !important;
        flex: none !important;
    }
    .footer-newsletter-form input {
        min-height: 52px !important;
        padding: 0 1.05rem !important;
        border-radius: 60px !important;
        border: 1px solid rgba(255, 255, 255, 0.28) !important;
        background: rgba(255, 255, 255, 0.12) !important;
        color: #ffffff !important;
        font-size: 0.95rem !important;
        box-sizing: border-box !important;
    }
    .footer-newsletter-form input::placeholder {
        color: rgba(255, 255, 255, 0.74) !important;
    }
    .footer-newsletter-form button {
        min-height: 52px !important;
    }
    .footer-bottom {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .footer-cta {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    /* ---------- SPINNING BADGE → simplified envelope-only pill on mobile ---------- */
    .spinning-badge-container {
        bottom: 16px !important;
        right: 16px !important;
    }
    .spinning-badge {
        width: 64px !important;
        height: 64px !important;
        animation: none !important; /* no need to spin without the text ring */
    }
    .spinning-badge-ring { display: none !important; }
    .spinning-badge-icon {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .spinning-badge-icon svg { width: 30px !important; height: 30px !important; }
}

/* Extra-small phones (≤ 380px): keep things from cramping */
@media (max-width: 380px) {
    .container { padding: 0 1rem !important; }
    .navbar    { padding: 0.85rem 1rem !important; }
    .hero-content { padding: 1.5rem 1rem 3rem !important; }
    .hero-title   { font-size: clamp(38px, 11vw, 52px) !important; }
    .stats-section { gap: 1.5rem 0.75rem !important; }
    .team-cards-grid { gap: 10px !important; }
    .review-item { width: 240px !important; }
    .marquee-item { width: 150px !important; }
    .marquee-item img { height: 130px !important; }
}

/* =====================================================================
   index.html — MOBILE TUNING PASS (≤ 991px)
   Overrides earlier mobile rules to refine: hero typography, mission
   statement alignment, reviews scroll speed, locations spacing/borders,
   wellness products → vertical paired-card stack, social feed inset,
   pulsing envelope FAB.
   ===================================================================== */
@media (max-width: 991px) {

    /* ---------- HERO — fuller typography so the block fills the column ---------- */
    .hero-title {
        font-size: clamp(46px, 11vw, 68px) !important;
        line-height: 1.02 !important;
        letter-spacing: 0.005em !important;
        margin-bottom: 1.15rem !important;
    }
    .hero-subline {
        font-size: 1.15rem !important;
        line-height: 1.55 !important;
        margin-bottom: 1.75rem !important;
        max-width: 32ch !important;
    }
    .btn-hero {
        padding: 16px 30px !important;
        font-size: 1.05rem !important;
    }

    /* ---------- MISSION STATEMENT — original centered layout, larger font ---------- */
    .mission-statement {
        padding: 3.5rem 1.5rem !important;
    }
    .mission-statement__text {
        font-size: clamp(1.55rem, 6.8vw, 2.2rem) !important;
        line-height: 1.18 !important;
        letter-spacing: 0.005em !important;
    }

    /* ---------- REVIEWS — faster auto-scroll on mobile ---------- */
    .reviews-slider {
        animation-duration: 26s !important;
    }

    /* ---------- LOCATIONS — bigger states, restored underlines, more breathing room ---------- */
    .locations-section {
        padding: 3.5rem 1.5rem 0 !important;
        margin-bottom: 2.5rem !important;
    }
    .locations-title {
        font-size: clamp(3rem, 11vw, 4.4rem) !important;
        line-height: 1 !important;
        margin-bottom: 0.5rem !important;
    }
    .locations-subtitle {
        font-size: 1.05rem !important;
        margin-bottom: 1.75rem !important;
    }
    .locations-list-inner {
        gap: 0 1.75rem !important;
        padding: 0 1.75rem !important;
    }
    .location-item {
        font-size: clamp(1.6rem, 6.5vw, 2rem) !important;
        padding: 1.05rem 0 !important;
        letter-spacing: 0.5px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
    }
    .location-item:empty {
        display: none !important;
    }

    /* Wellness products mobile layout is defined earlier in this media block. */

    /* ---------- SOCIAL FEED — 100vw full-width, 0px border-radius ---------- */
    .instagram-section {
        position: relative !important;
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: 0 !important;
        margin-top: 2.5rem !important;
        margin-bottom: 3rem !important;
        padding: 2rem 1.5rem 2.25rem !important;
        border-radius: 0px !important;
        overflow: hidden !important;
    }
    .instagram-container {
        max-width: 100% !important;
    }
    .instagram-title {
        font-size: clamp(2rem, 9.5vw, 3.1rem) !important;
        line-height: 1 !important;
        letter-spacing: 0.005em !important;
        margin-bottom: 1.4rem !important;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .instagram-grid {
        gap: 10px !important;
    }
    .instagram-footer {
        margin-top: 1.4rem !important;
        justify-content: center !important;
    }

    /* ---------- COMMUNITY IMPACT — Make entire card clickable ---------- */
    .impact-card {
        position: relative !important;
    }
    .impact-link::before {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
        z-index: 10 !important;
    }
    .btn-outline-lime {
        width: 100% !important;
        text-align: center !important;
        padding: 12px 20px !important;
        font-size: 0.92rem !important;
    }

    /* ---------- FLOATING ENVELOPE — pulsing animation ---------- */
    .spinning-badge {
        animation: badge-pulse 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
    }
    @keyframes badge-pulse {
        0%, 100% {
            box-shadow:
                0 0 0 0 rgba(163, 244, 112, 0.55),
                0 8px 22px rgba(0, 0, 0, 0.18);
            transform: scale(1);
        }
        50% {
            box-shadow:
                0 0 0 14px rgba(163, 244, 112, 0),
                0 10px 26px rgba(0, 0, 0, 0.18);
            transform: scale(1.06);
        }
    }
    /* Reduced motion respect */
    @media (prefers-reduced-motion: reduce) {
        .spinning-badge {
            animation: none !important;
        }
    }
}

/* Hide carousel controls on tablet devices (between 768px and 991px) as requested */
@media (min-width: 768px) and (max-width: 991px) {
    .pps-mobile-controls,
    .insights-mobile-controls {
        display: none !important;
    }
}
