/* =============================================================
   PURE LIFE WELLNESS LLC — Design System & Stylesheet
   Premium, Accessible, Mobile-First
   ============================================================= */

/* ─── Variables ─────────────────────────────────────────────── */
:root {
    --navy:        #0F1E36;
    --navy-mid:    #1A2E4C;
    --green:       #3B6650;
    --green-light: #4D7E65;
    --sage:        #4A7C59;

    --white:       #FFFFFF;
    --off-white:   #FAF9F6;
    --beige:       #F5F2EB;
    --light-gray:  #F0F2F5;
    --border:      #E2E8F0;
    --border-dark: #CBD5E1;

    --text:        #2D3748;
    --text-muted:  #5A6A80;
    --text-light:  #FFFFFF;
    --text-navy:   #0F1E36;

    /* Legacy aliases (used in page content) */
    --primary-color:    var(--navy);
    --primary-light:    var(--navy-mid);
    --secondary-color:  var(--green);
    --secondary-light:  var(--green-light);
    --accent-color:     var(--sage);
    --bg-white:         var(--white);
    --bg-warm:          var(--off-white);
    --bg-beige:         var(--beige);
    --bg-light-gray:    var(--light-gray);
    --border-color:     var(--border);
    --border-dark:      var(--border-dark);
    --text-main:        var(--text);

    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body:    'Inter',  -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --f-display:    'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --r-xl: 24px;

    --max-width:       1200px;
    --header-h:        72px;
    --r-sm:            4px;
    --r-md:            10px;
    --r-lg:            18px;
    --ease:            all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    --sh-sm:  0 2px 6px  rgba(15,30,54,0.05);
    --sh-md:  0 4px 16px rgba(15,30,54,0.08);
    --sh-lg:  0 10px 32px rgba(15,30,54,0.10);

    /* Legacy shadow aliases */
    --shadow-sm: var(--sh-sm);
    --shadow-md: var(--sh-md);
    --shadow-lg: var(--sh-lg);
    --radius-sm: var(--r-sm);
    --radius-md: var(--r-md);
    --radius-lg: var(--r-lg);
    --transition-smooth: var(--ease);
    --header-height: var(--header-h);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ─── Skip link ──────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--r-sm);
    z-index: 9999;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus { top: 20px; }

/* ─── Type ───────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

a {
    color: var(--green);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover { color: var(--green-light); }

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--r-md);
}

address { font-style: normal; line-height: 1.6; }

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ─── Sections ───────────────────────────────────────────────── */
.section       { padding: 88px 0; }
.section-warm  { background: var(--off-white); }
.section-beige { background: var(--beige); }
.section-dark  {
    background: linear-gradient(135deg, #0d1b2e 0%, #162438 60%, #0d2018 100%);
    position: relative;
    overflow: hidden;
}
.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cg fill='none' stroke='white' stroke-width='0.6' opacity='0.04'%3E%3Cpath d='M25 10h15v15h15v15H40v15H25V40H10V25h15z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    pointer-events: none;
}
.section-dark .container { position: relative; z-index: 1; }

.text-center { text-align: center; }
.max-w-md    { max-width: 750px; margin-left: auto; margin-right: auto; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 30px; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 24px; }

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ─── HEADER ─────────────────────────────────────────────────── */
/*
  Default state: transparent, floating over the hero slider.
  .site-header--solid  → applied on all inner pages (non-index) via JS
  .scrolled            → applied by JS when window.scrollY > 40 on index
*/
.site-header {
    position: fixed;
    inset: 0 0 auto;          /* top:0 left:0 right:0 */
    height: var(--header-h);
    z-index: 900;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.6s ease-in-out, border-color 0.6s ease-in-out, box-shadow 0.6s ease-in-out;
}

.site-header.scrolled,
.site-header--solid {
    background: rgba(255,255,255,0.96);
    border-bottom-color: var(--border);
    box-shadow: 0 2px 20px rgba(15,30,54,0.06);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
}

.site-header:has(.main-nav.active),
.site-header.site-header--menu-open {
    background: rgba(10, 20, 36, 0.98) !important;
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.site-header:has(.main-nav.active) .logo-link,
.site-header.site-header--menu-open .logo-link {
    color: rgba(255, 255, 255, 0.95) !important;
}

.site-header:has(.main-nav.active) .hamburger-bar,
.site-header.site-header--menu-open .hamburger-bar {
    background: rgba(255, 255, 255, 0.9) !important;
}

/* Force mobile menu links to be white/high-contrast when menu is open */
.site-header:has(.main-nav.active) .nav-link,
.site-header.site-header--menu-open .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    text-shadow: none !important;
}

.site-header:has(.main-nav.active) .nav-link:hover,
.site-header:has(.main-nav.active) .nav-link.active,
.site-header.site-header--menu-open .nav-link:hover,
.site-header.site-header--menu-open .nav-link.active {
    color: #7ddcb8 !important;
    border-bottom-color: #7ddcb8 !important;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.95);
    letter-spacing: -0.3px;
    transition: color 0.6s ease-in-out;
    text-decoration: none;
}
.logo-link:hover { color: #fff; }

.logo-icon { color: inherit; flex-shrink: 0; }
.logo-text  { letter-spacing: -0.4px; }

/* Scrolled / solid / or light-bg slide active → dark logo */
.site-header.scrolled .logo-link,
.site-header--solid   .logo-link,
.site-header--on-light .logo-link {
    color: var(--navy);
}

/* Hamburger */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 17px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 910;
    padding: 0;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.9);
    border-radius: 2px;
    transition: background 0.6s ease-in-out, transform 0.3s ease, opacity 0.3s ease;
}

.site-header.scrolled  .hamburger-bar,
.site-header--solid    .hamburger-bar,
.site-header--on-light .hamburger-bar {
    background: var(--navy);
}

/* Mobile nav panel */
.main-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    width: 100%;
    background: rgba(10,20,36,0.97);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 20px 28px 28px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
}

.main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s;
}

.site-header.scrolled .main-nav,
.site-header--solid   .main-nav {
    background: var(--white);
    border-bottom-color: var(--border);
    box-shadow: var(--sh-lg);
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-link {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.6s ease-in-out, border-color 0.6s ease-in-out;
}
.nav-link:hover,
.nav-link.active {
    color: #7ddcb8;
    border-bottom-color: #7ddcb8;
}

.site-header.scrolled  .nav-link,
.site-header--solid    .nav-link,
.site-header--on-light .nav-link      { color: var(--text); }
.site-header.scrolled  .nav-link:hover,
.site-header.scrolled  .nav-link.active,
.site-header--solid    .nav-link:hover,
.site-header--solid    .nav-link.active,
.site-header--on-light .nav-link:hover,
.site-header--on-light .nav-link.active {
    color: var(--green);
    border-bottom-color: var(--green);
}

/* Desktop nav */
@media (min-width: 1024px) {
    .nav-toggle { display: none; }

    .main-nav {
        position: static;
        width: auto;
        background: transparent !important;
        border: none !important;
        padding: 0;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }

    .nav-list {
        flex-direction: row;
        gap: 36px;
    }

    .nav-link {
        font-size: 0.88rem;
        font-weight: 600;
        padding: 4px 0;
        color: rgba(255,255,255,0.88);
        text-shadow: 0 1px 4px rgba(0,0,0,0.3);
        border-bottom-width: 1.5px;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #fff;
        border-bottom-color: rgba(255,255,255,0.6);
        text-shadow: none;
    }

    .site-header.scrolled .nav-link,
    .site-header--solid   .nav-link,
    .site-header--on-light .nav-link {
        color: var(--text);
        text-shadow: none;
    }

    .site-header.scrolled  .nav-link:hover,
    .site-header.scrolled  .nav-link.active,
    .site-header--solid    .nav-link:hover,
    .site-header--solid    .nav-link.active,
    .site-header--on-light .nav-link:hover,
    .site-header--on-light .nav-link.active {
        color: var(--green);
        border-bottom-color: var(--green);
    }
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: var(--r-md);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--ease);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-primary:hover {
    background: var(--green-light);
    border-color: var(--green-light);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59,102,80,0.30);
}

.btn-secondary {
    background: transparent;
    border-color: var(--navy);
    color: var(--navy);
}
.btn-secondary:hover {
    background: var(--light-gray);
    transform: translateY(-1px);
    color: var(--navy);
}

/* Slider-specific buttons */
.btn-hero-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.45);
    color: rgba(255,255,255,0.92);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.75);
    color: #fff;
    transform: translateY(-1px);
}

.btn-giving {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}
.btn-giving:hover {
    background: var(--green-light);
    border-color: var(--green-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(59,102,80,0.35);
}

.btn-giving-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.40);
    color: rgba(255,255,255,0.88);
}
.btn-giving-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.70);
    color: #fff;
    transform: translateY(-1px);
}

/* ─── HERO SLIDER ────────────────────────────────────────────── */
/*
  Architecture:
  - .hero-wrap:  full-viewport block that creates height for the fixed header
  - .hs:         the actual slider, fills hero-wrap
  - .hs-slide:   each slide, all absolutely positioned inside .hs
  - Crossfade via opacity; .hs itself has a set min-height
*/

/* Inner pages: push content below fixed header */
.inner-page-main { padding-top: var(--header-h); }

/* Full-viewport slider wrapper */
.hs {
    position: relative;
    width: 100%;
    min-height: 92vh;
    overflow: hidden;
    background: #f1f4f8;   /* slide-1 bg fallback */
}

/* Every slide: absolute, fills .hs, crossfades */
.hs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.65s ease;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hs-slide--active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

/* ── SLIDE 1  (light, warm cream) ────────────────────────── */
.hs-slide-1 {
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(59,102,80,0.06) 0%, transparent 60%),
        linear-gradient(145deg, #f8f6f1 0%, #eef2f7 55%, #e8eff8 100%);
}

.hs-slide-1 .hs-inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: calc(var(--header-h) + 48px) 28px 72px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 900px) {
    .hs-slide-1 .hs-inner {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 60px;
        padding-top: calc(var(--header-h) + 60px);
        padding-bottom: 80px;
    }
}

.hs-slide-1 .hs-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
}

.hs-slide-1 h1 {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    color: var(--navy);
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hs-slide-1 .hs-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 500px;
}

.hs-slide-1 .hs-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hs-visual-1 {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15,30,54,0.14);
    aspect-ratio: 4/3;
}
.hs-visual-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* ── SLIDE 2  (dark) ──────────────────────────────────────── */
.hs-slide-2 {
    background: #0b1e14;
}

.hs-slide-2 .hs-inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: calc(var(--header-h) + 48px) 28px 72px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 900px) {
    .hs-slide-2 .hs-inner {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 60px;
        padding-top: calc(var(--header-h) + 60px);
        padding-bottom: 80px;
    }
}

.hs-slide-2 .hs-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6ec9a5;
    margin-bottom: 16px;
}

.hs-slide-2 h1 {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    color: #ffffff;
    letter-spacing: -0.4px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hs-slide-2 .hs-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    max-width: 500px;
}
.hs-slide-2 .hs-sub strong {
    color: #8ee8c4;
    font-weight: 600;
}

/* ─── Trust Pills (Slide 2) ──────────────────────────────── */
.hs-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 28px;
}
.hs-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #9eefd0;
    padding: 11px 20px;
    position: relative;
    background: linear-gradient(135deg,
        rgba(110,201,165,0.09) 0%,
        rgba(110,201,165,0.04) 100%);
    clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
    border: none;
    transition: background 0.2s, color 0.2s;
}
.hs-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(110,201,165,0.22) 0%,
        rgba(110,201,165,0.06) 100%);
    clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
    opacity: 0.6;
}
.hs-pill svg { flex-shrink: 0; }

.hs-slide-2 .hs-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hs-fine-print {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.32);
    line-height: 1.55;
    margin-top: 20px;
    max-width: 480px;
}

.hs-visual-2 {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    aspect-ratio: 4/3;
    border: 1px solid rgba(255,255,255,0.06);
}
.hs-visual-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* ─── SLIDER MOBILE OVERFLOW FIX ─────────────────────────────── */
@media (max-width: 899px) {
    .hs {
        min-height: 680px !important;
    }
    .hs-slide {
        align-items: flex-start !important;
    }
    .hs-slide-1 .hs-inner,
    .hs-slide-2 .hs-inner {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        padding: calc(var(--header-h) + 15px) 20px 40px !important;
        gap: 20px !important;
    }
    .hs-slide-1 h1,
    .hs-slide-2 h1 {
        font-size: clamp(1.55rem, 5.5vw, 2.1rem) !important;
        margin-bottom: 12px !important;
    }
    .hs-slide-1 .hs-sub,
    .hs-slide-2 .hs-sub {
        font-size: 0.95rem !important;
        line-height: 1.55 !important;
        margin-bottom: 0 !important;
    }
    .hs-slide-1 .hs-actions,
    .hs-slide-2 .hs-actions {
        margin-top: 18px !important;
        gap: 10px !important;
    }
    .hs-pills {
        margin-top: 14px !important;
        margin-bottom: 14px !important;
        gap: 8px !important;
    }
    .hs-pill {
        padding: 8px 14px !important;
        font-size: 0.72rem !important;
    }
    .hs-visual-1,
    .hs-visual-2 {
        max-width: 300px !important;
        width: 100% !important;
        margin: 0 auto !important;
        aspect-ratio: 16/10 !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 16px !important;
    }
    .logo-link {
        font-size: 1.05rem !important;
        gap: 8px !important;
    }
    .logo-icon {
        width: 28px !important;
        height: 28px !important;
    }
}

/* ── Slider Controls ──────────────────────────────────────── */
.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255,255,255,0.85);
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hs-arrow:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}
.hs-arrow svg {
    width: 18px;
    height: 18px;
}

/* Arrows: inside the slider, vertically centred but shifted past content */
.hs-arrow--prev { left: 18px; }
.hs-arrow--next { right: 18px; }

@media (min-width: 1280px) {
    .hs-arrow--prev { left: 28px; }
    .hs-arrow--next { right: 28px; }
}

.hs-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
}
.hs-dot--active,
.hs-dot:hover {
    background: #fff;
    transform: scale(1.4);
}

/* Light slide (slide 1) adaptations */
.hs--light-active .hs-arrow {
    border-color: rgba(15,30,54,0.08);
    background: rgba(15,30,54,0.04);
    color: rgba(15,30,54,0.7);
}
.hs--light-active .hs-arrow:hover {
    background: rgba(15,30,54,0.08);
    border-color: rgba(15,30,54,0.20);
    color: var(--navy);
}
.hs--light-active .hs-dot {
    background: rgba(15,30,54,0.20);
}
.hs--light-active .hs-dot--active,
.hs--light-active .hs-dot:hover {
    background: var(--navy);
}

/* ─── CARDS ──────────────────────────────────────────────────── */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--sh-sm);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15,30,54,0.12);
    border-color: rgba(59,102,80,0.25);
}
.card:hover::before { opacity: 1; }
.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--off-white), var(--beige));
    color: var(--green);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}
.card h3 { margin-bottom: 10px; }
.card p  { color: var(--text-muted); font-size: 0.94rem; }

/* ─── PAGE HEADER (inner pages) ──────────────────────────────── */
.page-header {
    background: linear-gradient(135deg, #0d1b2e 0%, #162438 55%, #112d20 100%);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative wellness icons — subtle watermark layer */
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.1'%3E%3Cpath d='M9 3h6v6h6v6h-6v6H9v-6H3V9h6z'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.1'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.1'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.1'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 8v8M8 12h8'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.1'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position:
        4% 25%,
        92% 20%,
        75% 75%,
        18% 80%,
        50% 10%;
    background-size: 72px, 56px, 50px, 48px, 44px;
    opacity: 0.055;
    pointer-events: none;
    z-index: 0;
}

/* Scattered cross repeat pattern in background */
.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='none' stroke='white' stroke-width='0.8' opacity='0.04'%3E%3Cpath d='M30 18h12v12h12v12H42v12H30V42H18V30h12z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 120px 120px;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); margin-bottom: 14px; }
.page-header p  {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.72);
    max-width: 640px;
    margin: 0 auto;
}

/* ─── FORMS ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 24px; }

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 8px;
    color: var(--navy);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-dark);
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: var(--text);
    background: var(--white);
}
.form-control:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(59,102,80,0.12);
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* ─── TABLES ─────────────────────────────────────────────────── */
.table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    margin: 32px 0;
    background: var(--white);
}
.verification-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.94rem;
}
.verification-table th,
.verification-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
}
.verification-table th {
    background: var(--off-white);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--navy);
    width: 30%;
}
.verification-table tr:last-child td,
.verification-table tr:last-child th { border-bottom: none; }

/* ─── ACCORDION ──────────────────────────────────────────────── */
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--ease);
}
.accordion-item:hover { border-color: var(--border-dark); }

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 24px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    transition: var(--ease);
}
.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--green);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.accordion-item.active .accordion-icon { transform: rotate(45deg); }
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: var(--off-white);
}
/* JS sets inline maxHeight on open; CSS provides the 0 base and transition */
.accordion-item.active .accordion-content { /* max-height managed by JS */ }
.accordion-text {
    padding: 0 24px 22px;
    font-size: 0.94rem;
    color: var(--text);
    line-height: 1.65;
}

/* ─── CALLOUT ─────────────────────────────────────────────────── */
.callout {
    background: var(--off-white);
    border-left: 4px solid var(--green);
    padding: 22px;
    border-radius: 0 var(--r-md) var(--r-md) 0;
    margin: 28px 0;
}
.callout h4 { margin-bottom: 8px; }
.callout p  { color: var(--text-muted); font-size: 0.94rem; }

/* ─── POLICY PAGES ───────────────────────────────────────────── */
.policy-container { max-width: 800px; margin: 0 auto; padding: 60px 24px; }
.policy-meta {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
}
.policy-section { margin-bottom: 32px; }
.policy-section h2 { font-size: 1.45rem; margin-bottom: 14px; color: var(--navy); }
.policy-section p  { margin-bottom: 14px; }
.policy-section ul { margin-bottom: 14px; padding-left: 22px; }
.policy-section li { margin-bottom: 8px; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
    /* Multi-layer premium background:
       1. Dot grid (CSS only, no SVG)
       2. Green radial glow – bottom-left
       3. Subtle green glow – top-right
       4. Deep navy base gradient */
    background:
        radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px),
        radial-gradient(ellipse 65% 55% at -2% 105%, rgba(59,102,80,0.28) 0%, transparent 58%),
        radial-gradient(ellipse 45% 40% at 102% -5%, rgba(59,102,80,0.13) 0%, transparent 55%),
        linear-gradient(158deg, #0b1929 0%, #0F1E36 45%, #0c1e14 100%);
    background-size:
        26px 26px,
        100% 100%,
        100% 100%,
        100% 100%;
    color: var(--white);
    border-top: 3px solid var(--green);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

/* Large wellness cross watermark — pinned bottom-right */
.site-footer::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    bottom: -110px;
    right: -80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='0.6' stroke-linejoin='round'%3E%3Cpath d='M9 3h6v6h6v6h-6v6H9v-6H3V9h6z'/%3E%3C/svg%3E");
    background-size: 420px 420px;
    background-repeat: no-repeat;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

/* Thin radial accent glow below the top border */
.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 120px;
    background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(59,102,80,0.18) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.site-footer > * { position: relative; z-index: 1; }


.footer-top    { padding: 72px 0 40px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-bottom { padding: 36px 0; background: #0A1424; }

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
}
@media (min-width: 768px)  { .footer-container { grid-template-columns: 2fr 1fr 1fr; } }
@media (min-width: 1024px) { .footer-container { grid-template-columns: 2.5fr 1.5fr 1.5fr 2fr; } }

.footer-brand-section { display: flex; flex-direction: column; gap: 14px; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
}
.footer-logo:hover { color: var(--white); }

.footer-tagline { font-weight: 600; color: var(--green-light); font-size: 0.9rem; line-height: 1.4; }
.footer-desc    { color: rgba(255,255,255,0.50); line-height: 1.55; font-size: 0.88rem; }

.footer-title {
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: color 0.2s, padding-left 0.2s; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-address { color: rgba(255,255,255,0.60); margin-bottom: 14px; font-size: 0.9rem; }
.footer-email a { color: var(--green-light); font-weight: 500; }
.footer-email a:hover { color: var(--white); }

.footer-bottom .flex-column { display: flex; flex-direction: column; gap: 20px; }
.footer-disclaimers {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding-bottom: 20px;
}
.medical-disclaimer,
.charity-disclaimer {
    font-size: 0.76rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.35);
}
.medical-disclaimer strong,
.charity-disclaimer strong { color: rgba(255,255,255,0.60); }
.footer-copyright { color: rgba(255,255,255,0.30); font-size: 0.78rem; }

/* ─── IMAGE WRAP ─────────────────────────────────────────────── */
.img-wrap {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-lg);
    background: var(--beige);
    aspect-ratio: 4/3;
}
.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* ─── ACCESSIBILITY UTILITIES ────────────────────────────────── */
main:focus { outline: none; } /* skip-link programmatic focus (skip-link programmatic focus only) */

/* ─── RESPONSIVE: hide slider arrows on very small screens ───── */
@media (max-width: 479px) {
    .hs-arrow { display: none; }
}

/* ─── FOOTER: 2×2 at tablet ─────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1023px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ─── FORM SUCCESS ───────────────────────────────────────────── */
.form-success-box {
    display: none;
    background: #E6F4EA;
    border: 1px solid #A3E2B8;
    color: #137333;
    padding: 24px;
    border-radius: var(--r-md);
    margin-top: 24px;
    text-align: center;
}
.form-success-box h4 { color: #137333; margin-bottom: 8px; }

/* =================================================================
   PRODUCTS PAGE & MODAL STYLES
   ================================================================= */
.products-hero {
    padding: 100px 0 60px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-main) 100%);
    position: relative;
    overflow: hidden;
}
.products-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(circle at 10% 20%, rgba(46, 117, 89, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(26, 74, 56, 0.03) 0%, transparent 40%);
    pointer-events: none;
}
.products-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-family: var(--f-display);
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.15;
}
.products-hero p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto;
}

/* Category Strip */
.category-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
    padding: 0 16px;
}
.category-pill {
    padding: 8px 18px;
    background: var(--off-white);
    border: 1px solid var(--border-color);
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}
.category-pill:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--bg-warm);
    transform: translateY(-1px);
}

/* Product Cards */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: rgba(46, 117, 89, 0.2);
}
.product-card .img-wrap {
    aspect-ratio: 1/1;
    border-radius: 0;
    box-shadow: none;
    background: var(--bg-warm);
    overflow: hidden;
}
.product-card .img-wrap img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .img-wrap img {
    transform: scale(1.05);
}
.product-content-wrap {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-cat-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}
.product-card h3 {
    font-family: var(--f-display);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}
.product-card .desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.product-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding: 0;
}
.product-highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-main);
}
.product-highlights svg {
    flex-shrink: 0;
    color: var(--green);
}

/* Modals */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.pm-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 30, 24, 0.55);
    backdrop-filter: blur(6px);
}
.pm-container {
    position: relative;
    width: 90%;
    max-width: 880px;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--r-xl);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    transform: scale(0.92) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10001;
    border: 1px solid var(--border-color);
}
.product-modal.active .pm-container {
    transform: scale(1) translateY(0);
}
.pm-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--off-white);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10002;
    padding: 0;
    line-height: 1;
}
.pm-close:hover {
    background: var(--bg-warm);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.pm-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
@media (min-width: 768px) {
    .pm-body {
        grid-template-columns: 1.1fr 1.2fr;
    }
}
.pm-visual-side {
    background: var(--bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-bottom: 1px solid var(--border-color);
}
@media (min-width: 768px) {
    .pm-visual-side {
        border-bottom: none;
        border-right: 1px solid var(--border-color);
        padding: 48px;
    }
}
.pm-visual-side img {
    width: 100%;
    height: auto;
    border-radius: var(--r-md);
    box-shadow: var(--sh-md);
    aspect-ratio: 1/1;
    object-fit: cover;
}
.pm-details-side {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 768px) {
    .pm-details-side {
        padding: 48px;
    }
}
.pm-details-side .product-cat-label {
    margin-bottom: 10px;
}
.pm-details-side h2 {
    font-family: var(--f-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.25;
}
.pm-details-side .desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.pm-features-list {
    margin-bottom: 28px;
}
.pm-features-list h4 {
    font-family: var(--f-display);
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.pm-features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pm-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-main);
}
.pm-features-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--green);
}
.pm-disclaimer-box {
    background: var(--bg-warm);
    border-left: 3px solid var(--secondary-color);
    padding: 14px 18px;
    border-radius: 0 var(--r-md) var(--r-md) 0;
    margin-bottom: 28px;
}
.pm-disclaimer-box p {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-muted);
}
.pm-disclaimer-box p strong {
    color: var(--text-main);
}
