@import url('tokens.css');
@import url('calmyra-theme.css');

/* Legacy layout styles — theme tokens in tokens.css */

body.nav-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.page-header {
    position: relative;
    overflow: visible;
}

/* Nav surface — bridge.css */

.nav-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem max(1rem, env(safe-area-inset-right)) 1rem max(1rem, env(safe-area-inset-left));
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

a.nav-brand {
    text-decoration: none;
    color: inherit;
}

.nav-brand img {
    width: auto;
    height: clamp(48px, 11vw, 72px);
    max-height: 72px;
    object-fit: contain;
    object-position: left center;
    flex-shrink: 0;
    display: block;
}

/* Text wordmark beside logo (optional; full logo PNG is usually standalone) */
.nav-brand span {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
}

.nav-menu-primary {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
}

@media (min-width: 769px) {
    .nav-menu {
        flex: 1;
        justify-content: flex-start;
        gap: 0.75rem;
        min-width: 0;
    }

    .nav-menu-primary {
        flex: 1;
        justify-content: center;
        min-width: 0;
    }

    .nav-actions {
        flex-shrink: 0;
    }
}

.nav-menu a,
.nav-link,
.nav-ns-btn {
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-link:hover,
.nav-ns-btn:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    margin: -0.5rem max(-0.5rem, calc(-1 * env(safe-area-inset-right))) -0.5rem 0;
    min-width: 44px;
    min-height: 44px;
    box-sizing: border-box;
    font: inherit;
    color: inherit;
    flex-shrink: 0;
    z-index: 1003;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(46, 58, 57, 0.06);
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: var(--transition);
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Services mega menu (3 columns) */
.nav-mega-wrap {
    position: relative;
}

.nav-mega-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    font: inherit;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.35rem 0;
    transition: color var(--transition);
}

.nav-mega-btn:hover {
    color: var(--primary);
}

.nav-mega-chevron {
    display: inline-block;
    width: 0.4rem;
    height: 0.4rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 0.2rem;
    margin-bottom: 0.1rem;
    transition: transform 0.2s ease;
}

.nav-mega-wrap.is-open .nav-mega-chevron {
    transform: rotate(-135deg);
    margin-bottom: -0.1rem;
}

.nav-ns-wrap {
    position: relative;
}

.nav-ns-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
    font: inherit;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.35rem 0;
    transition: color var(--transition);
}

.nav-ns-chevron {
    display: inline-block;
    width: 0.4rem;
    height: 0.4rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 0.15rem;
    margin-bottom: 0.1rem;
    transition: transform 0.2s ease;
}

.nav-ns-wrap.is-open .nav-ns-chevron {
    transform: rotate(-135deg);
    margin-bottom: -0.1rem;
}

.ns-dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 6px);
    min-width: 240px;
    z-index: 1003;
    padding: 0.35rem 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.ns-dropdown[hidden] {
    display: none !important;
}

.ns-dropdown-link {
    display: block;
    padding: 0.7rem 1.15rem;
    font-size: 0.94rem;
    font-weight: 500;
    color: #2a2a2a;
    border-bottom: 1px solid #ececec;
    transition: background 0.15s ease, color 0.15s ease;
}

.ns-dropdown-link:last-child {
    border-bottom: none;
}

.ns-dropdown-link:hover {
    background: rgba(31, 111, 180, 0.06);
    color: #1f6fb4;
}

.nav-spark {
    font-size: 0.85rem;
    line-height: 1;
}

.mega-panel {
    z-index: 1002;
    padding-top: 0.35rem;
}

.mega-panel[hidden] {
    display: none !important;
}

.mega-panel-inner.mega-layout {
    display: grid;
    grid-template-columns: minmax(200px, 228px) minmax(280px, 1fr) minmax(260px, 40%);
    gap: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
    border: 1px solid rgba(230, 230, 230, 0.9);
    overflow: hidden;
}

.mega-sidebar {
    padding: 1.2rem 0.85rem 1.35rem;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(253, 252, 250, 0.85);
}

.mega-flyouts {
    padding: 0.75rem 0.65rem 0.85rem 0.75rem;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 300px;
}

.mega-flyout-row {
    display: flex;
    align-items: stretch;
    gap: 0.65rem;
    flex: 1;
}

.mega-flyouts.mega-flyouts--single .mega-l3-stack {
    display: none !important;
}

.mega-flyouts.mega-flyouts--single .mega-flyout-row {
    max-width: 100%;
}

.mega-flyouts.mega-flyouts--single .mega-l2-stack {
    flex: 1;
    max-width: none;
}

.mega-promo {
    padding: 0.65rem;
    background: linear-gradient(145deg, #faf8f5 0%, #f3f0ec 100%);
    display: flex;
    align-items: stretch;
    min-height: 300px;
}

.mega-promo-img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.mega-overline {
    margin: 0 0 0.85rem;
    padding: 0 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #1f6fb4;
    letter-spacing: -0.01em;
}

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

.mega-l1 .mega-l1-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.65rem 0.75rem;
    margin-bottom: 0.1rem;
    border: none;
    border-radius: 10px;
    background: transparent;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: #3d3d3d;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.mega-l1 .mega-l1-btn:hover {
    background: rgba(31, 111, 180, 0.06);
}

.mega-l1 .mega-l1-btn.is-active {
    color: #1f6fb4;
    background: rgba(31, 111, 180, 0.08);
}

.mega-chev {
    color: #c4c4c4;
    font-size: 1rem;
    font-weight: 400;
}

.mega-l1 .mega-l1-btn.is-active .mega-chev {
    color: #1f6fb4;
}

.mega-card.mega-l2-stack,
.mega-card.mega-l3-stack {
    flex: 1;
    min-width: 0;
    max-width: 280px;
    max-height: min(420px, 58vh);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    padding: 0.35rem 0;
    position: relative;
}

.mega-l2-set,
.mega-l3-set {
    padding: 0;
}

.mega-l2-set[hidden],
.mega-l3-set[hidden] {
    display: none !important;
}

.mega-l2-list--ruled li {
    border-bottom: 1px solid #ececec;
}

.mega-l2-list--ruled li:last-child {
    border-bottom: none;
}

.mega-l2-list--scroll {
    max-height: min(340px, 52vh);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 0.15rem;
}

.mega-l2-list--scroll::-webkit-scrollbar {
    width: 6px;
}

.mega-l2-list--scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 999px;
}

.mega-l2-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.72rem 1rem;
    margin: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2a2a2a;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.mega-l2-btn:hover {
    background: rgba(31, 111, 180, 0.05);
}

.mega-l2-btn.is-active {
    color: #1f6fb4;
    background: rgba(31, 111, 180, 0.06);
}

.mega-l2-btn.is-active .mega-chev {
    color: #1f6fb4;
}

.mega-leaf-nav {
    display: flex;
    flex-direction: column;
    padding: 0.25rem 0;
}

.mega-leaf-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: #333;
    border-bottom: 1px solid #ececec;
    transition: background 0.15s ease, color 0.15s ease;
}

.mega-leaf-link:last-child {
    border-bottom: none;
}

.mega-leaf-link:hover {
    background: rgba(31, 111, 180, 0.04);
    color: #1f6fb4;
}

.mega-l3-set a {
    display: block;
    padding: 0.72rem 1rem;
    font-size: 0.88rem;
    font-weight: 400;
    color: #333;
    border-bottom: 1px solid #ececec;
    transition: background 0.15s ease, color 0.15s ease;
}

.mega-l3-set a:last-child {
    border-bottom: none;
}

.mega-l3-set a:hover {
    background: rgba(31, 111, 180, 0.04);
    color: #1f6fb4;
}

/* Grouped services mega menu */
.mega-panel-inner.mega-layout-grouped {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 1.25rem 1rem 1.35rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
    border: 1px solid rgba(230, 230, 230, 0.9);
}

.mega-group {
    padding: 0.5rem 1rem 0.65rem;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.mega-group:last-child {
    border-right: none;
}

.mega-group-title {
    margin: 0 0 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary);
}

.mega-group-nav {
    display: flex;
    flex-direction: column;
}

.mega-group-link {
    display: block;
    padding: 0.55rem 0.35rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: #2a2a2a;
    border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease;
}

.mega-group-link:hover {
    background: rgba(31, 111, 180, 0.06);
    color: #1f6fb4;
}

.mega-group-link--cta {
    margin-top: 0.35rem;
    font-weight: 600;
    color: var(--primary);
}

.ns-dropdown--wide {
    min-width: 280px;
}

.ns-dropdown-heading {
    margin: 0;
    padding: 0.65rem 1.15rem 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary);
}

.ns-dropdown-heading:not(:first-child) {
    padding-top: 0.85rem;
    border-top: 1px solid #ececec;
    margin-top: 0.25rem;
}

.ns-dropdown-link--cta {
    font-weight: 600;
    color: var(--primary);
}

@media (min-width: 769px) {
    .mega-panel {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        top: 4.25rem;
        width: min(1080px, calc(100vw - 2rem));
    }
}

@media (max-width: 768px) {
    .nav-mega-wrap {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-mega-btn {
        width: 100%;
        justify-content: space-between;
        padding: 0.65rem 0;
    }

    .mega-panel {
        position: static;
        transform: none;
        width: 100%;
        padding-top: 0.25rem;
    }

    .mega-panel-inner.mega-layout {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .mega-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .mega-flyouts {
        min-height: 0;
        padding: 0.5rem;
    }

    .mega-flyout-row {
        flex-direction: column;
    }

    .mega-card.mega-l2-stack,
    .mega-card.mega-l3-stack {
        max-width: none;
        min-height: 0;
    }

    .mega-promo {
        min-height: 200px;
        order: 3;
    }

    .mega-promo-img {
        min-height: 200px;
    }

    .mega-l1 .mega-overline {
        padding-left: 0.25rem;
    }

    .mega-panel-inner.mega-layout-grouped {
        grid-template-columns: 1fr;
    }

    .mega-group {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        padding: 0.75rem 0.5rem;
    }

    .mega-group:last-child {
        border-bottom: none;
    }
}

/* Trust bar */
.trust-bar {
    padding: 0 0 2.5rem;
    background: var(--background);
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 2.5vw, 2rem);
    background: linear-gradient(145deg, #d8ebe8 0%, #c5dfd9 100%);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(95, 143, 139, 0.12);
    border: 1px solid rgba(95, 143, 139, 0.2);
}

.trust-stat {
    text-align: center;
    padding: 0.35rem 0.25rem;
}

.trust-stat-num {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.1;
    color: #3d7a74;
    letter-spacing: -0.02em;
}

.trust-stat-label {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.35;
    color: #4a857e;
}

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

@media (max-width: 540px) {
    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Hero Section */
.hero-section {
    overflow: hidden;
    padding-top: 100px;
    min-height: calc(100vh - 100px);
    background: radial-gradient(circle at top left, rgba(159, 184, 165, 0.16), transparent 30%),
                radial-gradient(circle at bottom right, rgba(168, 156, 93, 0.14), transparent 25%),
                var(--background);
}

.hero-panel {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: calc(100vh - 120px);
    padding: 3rem 0 5rem;
}

.hero-copy {
    max-width: 540px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.hero-copy h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-text {
    max-width: 520px;
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-location-line {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin: -0.75rem 0 1.75rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.85rem;
}

.hero-trust-micro {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.hero-trust-strip {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 0.02em;
    line-height: 1.6;
}

.hero-stage--clean .tag,
.hero-stage--clean .pill {
    display: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    color: #1f425d;
    background: #e2f1ff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-metric {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 1.2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.84);
    min-width: 10rem;
    box-shadow: 0 18px 45px rgba(46, 58, 57, 0.07);
}

.hero-metric strong {
    font-size: 1.45rem;
    color: var(--text-primary);
}

.hero-metric span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-stage {
    position: relative;
    width: min(100%, 480px);
    min-height: 520px;
}

.hero-ring,
.hero-ring-2 {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(95, 143, 139, 0.18);
}

.hero-ring-2 {
    transform: scale(1.4);
    opacity: 0.8;
}

.hero-image {
    width: 100%;
    max-width: 420px;
    border-radius: 32px;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 24px 70px rgba(46, 58, 57, 0.12);
}

.tag,
.pill {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    padding: 1rem 1.25rem;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(46, 58, 57, 0.08);
    backdrop-filter: blur(12px);
    color: var(--text-primary);
    font-weight: 500;
    width: max-content;
}

.tag strong {
    display: block;
    margin-top: 0.35rem;
    color: var(--primary);
    font-size: 0.95rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 44px;
    font-size: 0.95rem;
    z-index: 3;
    white-space: nowrap;
}

.pill-blue { background: #D6EDF2; color: #2E5460; }
.pill-pink { background: #F7D6DA; color: #7F3A4B; }
.pill-green { background: #D8EEE5; color: #33614E; }
.pill-yellow { background: #FFF4D2; color: #7A6735; }
.pill-violet { background: #E8DFF3; color: #5F4B78; }
.pill-peach { background: #F6D7C1; color: #704B3F; }
.pill-red { background: #F8D6D0; color: #8B2F2F; }

.tag-left-top { top: 18%; left: -2%; }

.hero-stage .tag {
    z-index: 3;
    max-width: 260px;
}

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

/* Get Started — lead form (two columns, tan card) */
.section-get-started {
    padding: 4.5rem 0 5rem;
    background: #fdfbf7;
}

.get-started-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: start;
}

.get-started-headline {
    margin: 0;
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    font-weight: 700;
    line-height: 1.2;
    color: #141414;
    letter-spacing: -0.02em;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.get-started-spark {
    flex-shrink: 0;
    font-size: 1.35rem;
    line-height: 1.25;
    margin-top: 0.15rem;
}

.get-started-headline-text {
    display: block;
}

.get-started-body {
    margin: 1.15rem 0 0;
    font-size: 1.02rem;
    line-height: 1.75;
    color: #4a4a4a;
    max-width: 34rem;
}

.get-started-form-wrap {
    background: #f9ebd8;
    border-radius: 24px;
    padding: 2rem 2rem 2.25rem;
    box-shadow: 0 16px 48px rgba(46, 42, 38, 0.06);
}

.get-started-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
}

.get-started-fields .gs-field-full {
    grid-column: 1 / -1;
}

.gs-input,
.gs-textarea {
    width: 100%;
    padding: 0.88rem 1rem;
    border: 1px solid #e3ded6;
    border-radius: 6px;
    background: #fff;
    font: inherit;
    font-size: 0.95rem;
    color: #1a1a1a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gs-input::placeholder,
.gs-textarea::placeholder {
    color: #9a9a9a;
}

.gs-input:hover,
.gs-textarea:hover {
    border-color: #cfc8be;
}

.gs-input:focus,
.gs-textarea:focus {
    outline: none;
    border-color: #2b78b8;
    box-shadow: 0 0 0 3px rgba(43, 120, 184, 0.15);
}

.gs-textarea {
    min-height: 110px;
    resize: vertical;
    line-height: 1.5;
}

.gs-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.25rem;
    cursor: pointer;
}

.gs-select:invalid,
.gs-select option[value=""][disabled] {
    color: #9a9a9a;
}

.get-started-confidential {
    margin: 1rem 0 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #4a4a4a;
}

.btn-get-started-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.35rem;
    padding: 0.88rem 2.6rem;
    background: #2b78b8;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-get-started-send:hover {
    background: #24669d;
}

.btn-get-started-send:active {
    transform: translateY(1px);
}

.get-started-form-note {
    margin: 1rem 0 0;
    font-size: 0.9rem;
    color: #2d5a2d;
}

.get-started-form-note.is-error {
    color: #b42318;
}

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

    .get-started-form-wrap {
        padding: 1.65rem 1.35rem 1.85rem;
    }
}

@media (max-width: 520px) {
    .get-started-fields {
        grid-template-columns: 1fr;
    }
}

/* Wellness intro (home section 2) — collage + copy */
.section-intro {
    padding: 5rem 0;
    background: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
    align-items: center;
}

.intro-grid-wellness {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.wellness-collage {
    position: relative;
    min-height: 440px;
    overflow: visible;
}

.intro-grid-wellness .wellness-collage {
    min-width: 0;
    overflow: visible;
}

.wellness-collage-inner {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    min-height: 480px;
    padding-bottom: 3.5rem;
    overflow: visible;
}

/* Behind photos (z-index 1). Anchored from the right so copy stays out from
   under image-1 (higher z-index), which was clipping the first words. */
.wellness-card-dark {
    position: absolute;
    z-index: 1;
    left: auto;
    right: clamp(0px, 5%, 32px);
    top: 14%;
    width: min(68%, 300px);
    max-width: 300px;
    background: #0d0d0d;
    color: #fff;
    border-radius: 22px;
    padding: 1.6rem 1.35rem 1.75rem;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.wellness-card-dark p {
    margin: 0;
    font-size: clamp(0.95rem, 1.9vw, 1.15rem);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.01em;
    overflow-wrap: break-word;
}

.wellness-photo {
    position: absolute;
    margin: 0;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.wellness-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.wellness-photo-primary {
    z-index: 2;
    left: 0;
    top: 0;
    width: 50%;
    max-width: 228px;
}

.wellness-photo-primary img {
    aspect-ratio: 4 / 5;
    min-height: 260px;
}

.wellness-video-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(50%);
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(90deg, #2a6fb8 0%, #3b82c4 45%, #2563a8 100%);
    display: flex;
    align-items: center;
    padding: 0 0.65rem 0 0.5rem;
    gap: 0.5rem;
    box-shadow: 0 8px 20px rgba(37, 99, 168, 0.25);
    z-index: 3;
}

.wellness-play {
    flex-shrink: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 11px;
    border-color: transparent transparent transparent #fff;
    margin-left: 4px;
}

.wellness-video-wave {
    flex: 1;
    height: 22px;
    border-radius: 6px;
    background: repeating-linear-gradient(
        105deg,
        rgba(255, 255, 255, 0.12) 0 6px,
        rgba(15, 60, 120, 0.35) 6px 14px,
        rgba(255, 255, 255, 0.08) 14px 22px
    );
    opacity: 0.95;
}

.wellness-peach-bars {
    position: absolute;
    left: 0;
    width: 72%;
    top: calc(100% + 24px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
    pointer-events: none;
}

.wellness-peach-bars span {
    display: block;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f4b08a 0%, #f0a078 100%);
    box-shadow: 0 6px 14px rgba(240, 160, 120, 0.35);
}

.wellness-peach-bars span:nth-child(1) {
    width: 100%;
    margin-left: 0;
}

.wellness-peach-bars span:nth-child(2) {
    width: 88%;
    margin-left: 12%;
}

.wellness-peach-bars span:nth-child(3) {
    width: 76%;
    margin-left: 6%;
}

.wellness-photo-secondary {
    z-index: 2;
    right: 0;
    bottom: 0;
    width: 48%;
    max-width: 232px;
}

.wellness-photo-secondary img {
    aspect-ratio: 3 / 4;
    min-height: 280px;
}

.wellness-photo-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.55rem;
    max-width: min(100% - 1rem, 200px);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    color: #fff;
    font-size: 0.58rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.wellness-badge-spark {
    font-size: 0.7rem;
    line-height: 1;
    flex-shrink: 0;
}

.intro-right {
    max-width: 620px;
}

.intro-copy-wellness .wellness-eyebrow {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #707070;
    letter-spacing: 0.02em;
    text-transform: none;
}

.intro-copy-wellness h2 {
    font-size: clamp(2rem, 3.5vw, 2.85rem);
    font-weight: 700;
    color: #000;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.intro-copy-wellness p {
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.intro-copy-wellness p:last-of-type {
    margin-bottom: 1.75rem;
}

.intro-copy h2 {
    font-size: clamp(2.35rem, 4vw, 3.4rem);
    line-height: 1.1;
    margin-bottom: 1.4rem;
    color: var(--text-primary);
}

.intro-copy p {
    color: #334155;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.intro-right {
    display: grid;
    align-items: start;
}

.intro-right .service-line {
    border-radius: 32px;
    padding: 2rem;
}

.intro-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.intro-list li {
    position: relative;
    padding-left: 1.75rem;
    color: #334155;
    line-height: 1.7;
}

.intro-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--primary);
}

.section-testimonials p,
.section-testimonials ul {
    max-width: 760px;
    margin: 0 auto;
    color: #334155;
}

.section-testimonials ul {
    display: grid;
    gap: 0.85rem;
    padding-left: 1.25rem;
    list-style: none;
}

.section-testimonials li {
    position: relative;
    padding-left: 1.75rem;
    line-height: 1.75;
}

.section-testimonials li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--primary);
}

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

.step {
    background: white;
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 18px 45px rgba(46, 58, 57, 0.08);
}

.step h3 {
    margin-top: 0;
    margin-bottom: 0.9rem;
    font-size: 1.15rem;
}

.step p {
    color: #475569;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

.btn-know-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.25rem;
    border-radius: 14px;
    background: #000;
    color: #fff !important;
    border: 2px solid #000;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn-know-more:hover {
    background: #222;
    border-color: #222;
    color: #fff !important;
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .intro-grid,
    .intro-grid-wellness,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .wellness-collage {
        min-height: 420px;
        margin-bottom: 1rem;
    }

    .wellness-collage-inner {
        min-height: 440px;
    }

    .section-header h2,
    .service-copy h2 {
        font-size: 2.4rem;
    }
}

.section-blue {
    background: #E8F4FF;
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: clamp(2.25rem, 3vw, 3.4rem);
    margin-top: 0.75rem;
}

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

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 1.75rem;
    box-shadow: 0 16px 40px rgba(46, 58, 57, 0.08);
    line-height: 1.7;
}

.feature-card h3 {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.feature-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.section-services {
    padding: 5rem 0;
}

.section-testimonials {
    padding: 6rem 0;
    background: #EFF7FF;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 2.25rem;
}

.testimonial-header h2 {
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    line-height: 1.05;
    margin: 0;
    color: #0f172a;
}

.testimonial-carousel {
    display: grid;
    place-items: center;
}

.testimonial-slide {
    display: none;
    max-width: 820px;
    text-align: center;
    padding: 0;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide p {
    margin: 0 auto 2.5rem;
    max-width: 720px;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #17233d;
}

.testimonial-avatar-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: radial-gradient(circle at top, #dbeafe 0%, #a5b4fc 45%, #6366f1 100%);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.testimonial-avatar-block strong {
    font-size: 1.2rem;
    color: #111827;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.25rem;
}

.testimonial-meta strong {
    font-size: 1.05rem;
    color: #111827;
}

.testimonial-meta span {
    font-size: 0.92rem;
    color: #4b5563;
    letter-spacing: 0.01em;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 28px;
    height: 6px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.18);
    transition: background 0.25s ease, transform 0.25s ease;
    cursor: pointer;
}

.testimonial-dot.active {
    width: 36px;
    background: rgba(15, 23, 42, 0.9);
}

.section-activate {
    padding: 5rem 0 6rem;
    background: #e8f4ff;
}

.activate-panel {
    max-width: 960px;
    margin: 0 auto;
    padding: 3.25rem 2rem;
    border-radius: 30px;
    background: white;
    text-align: center;
    box-shadow: 0 20px 50px rgba(46, 58, 57, 0.08);
}

.activate-panel h2 {
    font-size: clamp(2.75rem, 4vw, 3.6rem);
    margin-bottom: 1rem;
    line-height: 1.05;
    color: #0f172a;
}

.activate-emoji {
    display: inline-block;
    margin-left: 0.5rem;
}

.activate-panel p {
    max-width: 760px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #334155;
}

.btn-activate {
    padding: 1rem 2.2rem;
    border-radius: 999px;
    font-size: 1rem;
}

/* FAQ (before footer) — accordion, pale page + active pale blue row */
section.section-faq {
    background: #fdfbf7;
    padding: 5rem 0 5.5rem;
}

.faq-container {
    max-width: 800px;
}

.faq-heading {
    margin: 0 0 2rem;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #141414;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-align: left;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.faq-item {
    border-radius: 20px;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.is-open {
    background: #e1f0ff;
    padding: 1.35rem 1.5rem 1.5rem;
    margin-bottom: 0.35rem;
    box-shadow: none;
}

.faq-item:not(.is-open) {
    padding: 0.15rem 0;
}

.faq-trigger {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    margin: 0;
    padding: 0.85rem 0.25rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font: inherit;
    color: inherit;
    text-align: left;
}

.faq-item.is-open .faq-trigger {
    padding: 0 0 0.65rem;
}

.faq-item:not(.is-open) .faq-trigger:hover {
    opacity: 0.88;
}

.faq-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1.5px solid #1a1a1a;
    position: relative;
    margin-top: 0.1rem;
    background: transparent;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #1a1a1a;
    border-radius: 1px;
}

/* Plus (+) */
.faq-item:not(.is-open) .faq-icon::before {
    width: 12px;
    height: 2px;
}

.faq-item:not(.is-open) .faq-icon::after {
    width: 2px;
    height: 12px;
}

/* Minus (−) when open */
.faq-item.is-open .faq-icon::after {
    display: none;
}

.faq-item.is-open .faq-icon::before {
    width: 12px;
    height: 2px;
}

.faq-question {
    flex: 1;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.45;
    color: #141414;
    padding-top: 0.2rem;
}

.faq-panel {
    display: none;
    padding-left: calc(2.5rem + 1rem);
    padding-right: 0.25rem;
}

.faq-item.is-open .faq-panel {
    display: block;
}

.faq-answer {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1.75;
    color: #3d3d3d;
}

.service-intro {
    max-width: 920px;
    margin: 0 auto 3rem;
}

.service-intro h2 {
    font-size: clamp(3rem, 4vw, 4.4rem);
    line-height: 1.05;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.service-intro p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 720px;
    line-height: 1.8;
}

.service-tiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.service-tile {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.35rem;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(46, 58, 57, 0.08);
    box-shadow: 0 14px 36px rgba(46, 58, 57, 0.07);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 111, 180, 0.35);
    box-shadow: 0 20px 48px rgba(46, 58, 57, 0.11);
}

.service-tile h3 {
    margin-bottom: 0.65rem;
    font-size: 1.08rem;
    color: var(--text-primary);
}

.service-tile p {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.15rem;
}

.service-tile a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

@media (max-width: 1100px) {
    .service-tiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .service-tiles-grid {
        grid-template-columns: 1fr;
    }
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-copy {
    max-width: 560px;
}

.service-copy .eyebrow {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--primary);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 700;
}

.service-list {
    display: grid;
    gap: 1rem;
    padding-left: 1rem;
    border-left: 4px solid #1F6FB4;
}

#service-physio,
#service-cupping,
#service-diet,
#service-sleep {
    scroll-margin-top: 5.5rem;
}

.service-line {
    padding: 1.5rem 1.4rem;
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(46, 58, 57, 0.08);
    box-shadow: 0 18px 40px rgba(46, 58, 57, 0.08);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background-color var(--transition);
}

.service-line:hover,
.service-line.active {
    transform: translateY(-3px);
    border-color: rgba(31, 111, 180, 0.75);
    background: #f7fbff;
    box-shadow: 0 24px 60px rgba(46, 58, 57, 0.12);
}

.service-line h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-line p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-line a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--primary);
    font-weight: 700;
}

.service-image-card {
    display: flex;
    justify-content: center;
}

.service-image {
    width: 100%;
    max-width: 700px;
    border-radius: 32px;
    object-fit: cover;
    box-shadow: 0 24px 80px rgba(46, 58, 57, 0.15);
}

@media (max-width: 1024px) {
    .intro-grid,
    .service-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .service-intro {
        text-align: left;
    }

    .service-intro h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .service-grid {
        gap: 2rem;
    }

    .service-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.75rem max(0.75rem, env(safe-area-inset-right)) 0.75rem max(0.75rem, env(safe-area-inset-left));
        flex-wrap: nowrap;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
        background: rgba(247, 249, 248, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem 0 max(1rem, env(safe-area-inset-bottom));
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
        z-index: 1002;
        box-sizing: border-box;
    }

    .nav-menu.active {
        display: flex;
        gap: 0;
        max-height: min(calc(100vh - 3.5rem - env(safe-area-inset-bottom)), 720px);
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    @supports (height: 100dvh) {
        .nav-menu.active {
            max-height: min(calc(100dvh - 3.5rem - env(safe-area-inset-bottom)), 720px);
        }
    }

    .nav-menu-primary {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
        flex: none;
    }

    .nav-menu.active .nav-menu-primary > a,
    .nav-menu.active .nav-menu-primary > .nav-ns-wrap,
    .nav-menu.active .nav-menu-primary > .nav-coaching-wrap,
    .nav-menu.active .nav-menu-primary > .nav-mega-wrap {
        padding: 0.85rem 1.25rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        box-sizing: border-box;
    }

    .nav-menu.active .nav-menu-primary > a {
        border-bottom: 1px solid rgba(46, 58, 57, 0.06);
    }

    .nav-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 1rem 1.25rem 0.5rem;
        margin-top: 0.25rem;
        border-top: 1px solid rgba(46, 58, 57, 0.1);
        gap: 0.75rem;
        flex: none;
    }

    .nav-actions .nav-link {
        padding: 0.65rem 0;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .nav-actions .btn {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }

    .nav-ns-wrap,
    .nav-coaching-wrap {
        width: 100%;
    }

    .nav-ns-btn {
        width: 100%;
        justify-content: space-between;
        min-height: 44px;
    }

    .nav-mega-btn {
        min-height: 44px;
    }

    .ns-dropdown {
        position: static;
        width: 100%;
        margin-top: 0.35rem;
        margin-bottom: 0.25rem;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-brand {
        min-width: 0;
        z-index: 1003;
    }

    .nav-brand img {
        max-height: min(64px, 12vw);
    }

    .hero-panel {
        grid-template-columns: 1fr;
    }

    .hero-title,
    .section-header h2,
    .service-copy h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .feature-grid,
    .service-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-copy h1,
    .section-header h2,
    .service-copy h2 {
        font-size: 1.75rem;
    }
}

.pill-blue { top: 20%; right: 0%; }
.pill-pink { bottom: 26%; left: 4%; }
.pill-green { bottom: 8%; left: 6%; }
.pill-yellow { top: 10%; right: -6%; }
.pill-violet { right: 22%; bottom: 32%; }
.pill-peach { right: 8%; top: 44%; }
.pill-red { bottom: 10%; right: 2%; }

/* Make hero floating tags readable on all devices */
@media (max-width: 1024px) {
    .hero-stage {
        width: min(100%, 520px);
    }

    .tag,
    .pill {
        box-shadow: 0 12px 30px rgba(46, 58, 57, 0.08);
    }

    .pill {
        min-width: 118px;
        height: 40px;
        font-size: 0.88rem;
        padding: 0.65rem 0.9rem;
    }

    .tag {
        padding: 0.85rem 1.05rem;
    }

    .pill-yellow { right: 0%; }
    .pill-blue { right: 2%; }
    .pill-peach { right: 2%; }
    .pill-red { right: 2%; }
    .tag-left-top { left: 0%; }
}

@media (max-width: 768px) {
    .hero-stage {
        width: min(100%, 460px);
        min-height: 480px;
    }

    .pill {
        min-width: 108px;
        height: 38px;
        font-size: 0.84rem;
        padding: 0.55rem 0.75rem;
    }

    .tag {
        max-width: 220px;
        padding: 0.75rem 0.95rem;
    }

    /* Reposition to avoid overlap on small screens */
    .pill-yellow { top: 6%; right: 0%; }
    .pill-blue { top: 18%; right: 4%; }
    .pill-peach { top: 46%; right: 2%; }
    .pill-violet { right: 10%; bottom: 34%; }
    .pill-pink { bottom: 22%; left: 0%; }
    .pill-green { bottom: 6%; left: 0%; }
    .pill-red { bottom: 10%; right: 4%; }
    .tag-left-top { top: 14%; left: 0%; }
}

@media (max-width: 480px) {
    .hero-stage {
        min-height: 440px;
    }

    .pill {
        min-width: 96px;
        height: 34px;
        font-size: 0.78rem;
    }

    .tag {
        max-width: 200px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.9rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-sm {
    padding: 0.75rem 1.4rem;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: #4a6f6b;
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: #4a6f6b;
    border-color: #4a6f6b;
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: white;
}

/* Sections */
section {
    padding: 5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

section:nth-child(even) {
    background: var(--alt-background);
}

section.section-wellness-intro.section-intro {
    background: #FAF9F6;
}

section#faq.section-faq {
    background: #fdfbf7;
}

section#get-started.section-get-started {
    background: #fdfbf7;
}

#services h2,
#programs h2,
#about h2,
#cta h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

section#services.section-wellness-intro .intro-copy-wellness h2 {
    text-align: left;
    margin-bottom: 1.25rem;
    color: #000;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.card .btn {
    margin-top: 1rem;
}

/* CTA */
#cta {
    background: linear-gradient(135deg, #dbe9e2 0%, #c7ddd1 100%);
    color: #1f3a36;
    text-align: center;
}

#cta h2 {
    color: #1f3a36;
}

#cta p {
    margin-bottom: 2rem;
    color: #35534e;
    opacity: 1;
}

#cta .btn-primary {
    background: #5f8f8b;
    border-color: #5f8f8b;
    color: #fff;
}

#cta .btn-primary:hover {
    background: #4f7a76;
    border-color: #4f7a76;
}

/* Footer */
#footer,
.site-footer {
    background: #0a1128;
    color: rgba(255, 255, 255, 0.92);
    padding: 3.25rem 0 0;
}

.footer-inner {
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    gap: 2rem 1.75rem;
    margin-bottom: 2.5rem;
}

.footer-col-title {
    margin: 0 0 1.1rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #8ecae6;
    letter-spacing: 0.02em;
}

.footer-brand .footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: #fff;
    margin-bottom: 0.85rem;
    padding: 0.4rem 0.55rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 14px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.footer-brand .footer-logo-link img {
    width: auto;
    height: clamp(72px, 20vw, 120px);
    max-height: 120px;
    object-fit: contain;
    object-position: left center;
    flex-shrink: 0;
    display: block;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.footer-tagline {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.footer-contact-links {
    margin: 0.85rem 0 0;
    font-size: 0.88rem;
    line-height: 1.65;
}

.footer-contact-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer-contact-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-col-list + .footer-col-title {
    margin-top: 1.25rem;
}

.footer-contact-block {
    margin-top: 1rem;
}

.footer-contact-block:first-of-type {
    margin-top: 0.25rem;
}

.footer-address-label {
    display: inline-block;
    margin: 0.5rem 0 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #8ecae6;
}

.footer-address,
.footer-brand p {
    margin: 0 0 0.5rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

.footer-col-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col-list li {
    margin-bottom: 0.5rem;
}

.footer-col-list a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col-list a:hover {
    color: #fff;
}

.footer-link-cta {
    font-weight: 600;
    color: #8ecae6 !important;
}

.footer-helpline-list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.8);
}

.footer-helpline-list li {
    margin-bottom: 0.65rem;
}

.footer-bottom-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 1.35rem 0 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-copyright {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-copyright--wide {
    width: 100%;
    text-align: center;
    line-height: 1.6;
    font-size: 0.82rem;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1.1rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: #fff;
}

/* Legacy footer classes (backward compatibility) */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #8ecae6;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #8ecae6;
}

.footer-section a {
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.85);
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
}

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

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

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .nav-container {
        padding: 1rem;
    }
}

/* Specialized services section (home page) */
.section-specialized-services {
    padding: 2.8rem 0 2.2rem;
    background: #f7f0df;
}

.specialized-services-header {
    text-align: center;
    margin-bottom: 1rem;
}

.specialized-services-header h2 {
    font-size: clamp(1.85rem, 3.2vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.specialized-services-layout {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 1.4rem;
    align-items: start;
}

.specialized-services-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 110px;
}

.specialized-nav-pill {
    appearance: none;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 54px;
    border-radius: 999px;
    background: #f3e7c4;
    border: 1px solid #e7d39f;
    font-weight: 600;
    color: #2e2410;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.specialized-nav-pill.is-active {
    background: #efdca8;
    transform: scale(1.04);
    box-shadow: 0 8px 18px rgba(90, 63, 12, 0.16);
}

.specialized-services-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.specialized-card {
    background: #f9eecf;
    border: 1px solid #e3c174;
    border-radius: 22px;
    padding: 1rem 1rem 1.2rem;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}

.specialized-card h3 {
    margin-bottom: 0.25rem;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.specialized-card .specialized-card-body {
    max-height: 0;
    opacity: 0;
    transform: translateY(12px);
    overflow: hidden;
    transition: max-height 0.55s ease-in-out, opacity 0.45s ease-in-out, transform 0.45s ease-in-out, margin-top 0.45s ease-in-out;
}

.specialized-card.is-revealed .specialized-card-body {
    max-height: 560px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 0.45rem;
}

.specialized-card.is-active {
    transform: translateY(-2px);
    border-color: #d7ac49;
    box-shadow: 0 18px 32px rgba(90, 63, 12, 0.2);
}

.specialized-tagline {
    margin-bottom: 0.75rem;
    font-style: italic;
    color: #3a2e18;
}

.specialized-card p {
    color: #2c2b2a;
    margin-bottom: 0.7rem;
}

.specialized-subtitle {
    font-weight: 700;
    margin-top: 0.2rem;
}

.specialized-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.specialized-chip-row span {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    border: 1px solid #dfa8b2;
    background: #f4d7dd;
    color: #4d2430;
    font-size: 0.8rem;
}

.specialized-chip-row--green span {
    border-color: #86bf84;
    background: #d8efd5;
    color: #23421f;
}

.specialized-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 0.95rem;
}

.specialized-list li::before {
    content: "◉";
    color: #a8862c;
    margin-right: 0.45rem;
}

.specialized-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    border-radius: 8px;
    background: #d99a10;
    color: #fff;
    font-weight: 700;
}

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

    .specialized-services-nav {
        position: static;
        flex-direction: row;
    }
}

/* Progressive sticky stacked-card storytelling (desktop/tablet) */
@media (min-width: 901px) {
    .section-specialized-services {
        position: relative;
        min-height: 280vh;
    }

    .specialized-services-layout {
        align-items: start;
    }

    .specialized-services-nav,
    .specialized-services-cards {
        position: sticky;
        top: 100px;
    }

    .specialized-services-cards {
        max-height: calc(100vh - 130px);
        overflow: hidden;
    }

    .specialized-card {
        max-height: 92px;
        opacity: 0.62;
        transform: translateY(0) scale(0.985);
        box-shadow: 0 6px 14px rgba(74, 54, 19, 0.08);
        transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .specialized-card + .specialized-card {
        margin-top: 0.85rem;
    }

    .specialized-card .specialized-card-body {
        transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
            margin-top 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .specialized-card.is-revealed {
        max-height: 560px;
        opacity: 0.88;
        transform: translateY(0) scale(0.996);
    }

    .specialized-card.is-revealed:not(.is-active) {
        transform: translateY(-3px) scale(0.992);
        opacity: 0.78;
    }

    .specialized-card.is-active {
        max-height: 640px;
        opacity: 1;
        transform: translateY(-4px) scale(1);
        box-shadow: 0 20px 36px rgba(90, 63, 12, 0.24);
        border-color: #d7ac49;
        z-index: 2;
    }

    .specialized-nav-pill {
        transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }
}

/* Exact static 3-service layout (reference style) */
.specialized-services-stack {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    max-width: 980px;
    margin: 0 auto;
}

.specialized-service-row {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 0.7rem;
    align-items: start;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.specialized-service-row .specialized-nav-pill {
    margin-top: 0.55rem;
    position: sticky;
    top: 110px;
    width: 72px;
    height: 44px;
    font-size: 0.72rem;
}

.specialized-service-row .specialized-card {
    max-height: none;
    opacity: 1;
    transform: none;
    box-shadow: 0 8px 16px rgba(90, 63, 12, 0.08);
    border-radius: 14px;
    padding: 0.78rem 0.82rem 0.9rem;
    border-width: 1px;
}

.specialized-service-row .specialized-card .specialized-card-body {
    max-height: none;
    opacity: 1;
    transform: none;
    overflow: visible;
    margin-top: 0.32rem;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        margin-top 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.specialized-service-row .specialized-card h3 {
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    margin-bottom: 0.1rem;
}

.specialized-service-row .specialized-card p {
    margin-bottom: 0.45rem;
    font-size: 0.86rem;
}

.specialized-service-row .specialized-tagline {
    font-size: 0.82rem;
}

.specialized-service-row .specialized-chip-row span {
    font-size: 0.68rem;
    padding: 0.2rem 0.55rem;
}

.specialized-service-row .specialized-list {
    gap: 0.3rem;
    margin-bottom: 0.65rem;
}

.specialized-service-row .specialized-list li {
    font-size: 0.78rem;
    line-height: 1.3;
}

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

    .specialized-service-row .specialized-nav-pill {
        position: static;
        margin-top: 0;
        margin-bottom: 0.35rem;
    }
}

/* Folded-on-scroll storytelling state (desktop) */
@media (min-width: 901px) {
    .section-specialized-services {
        min-height: auto;
    }

    .section-specialized-services.is-folded .specialized-services-stack {
        gap: 0.12rem;
    }

    .section-specialized-services.is-folded .specialized-service-row {
        gap: 0.55rem;
    }

    .section-specialized-services.is-folded .specialized-service-row .specialized-nav-pill {
        transform: scale(0.92);
        opacity: 0.9;
    }

    .section-specialized-services.is-folded .specialized-card {
        border-radius: 10px;
        padding: 0.5rem 0.65rem;
        box-shadow: 0 8px 18px rgba(74, 54, 19, 0.1);
        transform: translateY(0);
    }

    .section-specialized-services.is-folded .specialized-card h3 {
        margin-bottom: 0;
        font-size: 1.05rem;
    }

    /* Fold upper cards: keep them as compact headers */
    .section-specialized-services.is-folded .specialized-service-row:nth-child(1) .specialized-card .specialized-card-body,
    .section-specialized-services.is-folded .specialized-service-row:nth-child(2) .specialized-card .specialized-card-body {
        max-height: 0 !important;
        opacity: 0 !important;
        transform: translateY(-8px) !important;
        margin-top: 0 !important;
        overflow: hidden;
        pointer-events: none;
    }

    .section-specialized-services.is-folded .specialized-service-row:nth-child(1) {
        z-index: 3;
    }

    .section-specialized-services.is-folded .specialized-service-row:nth-child(2) {
        z-index: 2;
    }

    .section-specialized-services.is-folded .specialized-service-row:nth-child(3) {
        z-index: 1;
    }

    /* Slight upward compression so cards feel folded onto each other */
    .section-specialized-services.is-folded .specialized-service-row:nth-child(2) .specialized-card {
        transform: translateY(-9px);
    }

    .section-specialized-services.is-folded .specialized-service-row:nth-child(3) .specialized-card {
        transform: translateY(-18px);
    }
}

/* Reference-matched sticky stack (Elementor-like behavior) */
.section-specialized-reference {
    background: #eef5f1;
    padding: 2.4rem 0 2.2rem;
}

.section-specialized-reference .specialized-services-stack {
    gap: 0.85rem;
    max-width: 980px;
}

.section-specialized-reference .specialized-service-row {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 0.75rem;
    min-height: 250px;
}

.section-specialized-reference .specialized-nav-pill {
    width: 70px;
    height: 40px;
    font-size: 0.7rem;
    border-color: #b6cec3;
    background: #dcebe3;
    color: #2d4a45;
    box-shadow: none;
    transform: none;
}

.section-specialized-reference .specialized-card {
    border: 1px solid #b7d2c3;
    border-radius: 14px;
    background: #e7f2ec;
    padding: 0.78rem 0.85rem;
    box-shadow: none;
}

.section-specialized-reference .specialized-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.12rem;
}

.section-specialized-reference .specialized-tagline {
    font-size: 0.78rem;
    margin-bottom: 0.48rem;
}

.section-specialized-reference .specialized-card p {
    font-size: 0.78rem;
    margin-bottom: 0.45rem;
}

.section-specialized-reference .specialized-subtitle {
    font-size: 0.83rem;
}

.section-specialized-reference .specialized-chip-row span {
    font-size: 0.64rem;
    padding: 0.17rem 0.5rem;
}

.section-specialized-reference .specialized-list {
    gap: 0.22rem;
    margin-bottom: 0.55rem;
}

.section-specialized-reference .specialized-list li {
    font-size: 0.68rem;
    line-height: 1.25;
}

.section-specialized-reference .specialized-cta {
    font-size: 0.7rem;
    padding: 0.38rem 0.72rem;
    border-radius: 6px;
}

@media (min-width: 901px) {
    .section-specialized-reference {
        min-height: 280vh;
    }

    .section-specialized-reference .specialized-service-row--1 .specialized-nav-pill {
        position: sticky;
        top: 10px;
    }

    .section-specialized-reference .specialized-service-row--2 .specialized-nav-pill {
        position: sticky;
        top: 110px;
    }

    .section-specialized-reference .specialized-service-row--3 .specialized-nav-pill {
        position: sticky;
        top: 210px;
    }

    .section-specialized-reference .specialized-service-row--1 .specialized-card {
        position: sticky;
        top: 10px;
        z-index: 3;
    }

    .section-specialized-reference .specialized-service-row--2 .specialized-card {
        position: sticky;
        top: 70px;
        z-index: 2;
    }

    .section-specialized-reference .specialized-service-row--3 .specialized-card {
        position: sticky;
        top: 130px;
        z-index: 1;
    }
}

@media (max-width: 900px) {
    .section-specialized-reference .specialized-service-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .section-specialized-reference .specialized-nav-pill {
        position: static;
    }

    .section-specialized-reference .specialized-card {
        position: static;
    }
}

/* Final reference-exact layout */
.section-specialized-reference .specialized-ref-layout {
    display: grid;
    grid-template-columns: minmax(130px, 150px) 28px minmax(0, 1fr);
    align-items: start;
    gap: 0;
    max-width: 980px;
    margin: 0 auto;
}

.section-specialized-reference .specialized-ref-left {
    position: relative;
    min-height: 400px;
}

.section-specialized-reference .specialized-ref-label {
    position: sticky;
    left: 0;
    width: 100%;
    max-width: 140px;
    margin: 0;
    border-radius: 999px;
    background: #dcebe3;
    border: 1px solid #b6cec3;
    color: #2d4a45;
    font-size: 0.66rem;
    font-weight: 700;
    text-align: center;
    padding: 0.6rem 0.45rem;
    line-height: 1.25;
    cursor: pointer;
}

.section-specialized-reference .specialized-ref-label-1 { top: 10px; }
.section-specialized-reference .specialized-ref-label-2 { top: 120px; margin-top: 72px; }
.section-specialized-reference .specialized-ref-label-3 { top: 230px; margin-top: 72px; }

.section-specialized-reference .specialized-ref-right {
    position: relative;
    min-height: 320vh;
}

.section-specialized-reference .specialized-ref-card {
    position: sticky;
    border: 1px solid #b7d2c3;
    border-radius: 14px;
    background: #e7f2ec;
    padding: 0.78rem 0.85rem;
    box-shadow: none;
}

.section-specialized-reference .specialized-ref-card-1 { top: 10px; z-index: 3; }
.section-specialized-reference .specialized-ref-card-2 { top: 70px; z-index: 2; }
.section-specialized-reference .specialized-ref-card-3 { top: 130px; z-index: 1; }

.section-specialized-reference .specialized-ref-card + .specialized-ref-card {
    margin-top: 0.35rem;
}

.section-specialized-reference .specialized-ref-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.12rem;
}

.section-specialized-reference .specialized-ref-card p {
    font-size: 0.78rem;
    margin-bottom: 0.45rem;
}

.section-specialized-reference .specialized-tagline {
    font-size: 0.78rem;
    margin-bottom: 0.48rem;
}

.section-specialized-reference .specialized-subtitle {
    font-size: 0.83rem;
}

.section-specialized-reference .specialized-chip-row span {
    font-size: 0.64rem;
    padding: 0.17rem 0.5rem;
}

.section-specialized-reference .specialized-list {
    gap: 0.22rem;
    margin-bottom: 0.55rem;
}

.section-specialized-reference .specialized-list li {
    font-size: 0.68rem;
    line-height: 1.25;
}

.section-specialized-reference .specialized-cta {
    font-size: 0.7rem;
    padding: 0.38rem 0.72rem;
    border-radius: 6px;
}

@media (max-width: 900px) {
    .section-specialized-reference .specialized-ref-layout {
        grid-template-columns: 1fr;
    }

    .section-specialized-reference .specialized-ref-left {
        display: flex;
        gap: 0.6rem;
        min-height: auto;
        margin-bottom: 0.5rem;
    }

    .section-specialized-reference .specialized-ref-label {
        position: static;
        margin-top: 0 !important;
    }

    .section-specialized-reference .specialized-ref-right {
        min-height: auto;
    }

    .section-specialized-reference .specialized-ref-card {
        position: static;
    }

    .section-specialized-reference .specialized-ref-card + .specialized-ref-card {
        margin-top: 0.75rem;
    }
}

/* Spacing fix: remove forced viewport-height gaps on desktop */
@media (min-width: 901px) {
    .section-specialized-reference {
        min-height: auto;
        padding-bottom: 1.4rem;
    }

    .section-specialized-reference .specialized-ref-right {
        min-height: 0;
        padding-bottom: 0.5rem;
    }
}

/* Theme + readability pass for reference section */
.section-specialized-reference {
    background: #f8f2e7;
}

.section-specialized-reference .specialized-ref-label {
    appearance: none;
    font-family: inherit;
    cursor: pointer;
    border: 1px solid #e3c174;
    width: 86px;
    font-size: 0.82rem;
    padding: 0.72rem 0.3rem;
    background: #f1e2be;
    color: #3a2e18;
    box-shadow: 0 10px 20px rgba(90, 63, 12, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.section-specialized-reference .specialized-ref-card {
    background: #f9eecf;
    border-color: #e3c174;
    border-radius: 16px;
    padding: 1rem 1.05rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.section-specialized-reference .specialized-ref-card h3 {
    font-size: 1.24rem;
    color: #2f2412;
    margin-bottom: 0.32rem;
}

.section-specialized-reference .specialized-ref-card p,
.section-specialized-reference .specialized-list li {
    font-size: 0.93rem;
    line-height: 1.5;
    color: #2f2a22;
}

.section-specialized-reference .specialized-tagline {
    font-size: 0.96rem;
    color: #3a2e18;
}

.section-specialized-reference .specialized-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: #2f2412;
}

.section-specialized-reference .specialized-chip-row span {
    font-size: 0.78rem;
    padding: 0.28rem 0.65rem;
}

.section-specialized-reference .specialized-cta {
    font-size: 0.84rem;
    padding: 0.5rem 0.9rem;
    background: #d99a10;
    border-radius: 8px;
}

.section-specialized-reference .specialized-ref-label.active,
.section-specialized-reference .specialized-ref-label.is-active {
    background: #e8dcc0;
    border-color: #cfb16d;
    box-shadow: 0 12px 24px rgba(90, 63, 12, 0.14);
    transform: translateY(-1px);
}

.section-specialized-reference .specialized-ref-card.active,
.section-specialized-reference .specialized-ref-card.is-active {
    border-color: #cfb16d;
    box-shadow: 0 16px 32px rgba(90, 63, 12, 0.14);
}

/* -------------------------------------------------------
   Silent luxury theme pass (layout-safe overrides only)
   ------------------------------------------------------- */
:root {
    --primary: #8FA79A;
    --secondary: #8FA79A;
    --accent: #C2A96A;
    --background: #F6F7F5;
    --alt-background: #EEF1EC;
    --text-primary: #2E2E2E;
    --text-secondary: #6F7A73;
    --border-radius: 14px;
}

body {
    background-color: var(--background);
    color: var(--text-primary);
}

section,
.section-intro,
.section-get-started,
.section-services,
.section-testimonials,
.section-activate,
.section-specialized-services,
section.section-faq,
.activate-panel,
.glass-card,
.service-line,
.testimonial-slide,
.intro-copy-wellness,
.intro-illustration-shell {
    background-color: var(--background);
}

.section-blue,
.section-wellness-intro,
.assess-process,
.assess-tests-section,
.assess-cta,
.section-specialized-reference {
    background-color: var(--alt-background);
    background-image: none;
}

/* Make logo the dominant visual anchor without layout changes */
.nav-brand {
    position: relative;
    isolation: isolate;
}

.nav-brand::before {
    content: "";
    position: absolute;
    inset: -18px -26px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(194, 169, 106, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.nav-brand img {
    position: relative;
    z-index: 1;
    height: clamp(86px, 17vw, 140px);
    max-height: 140px;
    filter: drop-shadow(0 15px 35px rgba(194, 169, 106, 0.35));
}

/* Theme bridge handles nav, hero, buttons — see bridge.css */

/* Global responsiveness tune-up across desktop/tablet/mobile */
@media (min-width: 1600px) {
    .container,
    .nav-container {
        max-width: 1320px;
    }

    .hero-panel {
        gap: 4rem;
    }
}

@media (max-width: 1280px) {
    .nav-container {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }

    .nav-brand img {
        height: clamp(72px, 12vw, 108px);
        max-height: 108px;
    }

    .hero-section {
        padding-top: 120px;
        min-height: calc(100vh - 120px);
    }

    .hero-panel {
        gap: 2.2rem;
    }
}

@media (max-width: 1024px) {
    .container,
    .nav-container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .nav-menu-primary {
        gap: 1.1rem;
    }

    .nav-brand img {
        height: clamp(64px, 11vw, 92px);
        max-height: 92px;
    }

    .hero-section {
        padding-top: 112px;
        min-height: auto;
    }

    .hero-panel {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        padding: 2rem 0 3rem;
    }

    .hero-copy {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-brand::before {
        inset: -12px -16px;
    }

    .nav-brand img {
        height: clamp(56px, 14vw, 80px);
        max-height: 80px;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-copy h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero-text {
        font-size: 0.98rem;
    }
}

@media (max-width: 480px) {
    .container,
    .nav-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .nav-brand img {
        height: clamp(52px, 17vw, 72px);
        max-height: 72px;
    }

    .hero-section {
        padding-top: 92px;
    }
}

/* Final enforced Elementor-like sticky stack behavior */
.section-specialized-reference .specialized-ref-layout {
    display: grid;
    grid-template-columns: 95px 28px minmax(0, 1fr);
    align-items: start;
    max-width: 980px;
    margin: 0 auto;
}

.section-specialized-reference .specialized-ref-left {
    position: relative;
}

.section-specialized-reference .specialized-ref-right {
    position: relative;
    min-height: 300vh;
}

.section-specialized-reference .specialized-ref-label {
    position: sticky;
    left: 0;
    width: 74px;
    height: 74px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.15;
    z-index: 6;
}

.section-specialized-reference .specialized-ref-label-1 {
    top: 10px;
}

.section-specialized-reference .specialized-ref-label-2 {
    top: 110px;
}

.section-specialized-reference .specialized-ref-label-3 {
    top: 210px;
}

.section-specialized-reference .specialized-ref-card {
    position: sticky;
    background: #f3e7c7;
    border: 1px solid #d6ba67;
    box-shadow: 0 8px 20px rgba(90, 63, 12, 0.08);
}

.section-specialized-reference .specialized-ref-card-1 {
    top: 10px;
    z-index: 3;
}

.section-specialized-reference .specialized-ref-card-2 {
    top: 70px;
    z-index: 2;
    margin-top: 38vh;
}

.section-specialized-reference .specialized-ref-card-3 {
    top: 130px;
    z-index: 1;
    margin-top: 76vh;
}

.section-specialized-reference .specialized-ref-card + .specialized-ref-card {
    margin-top: 1rem;
}

.section-specialized-reference .specialized-ref-label-2 {
    margin-top: 38vh;
}

.section-specialized-reference .specialized-ref-label-3 {
    margin-top: 76vh;
}

@media (max-width: 900px) {
    .section-specialized-reference .specialized-ref-layout {
        grid-template-columns: 1fr;
    }

    .section-specialized-reference .specialized-ref-left {
        display: flex;
        gap: 0.6rem;
        margin-bottom: 0.5rem;
    }

    .section-specialized-reference .specialized-ref-label,
    .section-specialized-reference .specialized-ref-card {
        position: static;
    }

    .section-specialized-reference .specialized-ref-right {
        min-height: auto;
    }
}

/* Clean presentation polish for specialized sticky section */
.section-specialized-reference .specialized-services-header {
    margin-bottom: 1.6rem;
}

.section-specialized-reference .specialized-services-header h2 {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.15;
}

.section-specialized-reference .specialized-ref-layout {
    grid-template-columns: 96px 34px minmax(0, 1fr);
}

.section-specialized-reference .specialized-ref-left {
    padding-top: 4px;
}

.section-specialized-reference .specialized-ref-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #2f2a22;
    background: #efe4c6;
    border: 1px solid #d9be76;
    box-shadow: 0 8px 18px rgba(120, 95, 35, 0.12);
}

.section-specialized-reference .specialized-ref-card {
    border-radius: 18px;
    border: 1px solid #d6ba67;
    background: #f3e7c7;
    padding: 1.1rem 1.15rem 1rem;
    box-shadow: 0 10px 24px rgba(115, 86, 24, 0.09);
    overflow: hidden;
}

.section-specialized-reference .specialized-ref-card h3 {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 0.42rem;
}

.section-specialized-reference .specialized-ref-card p {
    margin-bottom: 0.62rem;
}

.section-specialized-reference .specialized-tagline {
    font-style: italic;
}

.section-specialized-reference .specialized-chip-row {
    gap: 0.45rem;
    margin: 0.45rem 0 0.8rem;
}

.section-specialized-reference .specialized-chip-row span {
    border-radius: 999px;
    border: 1px solid #d5a8b0;
    background: #edd9de;
    color: #4c3137;
    font-size: 0.8rem;
    padding: 0.25rem 0.68rem;
}

.section-specialized-reference .specialized-chip-row--green span {
    border-color: #98c39d;
    background: #dff0dd;
    color: #2f5733;
}

.section-specialized-reference .specialized-list {
    margin-bottom: 0.9rem;
    gap: 0.35rem;
}

.section-specialized-reference .specialized-list li {
    font-size: 0.94rem;
    line-height: 1.45;
}

.section-specialized-reference .specialized-cta {
    background: #d89a10;
    border-radius: 10px;
    padding: 0.56rem 1rem;
    font-size: 1rem;
}

.section-specialized-reference .specialized-ref-card.active,
.section-specialized-reference .specialized-ref-card.is-active {
    box-shadow: 0 14px 30px rgba(115, 86, 24, 0.14);
}

/* ==========================================================
   FINAL LOCK: Specialized Services exact responsive behavior
   ========================================================== */

/* Desktop */
@media (min-width: 1025px) {
    .section-specialized-reference .specialized-ref-layout {
        grid-template-columns: 96px 34px minmax(0, 1fr) !important;
        max-width: 980px !important;
    }

    .section-specialized-reference .specialized-ref-left {
        padding-top: 0 !important;
    }

    .section-specialized-reference .specialized-ref-right {
        min-height: 220vh !important;
    }

    .section-specialized-reference .specialized-ref-label {
        position: sticky !important;
        width: 74px !important;
        height: 74px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1.15 !important;
        font-size: 0.78rem !important;
        margin: 0 !important;
    }

    .section-specialized-reference .specialized-ref-label-1 {
        top: 10px !important;
        margin-top: 0 !important;
    }

    .section-specialized-reference .specialized-ref-label-2 {
        top: 110px !important;
        margin-top: 44vh !important;
    }

    .section-specialized-reference .specialized-ref-label-3 {
        top: 210px !important;
        margin-top: 88vh !important;
    }

    .section-specialized-reference .specialized-ref-card {
        position: sticky !important;
        border-radius: 18px !important;
        padding: 1rem 1.05rem !important;
    }

    .section-specialized-reference .specialized-ref-card-1 {
        top: 10px !important;
        z-index: 3 !important;
        margin-top: 0 !important;
    }

    .section-specialized-reference .specialized-ref-card-2 {
        top: 70px !important;
        z-index: 2 !important;
        margin-top: 44vh !important;
    }

    .section-specialized-reference .specialized-ref-card-3 {
        top: 130px !important;
        z-index: 1 !important;
        margin-top: 88vh !important;
    }

    .section-specialized-reference .specialized-ref-card + .specialized-ref-card {
        margin-top: 0 !important;
    }

    .section-specialized-reference .specialized-ref-card h3 {
        font-size: 2rem !important;
        line-height: 1.14 !important;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .section-specialized-reference .specialized-ref-layout {
        grid-template-columns: 84px 22px minmax(0, 1fr) !important;
    }

    .section-specialized-reference .specialized-ref-right {
        min-height: 190vh !important;
    }

    .section-specialized-reference .specialized-ref-label {
        position: sticky !important;
        width: 64px !important;
        height: 64px !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 50% !important;
        font-size: 0.72rem !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .section-specialized-reference .specialized-ref-label-1 {
        top: 8px !important;
        margin-top: 0 !important;
    }

    .section-specialized-reference .specialized-ref-label-2 {
        top: 86px !important;
        margin-top: 40vh !important;
    }

    .section-specialized-reference .specialized-ref-label-3 {
        top: 164px !important;
        margin-top: 80vh !important;
    }

    .section-specialized-reference .specialized-ref-card {
        position: sticky !important;
        padding: 0.95rem 0.95rem !important;
    }

    .section-specialized-reference .specialized-ref-card-1 {
        top: 8px !important;
        margin-top: 0 !important;
    }

    .section-specialized-reference .specialized-ref-card-2 {
        top: 62px !important;
        margin-top: 40vh !important;
    }

    .section-specialized-reference .specialized-ref-card-3 {
        top: 116px !important;
        margin-top: 80vh !important;
    }

    .section-specialized-reference .specialized-ref-card h3 {
        font-size: 1.7rem !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .section-specialized-reference .specialized-ref-layout {
        grid-template-columns: 1fr !important;
    }

    .section-specialized-reference .specialized-ref-left {
        display: flex !important;
        gap: 0.55rem !important;
        margin-bottom: 0.7rem !important;
        justify-content: flex-start !important;
    }

    .section-specialized-reference .specialized-ref-label {
        position: static !important;
        width: auto !important;
        height: auto !important;
        border-radius: 999px !important;
        padding: 0.42rem 0.7rem !important;
        margin: 0 !important;
        font-size: 0.72rem !important;
        line-height: 1 !important;
    }

    .section-specialized-reference .specialized-ref-right {
        min-height: auto !important;
    }

    .section-specialized-reference .specialized-ref-card {
        position: static !important;
        margin-top: 0 !important;
        padding: 0.95rem 0.9rem !important;
    }

    .section-specialized-reference .specialized-ref-card + .specialized-ref-card {
        margin-top: 0.75rem !important;
    }

    .section-specialized-reference .specialized-ref-card h3 {
        font-size: 1.28rem !important;
    }
}

/* Prevent extra blank tail under specialized section */
.section-specialized-reference {
    min-height: auto !important;
    padding-bottom: 1rem !important;
}

/* Final theme lock for specialized reference colors */
.section-specialized-reference .specialized-ref-label {
    background: #dcebe3 !important;
    border-color: #b6cec3 !important;
    color: #2d4a45 !important;
    box-shadow: 0 8px 18px rgba(95, 143, 139, 0.18) !important;
}

.section-specialized-reference .specialized-ref-label.active,
.section-specialized-reference .specialized-ref-label.is-active {
    background: #cfe3d9 !important;
    border-color: #9fbfb1 !important;
}

.section-specialized-reference .specialized-ref-card {
    background: #e7f2ec !important;
    border-color: #b7d2c3 !important;
    box-shadow: 0 10px 24px rgba(95, 143, 139, 0.14) !important;
}

.section-specialized-reference .specialized-ref-card.active,
.section-specialized-reference .specialized-ref-card.is-active {
    border-color: #9fbfb1 !important;
    box-shadow: 0 14px 30px rgba(95, 143, 139, 0.2) !important;
}

.section-specialized-reference .specialized-cta {
    background: #5f8f8b !important;
    border-color: #5f8f8b !important;
    color: #fff !important;
}

.section-specialized-reference .specialized-cta:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 55%, var(--gold-muted) 100%) !important;
    border-color: transparent !important;
}
/* Maps existing HTML class names to Calmyra dark gold/sage theme */

/* ─── NAV (existing #navbar markup) ─── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  width: 100%;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(24px) saturate(1.5) brightness(0.95);
  -webkit-backdrop-filter: blur(24px) saturate(1.5) brightness(0.95);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  transition: background var(--dur-slow) var(--ease-flow), border-color var(--dur-slow) var(--ease-flow), box-shadow var(--dur-slow) var(--ease-flow);
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  border-bottom-color: rgba(201, 168, 76, 0.16);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.06), 0 4px 32px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: var(--container-wide);
  height: 74px;
  padding: 0 var(--section-x);
}

.nav-brand img {
  height: 40px;
  width: auto;
  max-height: 40px;
}

.nav-menu a,
.nav-link,
.nav-mega-btn,
.nav-ns-btn {
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.025em;
  color: rgba(240, 235, 224, 0.5);
  opacity: 1;
}

.nav-menu a:hover,
.nav-link:hover,
.nav-mega-btn:hover,
.nav-ns-btn:hover {
  color: var(--cream);
  background: rgba(201, 168, 76, 0.06);
  border-radius: var(--r-md);
}

.nav-actions .btn-primary {
  font-size: var(--text-sm);
  padding: 10px 24px;
}

.mega-panel,
.ns-dropdown {
  background: var(--black-2);
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}

.mega-group-title,
.ns-dropdown-heading {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mega-group-link,
.ns-dropdown-link,
.mega-l3-set a,
.mega-leaf-link {
  color: rgba(240, 235, 224, 0.45);
}

.mega-group-link:hover,
.ns-dropdown-link:hover,
.mega-l3-set a:hover,
.mega-leaf-link:hover {
  color: var(--cream);
  background: rgba(201, 168, 76, 0.07);
}

.nav-toggle span {
  background: rgba(240, 235, 224, 0.6);
}

@media (max-width: 768px) {
  .nav-menu.active {
    background: var(--black);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
  }
}

/* ─── HERO ─── */
.page-header {
  overflow: hidden;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  padding-top: 74px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 62% 35%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 55% 75% at 12% 80%, rgba(122, 158, 150, 0.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
  max-width: var(--container-wide);
  padding: var(--sp-11) var(--section-x) var(--sp-10);
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-5);
}

.hero-text,
.hero-copy p {
  font-size: var(--text-md);
  color: rgba(240, 235, 224, 0.48);
  line-height: 1.78;
  max-width: 50ch;
}

.hero-location-line {
  font-size: var(--text-sm);
  color: rgba(240, 235, 224, 0.28);
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-6);
}

.hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-5);
}

.hero-trust-micro,
.hero-trust-strip {
  font-size: var(--text-xs);
  color: rgba(240, 235, 224, 0.28);
  letter-spacing: 0.06em;
}

.hero-visual .hero-image {
  width: 100%;
  height: min(560px, 52vh);
  object-fit: cover;
  border-radius: var(--r-2xl);
  filter: brightness(0.92) saturate(1.05);
}

.hero-ring,
.hero-ring-2 {
  border-color: rgba(201, 168, 76, 0.08);
}

.couple-hero .hero-badge,
.hero-badge {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
}

@media (max-width: 900px) {
  .hero-panel {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    padding-bottom: var(--sp-8);
  }
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--black-2);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  padding: var(--sp-8) 0;
}

.trust-bar-grid,
.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-6);
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--section-x);
}

.trust-stat-num,
.trust-stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  font-weight: 300;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: var(--sp-2);
}

.trust-stat-label {
  font-size: 9px;
  color: rgba(240, 235, 224, 0.32);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
}

/* ─── SECTIONS ─── */
.section-intro,
.section-services,
.section-blue,
.section-specialized-services,
.section-testimonials,
.section-get-started,
.section-faq,
.section-activate,
#cta {
  background: var(--black);
  color: var(--cream);
  padding: var(--section-y) 0;
}

.light-section,
.section-wellness-intro.light-section {
  background: var(--white);
}

.light-section h1,
.light-section h2,
.light-section h3,
.section-wellness-intro h2 {
  color: var(--ink-dark);
}

.light-section p,
.section-wellness-intro p {
  color: rgba(24, 22, 14, 0.65);
}

.section-header h2,
.service-intro h2,
.testimonial-header h2,
.faq-heading,
#get-started-heading,
.section-blue h2 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--cream);
}

.wellness-eyebrow,
.eyebrow {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
}

/* ─── SERVICE TILES → CARDS ─── */
.service-tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-5);
}

.service-tile {
  background: var(--black-3);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--r-xl);
  padding: var(--sp-7) var(--sp-6);
  transition: border-color var(--dur-mid) var(--ease-flow), box-shadow var(--dur-mid) var(--ease-flow), transform var(--dur-mid) var(--ease-silk), background var(--dur-mid) var(--ease-flow);
  position: relative;
  overflow: hidden;
}

.service-tile:hover {
  border-color: rgba(201, 168, 76, 0.22);
  background: var(--black-4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.service-tile h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: var(--sp-3);
}

.service-tile p {
  font-size: var(--text-sm);
  color: rgba(240, 235, 224, 0.42);
  line-height: 1.78;
  margin-bottom: var(--sp-4);
}

.service-tile a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gold);
}

.service-tile a:hover {
  color: var(--gold-bright);
}

/* ─── PILLARS / FEATURES ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.06);
  border-radius: var(--r-xl);
  overflow: hidden;
}

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

.feature-card {
  padding: var(--sp-9) var(--sp-8);
  background: var(--black);
  transition: background var(--dur-mid) var(--ease-flow);
}

.feature-card:hover {
  background: var(--black-2);
}

.feature-card h3 {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: var(--sp-4);
}

.feature-card p {
  font-size: var(--text-sm);
  color: rgba(240, 235, 224, 0.42);
  line-height: 1.82;
}

/* ─── TESTIMONIALS ─── */
.section-testimonials {
  background: var(--black-2);
}

.testimonial-slide {
  background: var(--black-3);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-7);
}

.testimonial-slide p {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  font-weight: 300;
  color: rgba(240, 235, 224, 0.75);
  line-height: 1.72;
}

.testimonial-meta strong {
  color: var(--cream);
  font-size: var(--text-sm);
}

.testimonial-meta span {
  font-size: var(--text-xs);
  color: rgba(240, 235, 224, 0.35);
}

.testimonial-dot {
  background: rgba(201, 168, 76, 0.2);
  border-color: rgba(201, 168, 76, 0.3);
}

.testimonial-dot.active {
  background: var(--gold);
}

/* ─── CONSULTATION FORM ─── */
.section-get-started {
  position: relative;
  overflow: hidden;
}

.section-get-started::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 15% 60%, rgba(122, 158, 150, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.get-started-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: var(--sp-10);
  align-items: center;
}

.get-started-copy h2,
.get-started-headline-text {
  font-family: var(--font-display);
  color: var(--cream);
}

.get-started-body {
  color: rgba(240, 235, 224, 0.42);
}

.get-started-form-wrap,
.get-started-form {
  background: var(--black-2);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-xl), var(--shadow-inset);
}

.gs-input,
.gs-select {
  background: rgba(240, 235, 224, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--r-lg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: var(--text-sm);
}

.gs-input::placeholder {
  color: rgba(240, 235, 224, 0.2);
}

.gs-input:focus,
.gs-select:focus {
  border-color: rgba(201, 168, 76, 0.45);
  background: rgba(201, 168, 76, 0.04);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.07);
  outline: none;
}

.get-started-confidential {
  font-size: var(--text-xs);
  color: rgba(240, 235, 224, 0.22);
}

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

/* ─── FAQ ─── */
.section-faq {
  background: var(--black-3);
}

.faq-item {
  background: var(--black-2);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.faq-item.is-open,
.faq-item:hover {
  border-color: rgba(201, 168, 76, 0.18);
}

.faq-trigger,
.faq-question {
  color: rgba(240, 235, 224, 0.72);
  font-weight: 500;
}

.faq-item.is-open .faq-trigger,
.faq-item.is-open .faq-question {
  color: var(--cream);
}

.faq-answer,
.faq-panel p {
  color: rgba(240, 235, 224, 0.45);
  font-size: var(--text-sm);
  line-height: 1.85;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: var(--sp-10) 0 0;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 300;
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-muted) 0%, var(--gold) 50%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-col-title {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(240, 235, 224, 0.25);
}

.footer-col-list a,
.footer-address,
.footer-contact-links a {
  color: rgba(240, 235, 224, 0.35);
  font-size: var(--text-sm);
}

.footer-col-list a:hover {
  color: var(--gold);
}

.footer-address-label {
  color: var(--gold);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.footer-copyright,
.footer-copyright--wide {
  font-size: var(--text-xs);
  color: rgba(240, 235, 224, 0.18);
}

.footer-helpline-list {
  font-size: var(--text-xs);
  color: rgba(240, 235, 224, 0.25);
}

/* ─── BUTTONS (override legacy sage buttons) ─── */
.btn-primary,
.btn-get-started-send,
.btn-activate,
.btn-know-more,
.specialized-cta {
  background: var(--grad-gold) !important;
  color: var(--black) !important;
  border: none !important;
  border-radius: var(--r-full) !important;
  box-shadow: var(--shadow-gold) !important;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.btn-primary:hover,
.btn-get-started-send:hover,
.btn-activate:hover,
.btn-know-more:hover,
.specialized-cta:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 55%, var(--gold-muted) 100%) !important;
  box-shadow: 0 8px 48px rgba(201, 168, 76, 0.5) !important;
  transform: translateY(-3px);
  color: var(--black) !important;
}

.btn-secondary {
  background: transparent !important;
  color: var(--cream) !important;
  border: 1px solid rgba(240, 235, 224, 0.2) !important;
  box-shadow: none !important;
}

.btn-secondary:hover {
  border-color: rgba(201, 168, 76, 0.5) !important;
  color: var(--gold-bright) !important;
  background: rgba(201, 168, 76, 0.06) !important;
}

/* ─── INNER SERVICE PAGES ─── */
body.relationship-service-page,
body.coaching-page,
body.legal-page,
body.assessment-page,
body.team-page {
  background: var(--black);
  color: var(--ink);
}

.couple-hero,
.page-hero {
  background: var(--black);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.coaching-section--alt {
  background: var(--black-3);
}

.coaching-area-card {
  background: var(--black-3);
  border-color: rgba(201, 168, 76, 0.08);
}

.coaching-cta-band {
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.12) 0%, rgba(122, 158, 150, 0.1) 100%);
}

.legal-content h1,
.legal-content h2 {
  font-family: var(--font-display);
  color: var(--cream);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

/* ─── REVEAL ─── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-languid) var(--ease-silk), transform var(--dur-languid) var(--ease-silk);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

