/* ============================================
   1Med – Care Reimagined
   ============================================ */

:root {
    --med-black: #0a0a0a;
    --med-dark: #111111;
    --med-charcoal: #1a1a1a;
    --med-surface: #1f1f1f;
    --med-card: #181818;
    --med-border: rgba(255,255,255,0.06);
    --med-text: #e8e4e0;
    --med-muted: #888888;
    --med-dim: #555555;
    --med-white: #ffffff;
    --med-cream: #f5f0eb;
    --med-accent: #c4a882;
    --med-accent-dark: #a88e6e;
    --font-display: 'Poppins', -apple-system, sans-serif;
    --font-body: 'Poppins', -apple-system, sans-serif;
    --container: 1420px;
    --gap: clamp(1.5rem, 4vw, 3rem);
    --section-pad: clamp(5rem, 10vw, 9rem);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Light Theme ---- */
[data-theme="light"] {
    --med-black: #ffffff;
    --med-dark: #f5f5f3;
    --med-charcoal: #eeeeec;
    --med-surface: #f0f0ee;
    --med-card: #ffffff;
    --med-border: rgba(0,0,0,0.08);
    --med-text: #1a1a1a;
    --med-muted: #666666;
    --med-dim: #999999;
    --med-white: #111111;
    --med-cream: #1a1a1a;
    --med-accent: #9a7e5a;
    --med-accent-dark: #7a6040;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; background: #0a0a0a; }
body { font-family: var(--font-body); font-weight: 300; color: var(--med-text); background: var(--med-black); line-height: 1.7; overflow-x: hidden; }
main { display: block; width: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gap); }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(8, 8, 12, 0.8);
    backdrop-filter: blur(40px) saturate(200%) brightness(0.4);
    -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 1.2s ease, backdrop-filter 1s ease;
}
.preloader.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader__logo {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(15px);
    animation: preloader-logo 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.6s;
}
.preloader__logo img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}
.preloader__text {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}
.preloader__tagline {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.02em;
    margin: 0;
    opacity: 0;
    animation: preloader-tagline 1s ease forwards 1.4s;
}
@keyframes preloader-logo {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes preloader-tagline {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Vertical gold lines */
.preloader__lines {
    position: absolute;
    inset: 0;
    display: flex;
    z-index: 1;
}
.preloader__lines span {
    flex: 1;
    position: relative;
    border-right: 1px solid #333;
}
.preloader__lines span:last-child { border-right: none; }

/* Thin gold line traveling down each column */
.preloader__lines span::after {
    content: '';
    position: absolute;
    top: -30%;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(180deg, transparent 0%, rgba(196, 168, 130, 0.55) 50%, transparent 100%);
    width: 1px;
    margin-left: auto;
    box-shadow: 0 0 6px 1px rgba(196, 168, 130, 0.15), 0 0 14px 2px rgba(196, 168, 130, 0.06);
    animation: preloader-line 2.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
.preloader__lines span:nth-child(1)::after { animation-delay: 0s; }
.preloader__lines span:nth-child(2)::after { animation-delay: 0.5s; }
.preloader__lines span:nth-child(3)::after { animation-delay: 0.2s; }
.preloader__lines span:nth-child(4)::after { animation-delay: 0.7s; }
.preloader__lines span:nth-child(5)::after { animation-delay: 0.35s; }

@keyframes preloader-line {
    0% { top: -30%; opacity: 0; }
    8% { opacity: 1; }
    70% { opacity: 0.8; }
    100% { top: 110%; opacity: 0; }
}

/* Lock body scroll during preloader */
body.is-loading { overflow: hidden; }

/* ============================================
   HEADER — Glass Effect
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
    transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, padding 0.4s var(--ease-out);
}
.site-header.is-scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0.75rem 0;
}
.header__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gap); display: flex; align-items: center; gap: 2rem; }
.header__logo { display: flex; align-items: center; }
.header__logo img { height: 28px; width: auto; }
.logo-dark { display: block; }
.logo-light { display: none; }
.header--light .logo-dark { display: none; }
.header--light .logo-light { display: block; }
.logo-text { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--med-white); }
.header__nav { display: none; margin-left: auto; gap: 0.5rem; }
@media (min-width: 1024px) { .header__nav { display: flex; } }
.header__nav a { padding: 0.4rem 1rem; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.7); transition: color 0.4s, border-color 0.4s; letter-spacing: 0.01em; }
.header__nav a:hover, .header__nav a.is-active { color: var(--med-white); }

/* ---- Reactive Header: Light Mode ---- */
.site-header {
    transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, padding 0.4s var(--ease-out);
}
.header--light {
    background: rgba(245, 245, 243, 0.45) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(0,0,0,0.06) !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04) !important;
}
.header--light.is-scrolled {
    background: rgba(245, 245, 243, 0.65) !important;
    backdrop-filter: blur(28px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(28px) saturate(200%) !important;
}
.header--light .header__nav a { color: rgba(0,0,0,0.5); }
.header--light .header__nav a:hover,
.header--light .header__nav a.is-active { color: #111; }
.header--light .btn--sm,
.header--light .site-header .btn {
    border-color: rgba(0,0,0,0.2) !important;
    color: #333 !important;
    background: transparent !important;
}
.header--light .btn--sm:hover {
    border-color: rgba(0,0,0,0.4) !important;
    background: rgba(0,0,0,0.05) !important;
}
.header--light .header__login {
    color: #555;
    border-color: rgba(0,0,0,0.2);
}
.header--light .header__login:hover {
    color: #111;
    border-color: rgba(0,0,0,0.4);
}
.header--light .header__burger span { background: #333; }
.header--light .logo-text { color: #111; }
.header__actions { display: flex; align-items: center; gap: 0.75rem; margin-left: auto; }
@media (min-width: 1024px) { .header__actions { margin-left: 0; } }
.header__link { font-size: 0.8rem; color: rgba(255,255,255,0.7); transition: color 0.3s; display: none; }
@media (min-width: 900px) { .header__link { display: inline; } }
.header__link:hover { color: var(--med-white); }
.header__login { font-size: 0.8rem; color: rgba(255,255,255,0.7); transition: color 0.3s; display: none; border: 1px solid rgba(255,255,255,0.25); border-radius: 50px; padding: 0.45em 1.2em; }
@media (min-width: 768px) { .header__login { display: inline-block; } }
.header__login:hover { color: var(--med-white); border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }

/* ---- Burger — hidden at top, fades in on scroll, far left ---- */
.header__burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    flex-shrink: 0;
    order: -1;
    margin-right: 0.75rem;
    opacity: 0;
    width: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, width 0.4s ease, margin 0.4s ease;
}
.site-header.is-scrolled .header__burger {
    opacity: 1;
    width: 40px;
    pointer-events: all;
}
.header__burger:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.3);
}
.header__burger span {
    width: 16px;
    height: 1.5px;
    background: rgba(255,255,255,0.8);
    border-radius: 1px;
    flex-shrink: 0;
}
/* Logo shifts right smoothly when burger appears */
.header__logo {
    transition: transform 0.4s ease;
}
.site-header.is-scrolled .header__logo {
    transform: translateX(0);
}

/* ---- Mobile Nav (legacy — replaced by side-menu) ---- */
.mobile-nav { display: none; }

/* ---- Header scroll: nav + actions fade out, logo + burger stay ---- */
.header__nav, .header__actions { transition: opacity 0.4s ease, visibility 0.4s ease; }
.site-header.is-scrolled .header__nav,
.site-header.is-scrolled .header__actions { opacity: 0; visibility: hidden; pointer-events: none; }
.site-header.is-scrolled { padding: 0.6rem 0; }

/* ---- Nav Pill (Coming Soon) ---- */
.nav-pill {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--med-accent);
    color: #111;
    padding: 0.2em 0.6em;
    border-radius: 50px;
    margin-left: 0.4em;
    vertical-align: middle;
    line-height: 1.4;
}
.nav-pill--dark {
    background: #222;
    color: #fff;
}

/* ---- Header Buttons (6px radius) ---- */
.btn--header {
    padding: 0.7em 1.6em;
    font-size: 0.78rem;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: rgba(255,255,255,0.9);
    border-radius: 50px;
}
.btn--header:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
    color: var(--med-white);
    transform: none;
}

/* ---- Book Discovery Call — always visible in header ---- */
.btn--discovery {
    padding: 0.7em 1.6em;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: rgba(255,255,255,0.9);
    border-radius: 50px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.btn--discovery:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
    color: #fff;
    transform: none;
}
.site-header.is-scrolled .btn--discovery {
    background: #fff;
    color: #111;
    border-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.site-header.is-scrolled .btn--discovery:hover {
    background: #f0efed;
    border-color: #f0efed;
}
[data-theme="light"] .btn--discovery { background: #967f5e; color: #fff; border-color: #967f5e; }
[data-theme="light"] .btn--discovery:hover { background: #7a6548; border-color: #7a6548; }
[data-theme="light"] .site-header.is-scrolled .btn--discovery { background: #967f5e; color: #fff; border-color: #967f5e; }
[data-theme="light"] .site-header.is-scrolled .btn--discovery:hover { background: #7a6548; border-color: #7a6548; }

/* ============================================
   SIDE MENU — Apple Liquid Glass
   ============================================ */
.side-menu {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    visibility: hidden;
}
.side-menu.is-open {
    pointer-events: all;
    visibility: visible;
}
.side-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.4s ease;
}
.side-menu.is-open .side-menu__backdrop {
    background: rgba(0,0,0,0.35);
}
.side-menu__panel {
    position: absolute;
    left: 15px;
    top: 15px;
    bottom: 15px;
    width: 480px;
    max-width: calc(90vw - 30px);
    background: #f3f0ea;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 20px;
    border: none;
    box-shadow: 0 8px 60px rgba(0,0,0,0.2), inset 0 0 0 0.5px rgba(255,255,255,0.4);
    transform: translateX(calc(-100% - 30px));
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.side-menu.is-open .side-menu__panel {
    transform: translateX(0);
}

/* Side menu header */
.side-menu__header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
}
.side-menu__close {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.6);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s;
    flex-shrink: 0;
}
.side-menu__close:hover {
    background: rgba(255,255,255,0.85);
    color: #111;
}
.side-menu__logo img { height: 28px; width: auto; }

/* Side menu main nav links */
.side-menu__nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 0;
}
.side-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}
.side-menu__link:hover { color: #666; }
.side-menu__link svg {
    width: 32px;
    height: 32px;
    padding: 6px;
    border-radius: 10px;
    background: rgba(0,0,0,0.06);
    color: #555;
    flex-shrink: 0;
    transition: all 0.25s;
}
.side-menu__link:hover svg {
    background: rgba(0,0,0,0.1);
    color: #333;
}

/* Side menu divider */
.side-menu__divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin: 0.5rem 2rem;
}

/* Side menu secondary links grid */
.side-menu__links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 2rem;
    padding: 1.25rem 2rem;
}
.side-menu__links-grid a {
    font-size: 0.88rem;
    font-weight: 400;
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}
.side-menu__links-grid a:hover { color: #333; }

/* Side menu footer */
.side-menu__footer {
    margin-top: auto;
    padding: 1.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.side-menu__cta {
    display: block;
    text-align: center;
    padding: 0.85em 1.5em;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: #111;
    background: var(--med-accent);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s;
}
.side-menu__cta:hover {
    background: var(--med-accent-dark);
}
.side-menu__contact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.side-menu__contact p {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    color: #888;
    margin: 0;
    line-height: 1.5;
}
.side-menu__contact a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}
.side-menu__contact a:hover { color: #333; }
.side-menu__social-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.side-menu__social-bar span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #999;
    margin-right: auto;
}
.side-menu__social-bar a {
    color: #555;
    transition: color 0.3s;
}
.side-menu__social-bar a:hover { color: #111; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85em 1.8em; font-family: var(--font-body); font-size: 0.82rem; font-weight: 500; color: var(--med-black); background: var(--med-cream); border: none; border-radius: 6px; cursor: pointer; transition: all 0.3s var(--ease-out); text-decoration: none; letter-spacing: 0.01em; }
.btn:hover { background: var(--med-white); transform: translateY(-1px); }
.btn--sm, .site-header .btn { padding: 0.7em 1.6em; font-size: 0.78rem; border: 1px solid rgba(255,255,255,0.3); background: transparent; color: rgba(255,255,255,0.9); border-radius: 50px; }
.btn--sm:hover, .site-header .btn:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); color: var(--med-white); transform: none; }
.btn--outline { background: transparent; color: var(--med-cream); border: 1px solid rgba(255,255,255,0.25); border-radius: 50px; }
.btn--outline:hover { border-color: var(--med-cream); background: var(--med-cream); color: #111; }
.btn--accent { background: var(--med-accent); color: var(--med-black); border-radius: 50px; border: none; }
.btn--accent:hover { background: var(--med-accent-dark); }
.btn--lg { padding: 1em 2.4em; font-size: 0.88rem; }

/* ============================================
   HERO — Video Background
   ============================================ */
.hero { min-height: 100vh; width: 100%; display: flex; align-items: center; justify-content: center; position: relative; background: #0a0a0a; }
.hero__video { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; overflow: hidden; }
.hero__video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(8,12,25,0.65) 0%, rgba(8,12,25,0.4) 40%, rgba(8,12,25,0.85) 100%); z-index: 1; }
.hero__content { position: relative; z-index: 2; width: 100%; max-width: var(--container); margin: 0 auto; padding: 8rem var(--gap) 10rem; text-align: center; display: flex; flex-direction: column; align-items: center; }
/* Waves overlaid on the bottom of the hero video */
.hero__waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
    pointer-events: none;
}
.hero__waves .waves {
    position: relative;
    width: 100%;
    height: 20vh;
    min-height: 120px;
    max-height: 200px;
    display: block;
    margin: 0;
}
.hero__subtitle { font-size: 0.85rem; font-weight: 400; letter-spacing: 0.08em; color: var(--med-muted); margin-bottom: 1.5rem; }
/* Subtitle pill */
.hero__subtitle-pill {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.7);
    padding: 0.6em 0;
    border: none;
    border-radius: 0;
    margin-bottom: 2rem;
}
.hero__title { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 80px); font-weight: 300; line-height: 1.05; color: var(--med-white); margin-bottom: 1.5rem; max-width: 1100px; white-space: normal; }
.hero__title-light { font-weight: 300; display: block; margin-bottom: 0.1em; }
.hero__title .dtext { display: inline; font-size: inherit; line-height: inherit; margin-top: 0; }
/* "Care." in italic */
.dtext-italic {
    font-family: var(--font-display);
    font-weight: 300;
    font-style: normal;
    background: linear-gradient(135deg, #8c7b6b 0%, #c4b49a 25%, #8c7b6b 45%, #b0a090 65%, #7a6a5a 85%, #c4b49a 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: apple-titanium 4s linear infinite;
}
.dtext {
    font-family: var(--font-display);
    font-weight: 300;
    font-style: normal;
    background: linear-gradient(135deg, #8c7b6b 0%, #c4b49a 25%, #8c7b6b 45%, #b0a090 65%, #7a6a5a 85%, #c4b49a 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: apple-titanium 4s linear infinite;
}
@keyframes apple-titanium {
    0%   { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}
.hero__desc { font-size: clamp(0.9rem, 1.4vw, 1.05rem); color: rgba(255,255,255,0.7); max-width: 600px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero__desc strong { color: var(--med-text); font-weight: 500; }
.hero__actions { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; justify-content: center; }
.hero__stat { display: flex; align-items: baseline; gap: 0.75rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--med-border); }
.hero__stat-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 400; color: var(--med-accent); }
.hero__stat-label { font-size: 0.85rem; color: var(--med-muted); max-width: 220px; }

/* ---- Sections ---- */
.section { padding: var(--section-pad) 0; }
.section--dark { background: #0b0f1a; }
.section--surface { background: var(--med-surface); }
.section__label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--med-accent); margin-bottom: 1rem; display: block; }
.section__title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; line-height: 1.2; color: var(--med-white); margin-bottom: 1rem; }
.section__subtitle { font-size: 0.85rem; font-weight: 400; letter-spacing: 0.05em; color: var(--med-muted); margin-bottom: 0.5rem; }
.section__desc { font-size: 1rem; color: var(--med-muted); max-width: 600px; line-height: 1.8; }

/* ---- Steps (How it works) ---- */
.steps { counter-reset: step; }
.step { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; padding: 3rem 0; border-bottom: 1px solid var(--med-border); }
@media (min-width: 768px) { .step { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.step:nth-child(even) .step__image { order: -1; }
@media (max-width: 767px) { .step:nth-child(even) .step__image { order: 0; } }
.step__image { overflow: hidden; border-radius: 12px; min-width: 0; }
.step__image img { border-radius: 12px; width: 100%; height: auto; max-height: 400px; object-fit: cover; display: block; }
.step__content { counter-increment: step; min-width: 0; }
.step__number { font-family: var(--font-display); font-size: 3.5rem; font-weight: 400; color: var(--med-accent); line-height: 1; margin-bottom: 1rem; opacity: 0.4; }
.step__number::before { content: counter(step) "."; }
.step__title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--med-white); margin-bottom: 0.75rem; }
.step__desc { font-size: 0.95rem; color: var(--med-muted); line-height: 1.8; }

/* ---- Philosophy ---- */
.philosophy { text-align: left; }
.philosophy .section__title { max-width: 600px; margin-bottom: 1rem; font-weight: 300; }
.philosophy .section__title strong { font-weight: 800; }
.philosophy .section__desc { max-width: 850px; }

/* ---- CTA ---- */
.cta { text-align: center; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(196,168,130,0.06) 0%, transparent 70%); }
.cta__inner { position: relative; z-index: 2; }
.cta .section__desc { margin: 0 auto 2rem; }

/* ---- Pillars ---- */
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.pillar-card { background: var(--med-card); border: 1px solid var(--med-border); border-radius: 12px; padding: 2rem; transition: all 0.4s var(--ease-out); }
.pillar-card:hover { border-color: rgba(196,168,130,0.2); transform: translateY(-3px); }
.pillar-card__image { width: 48px; height: 48px; margin-bottom: 1.5rem; opacity: 0.7; }
.pillar-card__image img { width: 100%; height: 100%; object-fit: contain; }
.pillar-card__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--med-white); margin-bottom: 0.5rem; }
.pillar-card__desc { font-size: 0.85rem; color: var(--med-muted); line-height: 1.7; }

/* ---- Partners ---- */
.partners { text-align: center; }
.partners-logos { display: flex; gap: 3rem; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 2rem; opacity: 0.5; }
.partners-logos img { height: 40px; width: auto; filter: brightness(0) invert(1); }

/* ---- Gallery ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 0.5rem; }
.gallery-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 4px; transition: opacity 0.3s; }
.gallery-grid img:hover { opacity: 0.8; }

/* ---- Page Header (inner pages) ---- */
.page-header { padding: 10rem 0 4rem; text-align: center; position: relative; }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(196,168,130,0.06) 0%, transparent 70%); }
.page-header__inner { position: relative; z-index: 2; }
.page-header__title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 400; color: var(--med-white); margin-bottom: 0.5rem; }
.page-header__sub { font-size: 0.95rem; color: var(--med-muted); }

/* ---- Team Grid ---- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.team-card { background: var(--med-card); border: 1px solid var(--med-border); border-radius: 12px; overflow: hidden; transition: all 0.4s var(--ease-out); }
.team-card:hover { border-color: rgba(196,168,130,0.2); transform: translateY(-3px); }
.team-card__photo { aspect-ratio: 3/4; overflow: hidden; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.team-card:hover .team-card__photo img { transform: scale(1.03); }
.team-card__info { padding: 1.5rem; }
.team-card__name { font-family: var(--font-display); font-size: 1.2rem; color: var(--med-white); margin-bottom: 0.15rem; }
.team-card__role { font-size: 0.8rem; color: var(--med-accent); letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.team-card__bio { font-size: 0.85rem; color: var(--med-muted); line-height: 1.7; }

/* ---- Services Grid ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.service-card { background: var(--med-card); border: 1px solid var(--med-border); border-radius: 12px; padding: 2.5rem 2rem; transition: all 0.4s var(--ease-out); }
.service-card:hover { border-color: rgba(196,168,130,0.2); transform: translateY(-3px); }
.service-card__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--med-white); margin-bottom: 0.75rem; }
.service-card__desc { font-size: 0.85rem; color: var(--med-muted); line-height: 1.7; }

/* ---- Divider ---- */
.divider { width: 40px; height: 1px; background: var(--med-accent); margin: 1.5rem 0; opacity: 0.5; }
.divider--center { margin: 1.5rem auto; }

/* ---- Footer ---- */
.site-footer {
    background: #0b0f1a;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}
.footer__card {
    background: #f0efed;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
}
.footer__top {
    padding: 4rem 0 2rem;
}
.footer__top-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}
@media (max-width: 768px) { .footer__top-inner { grid-template-columns: 1fr; gap: 2rem; padding: 0 1.5rem; } }
.footer__brand-logo {
    height: 32px;
    width: auto;
    margin-bottom: 0.75rem;
}
.footer__brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.75rem;
}
.footer__tagline {
    font-size: 0.95rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.75rem;
}
.footer__desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 1.5rem;
}
.footer__social {
    display: flex;
    gap: 10px;
}
.footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    transition: all 0.3s;
}
.footer__social a:hover {
    border-color: #999;
    color: #111;
}
.footer__col h5 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1.25rem;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 0.65rem; }
.footer__col a {
    font-size: 0.85rem;
    color: #555;
    transition: color 0.3s;
}
.footer__col a:hover { color: #111; }
.footer__bottom {
    text-align: center;
    padding: 2rem 3rem;
    border-top: 1px solid rgba(0,0,0,0.07);
    margin: 0 2rem;
}
.footer__address {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.4rem;
}
.footer__copy {
    font-size: 0.75rem;
    color: #aaa;
    font-style: italic;
}
.footer__top {
    padding: 5rem 0 4rem;
}
.footer__top-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}
@media (max-width: 768px) { .footer__top-inner { grid-template-columns: 1fr; gap: 2rem; } }
/* ---- Scroll Animations ---- */
.fade-in { opacity: 0; transform: translateY(25px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); }
.stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }

/* ---- Contact Form ---- */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--med-white); margin-bottom: 0.5rem; letter-spacing: 0.03em; }
.form-group input,
.form-group textarea,
.form-group select { width: 100%; padding: 0.85rem 1rem; background: var(--med-card); border: 1px solid var(--med-border); border-radius: 8px; color: var(--med-text); font-family: var(--font-body); font-size: 0.9rem; transition: border-color 0.3s; }
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--med-accent); }
.form-group textarea { min-height: 140px; resize: vertical; }

/* ============================================
   VITA PANELS — How It Works Cards
   ============================================ */
.vp-section {
    --vp-bg: #0b0f1a;
    --vp-text-primary: #e8e4e0;
    --vp-text-muted: #888888;
    --vp-radius-img: 14px;
    --vp-font-display: var(--font-display);
    --vp-font-body: var(--font-body);
    --vp-gap: 20px;
    --vp-section-py: 80px;
    --vp-img-height: 400px;
    --vp-duration: 1.1s;
    --vp-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --vp-stagger: 200ms;
    padding: 0;
    background: var(--vp-bg);
    border-radius: 0;
    margin-top: 0;
    position: relative;
    z-index: 3;
}
.vp-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 60px 50px 30px;
    background: transparent;
}
.vp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--vp-gap); align-items: start; }
@media (max-width: 900px) { .vp-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }
.vita-panel { display: flex; flex-direction: column; gap: 18px; margin: 0; padding: 0; opacity: 0; transform: translateY(32px); transition: opacity var(--vp-duration) var(--vp-ease), transform var(--vp-duration) var(--vp-ease); }
.vita-panel.vp-revealed { opacity: 1; transform: translateY(0); }
.vita-panel[data-step="1"] { transition-delay: 0ms; }
.vita-panel[data-step="2"] { transition-delay: var(--vp-stagger); }
.vita-panel[data-step="3"] { transition-delay: calc(var(--vp-stagger) * 2); }
.vita-panel__visual { position: relative; border-radius: var(--vp-radius-img); overflow: hidden; background: #1a1624; margin: 0; padding: 0; }
.vita-panel__image { display: block; width: 100%; height: var(--vp-img-height); object-fit: cover; border-radius: var(--vp-radius-img); max-width: none; max-height: none; transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1); }
.vita-panel:hover .vita-panel__image { transform: scale(1.03); }
.vita-panel__badge { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #ffffff; text-align: center; pointer-events: none; }
.vita-panel__stat { font-family: var(--vp-font-display); font-size: clamp(52px, 6vw, 72px); font-weight: 300; line-height: 1; letter-spacing: -0.02em; margin: 0; padding: 0; }
.vita-panel__stat-label { font-family: var(--vp-font-body); font-size: 13px; font-weight: 400; line-height: 1.5; color: rgba(255, 255, 255, 0.85); margin-top: 8px; }
.vita-panel__body { padding: 4px 2px 0; display: flex; flex-direction: column; gap: 6px; }
.vita-panel__number { font-family: var(--vp-font-body); font-size: 14px; font-weight: 500; color: var(--vp-text-primary); letter-spacing: 0.01em; margin: 0; padding: 0; }
.vita-panel__title { font-family: var(--vp-font-body); font-size: clamp(15px, 1.4vw, 16px); font-weight: 500; color: var(--vp-text-primary); line-height: 1.35; margin: 0; padding: 0; }
.vita-panel__desc { font-family: var(--vp-font-body); font-size: 14px; font-weight: 300; color: var(--vp-text-muted); line-height: 1.65; max-width: 36ch; margin: 0; padding: 0; }
@media (prefers-reduced-motion: reduce) { .vita-panel { opacity: 1; transform: none; transition: none; } }

/* ============================================
   WAVES TRANSITION
   ============================================ */
/* waves-wrap: now rendered inside .hero__waves — standalone class kept for other pages */
.waves-wrap {
    position: relative;
    width: 100%;
    background: transparent;
    z-index: 4;
}
.waves-wrap::after {
    content: '';
    display: block;
    height: 80px;
    background: #0b0f1a;
    margin-top: -2px;
}
.waves {
    position: relative;
    width: 100%;
    height: 16vh;
    margin-bottom: 0;
    min-height: 100px;
    max-height: 150px;
    display: block;
}
.waves.no-animation .moving-waves > use { animation: none; }
.moving-waves > use { animation: wave-move 40s cubic-bezier(.55,.5,.45,.5) infinite; }
.moving-waves > use:first-child { animation-delay: -2s; animation-duration: 11s; }
.moving-waves > use:nth-child(2) { animation-delay: -4s; animation-duration: 13s; }
.moving-waves > use:nth-child(3) { animation-delay: -3s; animation-duration: 15s; }
.moving-waves > use:nth-child(4) { animation-delay: -4s; animation-duration: 20s; }
.moving-waves > use:nth-child(5) { animation-delay: -4s; animation-duration: 25s; }
.moving-waves > use:nth-child(6) { animation-delay: -3s; animation-duration: 30s; }
@keyframes wave-move {
    0% { transform: translate3d(-90px, 0, 0); }
    100% { transform: translate3d(85px, 0, 0); }
}

/* ============================================
   MEMBERSHIP — Sticky Left + Scrolling Right
   ============================================ */
.membership-section {
    padding-top: 2rem;
}
.membership-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 900px) {
    .membership-wrap {
        grid-template-columns: 1fr;
    }
    .membership-sticky {
        position: relative !important;
        top: auto !important;
    }
}

/* Sticky left card */
.membership-sticky {
    position: sticky;
    top: 100px;
}
.membership-card {
    background: #141820;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}
.membership-card__image {
    width: auto;
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}
.membership-card__label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--med-accent);
    margin-bottom: 1.25rem;
}
.membership-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.membership-card__desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 2rem;
}

/* Scrolling right grid */
.membership-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Feature cards */
.membership-feature {
    background: #141820;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.membership-feature__header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.25rem;
}
.membership-feature__num {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--med-accent);
    white-space: nowrap;
}
.membership-feature__line {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}
.membership-feature__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}
.membership-feature__desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   PHILOSOPHY VIDEO SECTION
   ============================================ */
#fe-membership-footer-video-wrap {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}
#fe-membership-footer-video {
    border-radius: 20px;
    display: block;
    width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
}
#fe-membership-footer-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 20px;
    pointer-events: none;
}
#fe-membership-footer-video-text {
    position: absolute;
    bottom: 60px;
    left: 33%;
    right: 30px;
    text-align: left;
    color: #ffffff;
}
#fe-membership-footer-video-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.15;
}
#fe-membership-footer-video-text h2 strong {
    font-weight: 800;
}
#fe-membership-footer-video-text p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 10px;
    max-width: none;
    padding-right: 20px;
}
#fe-membership-footer-video-text p:last-child {
    margin-bottom: 0;
}

/* Section Heading with lines */
.section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #bd9c5c;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.section-heading .line {
    display: block;
    flex: 0 1 100px;
    height: 1px;
    background-color: #bd9c5c;
}

@media (max-width: 768px) {
    #fe-membership-footer-video-text {
        left: 20px;
        right: 20px;
        bottom: 30px;
    }
}

/* ============================================
   FOUR PILLARS INTRO
   ============================================ */
.pillars-intro { text-align: center; padding: var(--section-pad) 0; }
.pillars-intro__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--med-white);
    margin-bottom: 1.5rem;
}
.pillars-intro__title strong {
    font-weight: 800;
}
.pillars-intro__desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--med-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   THE JOURNEY — How It Works
   ============================================ */
.journey-section {
    padding-bottom: 2rem;
}
.journey-pill {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--med-accent);
    padding: 0.45em 1.2em;
    border: 1px solid rgba(196,168,130,0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.journey-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--med-white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.journey-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--med-muted);
    max-width: 650px;
    margin-bottom: 3.5rem;
}
.journey-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 768px) {
    .journey-steps { grid-template-columns: 1fr; }
}
.journey-step {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.journey-step__number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 200;
    color: rgba(255,255,255,0.15);
    line-height: 1;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.journey-step__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--med-white);
    line-height: 1.3;
}
.journey-step__desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--med-muted);
}

/* Light theme journey overrides */
[data-theme="light"] .journey-pill { border-color: rgba(154,126,90,0.3); }
[data-theme="light"] .journey-title { color: #111; }
[data-theme="light"] .journey-desc { color: #666; }
[data-theme="light"] .journey-step__number { color: rgba(0,0,0,0.1); border-bottom-color: rgba(0,0,0,0.08); }
[data-theme="light"] .journey-step__title { color: #111; }
[data-theme="light"] .journey-step__desc { color: #666; }

/* ============================================
   PILLARS CAROUSEL
   ============================================ */
.pillars-carousel-section { overflow: visible; }
.pillars-carousel-wrap {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
    overflow: visible;
}
.pillars-carousel {
    overflow: hidden;
}
.pillars-carousel__track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.pillars-carousel__card {
    position: relative;
    min-width: 0;
    width: 800px;
    max-width: calc(50% - 10px);
    height: 500px;
    max-height: 500px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}
.pillars-carousel__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.pillars-carousel__card:hover img {
    transform: scale(1.04);
}
.pillars-carousel__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.65) 100%);
    pointer-events: none;
}
.pillars-carousel__text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: #fff;
}
.pillars-carousel__label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--med-accent);
    margin-bottom: 0.75rem;
}
.pillars-carousel__line {
    flex: 0 1 60px;
    height: 1px;
    background: var(--med-accent);
    display: inline-block;
}
.pillars-carousel__text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    margin: 0 0 10px;
    color: #fff;
    line-height: 1.2;
}
.pillars-carousel__text p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* Glass nav button */
.pillars-carousel__btn {
    position: absolute;
    right: -32px;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    background: rgba(150, 160, 180, 0.35);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.35),
        inset 0 -1px 0 rgba(0,0,0,0.08),
        0 4px 24px rgba(0,0,0,0.2);
    transition: all 0.25s ease;
    z-index: 10;
}
.pillars-carousel__btn:hover {
    background: rgba(150, 160, 180, 0.5);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.5),
        inset 0 -1px 0 rgba(0,0,0,0.06),
        0 6px 32px rgba(0,0,0,0.25);
    color: #fff;
}

@media (max-width: 900px) {
    .pillars-carousel__card {
        min-width: calc(80% - 10px);
    }
}

/* ============================================
   HOW IT WORKS — Steps with Image Cards
   ============================================ */
.hiw-section {
    padding-top: 3rem;
}
.hiw-header {
    margin-bottom: 4rem;
}
.hiw-step-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--med-accent);
    margin-bottom: 1rem;
}
.hiw-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--med-white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.hiw-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--med-muted);
    max-width: 650px;
}

/* Individual step */
.hiw-step {
    margin-bottom: 5rem;
}
.hiw-step:last-child { margin-bottom: 0; }
.hiw-step__header {
    margin-bottom: 2.5rem;
}
.hiw-step__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--med-white);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.hiw-step__subtitle {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--med-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* 3-column image cards */
.hiw-step__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .hiw-step__cards { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}
.hiw-step__card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.hiw-step__card-image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #1a1a1a;
}
.hiw-step__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hiw-step__card:hover .hiw-step__card-image img {
    transform: scale(1.04);
}
.hiw-step__card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--med-white);
    line-height: 1.3;
    margin: 0;
}
.hiw-step__card p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--med-muted);
    margin: 0;
}

/* Divider between steps */
.hiw-step + .hiw-step {
    padding-top: 5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* Light theme */
[data-theme="light"] .hiw-title { color: #111; }
[data-theme="light"] .hiw-desc { color: #666; }
[data-theme="light"] .hiw-step__title { color: #111; }
[data-theme="light"] .hiw-step__subtitle { color: #666; }
[data-theme="light"] .hiw-step__card h4 { color: #111; }
[data-theme="light"] .hiw-step__card p { color: #666; }
[data-theme="light"] .hiw-step__card-image { background: #e8e8e5; }
[data-theme="light"] .hiw-step + .hiw-step { border-top-color: rgba(0,0,0,0.08); }

/* ============================================
   THE JOURNEY — How It Works Cards
   ============================================ */
.journey-section {
    padding-top: 2rem;
    padding-bottom: var(--section-pad);
}
.journey-header {
    margin-bottom: 4rem;
}
.journey-pill {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--med-accent);
    padding: 0.45em 1.2em;
    border: 1px solid rgba(196,168,130,0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.journey-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--med-white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.journey-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--med-muted);
    max-width: 650px;
}

/* Cards grid */
.journey-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .journey-cards { grid-template-columns: 1fr; max-width: 500px; }
}

/* Individual card */
.journey-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: border-color 0.4s ease, transform 0.4s ease;
}
.journey-card:hover {
    border-color: rgba(196,168,130,0.2);
    transform: translateY(-4px);
}

/* Number row with dot and line */
.journey-card__number-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.journey-card__number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 200;
    color: rgba(255,255,255,0.08);
    line-height: 1;
    flex-shrink: 0;
}
.journey-card__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--med-accent);
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(196,168,130,0.35);
}
.journey-card__line {
    flex: 1;
    height: 1px;
    background: var(--med-accent);
}

/* Card body */
.journey-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.journey-card__label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--med-accent);
}
.journey-card__body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--med-white);
    line-height: 1.3;
    margin: 0;
}
.journey-card__body p {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--med-muted);
    margin: 0;
}

/* Light theme */
[data-theme="light"] .journey-pill { border-color: rgba(154,126,90,0.3); }
[data-theme="light"] .journey-title { color: #111; }
[data-theme="light"] .journey-desc { color: #666; }
[data-theme="light"] .journey-card { background: #fff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .journey-card:hover { border-color: rgba(0,0,0,0.15); }
[data-theme="light"] .journey-card__number { color: rgba(0,0,0,0.06); }
[data-theme="light"] .journey-card__line { background: var(--med-accent-dark); }
[data-theme="light"] .journey-card__body h3 { color: #111; }
[data-theme="light"] .journey-card__body p { color: #666; }

/* ============================================
   VITALL — Sticky Image Right + Scrolling Left
   ============================================ */
.vitall-section {
    padding-top: 2rem;
}
.vitall-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 900px) {
    .vitall-wrap { grid-template-columns: 1fr; }
    .vitall-sticky { position: relative !important; top: auto !important; order: -1; }
}

/* Scrolling left */
.vitall-scroll {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.vitall-intro {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}
.vitall-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--med-white);
    line-height: 1.2;
}
.vitall-desc {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--med-muted);
    max-width: 500px;
}

/* Feature items */
.vitall-feature {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.75rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.vitall-feature:hover {
    border-color: rgba(196,168,130,0.2);
    transform: translateY(-2px);
}
.vitall-feature__top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.vitall-feature__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(196,168,130,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.vitall-feature h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--med-white);
    margin: 0;
    line-height: 1.3;
}
.vitall-feature p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--med-muted);
    margin: 0;
}

/* Logo under image */
.vitall-sticky .vitall-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    margin-top: 1.25rem;
}

/* Sticky right image */
.vitall-sticky {
    position: sticky;
    top: 100px;
}
.vitall-image-card {
    border-radius: 20px;
    overflow: hidden;
    background: #141820;
    border: 1px solid rgba(255,255,255,0.06);
}
.vitall-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Light theme */
[data-theme="light"] .vitall-logo { filter: none; }
[data-theme="light"] .vitall-title,
[data-theme="light"] .vitall-title span { color: #111; }
[data-theme="light"] .vitall-desc { color: #666; }
[data-theme="light"] .vitall-feature { background: #fff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .vitall-feature:hover { border-color: rgba(0,0,0,0.15); }
[data-theme="light"] .vitall-feature h3 { color: #111; }
[data-theme="light"] .vitall-feature p { color: #666; }
[data-theme="light"] .vitall-feature__icon { background: rgba(154,126,90,0.1); }
[data-theme="light"] .vitall-image-card { background: #f0efed; border-color: rgba(0,0,0,0.08); }

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners-section { padding: var(--section-pad) 0; }
.partners-arrow {
    margin-bottom: 30px;
}
.partners-section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--med-white);
    margin-bottom: 1rem;
}
.partners-section__desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--med-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
}
.partners-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}
.partners-logos-row img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s;
}
.partners-logos-row img:hover {
    opacity: 1;
}
.partner-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--med-white);
    letter-spacing: -0.01em;
}

/* ============================================
   SOCIAL GALLERY STRIP
   ============================================ */
.gallery-strip-section { padding: 0 0 3rem; }
.gallery-strip {
    display: grid;
    grid-template-columns: 1fr 1fr 1.8fr 1fr 1fr;
    gap: 12px;
    align-items: center;
}
.gallery-strip__item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
}
.gallery-strip__item--cta {
    aspect-ratio: auto;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.gallery-strip__item--cta img {
    aspect-ratio: 16 / 10;
}
.gallery-strip__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-strip__item:hover img {
    transform: scale(1.05);
}
.gallery-strip__item--cta .gallery-strip__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    pointer-events: none;
}
.gallery-strip__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 80%;
}
.gallery-strip__social {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: 0.05em;
}
.gallery-strip__connect {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

@media (max-width: 768px) {
    .gallery-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 500px) {
    .gallery-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   THEME TOGGLE
   ============================================ */
/* ============================================
   FLOATING CTA BUTTON
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 5.5rem;
    z-index: 9998;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7em 1.6em;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: #111;
    background: var(--med-accent);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}
.floating-cta.is-visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}
.floating-cta:hover {
    background: var(--med-accent-dark);
}

/* ============================================
   DISCOVERY CALL MODAL
   ============================================ */
.discovery-modal {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    visibility: hidden;
}
.discovery-modal.is-open {
    pointer-events: all;
    visibility: visible;
}
.discovery-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.4s ease;
}
.discovery-modal.is-open .discovery-modal__backdrop {
    background: rgba(0,0,0,0.6);
}
.discovery-modal__panel {
    position: relative;
    width: 560px;
    max-width: calc(100vw - 2rem);
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 80px rgba(0,0,0,0.3);
    transform: translateY(30px) scale(0.96);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    z-index: 2;
}
.discovery-modal.is-open .discovery-modal__panel {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.discovery-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s;
}
.discovery-modal__close:hover {
    background: #f5f5f3;
    color: #111;
}
.discovery-modal__title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.75rem;
    /* Override global h2 blur animation */
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
}
.discovery-modal__desc {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
    margin: 0 0 1.5rem;
}
.discovery-modal__form {
    min-height: 200px;
}

/* ---- Theme Switch (iOS-style with embedded icons, fixed bottom-right) ---- */
.theme-switch {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: block;
    cursor: pointer;
}
.theme-switch input { display: none; }
.theme-switch__track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 56px;
    height: 30px;
    border-radius: 30px;
    background: #c0a986;
    position: relative;
    transition: background 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 0 7px;
}
.theme-switch__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}
.theme-switch__icon--sun { color: rgba(255,255,255,0.9); }
.theme-switch__icon--moon { color: rgba(255,255,255,0.4); }
.theme-switch input:checked ~ .theme-switch__track .theme-switch__icon--sun { color: rgba(255,255,255,0.4); }
.theme-switch input:checked ~ .theme-switch__track .theme-switch__icon--moon { color: rgba(255,255,255,0.9); }
.theme-switch__thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}
.theme-switch input:checked ~ .theme-switch__track {
    background: #333;
}
.theme-switch input:checked ~ .theme-switch__track .theme-switch__thumb {
    transform: translateX(26px);
}

/* ============================================
   LIGHT THEME OVERRIDES
   ============================================ */
[data-theme="light"] body { background: #f4f8f9; }
[data-theme="light"] .section--dark { background: #f3f0eb; }
[data-theme="light"] .site-header {
    background: rgba(255, 255, 255, 0.65);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}
[data-theme="light"] .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.88);
}
[data-theme="light"] .header__nav a { color: rgba(0,0,0,0.6); }
[data-theme="light"] .header__nav a:hover,
[data-theme="light"] .header__nav a.is-active { color: #111; }
[data-theme="light"] .btn--sm,
[data-theme="light"] .site-header .btn {
    border-color: rgba(0,0,0,0.2) !important;
    color: #333 !important;
}
[data-theme="light"] .btn--sm:hover,
[data-theme="light"] .site-header .btn:hover {
    border-color: rgba(0,0,0,0.4) !important;
    background: rgba(0,0,0,0.05) !important;
    color: #111 !important;
}
[data-theme="light"] .header__login {
    color: #555;
    border-color: rgba(0,0,0,0.2);
}
[data-theme="light"] .header__login:hover {
    color: #111;
    border-color: rgba(0,0,0,0.4);
}
[data-theme="light"] .header__burger span { background: #333; }
[data-theme="light"] .mobile-nav { background: #f4f8f9; }
[data-theme="light"] .mobile-nav__inner a { color: #333; }
[data-theme="light"] .hero__overlay {
    background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.2) 40%, rgba(255,255,255,0.7) 100%);
}
[data-theme="light"] .hero__title,
[data-theme="light"] .hero__title-light { color: #111; }
[data-theme="light"] .logo-dark { display: none; }
[data-theme="light"] .logo-light { display: block; }
[data-theme="light"] .hero__desc,
[data-theme="light"] .hero__desc strong { color: #444; }
[data-theme="light"] .hero__subtitle { color: #888; }
[data-theme="light"] .btn--outline { border-color: rgba(0,0,0,0.2); color: #333; }
[data-theme="light"] .btn--outline:hover { border-color: rgba(0,0,0,0.5); }
[data-theme="light"] .btn--lg:not(.btn--outline) { background: #111; color: #fff; }
[data-theme="light"] .btn--lg:not(.btn--outline):hover { background: #333; }
[data-theme="light"] .vp-section { background: #f3f0eb; }
[data-theme="light"] .vp-container { background: transparent; }
[data-theme="light"] .philosophy .section__title,
[data-theme="light"] .philosophy .section__title strong { color: #111; }
[data-theme="light"] .philosophy .section__desc { color: #666; }
[data-theme="light"] .pillars-intro__title { color: #111; }
[data-theme="light"] .pillars-intro__desc { color: #666; }
[data-theme="light"] .partners-section__title { color: #111; }
[data-theme="light"] .partners-section__desc { color: #666; }
[data-theme="light"] .partner-text { color: #111; }
[data-theme="light"] .partners-logos-row img { filter: none; opacity: 0.7; }
[data-theme="light"] .gallery-strip-section { background: #f4f8f9; }
[data-theme="light"] .pillars-carousel__btn {
    background: rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.12);
    color: #333;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
[data-theme="light"] .pillars-carousel__btn:hover {
    background: rgba(0,0,0,0.15);
}
[data-theme="light"] .section-heading { color: #9a7e5a; }
[data-theme="light"] .section-heading .line { background-color: #9a7e5a; }
[data-theme="light"] .partners-arrow svg { stroke: #9a7e5a; }
[data-theme="light"] .waves-wrap { background: #f3f0eb; }

/* Light mode — hero waves become light */
[data-theme="light"] .hero__waves .moving-waves > use { fill: rgba(243,240,235,0.4); }
[data-theme="light"] .hero__waves .moving-waves > use:last-child { fill: #f3f0eb; }
[data-theme="light"] .hero__waves .moving-waves > use:nth-child(5) { fill: rgba(243,240,235,0.7); }

/* Light theme — new sections */
[data-theme="light"] .section--dark { background: #f5f5f3; }
[data-theme="light"] .hero__subtitle-pill { color: rgba(0,0,0,0.6); }
[data-theme="light"] .hero__desc { color: #333; }
[data-theme="light"] .dtext,
[data-theme="light"] .dtext-italic { -webkit-text-fill-color: #9a7e5a; background: none; }
[data-theme="light"] .btn--header { border-color: rgba(0,0,0,0.2); color: #333; }
[data-theme="light"] .btn--header:hover { border-color: rgba(0,0,0,0.4); background: rgba(0,0,0,0.05); color: #111; }
[data-theme="light"] .header__burger { border-color: rgba(0,0,0,0.15); }
[data-theme="light"] .header__burger span { background: #333; }
[data-theme="light"] .nav-pill { background: #333; color: #fff; }
[data-theme="light"] .vp-section { background: #f3f0eb; }
[data-theme="light"] .vita-panel__title { color: #111; }
[data-theme="light"] .vita-panel__desc { color: #666; }
[data-theme="light"] .membership-section { background: #f3f0eb; }
[data-theme="light"] .membership-card { background: #fff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .membership-card__label { color: var(--med-accent-dark); }
[data-theme="light"] .membership-card__title { color: #111; }
[data-theme="light"] .membership-card__desc { color: #666; }
[data-theme="light"] .membership-feature { background: #fff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .membership-feature__title { color: #111; }
[data-theme="light"] .membership-feature__desc { color: #666; }
[data-theme="light"] .membership-feature__line { background: rgba(0,0,0,0.1); }
[data-theme="light"] .section__title,
[data-theme="light"] .section__title strong { color: #111; }
[data-theme="light"] .section__desc { color: #666; }
[data-theme="light"] .cinematic-quote__text { color: rgba(0,0,0,0.8) !important; }
[data-theme="light"] .cinematic-quote__text em { color: #111; }
[data-theme="light"] .cinematic-quote__attr { color: rgba(0,0,0,0.4); }
[data-theme="light"] .site-footer { background: #f4f8f9; }

/* Smooth transition for theme change */
body, .site-header, .section--dark, .hero__overlay,
.header__nav a, .btn, .membership-card, .membership-feature,
.theme-toggle {
    transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

/* ---- Login button: icon only on mobile ---- */
.login-icon { display: none; }
.login-text { display: inline; }
@media (max-width: 768px) {
    .login-icon { display: inline; }
    .login-text { display: none; }
    .header__login-btn { padding: 0.6em !important; min-width: 38px; justify-content: center; }
}

/* ---- Logo: prevent squashing ---- */
.header__logo img {
    height: 28px;
    width: auto;
    min-width: 60px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .btn--discovery {
        padding: 0.55em 1em;
        font-size: 0.7rem;
    }
}

/* ---- Hero: more top padding on mobile ---- */
@media (max-width: 768px) {
    .hero__content {
        padding-top: 10rem;
    }
    .hero__subtitle-pill {
        margin-bottom: 1.5rem;
    }
}

/* ---- Video overlay text: fit on mobile ---- */
@media (max-width: 768px) {
    #fe-membership-footer-video-text h2 span:first-child {
        font-size: 20px !important;
    }
    #fe-membership-footer-video-text h2 span:last-child {
        font-size: 0.75em !important;
    }
    #fe-membership-footer-video-text p {
        font-size: 13px;
        line-height: 1.6;
    }
    #fe-membership-footer-video {
        min-height: 450px;
    }
    #fe-membership-footer-video-text {
        left: 20px;
        right: 20px;
        bottom: 25px;
    }
}

@media (max-width: 1024px) {
    .hero__title {
        white-space: normal;
        font-size: clamp(2rem, 5vw, 3.5rem);
        max-width: 100%;
    }
    .hero__content {
        padding: 7rem var(--gap) 3rem;
    }
    .hero__desc {
        max-width: 100%;
    }
    .pillars-carousel__card {
        min-width: calc(50% - 10px);
    }
    #fe-membership-footer-video-text {
        left: 20%;
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .hero__content {
        padding: 6rem 1.5rem 10rem;
        text-align: center;
        align-items: center;
    }
    .hero__desc {
        font-size: 0.9rem;
        max-width: 100%;
    }
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .vp-section {
        border-radius: 0;
    }
    .vp-container {
        padding: 40px 20px 30px;
    }
    .vp-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .philosophy .section__title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .philosophy .section__desc {
        max-width: 100%;
        font-size: 0.9rem;
    }
    #fe-membership-footer-video {
        min-height: 400px;
    }
    #fe-membership-footer-video-text {
        left: 20px;
        right: 20px;
        bottom: 30px;
    }
    #fe-membership-footer-video-text h2 {
        font-size: 1.5rem;
    }
    .pillars-intro__title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .pillars-intro__desc {
        font-size: 0.85rem;
        max-width: 100%;
    }
    .pillars-carousel__card {
        min-width: calc(85% - 10px);
    }
    .pillars-carousel-section { padding-top: 1.5rem !important; }
    .partners-section__title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    .partners-logos-row {
        gap: 2rem;
    }
    .partner-text {
        font-size: 1.3rem;
    }
    .gallery-strip {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .gallery-strip__item--cta {
        grid-column: 1 / -1;
    }
    .footer__top-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    /* Undo negative margins on mobile */
    .pillars-intro.fade-in { margin-top: 0 !important; }
    .partners-section { margin-top: 0 !important; }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.6rem;
    }
    .hero__subtitle {
        font-size: 0.75rem;
    }
    .site-header { padding: 0.75rem 0; }
    .header__logo img { height: 24px; }
    .vp-section {
        border-radius: 0;
    }
    .vp-container {
        padding: 30px 16px 30px;
    }
    #fe-membership-footer-video-text h2 {
        font-size: 1.2rem;
    }
    #fe-membership-footer-video-text p {
        font-size: 13px;
    }
    .section-heading { font-size: 9px; }
    .pillars-carousel__btn { width: 48px; height: 48px; }
}

/* ============================================
   LIGHT PAGE (Contact, etc.)
   ============================================ */
.page-light { background: #f5f5f3; }
.page-light .site-header {
    background: rgba(245, 245, 243, 0.65);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}
.page-light .site-header.is-scrolled {
    background: rgba(245, 245, 243, 0.9);
}
.page-light .header__nav a { color: rgba(0,0,0,0.55); }
.page-light .header__nav a:hover,
.page-light .header__nav a.is-active { color: #111; }
.page-light .btn--sm,
.page-light .site-header .btn {
    border-color: rgba(0,0,0,0.2) !important;
    color: #333 !important;
}
.page-light .btn--sm:hover,
.page-light .site-header .btn:hover {
    border-color: rgba(0,0,0,0.4) !important;
    background: rgba(0,0,0,0.05) !important;
}
.page-light .header__login {
    color: #555;
    border-color: rgba(0,0,0,0.2);
}
.page-light .header__login:hover {
    color: #111;
    border-color: rgba(0,0,0,0.4);
}
.page-light .header__burger span { background: #333; }
.page-light .mobile-nav { background: #f5f5f3; }
.page-light .mobile-nav__inner a { color: #333; }

/* ---- Contact Hero ---- */
.contact-hero {
    padding: 10rem 0 3rem;
    background: #f5f5f3;
}
.contact-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: #111;
    margin-bottom: 1rem;
}
.contact-hero__desc {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
}

/* ---- Contact Cards Grid ---- */
.contact-cards-section {
    padding: 2rem 0 4rem;
    background: #f5f5f3;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ---- Contact Card ---- */
.contact-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}
.contact-card:hover {
    border-color: rgba(0,0,0,0.12);
}
.contact-card__icon {
    margin-bottom: auto;
}
.contact-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
}
.contact-card__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #111;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
}
.contact-card__body {
    margin-top: auto;
}
.contact-card__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.4rem;
}
.contact-card__desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.25rem;
    max-width: 340px;
}
.contact-card__btn {
    display: inline-block;
    padding: 0.6em 1.5em;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: #111;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s;
    width: fit-content;
}
.contact-card__btn:hover {
    border-color: rgba(0,0,0,0.4);
    background: rgba(0,0,0,0.03);
}

/* Dark card variant (Already a member) */
.contact-card--dark {
    background: #f0efed;
    border-color: rgba(0,0,0,0.04);
}
.contact-card--dark .contact-card__logo {
    background: #fff;
    color: #111;
    border: 1px solid rgba(0,0,0,0.08);
}
.contact-card__phone-img {
    position: absolute;
    right: -20px;
    top: 30px;
    width: 220px;
    pointer-events: none;
}
.contact-card__phone {
    width: 100%;
    height: auto;
    border-radius: 20px;
}
.contact-card__btn--filled {
    background: #111;
    color: #fff;
    border-color: #111;
}
.contact-card__btn--filled:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}

/* ---- Contact Location ---- */
.contact-location {
    padding: 2rem 0 4rem;
    background: #f5f5f3;
}
.contact-location__address {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.3rem;
}
.contact-location__phone {
    font-size: 0.85rem;
    color: #888;
}
.contact-location__phone a {
    color: #555;
    transition: color 0.3s;
}
.contact-location__phone a:hover {
    color: #111;
}

/* Light footer on light pages */
.page-light .site-footer {
    background: #eeeee9;
}
.page-light .footer__bottom {
    border-top-color: rgba(0,0,0,0.06);
}

/* ============================================
   HOW IT WORKS PAGE
   ============================================ */
.page-how { background: #f5f5f3; }

/* Hero */
.how-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.how-hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.how-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.how-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.how-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 8rem 1.5rem 4rem;
}
.how-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: 1rem;
}
.how-hero__desc {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

/* Steps */
.how-step {
    padding: 5rem 0;
    background: #f5f5f3;
}
.how-step--dark {
    background: #2e3032;
    padding: 5rem 3rem;
    border-radius: 40px;
    margin: 2rem 5%;
    opacity: 0;
    transform: translateY(60px) scale(0.97);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.how-step--dark.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.how-step__header {
    max-width: 650px;
    margin: 0 auto 3rem;
    text-align: center;
}
.how-step__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--med-accent);
    margin-bottom: 1rem;
    padding: 0.4em 1em;
    border: 1px solid var(--med-accent);
    border-radius: 50px;
}
.how-step__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 300;
    color: #111;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.how-step__desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
}
.how-step--dark .how-step__title { color: #fff; }
.how-step--dark .how-step__desc { color: rgba(255,255,255,0.6); }

/* Cards grid */
.how-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 900px) {
    .how-cards { grid-template-columns: 1fr; max-width: 500px; }
}
.how-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.how-card__image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #e0e0dd;
}
.how-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.how-card:hover .how-card__image img {
    transform: scale(1.04);
}
.how-card__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
}
.how-card__desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
}
.how-step--dark .how-card__title { color: #fff; }
.how-step--dark .how-card__desc { color: rgba(255,255,255,0.55); }
.how-step--dark .how-card__image { background: #222; }

/* Testimonials */
.how-testimonials {
    padding: 5rem 0;
    background: #f5f5f3;
}
.how-testimonials .how-hero__title,
.how-faq .how-hero__title {
    color: #111 !important;
}
.how-testimonials .how-step__label,
.how-faq .how-step__label {
    color: var(--med-accent);
}
.testimonials-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: start;
}
@media (max-width: 900px) { .testimonials-masonry { grid-template-columns: 1fr; } }
.testimonials-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.testimonial-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 1.5rem;
}
.testimonial-card--featured {
    background: #f0efed;
}
.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}
.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-card__name {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: #111;
    margin: 0;
}
.testimonial-card__role {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    color: #888;
    margin: 0;
}
.testimonial-card__text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

/* FAQ */
.how-faq {
    padding: 5rem 0;
    background: #ededea;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-top: 1px dashed rgba(0,0,0,0.15);
}
.faq-item:last-child {
    border-bottom: 1px dashed rgba(0,0,0,0.15);
}
.faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: #111;
    text-align: left;
    gap: 1rem;
}
.faq-item__question:hover { color: #555; }
.faq-item__icon {
    font-size: 1.3rem;
    font-weight: 300;
    color: #999;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg);
}
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.is-open .faq-item__answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}
.faq-item__answer p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Video CTA */
.how-video-cta {
    padding: 0;
    background: #f5f5f3;
    margin-bottom: -40px;
    position: relative;
    z-index: 0;
}
#how-video-wrap {
    position: relative;
    overflow: hidden;
}
#how-video {
    display: block;
    width: 100%;
    height: 800px;
    object-fit: cover;
}
#how-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}
#how-video-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 90%;
    max-width: 700px;
}
#how-video-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.15;
}
#how-video-text p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}
.how-video-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .how-hero { padding: 8rem 0 0; }
    .how-hero__image img { height: 250px; }
    .how-step { padding: 3rem 0; }
    .how-step--dark { border-radius: 24px; margin: 1rem 0; padding: 3rem 1.5rem; }
    .how-cards { grid-template-columns: 1fr; }
    #how-video { min-height: 400px; }
    #how-video-text { left: 24px; right: 24px; bottom: 30px; }
    #how-video-text h2 { font-size: 1.5rem; }
    .how-video-actions { flex-direction: column; }
    .how-video-actions .btn { width: 100%; justify-content: center; }
}
/* ============================================
   TEAM PAGE
   ============================================ */
.page-team { background: #f5f5f3; }

/* Hero */
.team-hero {
    padding: 10rem 0 8rem;
    background: #131317;
}

/* Team Content - light area with border radius over dark hero */
.team-content {
    background: #f5f5f3;
    border-radius: 40px 40px 0 0;
    margin-top: -3rem;
    position: relative;
    z-index: 2;
    padding: 4rem 0 6rem;
}

.team-hero__label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 1.25rem;
}
.team-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: #111;
    margin-bottom: 1rem;
    line-height: 1.15;
}
.team-hero__desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}
.team-hero__btn {
    display: inline-block;
    padding: 0.65em 1.8em;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: #111;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s;
}
.team-hero__btn:hover {
    border-color: rgba(0,0,0,0.4);
    background: rgba(0,0,0,0.03);
}

/* Team hero button hover for dark bg */
.team-hero__btn:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.08);
}

/* Team Grid */
.team-grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 900px) {
    .team-grid-cards { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* Team Member Card */
.team-member {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.team-member__photo {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #e0e0dd;
}
.team-member__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-member:hover .team-member__photo img {
    transform: scale(1.03);
}
.team-member__name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}
.team-member__role {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    color: #888;
    margin: 0;
}
.team-member__bio {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
    margin: 0;
    padding-top: 4px;
}

@media (max-width: 768px) {
    .team-hero { padding: 8rem 0 3rem; }
}

/* ============================================
   COMPREHENSIVE CARE TEAM — Alternating Rows
   ============================================ */
.care-team-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 2rem;
}
.care-team-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.care-team-row--reverse {
    direction: rtl;
}
.care-team-row--reverse > * {
    direction: ltr;
}
.care-team-row__photo {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e0e0dd;
}
.care-team-row__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.care-team-row:hover .care-team-row__photo img {
    transform: scale(1.03);
}
.care-team-row__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.care-team-row__label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--med-accent);
}
.care-team-row__name {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #111;
    margin: 0;
}
.care-team-row__org {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    color: #999;
    font-style: italic;
    margin: 0;
}
.care-team-row__bio {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
    margin: 0;
    padding-top: 6px;
}

@media (max-width: 768px) {
    .care-team-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .care-team-row--reverse {
        direction: ltr;
    }
}

/* ============================================
   CARE TEAM CARD GRID
   ============================================ */
.care-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1100px) { .care-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .care-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .care-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; } }

.care-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.care-card:hover {
    border-color: rgba(0,0,0,0.12);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.care-card__photo {
    aspect-ratio: 1;
    overflow: hidden;
    background: #e8e8e5;
}
.care-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.care-card:hover .care-card__photo img {
    transform: scale(1.05);
}
.care-card__name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: #111;
    margin: 0;
    padding: 1rem 1rem 0.2rem;
}
.care-card__role {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--med-accent);
    margin: 0;
    padding: 0 1rem 1rem;
    letter-spacing: 0.02em;
}

/* ============================================
   TEAM SLIDEOUT MODAL
   ============================================ */
.team-slideout {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    visibility: hidden;
}
.team-slideout.is-open {
    pointer-events: all;
    visibility: visible;
}
.team-slideout__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.4s ease;
}
.team-slideout.is-open .team-slideout__backdrop {
    background: rgba(0,0,0,0.5);
}
.team-slideout__panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 520px;
    max-width: 90vw;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    box-shadow: -10px 0 60px rgba(0,0,0,0.15);
}
.team-slideout.is-open .team-slideout__panel {
    transform: translateX(0);
}
.team-slideout__close {
    position: sticky;
    top: 1rem;
    float: right;
    margin: 1rem 1rem 0 0;
    margin-bottom: -56px;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.team-slideout__close:hover {
    background: #fff;
    color: #111;
}
.team-slideout__photo {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #e8e8e5;
}
.team-slideout__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.team-slideout__body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.team-slideout__role {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--med-accent);
}
.team-slideout__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}
.team-slideout__org {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: #999;
    font-style: italic;
    margin: 0;
}
.team-slideout__bio {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    color: #555;
    margin: 0;
    padding-top: 8px;
}

/* ============================================
   TEAM BOTTOM DARK SECTION
   ============================================ */
.team-bottom {
    position: relative;
    background: #131317;
    border-radius: 40px 40px 0 0;
    overflow: hidden;
    margin-bottom: -40px;
    z-index: 0;
}
.team-bottom__hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}
.team-bottom__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.team-bottom__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(19,19,23,0.3) 0%, rgba(19,19,23,0.95) 85%, #131317 100%);
}
.team-bottom__content {
    position: relative;
    z-index: 2;
    margin-top: -12rem;
    padding-bottom: 5rem;
}
.team-bottom__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.team-bottom__desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    max-width: 550px;
    margin: 0 auto 3rem;
}

/* Two cards */
.team-bottom__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
@media (max-width: 600px) { .team-bottom__cards { grid-template-columns: 1fr; } }
.team-bottom__card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    display: block;
    text-decoration: none;
}
.team-bottom__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-bottom__card:hover img {
    transform: scale(1.04);
}
.team-bottom__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
}
.team-bottom__card-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
}
.team-bottom__card-text h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}
.team-bottom__card-text p {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

@media (max-width: 768px) {
    .team-bottom__hero { height: 50vh; min-height: 350px; }
    .team-bottom__content { margin-top: -8rem; }
    .team-bottom__card { aspect-ratio: 3 / 4; }
}

/* ============================================
   TEAM CARE LABEL — Gold style
   ============================================ */
.team-care-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--med-accent);
    margin-bottom: 1.25rem;
}

/* Clickable top team cards */
.care-card-clickable {
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.care-card-clickable:hover {
    transform: translateY(-4px);
}

/* Team bottom fade-in animation */
.team-bottom {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-bottom.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PROACTIVE CARE PAGE
   ============================================ */
.page-proactive { background: #f5f5f3; }

.pc-hero {
    padding: 10rem 0 4rem;
    background: #f5f5f3;
}
.pc-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 1.25rem;
}
.pc-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 300;
    color: #111;
    line-height: 1.15;
}

/* Split sections */
.pc-split {
    padding: 3rem 0;
    background: #f5f5f3;
}
.pc-split__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.pc-split__grid--reverse {
    direction: rtl;
}
.pc-split__grid--reverse > * {
    direction: ltr;
}
.pc-split__image {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #e0e0dd;
}
.pc-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pc-split__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.pc-split__title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: #111;
    line-height: 1.25;
}
.pc-split__desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
}

/* Checklist */
.pc-checklist {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.pc-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: #222;
}
.pc-checklist svg {
    flex-shrink: 0;
    color: #888;
}

/* Button */
.pc-btn {
    display: inline-block;
    padding: 0.7em 1.8em;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: #111;
    background: rgba(0,0,0,0.05);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s;
    width: fit-content;
    margin-top: 0.5rem;
}
.pc-btn:hover {
    background: rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .pc-hero { padding: 8rem 0 3rem; }
    .pc-split__grid,
    .pc-split__grid--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
    }
    .pc-split__image { aspect-ratio: 4 / 3; }
}

/* ============================================
   PROACTIVE CARE — Split Section Animations
   ============================================ */
.pc-animate .pc-animate__image {
    opacity: 0;
    transform: translateX(-80px) scale(0.95);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.pc-animate .pc-animate__content {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
/* Reverse direction: image slides from right */
.pc-animate[data-pc-dir="right"] .pc-animate__image {
    transform: translateX(80px) scale(0.95);
}
/* Revealed states */
.pc-animate.is-visible .pc-animate__image {
    opacity: 1;
    transform: translateX(0) scale(1);
}
.pc-animate.is-visible .pc-animate__content {
    opacity: 1;
    transform: translateY(0);
}
/* Stagger checklist items */
.pc-animate .pc-checklist li {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.pc-animate.is-visible .pc-checklist li:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.5s; }
.pc-animate.is-visible .pc-checklist li:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.65s; }
.pc-animate.is-visible .pc-checklist li:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.8s; }
/* Button fade in */
.pc-animate .pc-btn {
    opacity: 0;
    transition: opacity 0.6s ease 0.9s;
}
.pc-animate.is-visible .pc-btn {
    opacity: 1;
}

/* ============================================
   PARTNERSHIPS PAGE
   ============================================ */
.page-partnerships { background: #f5f5f3; }

.partnership-form-section {
    background: #f5f5f3;
    border-radius: 40px 40px 0 0;
    margin-top: -3rem;
    position: relative;
    z-index: 2;
    padding: 4rem 0 3rem;
}
.partnership-form-wrap {
    max-width: 700px;
    margin: 0 auto;
}
.partnership-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.partnership-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
@media (max-width: 600px) { .partnership-form__row { grid-template-columns: 1fr; } }
.partnership-form__group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.partnership-form__group--full {
    grid-column: 1 / -1;
}
.partnership-form__group label {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: #333;
}
.partnership-form__group input,
.partnership-form__group select,
.partnership-form__group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: #111;
    background: #eeeee9;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    transition: border-color 0.3s;
    outline: none;
    -webkit-appearance: none;
}
.partnership-form__group input::placeholder,
.partnership-form__group textarea::placeholder {
    color: #aaa;
}
.partnership-form__group input:focus,
.partnership-form__group select:focus,
.partnership-form__group textarea:focus {
    border-color: rgba(0,0,0,0.2);
}
.partnership-form__group textarea {
    resize: vertical;
    min-height: 120px;
}
.partnership-form__group select {
    color: #aaa;
}
.partnership-form__group select:valid {
    color: #111;
}
.partnership-form__submit {
    width: 100%;
    padding: 1.1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: #111;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 0.5rem;
}
.partnership-form__submit:hover {
    background: #333;
}

/* Quote / Testimonial */
.partnership-quote-section {
    padding: 2rem 0 5rem;
    background: #f5f5f3;
}
.partnership-quote {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 20px;
    background: #fff;
}
.partnership-quote__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(0,0,0,0.06);
}
.partnership-quote__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.partnership-quote__text {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    line-height: 1.6;
    color: #222;
    margin: 0 0 1.5rem;
    font-style: normal;
}
.partnership-quote__name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.2rem;
}
.partnership-quote__role {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 300;
    color: #888;
    margin: 0;
}

/* ============================================
   WHO IS 1MED FOR — Page
   ============================================ */
.who-intro {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Top 2 feature cards — side by side */
.who-top-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 768px) { .who-top-cards { grid-template-columns: 1fr; } }

.who-feature-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.who-feature-card:hover {
    border-color: rgba(0,0,0,0.12);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.who-feature-card__icon {
    color: var(--med-accent);
    margin-bottom: 1.25rem;
}
.who-feature-card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: #111;
    margin: 0 0 0.75rem;
}
.who-feature-card__desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
    margin: 0 0 1.25rem;
}
.who-feature-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.who-feature-card__list li {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: #333;
    padding-left: 1.5rem;
    position: relative;
}
.who-feature-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--med-accent);
    font-weight: 600;
}

/* Wide cards — image + content side by side */
.who-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 900px) { .who-cards-grid { grid-template-columns: 1fr; } }

.who-wide-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.who-wide-card:hover {
    border-color: rgba(0,0,0,0.12);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.who-wide-card__image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e0e0dd;
}
.who-wide-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.who-wide-card:hover .who-wide-card__image img {
    transform: scale(1.04);
}
.who-wide-card__content {
    padding: 2rem;
}
.who-wide-card__content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.5rem;
}
.who-wide-card__content p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ============================================
   WHO — Sticky Scroll Section
   ============================================ */
.who-sticky-section {
    padding: 4rem 0 5rem;
    background: #f5f5f3;
}
.who-sticky-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 900px) {
    .who-sticky-wrap { grid-template-columns: 1fr; gap: 2rem; }
    .who-sticky-left { position: relative !important; top: auto !important; }
}

/* Left sticky card */
.who-sticky-left {
    position: sticky;
    top: 120px;
}
.who-sticky-card {
    background: #131317;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    color: #fff;
}
.who-sticky-card .team-care-label {
    color: var(--med-accent);
}
.who-sticky-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.25;
    margin: 0.5rem 0 2rem;
}
.who-sticky-card__stats {
    display: flex;
    gap: 3rem;
}
.who-sticky-card__stat {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.who-sticky-card__stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    margin-top: 0.3rem;
}

/* Right scrolling blocks */
.who-sticky-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.who-scroll-block h3 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 500;
    color: #111;
    line-height: 1.5;
    margin: 0 0 1rem;
}
.who-scroll-block p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
    margin: 0;
}
.who-scroll-block h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    margin: 0 0 1rem;
}

/* Checklist */
.who-scroll-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.who-scroll-checklist li {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: #333;
    padding-left: 1.75rem;
    position: relative;
}
.who-scroll-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--med-accent);
    font-weight: 600;
}

/* What's included items */
.who-scroll-includes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.who-scroll-include {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    transition: all 0.3s;
}
.who-scroll-include:hover {
    border-color: rgba(0,0,0,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.who-scroll-include__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(196, 168, 130, 0.1);
    color: var(--med-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.who-scroll-include strong {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
    display: block;
    margin-bottom: 0.25rem;
}
.who-scroll-include p {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.6;
    color: #888;
    margin: 0;
}

/* ============================================
   WHO PAGE — Animations
   ============================================ */
.who-animate {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.who-animate--left {
    transform: translateX(-60px);
}
.who-animate--right {
    transform: translateX(60px);
}
.who-animate--up {
    transform: translateY(50px);
}
.who-animate--scale {
    transform: scale(0.92) translateY(30px);
}

/* Revealed */
.who-animate.is-visible {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

/* Stagger wide cards */
.who-wide-card.who-animate:nth-child(1) { transition-delay: 0s; }
.who-wide-card.who-animate:nth-child(2) { transition-delay: 0.12s; }
.who-wide-card.who-animate:nth-child(3) { transition-delay: 0.24s; }
.who-wide-card.who-animate:nth-child(4) { transition-delay: 0.36s; }

/* Stagger scroll includes */
.who-scroll-include.who-animate:nth-child(1) { transition-delay: 0s; }
.who-scroll-include.who-animate:nth-child(2) { transition-delay: 0.1s; }
.who-scroll-include.who-animate:nth-child(3) { transition-delay: 0.2s; }
.who-scroll-include.who-animate:nth-child(4) { transition-delay: 0.3s; }
.who-scroll-include.who-animate:nth-child(5) { transition-delay: 0.4s; }
.who-scroll-include.who-animate:nth-child(6) { transition-delay: 0.5s; }

/* Top cards stagger */
.who-feature-card.who-animate--left { transition-delay: 0.1s; }
.who-feature-card.who-animate--right { transition-delay: 0.3s; }

/* ============================================
   LONGEVITY PAGE — Hero & Intro Animations
   ============================================ */
.team-hero .who-animate--up:nth-child(1) { transition-delay: 0.1s; }
.team-hero .who-animate--up:nth-child(2) { transition-delay: 0.3s; }
.team-hero .who-animate--up:nth-child(3) { transition-delay: 0.5s; }

/* Intro title scale pop */
.pc-hero__title.who-animate--scale {
    transform: scale(0.88) translateY(20px);
    transition-delay: 0.15s;
}
.pc-hero__title.who-animate--scale.is-visible {
    transform: scale(1) translateY(0);
}

/* ============================================
   HOMEPAGE — Extra Animations
   ============================================ */
/* Partners logos fade in individually */
.partners-logos-row img,
.partners-logos-row .partner-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.partners-logos-row.is-visible img:nth-child(1),
.partners-logos-row.is-visible .partner-text:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.partners-logos-row.is-visible img:nth-child(2),
.partners-logos-row.is-visible .partner-text:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.partners-logos-row.is-visible img:nth-child(3),
.partners-logos-row.is-visible .partner-text:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }

/* Pillars cards stagger reveal */
.pillars-carousel__card {
    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);
}
.pillars-carousel-section.is-visible .pillars-carousel__card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.pillars-carousel-section.is-visible .pillars-carousel__card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.pillars-carousel-section.is-visible .pillars-carousel__card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.pillars-carousel-section.is-visible .pillars-carousel__card:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }

/* Gallery strip scale effect on center item */
.gallery-strip__item--cta.who-animate--scale {
    transform: scale(0.9) translateY(20px);
}
.gallery-strip__item--cta.who-animate--scale.is-visible {
    transform: scale(1) translateY(0);
}
/* Cloned carousel cards (for infinite loop) should be visible */
.pillars-carousel-section.is-visible .pillars-carousel__card:nth-child(n+5) { opacity: 1; transform: translateY(0); }

/* ============================================
   BLUR TO SHARP — Global H1/H2 Animation
   ============================================ */
h1, h2 {
    opacity: 0;
    filter: blur(12px);
    transform: scale(0.96) translateY(10px);
    transition: opacity 2s cubic-bezier(0.16, 1, 0.3, 1), filter 2.4s cubic-bezier(0.16, 1, 0.3, 1), transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}
h1.is-visible, h2.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) translateY(0);
}
/* Preloader title should not be hidden */
.preloader h1, .preloader h2,
.preloader__text { opacity: 1; filter: none; transform: none; }
/* Slideout modal headings should not be hidden */
.team-slideout h1, .team-slideout h2, .team-slideout h3 { opacity: 1; filter: none; transform: none; }

/* ============================================
   CINEMATIC QUOTE
   ============================================ */
.cinematic-quote {
    padding: 5rem 0 !important;
    overflow: hidden;
}
.cinematic-quote__wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

/* Animated gold accent lines */
.cinematic-quote__line {
    position: absolute;
    top: 50%;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--med-accent), transparent);
    opacity: 0;
    transition: opacity 2s ease 1s, transform 2s cubic-bezier(0.16, 1, 0.3, 1) 1s;
}
.cinematic-quote__line--left {
    right: calc(50% + 420px);
    transform: translateX(-60px);
}
.cinematic-quote__line--right {
    left: calc(50% + 420px);
    transform: translateX(60px);
}
.cinematic-quote.is-visible .cinematic-quote__line {
    opacity: 0.4;
    transform: translateX(0);
}

/* Content */
.cinematic-quote__content {
    text-align: center;
    max-width: 1000px;
    position: relative;
}

/* Confucius avatar */
.cinematic-quote__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    opacity: 0;
    filter: blur(20px);
    transform: scale(0.6);
    transition: opacity 2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
                filter 2.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
                transform 2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}
.cinematic-quote__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cinematic-quote.is-visible .cinematic-quote__avatar {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

/* Override the global h2 blur for this specific one - we handle it custom */
.cinematic-quote__text {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.8vw, 2.1rem) !important;
    font-weight: 300 !important;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin: 0 0 2rem;
    /* Override global blur - use custom slower one */
    opacity: 0 !important;
    filter: blur(16px) !important;
    transform: scale(0.94) translateY(15px) !important;
    transition: opacity 3s cubic-bezier(0.16, 1, 0.3, 1) 0.5s, 
                filter 3.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s, 
                transform 3s cubic-bezier(0.16, 1, 0.3, 1) 0.5s !important;
}
.cinematic-quote.is-visible .cinematic-quote__text {
    opacity: 1 !important;
    filter: blur(0) !important;
    transform: scale(1) translateY(0) !important;
}
.cinematic-quote__text em {
    font-style: normal;
    color: #fff;
    font-weight: 500;
}

/* Attribution */
.cinematic-quote__attr {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.06em;
    margin: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 1.5s ease 2s, transform 1.5s ease 2s;
}
.cinematic-quote__attr strong {
    color: var(--med-accent);
    font-weight: 500;
}
.cinematic-quote.is-visible .cinematic-quote__attr {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cinematic-quote { padding: 4rem 0 !important; }
    .cinematic-quote__avatar { width: 60px; height: 60px; }
    .cinematic-quote__line { display: none; }
}