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

:root {
    /* Brand teal — used sparingly (CTAs + logo only) */
    --primary: #31b898;
    --primary-light: #5EC9AE;
    --primary-dark: #28967C;
    --teal: #31b898;
    --teal-light: #5EC9AE;
    --teal-dim: #28967C;
    --teal-pale: #EDF6F3;
    --teal-mist: #F5FAF8;

    /* Muted warm accent — dusty terracotta/rose (editorial, feminine) */
    --secondary: #B8897A;
    --secondary-light: #E8D4CC;
    --secondary-dark: #9A7065;
    --rose-gold: #B8897A;
    --rose-light: #E8D4CC;
    --rose-pale: #F5EDE8;

    /* Violet accent — sparingly for categorical variety */
    --violet: #9B87C8;
    --violet-deep: #5A4880;
    --violet-pale: rgba(100,80,140,0.10);

    /* Warm neutrals */
    --mint: #E8DDD4;
    --sand: #FDFAF7;
    --sand-mid: #F5EFE8;
    --sand-deep: #E8DDD4;
    --section-alt: #E8DDD4;
    --lime: #FDFAF7;
    --peach: #E8D4CC;

    /* Dark anchors */
    --forest: #1C3832;
    --forest-mid: #2A4F47;
    --dark: #1A2420;
    --mid: #4A5E58;
    --muted: #5E7A75;
    --subtle: #B0C4BF;

    /* Text colors */
    --text-dark: #1A2420;
    --text-medium: #2E3F3A;
    --text-light: #7A9490;

    /* Surfaces — warm cream throughout */
    --off-white: #FDFAF7;
    --white: #FDFAF7;
    --card-bg: #FDFAF7;
    --glass: rgba(253, 250, 247, 0.8);
    --glass-border: rgba(232, 221, 212, 0.4);
    --surface: #FDFAF7;
    --background: #FDFAF7;

    /* Shadows — forest-tinted, warm */
    --shadow-sm: 0 2px 12px rgba(26, 36, 32, 0.06);
    --shadow-md: 0 8px 32px rgba(26, 36, 32, 0.10);
    --shadow-lg: 0 20px 56px rgba(26, 36, 32, 0.13);
    --shadow-xl: 0 28px 64px rgba(26, 36, 32, 0.16);
    --shadow-glow: 0 0 40px rgba(184, 137, 122, 0.18);
    --shadow: 0 4px 16px rgba(26, 36, 32, 0.08);

    /* Border radius */
    --radius: 12px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-btn: 100px;

    /* Typography — fonts */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Jost', system-ui, sans-serif;

    /* Typography — scale (desktop) */
    --type-display: clamp(40px, 4.5vw, 64px);   /* Hero H1 */
    --type-h1: clamp(32px, 3.2vw, 48px);         /* Section H2 */
    --type-h2: clamp(22px, 2.2vw, 32px);          /* Sub-section headings */
    --type-h3: 20px;                               /* Card / step titles */
    --type-body-lg: 18px;                          /* Lead paragraphs */
    --type-body: 16px;                             /* Body text */
    --type-small: 14px;                            /* Captions, meta */
    --type-caption: 13px;                          /* Labels, tags, legal */

    /* Typography — line heights */
    --lh-tight: 1.1;    /* Headings */
    --lh-snug: 1.3;     /* Card titles */
    --lh-body: 1.7;     /* Body text */
    --lh-loose: 1.75;   /* Lead paragraphs */
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--off-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--forest);
    color: white;
    text-align: center;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 44px;
    overflow: hidden;
}

.announcement-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 20px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    position: absolute;
    inset: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.announcement-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.announcement-slide:hover {
    opacity: 0.9;
}

.announcement-slide .announcement-highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 10px;
    border-radius: 4px;
    margin: 0 6px;
    display: inline-block;
}

.announcement-slide .announcement-cta {
    margin-left: 8px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

body.has-announcement .header {
    top: 44px;
}

body.has-announcement .hero {
    padding-top: 240px;
}

/* Content page heroes — announcement bar clearance */
body.has-announcement .blog-hero,
body.has-announcement .recipes-hero,
body.has-announcement .vc-hero {
    padding-top: 200px;
}

body.has-announcement .ld-hero-content {
    padding-top: 184px;
}

/* Breadcrumb bar — base fixed-nav clearance + announcement override */
.breadcrumb-bar {
    margin-top: 70px;
}

body.has-announcement .breadcrumb-bar {
    margin-top: 140px;
}

@media (max-width: 768px) {
    .announcement-bar {
        font-size: 13px;
        padding: 8px 16px;
    }

    body.has-announcement .header {
        top: 38px;
    }

    body.has-announcement .hero {
        padding-top: 190px;
    }

    body.has-announcement .blog-hero,
    body.has-announcement .recipes-hero,
    body.has-announcement .vc-hero {
        padding-top: 140px;
    }

    body.has-announcement .breadcrumb-bar {
        margin-top: 96px;
    }
}

/* Typography — mobile scale override */
@media (max-width: 768px) {
    :root {
        --type-display: 36px;
        --type-h1: 28px;
        --type-h2: 22px;
        --type-h3: 18px;
        --type-body-lg: 17px;
        --type-body: 15px;
    }
}

/* Typography */
.serif {
    font-family: var(--font-serif);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

/* Dark header variant for pages with hero images */
.header-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100% + 40px);
    background: linear-gradient(to bottom, rgba(26,36,32,0.65) 0%, rgba(26,36,32,0.25) 70%, transparent 100%);
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.header-dark.scrolled::before {
    opacity: 0;
}

.header-dark .utility-nav {
    background: rgba(26, 36, 32, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.header-dark .utility-nav a {
    color: rgba(255, 255, 255, 0.85);
}

.header-dark .utility-nav a:hover {
    color: white;
}

.header-dark .utility-nav .phone {
    color: rgba(255, 255, 255, 0.95);
}

.header-dark .nav-menu > li > a {
    color: rgba(255, 255, 255, 0.9);
}

.header-dark .nav-menu > li > a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}
.header-dark .nav-menu > li > a::after {
    background: rgba(255, 255, 255, 0.8);
}

/* When scrolled, revert to normal dark text on white bg */
.header-dark.scrolled .utility-nav {
    background: var(--mint);
}

.header-dark.scrolled .utility-nav a {
    color: var(--text-dark);
}

.header-dark.scrolled .utility-nav a:hover {
    color: var(--primary);
}

.header-dark.scrolled .utility-nav .phone {
    color: var(--primary-dark);
}

.header-dark.scrolled .nav-menu > li > a {
    color: var(--text-dark);
}

.header-dark.scrolled .nav-menu > li > a:hover {
    background: rgba(26, 36, 32, 0.04);
    color: var(--dark);
}

.header-dark .snipcart-checkout.nav-cart-btn {
    color: #fff;
}
.header-dark .snipcart-checkout.nav-cart-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.header-dark.scrolled .snipcart-checkout.nav-cart-btn {
    color: var(--text-dark);
}
.header-dark.scrolled .snipcart-checkout.nav-cart-btn:hover {
    background: rgba(26, 36, 32, 0.04);
    color: var(--dark);
}

.utility-nav {
    background: var(--mint);
    padding: 12px 0;
    font-size: 13px;
    line-height: 1;
}

.utility-nav .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;
}

.utility-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.utility-nav a:hover {
    color: var(--primary);
}

.utility-nav .phone {
    color: var(--primary-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.utility-nav .phone svg {
    flex-shrink: 0;
}

.main-nav {
    padding: 20px 0;
    transition: padding 0.3s ease;
}

.header.scrolled .main-nav {
    padding: 16px 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 44px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

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

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: block;
    position: relative;
}
.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: width 0.25s ease;
    transform: translateX(-50%);
}
.nav-menu > li > a:hover::after {
    width: 24px;
}

.nav-menu > li > a:hover {
    background: rgba(26, 36, 32, 0.06);
    color: var(--primary-dark);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    border-radius: 16px;
    padding: 12px;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    margin-top: 8px;
    border: 1px solid rgba(26, 36, 32, 0.04);
}

.nav-menu > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 12px 16px;
    color: var(--text-medium);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.dropdown a:hover {
    background: var(--mint);
    color: var(--primary-dark);
    padding-left: 20px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(47, 185, 152, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 185, 152, 0.45);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 36, 32, 0.1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white) !important;
    padding: 12px 24px !important;
    border-radius: 100px !important;
    box-shadow: 0 4px 14px rgba(47, 185, 152, 0.3);
    transition: all 0.3s ease !important;
}
.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 185, 152, 0.45);
}

/* Hero Section */
.hero {
    padding: 200px 0 120px;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(47, 185, 152, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(28, 56, 50, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mint);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: var(--type-display);
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: var(--type-body-lg);
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: var(--lh-body);
    font-weight: 400;
}

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

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(26, 36, 32, 0.08);
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: var(--type-small);
    color: var(--text-medium);
    font-weight: 500;
}

.hero-visual {
    position: relative;
}

.hero-video-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.hero-video-wrapper video {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
}

.hero-badge-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0 0 24px 24px;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 10;
}

.hero-badge-bar .badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-badge-bar .badge-item .icon {
    width: 36px;
    height: 36px;
    background: var(--mint);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-badge-bar .badge-item h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.hero-badge-bar .badge-item p {
    font-size: var(--type-caption);
    color: var(--text-medium);
    margin: 0;
    line-height: 1.2;
}

.hero-badge-bar .badge-divider {
    width: 1px;
    height: 36px;
    background: rgba(26, 36, 32, 0.12);
    margin: 0 28px;
}

/* Section Styling */
section {
    padding: 96px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    font-size: var(--type-caption);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 1.5px;
    background: var(--teal);
    opacity: 0.6;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    flex-shrink: 0;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: var(--type-h1);
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-header p {
    font-size: var(--type-body-lg);
    color: var(--text-medium);
    line-height: var(--lh-body);
}

/* Value Proposition */
.value-prop {
    background: var(--white);
}

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

.value-card {
    background: var(--off-white);
    padding: 40px 32px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
    border-color: rgba(47, 185, 152, 0.1);
}

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

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--mint) 0%, rgba(207, 234, 223, 0.5) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
}

.value-card h3 {
    font-size: var(--type-h3);
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 600;
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 15px;
}

/* Video Banner Section */
.video-banner {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
    background: var(--secondary-dark);
}

.video-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.video-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,36,32,0.1) 0%, transparent 30%, transparent 70%, rgba(26,36,32,0.1) 100%);
    pointer-events: none;
}

/* Award Strip */
.award-strip {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, #f0f4fa 50%, var(--off-white) 100%);
}

.award-strip .container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 900px;
}

.award-strip-text {
    flex: 1;
}

.award-strip-text h2 {
    font-family: var(--font-serif);
    font-size: var(--type-h1);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 16px;
    font-variant-ligatures: no-common-ligatures;
}

.award-strip-text h2 span {
    color: var(--secondary);
}

.award-strip-text p {
    font-size: var(--type-body);
    color: var(--text-medium);
    line-height: var(--lh-body);
    max-width: 480px;
}

.award-strip-badge {
    flex-shrink: 0;
}

.award-strip-badge img {
    width: 180px;
    height: auto;
}

@media (max-width: 768px) {
    .award-strip .container {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .award-strip-text p {
        margin: 0 auto;
    }

    .award-strip-badge img {
        width: 150px;
    }
}

/* Programs Section */
.programs {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.program-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.4s ease;
    border: 1px solid rgba(26, 36, 32, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 36, 32, 0.08);
}

.program-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--forest-mid) 0%, var(--secondary) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(26, 36, 32, 0.14);
}

.program-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.program-card p {
    color: var(--text-medium);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.program-card a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.program-card a:hover {
    gap: 10px;
}

.programs-cta {
    text-align: center;
    margin-top: 48px;
}

/* Success Stories */
.success-stories {
    background: var(--secondary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.success-stories::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(47, 185, 152, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.success-stories .section-label {
    color: var(--peach);
}

.success-stories .section-header h2 {
    color: var(--white);
}

.success-stories .section-header p {
    color: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.story-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.story-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-lg);
}

.story-metric {
    padding: 48px 32px;
    text-align: center;
    position: relative;
}

.story-metric::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 32px;
    right: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.metric-value {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 600;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: var(--type-small);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.story-content {
    padding: 32px;
}

.story-content .name {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.story-content .program {
    font-size: 13px;
    color: var(--peach);
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.story-content .quote {
    color: white;
    font-style: italic;
    line-height: var(--lh-body);
    font-size: var(--type-body);
}

.stories-cta {
    text-align: center;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}

/* Education Section */
.education {
    background: var(--white);
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ── Shared Content Card System ──────────────────────────── */
/* Used by: homepage education grid, blog, recipes, virtual classes */

.content-card {
    background: var(--background, var(--card-bg));
    border-radius: var(--radius, 12px);
    box-shadow: var(--shadow, 0 4px 16px rgba(26,36,32,0.08));
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.content-card a {
    text-decoration: none;
    color: inherit;
}

.content-card a.content-card-cta,
.content-card button.content-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    background: none;
    border: none;
    padding: 4px 0 0;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: gap 0.2s ease;
    margin-top: auto;
}

.content-card a.content-card-cta:hover,
.content-card button.content-card-cta:hover {
    gap: 10px;
}

/* ── Video modal overlay (global — used on virtual-classes + webinar detail) ── */
.video-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 36, 32, 0.88);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: videoModalIn 0.2s ease;
}

.video-modal-overlay[hidden] {
    display: none;
}

@keyframes videoModalIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.video-modal-inner {
    position: relative;
    width: 100%;
    max-width: 960px;
}

.video-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    opacity: 0.85;
    transition: opacity 0.15s;
}

.video-modal-close:hover {
    opacity: 1;
}

.video-modal-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 24px 80px rgba(26, 36, 32, 0.6);
}

.video-modal-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 640px) {
    .video-modal-inner { max-width: 100%; }
    .video-modal-close { top: -40px; }
}

.content-card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #F5EDE8;
    position: relative;
}

.content-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.content-card-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5EDE8;
}

.content-card:hover .content-card-image img {
    transform: scale(1.04);
}

.content-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.content-card-category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
}

.content-card-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.35;
    margin: 0;
}

.content-card-excerpt {
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 4px 0 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(26, 36, 32, 0.06);
}

.content-card.skeleton:hover {
    transform: none;
    box-shadow: var(--shadow, 0 4px 16px rgba(26,36,32,0.08));
}

/* Getting Started Steps */
.getting-started {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    margin-bottom: 56px;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 56px;
    left: calc(16.66% + 56px);
    right: calc(16.66% + 56px);
    height: 1px;
    background: linear-gradient(90deg, var(--sand-deep), var(--secondary-light), var(--sand-deep));
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 112px;
    height: 112px;
    background: linear-gradient(135deg, var(--forest) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 12px 32px rgba(47, 185, 152, 0.35);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed rgba(47, 185, 152, 0.3);
}

.step-card h3 {
    font-size: var(--type-h3);
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.step-card p {
    color: var(--text-medium);
    line-height: var(--lh-body);
    font-size: var(--type-body);
    max-width: 280px;
    margin: 0 auto;
}

.steps-cta {
    text-align: center;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 50%, #2A5E52 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: var(--type-h1);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: var(--type-body-lg);
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: var(--lh-body);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--primary-dark);
    padding: 15px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(26, 36, 32, 0.15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(26, 36, 32, 0.2);
}

.btn-outline-white-cta {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    padding: 15px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.03em;
    border: 2px solid rgba(255, 255, 255, 0.28);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-white-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 40%, #2A5E52 100%);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 13px;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: 13px;
    margin-bottom: 24px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.footer-column ul li a:hover {
    color: rgba(255, 255, 255, 1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
}

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

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

.footer-links a:hover {
    color: rgba(255, 255, 255, 1);
}

/* Site Disclaimer (above footer) */
.site-disclaimer {
    background: var(--sand-mid);
    padding: 40px 24px;
}

.site-disclaimer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-text {
    font-family: var(--sans);
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-medium);
}

.disclaimer-text p {
    margin: 0 0 8px;
}

.disclaimer-text p:last-child {
    margin-bottom: 0;
}

/* LegitScript badge in footer */
.footer-legitscript {
    margin-top: 24px;
}

.footer-legitscript img {
    height: 60px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.footer-legitscript img:hover {
    opacity: 1;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 6px 0;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 100px 32px 32px;
    overflow-y: auto;
    flex-direction: column;
}

.mobile-menu-panel.active {
    display: flex;
}

.mobile-menu-panel a {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(26, 36, 32, 0.06);
}

.mobile-menu-panel a:hover {
    color: var(--secondary);
}

.mobile-menu-panel .btn-primary {
    margin-top: 24px;
    text-align: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-menu-toggle::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-light);
    border-bottom: 2px solid var(--text-light);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mobile-menu-toggle.open::after {
    transform: rotate(-135deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mobile-submenu.open {
    max-height: 500px;
}

.mobile-submenu a {
    padding: 12px 0 12px 20px !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: var(--text-medium) !important;
    border-bottom: 1px solid rgba(26, 36, 32, 0.03) !important;
}

.mobile-submenu a:hover {
    color: var(--secondary) !important;
}

/* ========================
   LOCATIONS LISTING PAGE
   ======================== */
.locations-hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    text-align: center;
}

.locations-hero h1 {
    font-family: var(--font-serif);
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.locations-hero p {
    font-size: var(--type-body-lg);
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 40px;
}

.location-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(26, 36, 32, 0.06);
    transition: all 0.4s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 36, 32, 0.08);
}

.location-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--mint) 0%, var(--off-white) 100%);
}

.location-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.location-card-body {
    padding: 32px;
}

.location-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.location-card-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
}

.location-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
}

.location-status.open {
    background: rgba(47, 185, 152, 0.1);
    color: var(--primary-dark);
}

.location-status.closed {
    background: rgba(26, 36, 32, 0.05);
    color: var(--text-light);
}

.location-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.location-status.open .location-status-dot {
    background: var(--primary);
}

.location-status.closed .location-status-dot {
    background: var(--text-light);
}

.location-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-medium);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.location-detail-row svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.location-detail-row a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-detail-row a:hover {
    color: var(--primary);
}

.location-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(26, 36, 32, 0.07);
}

.location-service-tag {
    font-size: 13px;
    font-weight: 500;
    padding: 4px 12px;
    background: var(--mint);
    color: var(--primary-dark);
    border-radius: 100px;
}

.location-card-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.location-card-actions .btn-primary,
.location-card-actions .btn-secondary {
    flex: 1;
    justify-content: center;
    padding: 12px 20px;
    font-size: 13px;
}

/* ========================
   LOCATION DETAIL PAGE
   ======================== */

/* Hero — Split layout with clinic photo background */
.ld-hero {
    position: relative;
    min-height: 260px;
    overflow: hidden;
}
.ld-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ld-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.ld-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28,56,50,0.88) 0%, rgba(28,56,50,0.6) 50%, rgba(28,56,50,0.3) 100%);
    z-index: 1;
}
.ld-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 32px 32px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: end;
}
.ld-hero-breadcrumb {
    font-size: var(--type-caption);
    font-weight: 400;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}
.ld-hero-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}
.ld-hero-breadcrumb a:hover {
    color: #fff;
}
.ld-hero h1 {
    font-family: var(--font-serif);
    font-size: var(--type-display);
    font-weight: 400;
    line-height: 1.04;
    color: #fff;
    margin-bottom: 12px;
}
.ld-hero-sub {
    font-size: var(--type-body);
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 24px;
}
.ld-hero-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.ld-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: var(--type-caption);
    font-weight: 400;
    color: #fff;
    transition: background 0.25s;
}
.ld-hero-pill:hover {
    background: rgba(255,255,255,0.18);
}
.ld-hero-pill svg {
    color: var(--primary-light);
    flex-shrink: 0;
}
.ld-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.ld-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(47,185,152,0.35);
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}
.ld-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}
.ld-btn-primary:hover::before { transform: translateX(100%); }
.ld-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}
.ld-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 13px 24px;
    border-radius: 100px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.25s;
}
.ld-btn-ghost:hover {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

/* Status badge */
.ld-status {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 20px 24px;
    text-align: center;
    min-width: 200px;
    transition: transform 0.35s, border-color 0.35s;
}
.ld-status:hover {
    transform: translateY(-4px);
    border-color: rgba(47,185,152,0.3);
}
.ld-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 auto 10px;
    animation: ld-pulse 2s ease-in-out infinite;
}
.ld-status-dot.open { background: #4ade80; }
.ld-status-dot.closed { background: var(--secondary-dark); }
@keyframes ld-pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.ld-status-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
}
.ld-status-sub {
    font-size: var(--type-caption);
    font-weight: 400;
    color: rgba(255,255,255,0.70);
}

/* Lifted Info Cards — 3-column overlapping hero */
.ld-info {
    background: var(--off-white);
    padding: 0 0 72px;
}
.ld-info-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    transform: translateY(-40px);
    position: relative;
    z-index: 3;
}
.ld-info-card {
    background: #fff;
    border: 1px solid var(--sand-deep);
    padding: 32px 28px;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
}
.ld-info-card:first-child { border-radius: 28px 0 0 28px; }
.ld-info-card:last-child { border-radius: 0 28px 28px 0; }
.ld-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(26,36,32,0.08);
}
.ld-info-label {
    font-size: var(--type-caption);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ld-info-label svg { flex-shrink: 0; }
.ld-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-medium);
}
.ld-contact-item:last-of-type { margin-bottom: 0; }
.ld-contact-item svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.ld-contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}
.ld-contact-item a:hover { text-decoration: underline; }
.ld-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 16px;
    transition: all 0.25s;
}
.ld-directions-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}
.ld-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--sand-deep);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-medium);
}
.ld-hours-row:last-child { border-bottom: none; }
.ld-hours-row.today {
    font-weight: 500;
    color: var(--text-dark);
    background: var(--mint);
    margin: 0 -12px;
    padding: 8px 12px;
    border-radius: 8px;
}
.ld-hours-note {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 2px;
}
.ld-map-card .ld-map-frame {
    border-radius: 16px;
    overflow: hidden;
    height: calc(100% - 10px);
    min-height: 200px;
    margin-bottom: 10px;
}
.ld-map-card .ld-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Services — 4-column grid */
.ld-services {
    background: var(--sand);
    padding: 64px 0;
}
.ld-services-header {
    text-align: center;
    margin-bottom: 36px;
}
.ld-services-header .tag {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
}
.ld-services-header .tag-line {
    width: 26px;
    height: 1.5px;
    background: currentColor;
    opacity: 0.6;
}
.ld-services-header h2 {
    font-family: var(--font-serif);
    font-size: var(--type-h1);
    font-weight: 400;
    color: var(--text-dark);
}
.ld-services-header h2 em {
    font-style: italic;
    color: var(--primary);
}
.ld-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.ld-service {
    background: #fff;
    border: 1.5px solid var(--sand-deep);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s, border-color 0.35s;
}
.ld-service:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(26,36,32,0.07);
    border-color: rgba(47,185,152,0.2);
}
.ld-service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--mint);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: transform 0.3s;
}
.ld-service:hover .ld-service-icon { transform: scale(1.08); }
.ld-service h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.ld-service p {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.5;
}
.ld-service-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--type-caption);
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    margin-top: 8px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: gap 0.3s;
}
.ld-service:hover .ld-service-link { gap: 8px; }

/* Testimonials — 3-column grid */
.ld-testi {
    background: var(--off-white);
    padding: 64px 0;
}
.ld-testi-header {
    text-align: center;
    margin-bottom: 40px;
}
.ld-testi-header h2 {
    font-family: var(--font-serif);
    font-size: var(--type-h1);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.ld-testi-header h2 em {
    font-style: italic;
    color: var(--primary);
}
.ld-testi-header p {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-light);
}
.ld-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.ld-testi-card {
    background: #fff;
    border: 1.5px solid var(--sand-deep);
    border-radius: 28px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s, border-color 0.35s;
}
.ld-testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26,36,32,0.08);
    border-color: rgba(47,185,152,0.18);
}
.ld-testi-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 16px;
    font-family: var(--font-serif);
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
    color: rgba(47,185,152,0.06);
    pointer-events: none;
}
.ld-testi-stars {
    display: flex;
    gap: 2px;
    color: var(--secondary-dark);
    margin-bottom: 14px;
}
.ld-testi-quote {
    font-family: var(--font-serif);
    font-size: 15px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.55;
    margin-bottom: 16px;
}
.ld-testi-who {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.3s;
}
.ld-testi-card:hover .ld-testi-who { color: var(--primary); }

/* CTA Band */
.ld-cta {
    padding: 0 32px 80px;
    background: var(--off-white);
}
.ld-cta-band {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(120deg, var(--forest), var(--forest-mid) 35%, #3A6A60 65%, var(--forest));
    background-size: 200% 200%;
    animation: ld-grad 10s ease infinite;
    border-radius: 28px;
    padding: 56px 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
@keyframes ld-grad { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
.ld-cta-band::before {
    content: '';
    position: absolute;
    top: -50%;
    right: 5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47,185,152,0.09), transparent 70%);
}
.ld-cta-left {
    position: relative;
    z-index: 1;
}
.ld-cta-left h2 {
    font-family: var(--font-serif);
    font-size: var(--type-h2);
    font-weight: 400;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.1;
}
.ld-cta-left h2 em {
    font-style: italic;
    color: var(--primary-light);
}
.ld-cta-left p {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}
.ld-cta-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.ld-cta-ghost {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.ld-cta-ghost:hover { color: rgba(255,255,255,0.6); }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

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

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

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .value-grid,
    .programs-grid,
    .stories-grid,
    .education-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ld-info-grid {
        grid-template-columns: 1fr;
        transform: none;
        padding: 32px;
    }
    .ld-info-card,
    .ld-info-card:first-child,
    .ld-info-card:last-child { border-radius: 20px; }
    .ld-services-grid { grid-template-columns: 1fr 1fr; }
    .ld-testi-grid { grid-template-columns: 1fr; }
    .ld-cta-band { grid-template-columns: 1fr; padding: 40px 28px; }
    .ld-hero-content { grid-template-columns: 1fr; padding: 130px 32px 32px; }
    .ld-hero-right { display: none; }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .stat {
        text-align: center;
    }

    section {
        padding: 64px 0;
    }

    .value-grid,
    .programs-grid,
    .stories-grid,
    .education-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }

    .steps-container::before {
        display: none;
    }

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

    .footer-brand p {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .container {
        padding: 0 20px;
    }

    .utility-nav {
        display: none;
    }

    .hero-video-wrapper video {
        height: 320px;
    }

    .hero-badge-bar {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }

    .hero-badge-bar .badge-divider {
        display: none;
    }

    .locations-hero {
        padding: 120px 0 60px;
    }

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

    .location-card-actions {
        flex-direction: column;
    }

    .ld-hero-content { padding: 120px 20px 24px; }
    .ld-info-grid { padding: 24px 20px; }
    .ld-services-grid { grid-template-columns: 1fr; }
    .ld-cta { padding: 0 20px 64px; }
    .ld-cta-band { padding: 36px 24px; }

    .location-info-grid {
        grid-template-columns: 1fr;
    }

    .location-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .value-card,
    .program-card,
    .story-card,
    .education-card,
    .step-card {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease forwards;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .value-card:nth-child(1) { animation-delay: 0.1s; }
    .value-card:nth-child(2) { animation-delay: 0.2s; }
    .value-card:nth-child(3) { animation-delay: 0.3s; }

    .program-card:nth-child(1) { animation-delay: 0.1s; }
    .program-card:nth-child(2) { animation-delay: 0.2s; }
    .program-card:nth-child(3) { animation-delay: 0.3s; }
    .program-card:nth-child(4) { animation-delay: 0.4s; }

    .story-card:nth-child(1) { animation-delay: 0.1s; }
    .story-card:nth-child(2) { animation-delay: 0.2s; }
    .story-card:nth-child(3) { animation-delay: 0.3s; }

    .education-card:nth-child(1) { animation-delay: 0.1s; }
    .education-card:nth-child(2) { animation-delay: 0.2s; }
    .education-card:nth-child(3) { animation-delay: 0.3s; }
    .education-card:nth-child(4) { animation-delay: 0.4s; }

    .step-card:nth-child(1) { animation-delay: 0.1s; }
    .step-card:nth-child(2) { animation-delay: 0.2s; }
    .step-card:nth-child(3) { animation-delay: 0.3s; }
}

/* ======================== */
/* REVIEWS CAROUSEL         */
/* ======================== */
.reviews-section {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 50%, var(--forest) 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(47, 185, 152, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.reviews-section::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(65, 107, 169, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.reviews-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 3.2vw, 48px);
    font-weight: 400;
    text-align: center;
    margin-bottom: 8px;
    color: white;
}

.reviews-section .section-subtitle {
    text-align: center;
    color: white;
    font-size: 16px;
    margin-bottom: 40px;
}

.reviews-carousel-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

.reviews-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    flex: 0 0 100%;
    min-width: 0;
    padding: 8px;
    box-sizing: border-box;
}

.review-card-inner {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 48px 40px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.review-card-inner::before {
    content: "\201C";
    font-family: var(--font-serif);
    font-size: 120px;
    line-height: 1;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 24px;
}

.review-stars {
    color: var(--rose-gold);
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    position: relative;
}

.review-text {
    font-size: 17px;
    line-height: 1.8;
    color: white;
    font-style: italic;
    margin-bottom: 24px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.review-author {
    font-weight: 600;
    color: white;
    font-size: 15px;
    position: relative;
}

.review-author::before {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto 12px;
    border-radius: 1px;
}

.review-author span {
    display: block;
    font-weight: 400;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
}

.reviews-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.reviews-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}

.reviews-carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.reviews-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.reviews-carousel-nav svg {
    stroke: rgba(255, 255, 255, 0.7);
}

.reviews-carousel-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.reviews-carousel-nav:hover svg { stroke: white; }

.reviews-carousel-nav.prev { left: 0; }
.reviews-carousel-nav.next { right: 0; }

/* Get Started Block */
.location-get-started {
    margin-top: 60px;
    text-align: center;
}

.location-get-started h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    margin-bottom: 12px;
}

.location-get-started p {
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .reviews-section { padding: 64px 0; }
    .reviews-carousel-wrapper { padding: 0 16px; }
    .review-card { padding: 4px; }
    .review-card-inner { padding: 32px 20px 28px; }
    .review-card-inner::before { font-size: 80px; top: -5px; left: 12px; }
    .review-text { font-size: 15px; }
    .reviews-carousel-nav { display: none; }
}

/* ======================== */
/* SHOP PAGES               */
/* ======================== */

/* Active shop nav link */
.shop-nav-active {
    color: var(--primary) !important;
    font-weight: 600 !important;
}

/* Shop Hero Banner */
.shop-hero {
    padding: 140px 0 0;
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

body.has-announcement .shop-hero {
    padding-top: 184px;
}

.shop-hero-image {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 420px;
}

.shop-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: blur(3px) brightness(0.85);
    transform: scale(1.04);
}

.shop-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28,56,50,0.5) 0%, rgba(28,56,50,0.65) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 32px;
    z-index: 2;
}
.shop-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: var(--type-caption);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 14px;
}
.shop-hero-tag-line {
    width: 26px;
    height: 1.5px;
    background: rgba(255,255,255,0.3);
}
.shop-hero-h1 {
    font-family: var(--font-serif);
    font-size: var(--type-display);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px;
}
.shop-hero-h1 em {
    font-style: italic;
    color: var(--primary-light, #5EC9AE);
}
.shop-hero-p {
    font-family: var(--font-sans);
    font-size: var(--type-body);
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 480px;
}

/* Shop Content */
.shop-content {
    padding: 72px 0 0;
    background: var(--off-white);
}

/* Shop Filters */
.shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
}

.shop-filter-btn {
    background: transparent;
    color: var(--text-medium);
    border: 1.5px solid var(--sand-deep);
    padding: 9px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    font-family: var(--font-sans);
    letter-spacing: 0.02em;
}

.shop-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(47, 185, 152, 0.04);
}

.shop-filter-btn.active {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
    box-shadow: 0 4px 16px rgba(28, 56, 50, 0.25);
    font-weight: 600;
}

/* Shop Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s, border-color 0.3s;
    border: 1px solid rgba(26, 36, 32, 0.06);
    box-shadow: 0 2px 12px rgba(28, 56, 50, 0.04);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(28, 56, 50, 0.10);
    border-color: rgba(47, 185, 152, 0.18);
}

.product-card.sold-out {
    opacity: 0.55;
    filter: grayscale(0.3);
}

.product-card.sold-out:hover {
    opacity: 0.75;
    filter: grayscale(0.1);
}

/* Product Card Link */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 1;
}

/* Product Card Actions (Snipcart Add to Cart) */
.product-card .product-card-actions {
    padding: 0 20px 20px;
}

.product-card-cart-btn {
    width: 100%;
    background: var(--forest);
    color: var(--white);
    border: none;
    padding: 12px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    font-family: var(--font-sans);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}
.product-card-cart-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}
.product-card-cart-btn:hover::before {
    transform: translateX(100%);
}

.product-card-cart-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 185, 152, 0.3);
}

.product-card-cart-btn svg {
    stroke: var(--white);
}
.product-card-cart-btn:hover svg {
    stroke: var(--white);
}

/* Snipcart Cart Summary in Nav */
.snipcart-checkout.nav-cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-family: var(--font-sans);
    position: relative;
}

.snipcart-checkout.nav-cart-btn:hover {
    background: rgba(26, 36, 32, 0.04);
    color: var(--dark);
}

.nav-cart-count {
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.product-badge {
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-badge-featured {
    background: var(--primary);
    color: var(--white);
}

.product-badge-sale {
    background: var(--peach);
    color: var(--text-dark);
}

.product-badge-soldout {
    background: rgba(26, 36, 32, 0.6);
    color: var(--white);
}

/* Product Card Image */
.product-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(145deg, #F5F2EE 0%, #EBE6DF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.product-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(28,56,50,0.04) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}
.product-card:hover .product-card-image::after {
    opacity: 1;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card-image img {
    transform: scale(1.06);
}

.product-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #F5F2EE 0%, #EBE6DF 100%);
}

/* Product Card Body */
.product-card-body {
    padding: 18px 20px 20px;
}

.product-card-category {
    font-size: var(--type-caption);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--primary-dark);
    margin-bottom: 6px;
    opacity: 0.7;
}

.product-card-name {
    font-family: var(--font-serif);
    font-size: var(--type-body-lg);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.35;
}

.product-card-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.product-price-current {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--forest);
}

.product-price-compare {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 400;
}

/* Skeleton Loaders */
.product-card.skeleton {
    pointer-events: none;
}

.skeleton-image {
    background: linear-gradient(90deg, var(--sand-mid) 25%, var(--sand-deep) 50%, var(--sand-mid) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    height: 220px;
}

.skeleton-line {
    background: linear-gradient(90deg, var(--sand-mid) 25%, var(--sand-deep) 50%, var(--sand-mid) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    height: 14px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.skeleton-line-short {
    width: 60%;
}

.skeleton-line-price {
    width: 40%;
    height: 20px;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Shop Empty State */
.shop-empty {
    text-align: center;
    padding: 80px 0;
}

.shop-empty svg {
    margin-bottom: 20px;
    opacity: 0.5;
}

.shop-empty h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.shop-empty p {
    color: var(--text-medium);
    font-size: 16px;
}

/* Shop Delivery Banner */
.shop-delivery-banner {
    position: relative;
    overflow: hidden;
    min-height: 380px;
}
.shop-delivery-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.shop-delivery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(28,56,50,0.88) 0%, rgba(28,56,50,0.55) 50%, transparent 100%);
}
.shop-delivery-content {
    max-width: 520px;
    padding: 56px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.shop-delivery-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: var(--type-caption);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.70);
    margin-bottom: 16px;
}
.shop-delivery-tag-line {
    width: 26px;
    height: 1.5px;
    background: rgba(255,255,255,0.25);
}
.shop-delivery-h2 {
    font-family: var(--font-serif);
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 14px;
}
.shop-delivery-h2 em {
    font-style: italic;
    color: var(--primary-light);
}
.shop-delivery-p {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin-bottom: 28px;
}
.shop-delivery-btns {
    display: flex;
    gap: 14px;
    align-items: center;
}
.shop-delivery-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.shop-delivery-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(49,184,152,0.3);
}
.shop-delivery-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 100px;
    border: 1.5px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.75);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.25s;
}
.shop-delivery-btn-outline:hover {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
    background: rgba(255,255,255,0.06);
}

@media (max-width: 768px) {
    .shop-delivery-banner { min-height: auto; }
    .shop-delivery-content { padding: 48px 8px; }
    .shop-delivery-overlay {
        background: linear-gradient(180deg, rgba(28,56,50,0.75) 0%, rgba(28,56,50,0.85) 100%);
    }
    .shop-delivery-btns { flex-direction: column; align-items: flex-start; }
}

/* ======================== */
/* PRODUCT DETAIL PAGE      */
/* ======================== */

/* Breadcrumb */
.product-breadcrumb {
    padding: 160px 0 0;
    background: var(--off-white);
}

body.has-announcement .product-breadcrumb {
    padding-top: 204px;
}

.product-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    padding-bottom: 24px;
}

.product-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.product-breadcrumb a:hover {
    text-decoration: underline;
}

.product-breadcrumb svg {
    opacity: 0.4;
    flex-shrink: 0;
}

/* Product Detail Section */
.product-detail {
    padding: 40px 0 80px;
    background: var(--off-white);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 140px;
}

.product-main-image {
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(26, 36, 32, 0.06);
    margin-bottom: 16px;
}

.product-main-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    padding: 20px;
}

.product-image-placeholder {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--sand-mid) 100%);
}

.product-thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
}

.product-thumbnails:empty {
    display: none;
}

.product-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0;
    background: var(--white);
}

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

.product-thumb.active,
.product-thumb:hover {
    border-color: var(--primary);
}

/* Product Info */
.product-info {
    padding-top: 8px;
}

.product-category-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: opacity 0.2s;
}

.product-category-link:hover {
    opacity: 0.7;
}

.product-info h1 {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Pricing */
.product-pricing {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-detail-price {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
}

.product-detail-compare {
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-detail-save {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    background: var(--mint);
    padding: 4px 12px;
    border-radius: 100px;
}

/* Stock Badge */
.product-stock {
    margin-bottom: 24px;
}

.product-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
}

.product-stock-badge.in-stock {
    background: rgba(47, 185, 152, 0.1);
    color: var(--primary-dark);
}

.product-stock-badge.low-stock {
    background: rgba(254, 203, 139, 0.3);
    color: #b67a1a;
}

.product-stock-badge.out-of-stock {
    background: rgba(26, 36, 32, 0.05);
    color: var(--text-light);
}

/* Description */
.product-description {
    margin-bottom: 32px;
}

.product-description p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
}

/* Actions */
.product-actions {
    margin-bottom: 32px;
}

.product-add-to-cart {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(47, 185, 152, 0.35);
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.product-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(47, 185, 152, 0.45);
}

.product-add-to-cart.disabled {
    background: var(--sand-deep);
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.7;
}

.product-add-to-cart.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Meta */
.product-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-light);
    padding-top: 24px;
    border-top: 1px solid rgba(26, 36, 32, 0.06);
}

.product-meta-sep {
    opacity: 0.3;
}

/* Related Products */
.related-products {
    background: var(--white);
    padding: 96px 0;
}

/* ======================== */
/* SHOP RESPONSIVE          */
/* ======================== */

@media (max-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-gallery {
        position: static;
    }
}

@media (max-width: 768px) {
    .shop-hero {
        padding: 100px 0 0;
    }

    body.has-announcement .shop-hero {
        padding-top: 140px;
    }

    .shop-hero-image {
        height: 320px;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .shop-content {
        padding: 24px 0 80px;
    }

    .shop-filters {
        margin-bottom: 32px;
        gap: 8px;
    }

    .shop-filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .product-card-image {
        height: 220px;
    }

    .product-breadcrumb {
        padding-top: 100px;
    }

    body.has-announcement .product-breadcrumb {
        padding-top: 140px;
    }

    .product-detail {
        padding: 24px 0 60px;
    }

    .product-main-image img {
        height: 350px;
    }

    .product-image-placeholder {
        height: 350px;
    }

    .product-info h1 {
        font-size: 28px;
    }

    .product-detail-price {
        font-size: 28px;
    }

    .product-thumb {
        width: 64px;
        height: 64px;
    }

    .related-products {
        padding: 60px 0;
    }
}

/* ============================================================
   SHARED FORM STYLES — used by HRT, GLP-1, NAD, Lipo-B12
   forms that reference gs-form-* class names
   ============================================================ */
.gs-form-wrapper {
    max-width: 640px;
    margin: 0 auto;
    background: #FFFDF9;
    border: 1px solid #E8DDD4;
    border-radius: 22px;
    padding: 44px 48px;
    box-shadow: 0 8px 32px rgba(28,56,50,0.09);
}

.gs-form-alert {
    display: none;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
}

.gs-form-alert.error-alert {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.gs-form-alert a { color: inherit; font-weight: 500; }

.gs-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.gs-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.gs-form-group label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4A5E58;
}

.gs-form-group .required { color: #B8897A; }

.gs-form-group input,
.gs-form-group select,
.gs-form-group textarea {
    background: #FFFEFB;
    border: 1.5px solid #E8DDD4;
    border-radius: 10px;
    padding: 12px 16px;
    font-family: 'Jost', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #1A2420;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.gs-form-group input::placeholder,
.gs-form-group textarea::placeholder { color: #B0C4BF; }

.gs-form-group input:focus,
.gs-form-group select:focus,
.gs-form-group textarea:focus {
    border-color: #31b898;
    box-shadow: 0 0 0 3px rgba(49,184,152,0.10);
}

.gs-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A9090' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 14px) 50%;
    padding-right: 36px;
    cursor: pointer;
}

.gs-form-error {
    display: none;
    font-size: 13px;
    color: #dc2626;
    margin-top: 3px;
}

.gs-form-group.has-error input,
.gs-form-group.has-error select,
.gs-form-group.has-error textarea {
    border-color: #fca5a5;
}

.gs-form-group.has-error .gs-form-error { display: block; }

.gs-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.gs-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: #31b898;
    cursor: pointer;
    margin-top: 2px;
}

.gs-consent label {
    font-size: 13px;
    font-weight: 400;
    color: #4A5E58;
    line-height: 1.6;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
}

.gs-consent-error {
    display: none;
    font-size: 13px;
    color: #dc2626;
    margin-bottom: 16px;
}

.gs-submit-btn {
    width: 100%;
    background: #31b898;
    color: white;
    border: none;
    border-radius: 100px;
    padding: 15px 32px;
    font-family: 'Jost', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 22px rgba(49,184,152,0.28);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.gs-submit-btn:hover {
    background: #28a07e;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(49,184,152,0.38);
}

.gs-submit-btn.loading { opacity: 0.75; pointer-events: none; }

.spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.35);
    border-top-color: white;
    border-radius: 50%;
    animation: gs-spin 0.7s linear infinite;
}

@keyframes gs-spin { to { transform: rotate(360deg); } }

.gs-submit-btn.loading .spinner { display: block; }

.gs-form-success {
    display: none;
    text-align: center;
    padding: 32px 0;
}

.success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #31b898;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(49,184,152,0.28);
}

.gs-form-success h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    color: #1A2420;
    margin-bottom: 12px;
}

.gs-form-success p {
    font-size: 13px;
    font-weight: 400;
    color: #4A5E58;
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .gs-form-wrapper { padding: 32px 24px; border-radius: 16px; }
    .gs-form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ── STICKY CONSULTATION POPUP ──────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 272px;
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 32px 28px 24px;
  box-shadow: 0 24px 64px rgba(26,36,32,0.32), 0 0 0 1px rgba(255,255,255,0.06);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
  overflow: hidden;
}
.sticky-cta.has-image { padding-top: 20px; width: 280px; }
.sticky-cta-img {
  display: block;
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.sticky-cta.has-image .sticky-cta-accent { display: none; }
.sticky-cta.has-image .sticky-cta-eyebrow,
.sticky-cta.has-image .sticky-cta-title,
.sticky-cta.has-image .sticky-cta-btn,
.sticky-cta.has-image .sticky-cta-note { margin-left: 28px; margin-right: 28px; }
.sticky-cta.has-image .sticky-cta-note { padding-bottom: 4px; }
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta.dismissed {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.sticky-cta-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(26,36,32,0.55);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.sticky-cta-close:hover {
  background: rgba(26,36,32,0.75);
  color: white;
}
.sticky-cta-accent {
  width: 32px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: 16px;
  opacity: 0.8;
}
.sticky-cta-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 10px;
}
.sticky-cta-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: white;
  margin-bottom: 22px;
}
.sticky-cta-title em {
  font-style: italic;
  color: var(--teal-light);
}
.sticky-cta-btn {
  display: block;
  background: var(--teal);
  color: white;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-bottom: 12px;
  box-shadow: 0 6px 20px rgba(49,184,152,0.25);
}
.sticky-cta-btn:hover {
  background: var(--teal-dim);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(49,184,152,0.30);
}
.sticky-cta-note {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  text-align: center;
  letter-spacing: 0.04em;
}
.sticky-cta.minimized {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

/* Mini pill — shown after card is minimized */
.sticky-mini {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  background: var(--forest);
  color: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px 12px 16px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 28px rgba(26,36,32,0.28), 0 0 0 1px rgba(255,255,255,0.06);
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  pointer-events: none;
}
.sticky-mini.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.sticky-mini:hover {
  background: var(--forest-mid);
  color: white;
}
.sticky-mini svg { flex-shrink: 0; color: var(--teal-light); }

@media (max-width: 540px) {
  .sticky-cta {
    bottom: 0;
    right: 0;
    left: 0;
    width: auto;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 24px 24px 36px;
    transform: translateY(100%);
  }
  .sticky-cta.visible  { transform: translateY(0); }
  .sticky-cta.minimized { transform: translateY(100%); }
  .sticky-mini {
    bottom: 20px;
    right: 20px;
  }
}

/* ========================
   Program Sub-Navigation
   ======================== */
.program-nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(26,36,32,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}
.program-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}
.program-nav-inner::-webkit-scrollbar { display: none; }

.program-nav-pill {
    flex-shrink: 0;
    padding: 10px 18px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: var(--type-caption);
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
}
.program-nav-pill:hover {
    color: white;
    background: rgba(255,255,255,0.08);
}
.program-nav-pill.active {
    color: white;
    background: rgba(49,184,152,0.25);
    border: 1px solid rgba(49,184,152,0.35);
}

@media (max-width: 768px) {
    .program-nav-inner { padding: 0 16px; }
    .program-nav-pill { padding: 8px 14px; }
}
