   /* ==========================================================================
   SITE NAVIGATION
   ========================================================================== */
:root {
  --nav-height: 72px;
  --bg-dark: #0f1115;
  --bg-dark-solid: #161920;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --accent-gold: #d97706;
  --accent-gold-hover: #b45309;
  --transition-speed: 0.3s ease;
}

/* Reset offset for fixed header smooth scrolling */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background-color: transparent;
  backdrop-filter: blur(0px);
  transition: background-color var(--transition-speed), backdrop-filter var(--transition-speed), box-shadow var(--transition-speed);
}

/* Scroll state toggled via JS */
.site-nav.is-scrolled {
  background-color: rgba(22, 25, 32, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  /* Removed: font-size, font-weight, letter-spacing, text-transform */
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
}

/* New rule: Controls logo sizing and responsiveness */
.nav-brand-logo {
  width: 140px;
  height: auto;
  display: block;
  object-fit: contain;
  transition: width var(--transition-speed);
}

.nav-brand {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-main);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.75rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-speed);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}

/* Story navigation active bar */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width var(--transition-speed);
}

.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--accent-gold);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.625rem 1.25rem;
  border-radius: 4px;
  transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.nav-cta:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .nav-brand-logo {
    width: 105px;
  }
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  transition: transform var(--transition-speed), opacity var(--transition-speed);
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-main);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5rem 1.5rem 2.5rem 1.5rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-hero-thesis {
  margin-bottom: 4rem;
  max-width: 720px;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.footer-manifesto {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 400;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color var(--transition-speed);
}

.footer-links a:hover {
  color: var(--text-main);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-legal {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-speed);
}

.footer-legal a:hover {
  color: var(--text-main);
}

.footer-huge-brand {
  width: 100%;
  padding-top: 2rem;
  overflow: hidden;
}

.footer-huge-brand img {
  width: 100%;
  height: auto;
  display: block;
  /* Optional tweak to make it crop slightly off-screen like Nory */
  margin-bottom: -2vw; 
}

/* Hero section grouping logo and manifesto */
.footer-hero-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* Tightens vertical space between logo and manifesto */
  margin-bottom: 2.5rem;
}

/* Container & image controls */
.footer-brand-wrapper {
  width: 100%;
}

.footer-brand-logo {
  width: 140px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Tightens manifesto line-height and removes top default margins */
.footer-manifesto {
  margin-top: 0;
  max-width: 480px; /* Keeps text block bound tightly beneath the logo width */
  line-height: 1.4;
}
/* ==========================================================================
   RESPONSIVE LAYOUTS
   ========================================================================== */
@media (max-width: 868px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background-color: var(--bg-dark-solid);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition-speed), opacity var(--transition-speed), visibility var(--transition-speed);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #000;
            color: #fff;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* Full-Screen Pause/Transition Statements */
       .c-full-screen-quote {
    min-height: 62vh;
    width: 100%;
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(5, 150, 105, 0.08),
            transparent 55%
        ),
        #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.c-full-screen-quote__text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.15;
    color: #fff;
    max-width: 900px;
    letter-spacing: -0.025em;

    opacity: 0;
    transform: translateY(35px);
    filter: blur(8px);
    will-change: transform, opacity, filter;
}

.c-full-screen-quote__text span {
    display: block;
    color: #f59e0b;
    margin-top: 0.15em;
}
        .c-facility {
            width: 100%;
            position: relative;
            background-color: #000;
        }

        /* Parallax Section Block */
        .c-parallax-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .c-parallax-section--hero1 {
            align-items: flex-end;
            justify-content: flex-start;
            padding: 3rem 1.5rem;
        }

        .c-parallax-section__video,
        .c-parallax-section__image {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
            z-index: 1;
        }

        .c-parallax-section__overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                180deg, 
                rgba(0, 0, 0, 0.3) 0%, 
                rgba(0, 0, 0, 0.5) 50%, 
                rgba(0, 0, 0, 0.8) 100%
            );
            z-index: 2;
        }

        .c-parallax-section__text-wrapper {
            position: relative;
            z-index: 3;
            text-align: center;
            padding: 2rem 1.5rem;
            max-width: 950px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .c-parallax-section--hero1 .c-parallax-section__text-wrapper {
            text-align: left;
            max-width: 580px;
            padding: 0;
        }

        .c-parallax-section.is-visible .c-parallax-section__text-wrapper {
            opacity: 1;
            transform: translateY(0);
        }

        .c-parallax-section__hero-caption {
            font-family: 'Libertinus Serif', Georgia, serif;
            font-size: 1.5rem;
            font-weight: 400;
            line-height: 1.15;
            letter-spacing: -0.01em;
            color: #ffffff;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0, 0, 0, 0.8);
            margin-bottom: 0.5rem;
            max-width: 560px;
        }

        .c-highlight-text {
            font-style: italic;
            color: #e07a5f;
            background-color: rgba(224, 122, 95, 0.2);
            padding: 0 0.25rem;
            border-radius: 2px;
        }

        .c-parallax-section__eyebrow {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.875rem;
            font-weight: 700;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: #84cc16;
            margin-bottom: 1rem;
            display: inline-block;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
        }

        .c-parallax-section__header {
            font-family: 'Inter', sans-serif;
            font-size: 2.75rem;
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            color: #ffffff;
            text-shadow: 0 4px 24px rgba(0, 0, 0, 0.9);
        }

        .c-parallax-section__caption {
            font-family: 'Inter', sans-serif;
            font-size: 1.125rem;
            font-weight: 400;
            line-height: 1.6;
            color: #e2e8f0;
            max-width: 680px;
            margin: 0 auto;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
        }

        .c-hero-stats-grid {
            margin-top: 2.0rem;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 2.5rem;
            max-width: 680px;
            width: 100%;
        }

        .c-stat-card {
            background: transparent;
            backdrop-filter: none;
            border: none;
            padding: 0;
            border-radius: 0;
            box-shadow: none;
            min-width: 0;
        }

        .c-stat-number {
            color: #ffffff;
            font-size: 1.5rem;
            font-weight: 500;
            letter-spacing: -0.01em;
            line-height: 1.2;
            white-space: nowrap;
            margin-bottom: 0.35rem;
        }

        .c-stat-number--highlight {
            color: #e07a5f;
        }

        .c-stat-label {
            font-family: 'Inter', sans-serif;
            font-size: 0.625rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #8e8e93;
            margin-top: 0.35rem;
        }

        .c-hero-footnote {
            font-family: 'Inter', sans-serif;
            font-size: 0.7rem;
            color: #8e8e93;
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }

        .c-hero-footnote__icon {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            border: 2px solid #8e8e93;
        }

        .analytics-card-overlay {
            background: transparent;
            border: none;
            box-shadow: none;
        }

        .drop-shadow-heavy {
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.85));
        }

        .story-section {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background-color: #0d0e12;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .story-scrim {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.45);
            z-index: 2;
        }

        .flash-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.35);
            mix-blend-mode: overlay;
            opacity: 0;
            z-index: 3;
            pointer-events: none;
        }

        .diagonal-cards-container {
            position: relative;
            width: 100%;
            height: 100%;
            z-index: 5;
        }

        .story-card {
            position: absolute;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
            opacity: 0;
            transform: scale(0.85);
            will-change: transform, opacity;
        }

      .story-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: #f59e0b; /* Solid Warm Amber */
    font-weight: 600;
    letter-spacing: -0.3px;
    background: none;
    -webkit-text-fill-color: initial;
}

        .story-card p {
            font-size: 0.85rem;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.9);
            max-width: 200px;
        }

        .story-card-1 { top: 20%; left: 12%; }
        .story-card-2 { top: 38%; left: 40%; }
        .story-card-3 { top: 56%; left: 68%; }

        .spade-grid-bg {
            background-size: 32px 32px;
            background-image: 
                linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
        }

        .text-48px-heading {
            font-size: clamp(2.25rem, 4vw + 1rem, 3.5rem);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
        }

        :root {
            --color-brand-primary: #111827;
            --color-brand-accent: #059669;
            --color-bg-light: #F9FAFB;
            --color-border: #E5E7EB;
            --border-radius-lg: 28px;
            --border-radius-pill: 9999px;
            --stack-ease: cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* SECTION HEADER FIX: Full-Bleed Clean Layout */
        .c-showcase-wrapper {
            padding: 4rem 1.5rem;
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            background-color: #ffffff;
            color: #111827;
        }

        .c-showcase {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .c-top-hero {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            background-color: transparent;
            border-radius: 0;
            padding: 1rem 0;
            border: none;
            box-shadow: none;
            transition: all 0.3s ease;
        }

        @media (min-width: 768px) {
            .c-top-hero {
                grid-template-columns: 1fr 1fr;
                align-items: center;
                padding: 2rem 0;
            }
        }

        .c-hero__image-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            background: transparent;
            border-radius: 0;
            padding: 1.5rem;
            min-height: 420px;
        }

        .c-hero__img {
            max-height: 480px;
            width: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .c-hero__img:hover {
            transform: scale(1.03);
        }

        .c-hero__details {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .c-hero__target {
            font-family: 'Jost', sans-serif;
            font-size: 2rem;
            line-height: 1.15;
            font-weight: 700;
            color: #059669;
        }

        .c-hero__badge {
            align-self: flex-start;
            background-color: #ECFDF5;
            color: #047857;
            border: 1px solid #A7F3D0;
            font-size: 0.875rem;
            font-weight: 700;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .c-hero__title {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.35rem;
            line-height: 1.2;
            color: #4B5563;
            font-weight: 500;
        }

        .c-hero__section-title {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #9CA3AF;
            margin-bottom: 0.5rem;
        }

        .c-hero__botanicals {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .c-botanical-tag {
            background-color: #E0E7FF;
            color: #3730A3;
            font-size: 0.8125rem;
            font-weight: 600;
            padding: 0.25rem 0.625rem;
            border-radius: 0.375rem;
        }

        .c-hero__brew-notes {
            color: #374151;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .c-middle-nav {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            overflow-x: auto;
            padding-bottom: 0.5rem;
        }

        .c-tab-btn {
            padding: 0.75rem 1.25rem;
            font-weight: 700;
            font-size: 0.95rem;
            color: #6B7280;
            background: transparent;
            border: none;
            border-bottom: 3px solid transparent;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .c-tab-btn:hover {
            color: var(--color-brand-primary);
        }

        .c-tab-btn.is-active {
            color: var(--color-brand-accent);
            border-bottom-color: var(--color-brand-accent);
        }

        .c-bottom-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1.25rem;
        }

        @media (min-width: 640px) {
            .c-bottom-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .c-bottom-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .c-grid-card {
            background-color: #FFFFFF;
            border: 2px solid var(--color-border);
            border-radius: 0.75rem;
            padding: 1.25rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.2s ease;
        }

        .c-grid-card:hover {
            border-color: #A7F3D0;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .c-grid-card.is-active {
            border-color: var(--color-brand-accent);
            background-color: #ECFDF5;
        }

        .c-grid-card__img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            border-radius: 0.5rem;
            background-color: var(--color-bg-light);
        }

        .c-grid-card__info {
            display: flex;
            flex-direction: column;
        }

        .c-grid-card__title {
            font-weight: 700;
            font-size: 1rem;
            color: var(--color-brand-primary);
        }

        .c-grid-card__subtitle {
            font-size: 0.8125rem;
            color: #6B7280;
        }

        .split-sticky-section {
            position: relative;
            width: 100%;
            background-color: #F9FAFB;
            color: #111827;
            padding: 6rem 1.5rem;
        }

        .split-sticky-block {
            padding: 4rem 0;
        }

        .split-sticky-container {
            max-width: 1240px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 992px) {
            .split-sticky-container {
                grid-template-columns: 1fr 1fr;
                gap: 5rem;
            }

            .split-sticky-block--sticky-right .split-sticky-accordion-col {
                order: 1;
            }
            .split-sticky-block--sticky-right .split-sticky-col {
                order: 2;
            }
        }

        .split-sticky-col {
            position: relative;
        }

        @media (min-width: 992px) {
            .split-sticky-col {
                position: sticky;
                top: 6rem;
                height: 620px;
            }
        }

        .card-stack-viewport {
            position: relative;
            width: 100%;
            height: 540px;
            border-radius: var(--border-radius-lg);
            background-color: transparent;
            overflow: hidden;
        }

        @media (min-width: 992px) {
            .card-stack-viewport {
                height: 100%;
            }
        }

        .stacked-card {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            transform-origin: bottom center;
            will-change: transform, opacity;
            transition: transform 0.75s var(--stack-ease), 
                        opacity 0.75s var(--stack-ease),
                        box-shadow 0.75s var(--stack-ease);
            transform: translateY(105%) scale(1);
            opacity: 0;
            z-index: 1;
        }

        .stacked-card img,
        .stacked-card video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .stacked-card.active {
            transform: translateY(0%) scale(1);
            opacity: 1;
            z-index: 20;
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.25);
        }

        .stacked-card.behind-1 {
            transform: translateY(-14px) scale(0.92);
            opacity: 0.95;
            z-index: 10;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
        }

        .stacked-card.behind-2 {
            transform: translateY(-28px) scale(0.85);
            opacity: 0.8;
            z-index: 5;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .stacked-card.hidden-below {
            transform: translateY(105%) scale(1);
            opacity: 0;
            z-index: 1;
        }

        .stacked-card.hidden-above {
            transform: translateY(-105%) scale(0.8);
            opacity: 0;
            z-index: 1;
        }

        .split-sticky-preview-card__pill {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            background: rgba(5, 150, 105, 0.9);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            color: #FFFFFF;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 0.4rem 1rem;
            border-radius: var(--border-radius-pill);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 25;
        }

        .split-sticky-block-header {
            margin-bottom: 2.5rem;
        }

        .split-sticky-block-eyebrow {
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 0.15em;
            color: #059669;
            text-transform: uppercase;
            display: block;
            margin-bottom: 0.5rem;
        }

        .split-sticky-block-title {
            font-family: 'Jost', sans-serif;
            font-size: clamp(2rem, 3vw, 2.75rem);
            font-weight: 700;
            color: #111827;
        }

        .split-sticky-accordion {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .split-sticky-accordion-item {
            background: #FFFFFF;
            border: 1px solid #E5E7EB;
            border-radius: 20px;
            padding: 1.25rem 1.75rem;
            cursor: pointer;
            transition: all 0.3s ease;
            user-select: none;
        }

        .split-sticky-accordion-item:focus-visible {
            outline: 2px solid #059669;
            outline-offset: 2px;
        }

        .split-sticky-accordion-item:hover {
            border-color: #A7F3D0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }

        .split-sticky-accordion-item.active {
            border-color: #059669;
            box-shadow: 0 10px 25px -5px rgba(5, 150, 105, 0.1);
            background: #FFFFFF;
        }

        .split-sticky-accordion-header {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: none;
            border: none;
            padding: 0;
            text-align: left;
            cursor: pointer;
            font-family: inherit;
        }

        .split-sticky-role-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: #111827;
            flex-grow: 1;
        }

        .split-sticky-icon {
            font-size: 1.25rem;
            font-weight: 700;
            color: #059669;
            transition: transform 0.3s ease;
        }

        .split-sticky-accordion-item.active .split-sticky-icon {
            transform: rotate(45deg);
        }

        .split-sticky-accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s var(--stack-ease);
        }

        .split-sticky-accordion-item.active .split-sticky-accordion-body {
            max-height: 150px;
            margin-top: 0.75rem;
        }

        .split-sticky-accordion-body p {
            color: #4B5563;
            font-size: 0.98rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Unified Section Header Architecture */
        .c-section-header {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 3rem 1.5rem;
            align-items: start;
        }

        @media (min-width: 860px) {
            .c-section-header {
                grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
                gap: clamp(2rem, 5vw, 5rem);
            }
        }

        .c-section-header__badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: fit-content;
            white-space: nowrap;
            padding: 0.5rem 1.25rem;
            border: 1px solid rgba(0, 0, 0, 0.12);
            border-radius: 9999px;
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            color: #0f172a;
            background-color: #ffffff;
            margin-bottom: 1.25rem;
        }

        .c-section-header__content {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            text-align: left;
        }

        .c-section-header__title {
            font-family: 'Jost', sans-serif;
            font-size: clamp(2.25rem, 4.5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: #0f172a;
            margin: 0;
        }

        .c-section-header__subtitle {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
            font-size: 1.125rem;
            line-height: 1.6;
            letter-spacing: -0.01em;
            color: #475569;
            margin: 0;
            text-align: left;
        }

        .c-empowerment {
            background-color: #ffffff;
            color: #111827;
            padding: 5rem 1.5rem;
        }

        .c-empowerment__container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .c-empowerment__header {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 3rem auto;
        }

        .c-empowerment__eyebrow {
            font-size: 0.875rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #059669;
            display: block;
            margin-bottom: 0.5rem;
        }

        .c-empowerment__title {
            font-family: 'Jost', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.15;
            color: #111827;
            margin-bottom: 1rem;
        }

        .c-empowerment__subtitle {
            font-size: 1.125rem;
            color: #4b5563;
            line-height: 1.6;
        }

        .c-carousel-wrapper {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .c-carousel-display {
            position: relative;
            min-height: 480px;
            background-color: #f9fafb;
            border-radius: 1.5rem;
            overflow: hidden;
            border: 1px solid #e5e7eb;
        }

        .c-carousel-panel {
            display: none;
            grid-template-columns: 1fr;
            height: 100%;
        }

        @media (min-width: 768px) {
            .c-carousel-panel {
                grid-template-columns: 1fr 1fr;
            }
        }

        .c-carousel-panel.is-active {
            display: grid;
        }

        .c-carousel-panel__content {
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .c-carousel-panel__tag {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #059669;
            margin-bottom: 0.75rem;
        }

        .c-carousel-panel__title {
            font-family: 'Jost', sans-serif;
            font-size: 1.875rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .c-carousel-panel__text {
            color: #4b5563;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .c-carousel-panel__stats {
            display: flex;
            gap: 2rem;
        }

        .c-stat-box {
            display: flex;
            flex-direction: column;
        }

        .c-stat-box__val {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.45rem;
            color: #059669;
            line-height: 1;
        }

        .c-stat-box__label {
            font-size: 0.75rem;
            font-weight: 600;
            color: #6b7280;
            text-transform: uppercase;
            margin-top: 0.25rem;
        }

        .c-carousel-panel__visual {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 280px;
        }

        .c-carousel-panel__media {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .c-carousel-tabs-wrapper {
            width: 100%;
        }

        .c-carousel-tabs {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1rem;
            position: relative;
        }

        @media (min-width: 768px) {
            .c-carousel-tabs {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .c-carousel-tab {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            padding: 1.25rem;
            border-radius: 0.75rem;
            text-align: left;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .c-carousel-tab:hover {
            border-color: #a7f3d0;
        }

        .c-carousel-tab.is-active {
            border-color: #059669;
            background-color: #ecfdf5;
        }

        .c-carousel-tab__title {
            display: block;
            font-weight: 700;
            font-size: 1rem;
            color: #111827;
            margin-bottom: 0.25rem;
        }

        .c-carousel-tab__desc {
            display: block;
            font-size: 0.8125rem;
            color: #6b7280;
        }

        @media (min-width: 768px) {
            .c-parallax-section--hero1 {
                padding: 4rem 5rem;
            }

            .c-parallax-section__hero-caption {
                font-size: 2.125rem;
            }

            .c-stat-number {
                font-size: 1.15rem !important;
                font-weight: 700;
            }

            .c-parallax-section__header {
                font-size: 4.75rem;
            }

            .c-parallax-section__caption {
                font-size: 1.35rem;
            }
        }

        @media (min-width: 1024px) {
            .c-parallax-section__hero-caption {
                font-size: 2.95rem;
            }

            .c-parallax-section__header {
                font-size: 4.75rem;
            }
        }

        @media (max-width: 768px) {
            .story-card {
                width: 240px;
                height: 240px;
                left: 50% !important;
                transform: translateX(-50%) scale(0.85);
                padding: 1.5rem;
            }
            .story-card p {
                font-size: 0.8rem;
                max-width: 170px;
            }
            .story-card-1 { top: 18%; }
            .story-card-2 { top: 42%; }
            .story-card-3 { top: 66%; }
        }

        .c-section-footer__quote {
    font-family: 'Libertinus Serif', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
    color: #059669; /* Brand emerald accent tint */
    letter-spacing: -0.01em;
    margin-top: 1.5rem;
}

.c-empowerment__closing-text {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    line-height: 1.3;
    color: #111827;
    letter-spacing: -0.02em;
    margin-top: 1.5rem;
}

/* ==========================================================================
       RESET & BASE STYLES
       ========================================================================== */
    /** {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }*/

    /*body, html {
      width: 100%;
      height: 100%;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      background-color: #0c0d0e;
      color: #f4f4f5;
      overflow-x: hidden;
    }*/

    /* ==========================================================================
       HERO MAP CONTAINER (FULL BLEED)
       ========================================================================== */
    .bwn-hero-network {
      position: relative;
      width: 100vw;
      height: 100vh;
      min-height: 650px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    /* Background Aerial Image */
    .bwn-map-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: brightness(0.92) contrast(1.05) saturate(1.05);
      z-index: 1;
      transition: filter 0.5s ease;
    }

    /* Softened Vignette Layer */
    .bwn-map-overlay-vignette {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at center, transparent 45%, rgba(12, 13, 14, 0.35) 100%),
        linear-gradient(to bottom, rgba(12, 13, 14, 0.7) 0%, transparent 20%, transparent 80%, rgba(12, 13, 14, 0.8) 100%);
      z-index: 2;
      pointer-events: none;
    }

    /* ==========================================================================
       HEADER & OVERLAY TEXT
       ========================================================================== */
    .bwn-hero-header {
      position: relative;
      z-index: 10;
      padding: 3rem 4rem 1rem;
      max-width: 820px;
      pointer-events: none;
    }

    .bwn-kicker {
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #34d399;
      margin-bottom: 0.75rem;
      display: block;
    }

    .bwn-hero-title {
      font-size: clamp(2rem, 4vw, 3.25rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: #ffffff;
      margin-bottom: 0.75rem;
      text-shadow: 0 2px 14px rgba(0,0,0,0.7);
    }

    .bwn-hero-subtitle {
      font-size: 1.1rem;
      color: #e4e4e7;
      line-height: 1.5;
      font-weight: 400;
      max-width: 640px;
      text-shadow: 0 1px 6px rgba(0,0,0,0.7);
    }

    /* Instruction pill at bottom */
    .bwn-map-instruction {
      position: relative;
      z-index: 10;
      margin: 0 auto 2.5rem;
      background: rgba(24, 27, 31, 0.85);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.18);
      padding: 0.75rem 1.5rem;
      border-radius: 100px;
      font-size: 0.875rem;
      letter-spacing: 0.05em;
      color: #f4f4f5;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      pointer-events: none;
      box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    }

    .bwn-instruction-dot {
      width: 8px;
      height: 8px;
      background-color: #ffffff;
      border-radius: 50%;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
    }

    /* ==========================================================================
       WHITE ARCHITECTURAL BEACONS (IMAGE MAP NODES)
       ========================================================================== */
    .bwn-map-nodes-layer {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 15;
    }

    .bwn-map-node {
      position: absolute;
      transform: translate(-50%, -50%);
      background: none;
      border: none;
      cursor: pointer;
      outline: none;
      padding: 15px;
    }

    .bwn-node-pin {
      position: relative;
      width: 16px;
      height: 16px;
      background-color: #ffffff;
      border: 2px solid rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 255, 255, 0.4);
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s;
    }

    .bwn-node-pin::before,
    .bwn-node-pin::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border: 1.5px solid rgba(255, 255, 255, 0.8);
      border-radius: 50%;
      pointer-events: none;
      animation: bwnBeaconPulse 2.6s infinite ease-out;
    }

    .bwn-node-pin::after {
      animation-delay: 1.3s;
    }

    @keyframes bwnBeaconPulse {
      0% {
        width: 100%;
        height: 100%;
        opacity: 0.9;
      }
      100% {
        width: 380%;
        height: 380%;
        opacity: 0;
      }
    }

    .bwn-map-node:hover .bwn-node-pin {
      transform: scale(1.4);
      background-color: #ffffff;
      box-shadow: 0 0 20px rgba(255, 255, 255, 1);
    }

    .bwn-node-label {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      background: rgba(18, 20, 23, 0.92);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding: 0.35rem 0.75rem;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      white-space: nowrap;
      color: #f4f4f5;
      pointer-events: none;
      opacity: 0.9;
      box-shadow: 0 4px 12px rgba(0,0,0,0.4);
      transition: opacity 0.3s, transform 0.3s;
    }

    .bwn-map-node:hover .bwn-node-label {
      opacity: 1;
      transform: translateX(-50%) translateY(12px);
    }

    /* ==========================================================================
       GRAPHITE SMOKED GLASS MODAL
       ========================================================================== */
    .bwn-modal-backdrop {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(12, 13, 14, 0.45);
      backdrop-filter: blur(6px);
      z-index: 30;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .bwn-modal-backdrop.bwn-modal-active {
      opacity: 1;
      pointer-events: auto;
    }

    .bwn-metrics-card {
      position: relative;
      background: rgba(35, 38, 42, 0.92);
      backdrop-filter: blur(28px);
      -webkit-backdrop-filter: blur(28px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 16px;
      padding: 3rem 3.5rem;
      width: 100%;
      max-width: 920px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15);
      transform: translateY(20px) scale(0.96);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .bwn-modal-backdrop.bwn-modal-active .bwn-metrics-card {
      transform: translateY(0) scale(1);
    }

    .bwn-close-btn {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #a1a1aa;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      font-size: 1.25rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, color 0.2s;
    }

    .bwn-close-btn:hover {
      background: rgba(255, 255, 255, 0.2);
      color: #ffffff;
    }

    .bwn-card-header {
      margin-bottom: 2.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding-bottom: 1.5rem;
    }

    .bwn-card-location-id {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #34d399;
      margin-bottom: 0.25rem;
      display: block;
    }

    .bwn-card-title {
      font-size: 2rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 0.35rem;
    }

    .bwn-card-address {
      font-size: 1rem;
      color: #9ca3af;
    }

    .bwn-metrics-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      margin-bottom: 2.25rem;
    }

    .bwn-metric-column {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 1.5rem 1.25rem;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .bwn-metric-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #a1a1aa;
      margin-bottom: 0.5rem;
    }

    .bwn-metric-value-container {
      font-size: 2.5rem;
      font-weight: 800;
      color: #ffffff;
      line-height: 1;
      margin-bottom: 0.75rem;
      letter-spacing: -0.03em;
      font-variant-numeric: tabular-nums;
    }

    .bwn-metric-unit {
      font-size: 1.25rem;
      font-weight: 600;
      color: #34d399;
      margin-left: 2px;
    }

    .bwn-data-bar-track {
      width: 100%;
      height: 3px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 2px;
      margin-bottom: 0.75rem;
      overflow: hidden;
    }

    .bwn-data-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, #34d399, #10b981);
      width: 0%;
      border-radius: 2px;
      transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .bwn-metric-sublabel {
      font-size: 0.8rem;
      color: #9ca3af;
    }

    .bwn-card-footer {
      text-align: center;
      font-size: 0.9rem;
      color: #9ca3af;
      font-style: italic;
      letter-spacing: 0.02em;
    }

    /* ==========================================================================
       RESPONSIVE ADJUSTMENTS
       ========================================================================== */
    @media (max-width: 900px) {
      .bwn-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }
      .bwn-metrics-card {
        padding: 2rem;
      }
      .bwn-hero-header {
        padding: 2rem 1.5rem 0;
      }
    }

    @media (max-width: 550px) {
      .bwn-metrics-grid {
        grid-template-columns: 1fr;
      }
      .bwn-hero-title {
        font-size: 1.75rem;
      }
    }
