:root {
    --bg-primary: #FAF8F5;
    --bg-secondary: #F5F0EB;
    --bg-surface: #FFFFFF;
    --text-primary: #1F1F1F;
    --text-secondary: #5A5A5A;
    --text-muted: #8A8A8A;
    --accent-rgb: 184, 92, 79;
    --secondary-rgb: 31, 31, 31;
    --accent: rgb(var(--accent-rgb));
    --accent-hover: #A44639;
    --accent-light: rgba(var(--accent-rgb), 0.18);
    /* Readable terracotta for text/icons on dark scrims — --accent-light is a tint, not a text colour. */
    --accent-on-dark: #E9A492;
    --accent-subtle: rgba(var(--accent-rgb), 0.09);
    --accent-shadow: rgba(var(--accent-rgb), 0.28);
    --secondary: rgb(var(--secondary-rgb));
    --secondary-light: rgba(var(--secondary-rgb), 0.18);
    --secondary-subtle: rgba(var(--secondary-rgb), 0.09);
    --border: #E8E0D8;
    --shadow-sm: 0 2px 8px rgba(31, 31, 31, 0.04);
    --shadow-md: 0 8px 32px rgba(31, 31, 31, 0.06);
    --shadow-lg: 0 16px 48px rgba(31, 31, 31, 0.08);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-height: 80px;
    /* Default imagery: Sara FAV standard (index-adjacency mapping + face-safe crops) */
    --image-hero-bg: url('/public/drive folder from Sara/New pics/webp-optimized/sara-beneit-goyo-portrait-3823-2.webp');
    --image-problem-bg: url('/public/drive folder from Sara/New pics/FAV/dr-sara-beneit-at-desk-06.webp');
    --image-shift-bg: url('/public/drive folder from Sara/New pics/FAV/dr-sara-beneit-at-desk-06.webp');
    --image-confidential-bg: url('/public/drive folder from Sara/New pics/FAV/dr-sara-beneit-psychotherapist-desk-portrait.webp');
    --image-hero-size: auto 165%;
    --image-hero-position: 0% center;
    --image-problem-position: 50% 16%;
    --image-shift-position: 50% 14%;
    --image-confidential-position: 70% 14%;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--secondary);
}

h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
}

h2 {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    max-width: 65ch;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    font-style: normal;
    line-height: 1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.25);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.35);
}

@keyframes pulse-cta {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow:
            0 4px 16px rgba(var(--accent-rgb), 0.25),
            0 0 0 0 var(--accent-shadow);
    }
    50% {
        transform: translateY(-1px) scale(1.012);
        box-shadow:
            0 7px 22px rgba(var(--accent-rgb), 0.36),
            0 0 0 5px rgba(var(--accent-rgb), 0);
    }
}

.btn-pulse {
    animation: pulse-cta 1.8s ease-in-out infinite;
    will-change: transform, box-shadow;
}

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

.btn-secondary:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
}

.btn-ghost {
    background-color: transparent;
    color: var(--accent);
    padding: 12px 0;
    font-weight: 500;
}

.btn-ghost:hover {
    color: var(--accent-hover);
}

.btn-ghost::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
    position: absolute;
    bottom: 8px;
    left: 0;
}

.btn-ghost:hover::after {
    width: 100%;
}

.btn-small {
    padding: 12px 24px;
    font-size: 0.9375rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.nav.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

.nav .nav-inner {
    max-width: none;
    padding-left: 24px;
    padding-right: 24px;
}

@media (min-width: 1024px) {
    .nav .nav-inner {
        padding-left: 32px;
        padding-right: 32px;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo-brand {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 2px;
}

.logo img {
    height: auto;
    max-height: 56px;
    width: auto;
    display: block;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 1180px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: none;
}

@media (min-width: 1180px) {
    .nav-cta {
        display: inline-flex;
    }
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 1.25rem;
}

@media (min-width: 1180px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 999;
    padding: 32px 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu a {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

/* Sections */
section {
    padding: 96px 0;
    position: relative;
}

@media (min-width: 768px) {
    section {
        padding: 120px 0;
    }
}

.section-header {
    max-width: 720px;
    margin-bottom: 64px;
}

.section-header.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-header.center p {
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Hero */
.hero {
    box-sizing: border-box;
    height: 100vh;
    height: 100svh;
    min-height: 0;
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 36px;
    position: relative;
    overflow: hidden;
    background-image: var(--image-hero-bg);
    background-size: var(--image-hero-size);
    background-repeat: no-repeat;
    background-position: var(--image-hero-position);
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(31, 31, 31, 0.85) 0%,
        rgba(31, 31, 31, 0.65) 45%,
        rgba(31, 31, 31, 0.40) 70%,
        rgba(31, 31, 31, 0.20) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-layout {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.hero-badge i {
    color: var(--accent-light);
    font-size: 0.75rem;
}

.hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3.6vw, 2.55rem);
    letter-spacing: -0.01em;
    color: white;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    line-height: 1.5;
}

.hero-recognition {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 0 0 24px;
    padding: 16px 20px;
    max-width: 660px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-recognition .hero-recognition-lead {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent) !important;
    margin-bottom: 4px;
    list-style: none;
}

.hero-recognition-lead::before {
    display: none !important;
}

.hero-recognition li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9375rem;
    line-height: 1.45;
    font-weight: 500;
}

.hero-recognition li::before {
    content: '';
    width: 8px;
    height: 8px;
    min-width: 8px;
    margin-top: 0.55em;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.35);
}

.hero-trust {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 40px;
    line-height: 1.65;
}

.hero-trust strong {
    color: white;
    font-weight: 600;
}

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

.hero-credibility {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 600px;
    backdrop-filter: blur(8px);
}

.hero-credibility-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1.25rem;
}

.hero-credibility p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

.hero-credibility strong {
    color: white;
    font-weight: 600;
}

.accent-text {
    color: var(--accent);
}

.hero-mobile-text {
    display: none;
}

.hero-portrait-mobile-only {
    display: none;
}

@media (max-width: 767px) {
    :root {
        --nav-height: 64px;
    }

    .nav-inner {
        height: 64px;
    }

    .logo img {
        max-height: 44px;
    }

    .hero-desktop-text {
        display: none;
    }

    .hero-mobile-text {
        display: block;
    }

    .hero {
        background-color: #1a1614;
        background-image:
            radial-gradient(ellipse at 130% -10%, rgba(var(--accent-rgb), 0.50) 0%, transparent 50%),
            radial-gradient(ellipse at -20% 110%, rgba(var(--accent-rgb), 0.30) 0%, transparent 50%),
            linear-gradient(165deg, #181412 0%, #1f1b19 30%, #231e1c 60%, #181412 100%);
        background-position: var(--image-hero-position);
        background-size: cover;
        height: auto;
        min-height: 100vh;
        min-height: 100svh;
        overflow: visible;
        padding-top: calc(var(--nav-height) + 12px);
        padding-bottom: 32px;
        align-items: flex-start;
    }

    .hero::before {
        display: none;
    }

    .hero-badge {
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
        color: rgba(255, 255, 255, 0.90) !important;
        padding-left: 16px;
        padding-right: 16px;
        margin-bottom: 12px;
        font-size: 0.8125rem;
    }

    .hero-badge svg {
        color: var(--accent-light) !important;
    }

    .hero-portrait-wrapper {
        width: 100%;
        max-width: none;
        aspect-ratio: 4 / 3;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        margin: 0 0 14px;
    }

    .hero-portrait-mobile-only {
        display: block;
    }

    .hero-portrait-mobile {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 10%;
        display: block;
    }

    .hero h1 {
        font-size: clamp(1.38rem, 5vw, 1.75rem);
        line-height: 1.08;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        line-height: 1.38;
        margin-bottom: 10px;
    }

    .hero-recognition {
        gap: 5px;
        margin-bottom: 14px;
        padding: 12px 14px;
    }

    .hero-recognition li {
        font-size: 0.8125rem;
        line-height: 1.3;
    }

    .hero-cta-group {
        margin-bottom: 14px;
    }

    .hero-credibility {
        padding: 12px 14px;
        gap: 12px;
    }

    .hero-credibility-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .hero-credibility p {
        font-size: 0.75rem;
        line-height: 1.35;
    }
}

@media (min-width: 768px) and (max-height: 820px) {
    .hero {
        align-items: flex-start;
        padding-top: calc(var(--nav-height) + 16px);
        padding-bottom: 16px;
    }

    .hero h1 {
        font-size: clamp(1.9rem, 3vw, 2.25rem);
        line-height: 1.14;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.42;
        margin-bottom: 14px;
    }

    .hero-badge {
        margin-bottom: 14px;
    }

    .hero-recognition {
        gap: 6px;
        margin-bottom: 18px;
        padding: 14px 18px;
    }

    .hero-recognition .hero-recognition-lead {
        margin-bottom: 2px;
    }

    .hero-recognition li {
        font-size: 0.875rem;
        line-height: 1.32;
    }

    .hero-cta-group {
        margin-bottom: 18px;
    }

    .hero-credibility {
        padding: 14px 16px;
    }

    .hero-credibility-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .hero-credibility p {
        font-size: 0.8125rem;
        line-height: 1.38;
    }
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

    .card-grid.cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-subtle);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 12px;
    color: var(--text-primary);
}

.card p {
    font-size: 1rem;
    color: var(--text-secondary);
    flex-grow: 1;
    margin: 0;
}

.card-quote {
    font-style: italic;
    color: var(--secondary);
    border-left: 3px solid var(--accent-light);
    padding-left: 16px;
    margin: 16px 0 0 0;
    font-size: 0.9375rem;
}

/* Problem Section */
.problem-highlight {
    margin-top: 64px;
    padding: 40px;
    background: var(--accent-subtle);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent);
    text-align: center;
}

.problem-highlight p {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
    max-width: 600px;
    margin: 0 auto 24px;
}

/* Positioning */
.positioning-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 64px;
    max-width: 800px;
}

.benefit-block {
    display: flex;
    gap: 20px;
}

.benefit-block .card-icon {
    margin-bottom: 0;
}

.benefit-block h4 {
    margin-bottom: 8px;
    color: var(--text-primary);
}

.benefit-block p {
    font-size: 1rem;
    margin: 0;
}

/* Method Steps */
.steps-container {
    position: relative;
}

.step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.step-content {
    padding-top: 8px;
}

.step-content h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.step-content p {
    color: var(--text-secondary);
    margin: 0;
}

@media (min-width: 768px) {
    .steps-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 31px;
        width: 2px;
        height: calc(100% - 64px);
        background: linear-gradient(to bottom, var(--accent-light), var(--border));
        z-index: 1;
    }
}

/* Services */
.services-section {
    background: var(--bg-secondary);
}

.service-card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    font-size: 1.375rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    flex-grow: 1;
}

.service-card .btn {
    width: 100%;
}

/* Why Me */
.credibility-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 64px;
}

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

.credibility-item {
    text-align: center;
}

.credibility-item .icon-circle {
    width: 80px;
    height: 80px;
    background: var(--accent-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--accent);
    font-size: 1.75rem;
}

.credibility-icon {
    width: 42px;
    height: 42px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.credibility-item h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.credibility-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0 auto;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: transform 0.3s;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 40px;
    font-size: 1.125rem;
}

.final-cta .btn-primary {
    background: white;
    color: var(--accent);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.final-cta .btn-primary:hover {
    background: var(--bg-primary);
    transform: translateY(-2px);
}

/* Shift section — what this work makes possible */
.shift-section {
    position: relative;
    padding: 100px 0;
    background-color: #1a1614;
    background-image: var(--image-shift-bg);
    background-size: cover;
    background-position: var(--image-shift-position);
    background-repeat: no-repeat;
    overflow: hidden;
}

/* The portrait behind this band is high-contrast (graphic black/white blouse), so the scrim
   both darkens and softens it — the photo stays as warm texture, never as competing pattern. */
.shift-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(34, 25, 21, 0.90) 0%,
        rgba(34, 25, 21, 0.80) 50%,
        rgba(34, 25, 21, 0.92) 100%);
    backdrop-filter: blur(1.5px) saturate(0.8);
    -webkit-backdrop-filter: blur(1.5px) saturate(0.8);
    pointer-events: none;
    z-index: 1;
}

@media (min-width: 768px) {
    .shift-section {
        padding: 140px 0;
    }
}

.shift-section .container {
    position: relative;
    z-index: 2;
    max-width: 880px;
}

.shift-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 0 auto 80px;
    max-width: 420px;
    padding: 18px 22px;
    border: 1px dashed rgba(255, 255, 255, 0.28);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.shift-toggle-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.65);
}

.shift-toggle-options {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.08);
    padding: 4px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.shift-toggle-btn {
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.shift-toggle-btn:hover {
    color: white;
}

.shift-toggle-btn.active {
    background: white;
    color: var(--text-primary);
}

.shift-content {
    text-align: center;
}

.shift-content[hidden] {
    display: none;
}

.shift-content:not([hidden]) {
    animation: shiftFadeIn 0.6s cubic-bezier(0.215, 0.610, 0.355, 1) forwards;
}

@keyframes shiftFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shift-content .section-label {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 24px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.shift-headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    line-height: 1.25;
    letter-spacing: -0.005em;
    color: white;
    margin: 0 auto 32px;
    max-width: 620px;
}

.shift-lead {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto;
    max-width: 560px;
}

.shift-rule {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    margin: 48px auto;
}

.shift-quote {
    margin: 0 auto;
    max-width: 760px;
}

.shift-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.375rem, 2.6vw, 1.625rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.94);
    margin: 0 auto;
    max-width: none;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.shift-body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
    margin: 0 auto 20px;
    max-width: 760px;
}

.shift-body:last-of-type {
    margin-bottom: 0;
}

.shift-body strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-on-dark);
    margin-bottom: 10px;
}

.shift-content[data-shift-content="c"] .shift-body {
    margin-bottom: 36px;
}

.shift-close {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.55;
    color: white;
    margin: 48px auto 0;
    max-width: 720px;
    text-align: center;
}

.shift-cta {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.78);
    margin: 64px auto 0;
    max-width: 720px;
    text-align: center;
}

.shift-cta a {
    color: #ffffff;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.78);
    padding-bottom: 2px;
    margin-left: 6px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.shift-cta a:hover {
    color: white;
    border-bottom-color: white;
}

.shift-body-intro {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin: 0 auto 32px;
    max-width: 680px;
}

.shift-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 40px auto;
    max-width: 820px;
    text-align: left;
}

@media (min-width: 600px) {
    .shift-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Cards carry their own warm-dark plate so the copy never sits directly on the photo. */
.shift-benefit-card {
    background: rgba(26, 19, 16, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    backdrop-filter: blur(1.5px) saturate(0.9);
    -webkit-backdrop-filter: blur(1.5px) saturate(0.9);
    transition: var(--transition);
}

.shift-benefit-card:hover {
    background: rgba(26, 19, 16, 0.68);
    border-color: rgba(var(--accent-rgb), 0.45);
    transform: translateY(-2px);
}

.shift-benefit-card .benefit-number {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--accent-on-dark);
}

.shift-benefit-card .benefit-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-on-dark);
}

.shift-benefit-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.93);
    margin: 0;
    max-width: none;
}

/* Mobile keeps the selected imagery so the visual-direction preview stays consistent —
   with a deeper scrim, because the narrow crop lands on the brightest part of the portrait. */
@media (max-width: 767px) {
    .shift-section {
        background-image: var(--image-shift-bg);
    }

    .shift-section::before {
        background: linear-gradient(180deg,
            rgba(34, 25, 21, 0.93) 0%,
            rgba(34, 25, 21, 0.86) 50%,
            rgba(34, 25, 21, 0.94) 100%);
    }
}

/* Mobile: quote-first hierarchy — let the italic pullquote co-regulate before context arrives */
@media (max-width: 767px) {
    .shift-content {
        display: flex;
        flex-direction: column;
    }

    .shift-content .shift-quote {
        order: 1;
        margin-top: 0;
    }

    .shift-content .shift-quote p {
        font-size: clamp(1.5rem, 5.5vw, 1.875rem);
        line-height: 1.4;
    }

    .shift-content .shift-rule:first-of-type {
        order: 2;
        margin: 48px auto;
    }

    .shift-content .shift-rule:last-of-type {
        display: none;
    }

    .shift-content .section-label {
        order: 3;
        margin-bottom: 16px;
    }

    .shift-content .shift-headline {
        order: 4;
        font-size: clamp(1.5rem, 5.5vw, 1.875rem);
        margin-bottom: 24px;
    }

    .shift-content .shift-lead {
        order: 5;
        font-size: 1rem;
        line-height: 1.7;
    }

    .shift-content .shift-body {
        order: 6;
        font-size: 1rem;
        line-height: 1.7;
    }

    .shift-content .shift-close {
        order: 7;
        margin-top: 40px;
        font-size: 1.125rem;
    }

    .shift-content .shift-cta {
        order: 8;
        margin-top: 48px;
        font-size: 1rem;
    }
}

/* Footer */
footer {
    background: var(--text-primary);
    color: var(--bg-secondary);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

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

.footer-brand {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
    display: block;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.footer-contact-item i {
    color: var(--accent);
    width: 20px;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9375rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

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

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: white;
}

/* Sessions */
.sessions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

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

.session-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.session-item i {
    color: var(--accent);
    font-size: 1.125rem;
    margin-top: 2px;
}

.session-item h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.session-item p {
    font-size: 0.9375rem;
    margin: 0;
}

/* Packages */
.packages-section {
    background: var(--bg-primary);
}

.package-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .package-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }
}

.package-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 40px 28px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

.package-card.featured {
    border-color: var(--accent-light);
    box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.10);
}

.package-card.featured:hover {
    box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.15);
}

.package-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.package-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    margin-top: 8px;
}

.package-price {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.package-sessions {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
    flex-grow: 1;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    min-width: 6px;
    margin-top: 0.5em;
    border-radius: 50%;
    background: var(--accent);
}

.package-card .btn {
    width: 100%;
}

.packages-footnote {
    max-width: 760px;
    margin: 56px auto 0;
    padding: 26px 32px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.packages-footnote::before {
    content: '';
    display: block;
    width: 54px;
    height: 2px;
    margin: -27px auto 24px;
    background: var(--accent);
}

@media (max-width: 767px) {
    .packages-footnote {
        margin-top: 40px;
        padding: 22px 0 0;
        text-align: left;
    }

    .packages-footnote::before {
        margin-left: 0;
    }
}

/* Testimonials */
.testimonials-section {
    background: var(--bg-secondary);
}

.testimonials-section .container {
    max-width: 1360px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

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

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

.testimonial-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

.testimonial-quote-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.125rem;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.testimonial-text {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--secondary);
    margin-bottom: 20px;
    min-height: 14.85em; /* 9 lines — keeps every card's divider on one line */
}

.testimonial-text.is-expanded {
    min-height: 0;
}

.testimonial-text.clamped {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 9;
    overflow: hidden;
}

.testimonial-readmore {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    visibility: hidden; /* slot is reserved in every card so dividers stay aligned */
    pointer-events: none;
    align-self: flex-start;
    margin: -4px 0 24px;
    padding: 0;
    font-family: inherit;
    font-style: normal;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.testimonial-readmore.is-visible {
    visibility: visible;
    pointer-events: auto;
}

.testimonial-readmore::after {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.2s ease;
}

.testimonial-readmore.is-open::after {
    transform: translateY(1px) rotate(-135deg);
}

.testimonial-readmore:hover {
    color: var(--text-primary);
    gap: 10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent);
    flex-shrink: 0;
}

.testimonial-author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.testimonial-author-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.testimonial-card.is-extra {
    display: none;
}

.testimonial-card.is-extra.is-shown {
    display: flex;
    animation: testimonial-reveal 0.5s ease-out;
}

@keyframes testimonial-reveal {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

.testimonials-more {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero .fade-up {
    opacity: 1;
    transform: none;
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

/* Utility */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 16px;
}

.mt-6 {
    margin-top: 24px;
}

.mt-8 {
    margin-top: 32px;
}

.mb-4 {
    margin-bottom: 16px;
}

/* Two doors */
.doors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

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

.door {
    display: flex;
    flex-direction: column;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    position: relative;
    min-height: 280px;
}

.door:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

.door-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 18px;
}

.door h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.25;
}

.door p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 12px 0;
}

.door-felt {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.55;
    margin-bottom: 32px !important;
}

.door-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.door:hover .door-cta {
    gap: 14px;
}

.door-cta i {
    font-size: 0.75rem;
}

/* Personal note */
.note-section {
    padding-top: 96px;
    padding-bottom: 96px;
}

.note-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.note-text {
    max-width: 780px;
}

.note-copy {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--text-primary);
    font-style: italic;
    max-width: 720px;
}

.note-signature {
    margin-top: 20px;
    font-size: 1rem;
    color: var(--text-muted);
}

.note-portrait {
    width: 100%;
    max-width: 380px;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    justify-self: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

@media (min-width: 900px) {
    .note-layout {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
        gap: 64px;
    }

    .note-portrait {
        height: 475px;
        justify-self: end;
    }
}

/* Confidentiality section */
.confidential-section {
    position: relative;
    overflow: hidden;
    background-image: var(--image-confidential-bg);
    background-size: cover;
    background-position: var(--image-confidential-position);
}

@media (min-width: 768px) {
    .confidential-section {
        background-position: var(--image-confidential-position);
    }
}

@media (max-width: 767px) {
    .confidential-section::before {
        background: linear-gradient(to bottom,
            rgba(31, 31, 31, 0.88) 0%,
            rgba(31, 31, 31, 0.82) 35%,
            rgba(31, 31, 31, 0.75) 65%,
            rgba(31, 31, 31, 0.65) 100%) !important;
    }
}

.confidential-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(31, 31, 31, 0.85) 0%,
        rgba(31, 31, 31, 0.65) 45%,
        rgba(31, 31, 31, 0.40) 70%,
        rgba(31, 31, 31, 0.20) 100%);
    pointer-events: none;
    z-index: 1;
}

.confidential-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.confidential-section .section-label {
    color: rgba(255, 255, 255, 0.82);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.confidential-section .section-title {
    color: white;
}

.confidential-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.confidential-section p {
    color: rgba(255, 255, 255, 0.80);
}

.confidential-points {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.confidential-point {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.90);
    font-weight: 500;
    font-size: 1.0625rem;
}

.confidential-point i {
    color: var(--accent-light);
    width: 18px;
    font-size: 0.9375rem;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .about-images {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: start;
    }
}

/* Wellbeing — immersive emotional section */
.wellbeing-section {
    position: relative;
    width: 100%;
    overflow: visible;
    padding: 0;
    background: #050505;
}

.wellbeing-stage {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background-image: var(--image-problem-bg);
    background-size: cover;
    background-position: var(--image-problem-position);
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1025px) {
    .wellbeing-section { min-height: 155vh; }
    .wellbeing-stage {
        position: sticky;
        top: var(--nav-height);
        /* Keep the sticky stage inside the visible viewport so overflow:hidden
           cannot clip the bottom quote on short laptop screens. */
        height: calc(100dvh - var(--nav-height));
        min-height: calc(100dvh - var(--nav-height));
        max-height: calc(100dvh - var(--nav-height));
    }

    .wellbeing-content {
        /* Fallback scale; JS fits precisely to the stage on desktop. */
        transform: translateY(0) scale(0.72);
        transform-origin: center center;
        box-sizing: border-box;
        align-content: center;
        /* Do not clamp height — max-height + scale clipped the bottom card. */
        max-height: none;
    }

}

.wellbeing-section .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 109%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    z-index: 0;
}

.wellbeing-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}

.wellbeing-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    will-change: opacity, transform;
}

.wellbeing-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .wellbeing-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.wellbeing-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    grid-template-rows: auto auto auto;
    gap: 3rem 2.5rem;
    align-items: center;
    justify-items: center;
    color: #fff;
}

@media (min-width: 1025px) {
    .wellbeing-content {
        gap: 0.45rem 1.75rem;
        /* Balanced inset — large top-only padding was clipping the bottom card. */
        padding: clamp(0.75rem, 1.8vh, 1.5rem) 1.75rem;
        grid-template-columns: 1fr minmax(200px, 260px) 1fr;
    }

    .wellbeing-header h2 {
        font-size: clamp(1.45rem, 2.8vw, 2.2rem);
        margin-bottom: 0.4rem;
    }

    .wellbeing-subtext {
        font-size: 0.98rem;
        line-height: 1.45;
        margin-bottom: 0.75rem;
    }

    .wellbeing-feature-quote {
        padding: 0.75rem 0;
        margin-bottom: 0.75rem;
    }

    .wellbeing-feature-quote .feature-quote-text {
        font-size: clamp(1.15rem, 2vw, 1.55rem);
        margin-bottom: 0.35rem;
    }

    .wellbeing-feature-quote .feature-quote-desc {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .wellbeing-card {
        padding: 0.85rem 1.1rem 1rem;
        max-width: 320px;
    }

    .wellbeing-card h3 {
        font-size: clamp(1.2rem, 1.7vw, 1.55rem);
        margin-bottom: 0.5rem;
    }

    .wellbeing-card p {
        font-size: 0.92rem;
        line-height: 1.42;
    }

    .presence-circle {
        width: 8rem;
        height: 8rem;
    }

    .presence-circle span {
        font-size: 0.85rem;
        letter-spacing: 0.18em;
    }

    .wellbeing-bottom {
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
    }
}

.wellbeing-header {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.wellbeing-header h2 {
    color: #fff;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.01em;
    margin-bottom: 0.8rem;
}

.wellbeing-subtext {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.25rem;
    line-height: 1.65;
    margin: 0 auto 1.75rem;
    max-width: 860px;
}

.wellbeing-feature-quote {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 1.5rem 0;
    margin: 0 auto 1.75rem;
    max-width: 620px;
}

.wellbeing-feature-quote .feature-quote-text {
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: clamp(1.45rem, 2.7vw, 2rem);
    line-height: 1.34;
    margin: 0 0 0.65rem;
    max-width: none;
}

.wellbeing-feature-quote .feature-quote-desc {
    color: rgba(255, 255, 255, 0.72);
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.55;
    margin: 0 auto;
    max-width: 620px;
}

.wellbeing-header .divider {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
    margin: 0 auto;
}

.wellbeing-card {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 1.65rem 1.9rem 1.9rem;
    max-width: 360px;
}

.wellbeing-card h3 {
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 2.15vw, 2.05rem);
    font-weight: 500;
    line-height: 1.28;
    margin-bottom: 1rem;
}

.wellbeing-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.0625rem;
    font-style: italic;
    margin: 0;
    line-height: 1.58;
    max-width: none;
}

.wellbeing-left {
    grid-column: 1;
    grid-row: 2;
    text-align: right;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    padding-right: 1.75rem;
    padding-left: 0;
}

.wellbeing-right {
    grid-column: 3;
    grid-row: 2;
    text-align: left;
    border-left: 2px solid rgba(255, 255, 255, 0.7);
    padding-left: 1.75rem;
    padding-right: 0;
}

.wellbeing-center {
    grid-column: 2;
    grid-row: 2;
}

.wellbeing-bottom {
    grid-column: 2;
    grid-row: 3;
    text-align: center;
    border-top: 2px solid rgba(255, 255, 255, 0.7);
    border-left: none;
    padding-top: 1.25rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 1.5rem;
}

.presence-circle {
    width: 12rem;
    height: 12rem;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: presencePulse 4s ease-in-out infinite;
}

.presence-circle span {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.86);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

@keyframes presencePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.04); }
}

@media (max-width: 1024px) {
    .wellbeing-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        gap: 2.5rem;
        padding: 4rem 1.5rem;
    }
    .wellbeing-header { grid-column: 1; grid-row: 1; }
    .wellbeing-left {
        grid-column: 1; grid-row: 2;
        text-align: center;
        border-right: none;
        border-left: 2px solid rgba(255, 255, 255, 0.7);
        padding-right: 0;
        padding-left: 1.25rem;
    }
    .wellbeing-center { grid-column: 1; grid-row: 3; }
    .presence-circle { width: 9rem; height: 9rem; }
    .wellbeing-right {
        grid-column: 1; grid-row: 4;
        text-align: center;
        padding-left: 1.25rem;
    }
    .wellbeing-bottom {
        grid-column: 1; grid-row: 5;
        border-top: none;
        border-left: 2px solid rgba(255, 255, 255, 0.7);
        padding-top: 0;
        padding-left: 1.25rem;
        padding-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .wellbeing-content { padding: 3rem 1.25rem; }
    .wellbeing-card { padding: 1.15rem 1.25rem 1.45rem; }
    .presence-circle { width: 8rem; height: 8rem; }
}

/* Mobile/tablet: storm cards only — no stage photo/video behind content */
@media (max-width: 1024px) {
    .wellbeing-section .video-bg,
    .wellbeing-section .video-overlay {
        display: none;
    }

    .wellbeing-section {
        background: #0c0908;
    }

    .wellbeing-stage {
        background-image: none;
        background-color: #0c0908;
        min-height: 0;
    }

    .wellbeing-content {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0;
        max-width: 100%;
        background: none;
    }

    .wellbeing-header,
    .wellbeing-left,
    .wellbeing-right,
    .wellbeing-bottom {
        position: relative;
        min-height: max(100svh, 760px);
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 5rem 1.75rem;
        margin: 8px;
        max-width: none;
        width: auto;
        border: none !important;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 20px;
        overflow: hidden;
    }

    .wellbeing-center {
        display: none;
    }

    .wellbeing-section .card-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        background-size: cover;
        background-position: center;
        z-index: 0;
        pointer-events: none;
    }

    .wellbeing-section .card-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 1;
        pointer-events: none;
    }

    .wellbeing-header > *,
    .wellbeing-left > *:not(.card-video):not(.card-overlay),
    .wellbeing-right > *:not(.card-video):not(.card-overlay),
    .wellbeing-bottom > *:not(.card-video):not(.card-overlay) {
        position: relative;
        z-index: 2;
    }

    .wellbeing-header h2 {
        font-size: clamp(1.6rem, 5.5vw, 2rem);
        line-height: 1.25;
        margin-bottom: 1.25rem;
    }

    .wellbeing-subtext {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0 auto 2rem;
        max-width: 460px;
    }

    .wellbeing-feature-quote {
        border: none;
        padding: 0;
        margin: 0 auto;
        max-width: 480px;
    }

    .wellbeing-feature-quote .feature-quote-text {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
        line-height: 1.42;
        margin: 0 auto 1rem;
    }

    .wellbeing-feature-quote .feature-quote-desc {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0 auto;
    }

    .wellbeing-header .divider {
        display: none;
    }

    .wellbeing-card h3 {
        font-size: clamp(1.32rem, 5.4vw, 1.65rem);
        line-height: 1.28;
        max-width: 460px;
        margin: 0 auto 1.1rem;
    }

    .wellbeing-card p {
        font-size: 0.92rem;
        line-height: 1.55;
        max-width: 440px;
        margin: 0 auto;
    }
}

/* Language toggle */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.125rem;
    font-weight: 500;
    margin-left: 20px;
}

.lang-switch .lang-link {
    color: var(--text-muted);
    padding: 4px;
    position: relative;
    transition: color 0.3s;
    line-height: 1;
}

.lang-switch .lang-link.active {
    color: var(--text-primary);
}

.lang-switch .lang-link:hover {
    color: var(--accent);
}

.lang-switch .lang-sep {
    color: var(--text-muted);
    opacity: 0.5;
}

.nav-right {
    display: flex;
    align-items: center;
}

@media (max-width: 1023px) {
    .lang-switch {
        margin-left: 12px;
    }
}

.mobile-menu .lang-switch {
    margin-right: 0;
    margin-top: 8px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}

.mobile-menu .lang-switch .lang-link {
    border-bottom: none;
    padding: 4px 4px;
}

@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }

    section {
        padding: 72px 0;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .step {
        flex-direction: column;
        gap: 16px;
    }

    .problem-highlight {
        padding: 32px 24px;
    }

    .problem-highlight p {
        font-size: 1.25rem;
    }
}

/* Calendly Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 31, 31, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 1.25rem;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--accent-light);
    color: var(--accent);
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.modal-body .calendly-inline-widget {
    width: 100%;
    height: 650px;
    min-width: 320px;
}

@media (max-width: 768px) {
    .modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .modal-container {
        max-height: 95vh;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .modal-body .calendly-inline-widget {
        height: 580px;
    }
}

/* Whirlwind: Vimeo background + typewriter (desktop only) */
.whirlwind-section {
    display: none;
}

@media (min-width: 1025px) {
    .whirlwind-section {
        position: relative;
        width: 100%;
        min-height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: #000;
    }

    .whirlwind-video {
        position: absolute;
        inset: 0;
        z-index: 0;
        overflow: hidden;
        pointer-events: none;
    }

    .whirlwind-video iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 177.78vh;
        min-width: 100%;
        height: 56.25vw;
        min-height: 100%;
        transform: translate(-50%, -50%);
        border: 0;
        pointer-events: none;
    }

    .whirlwind-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 1;
        pointer-events: none;
    }

    .whirlwind-content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 80px 32px;
        max-width: 1100px;
    }

    .whirlwind-headline {
        color: white;
        font-family: 'Cormorant Garamond', serif;
        font-weight: 400;
        font-size: clamp(2.5rem, 6vw, 4.75rem);
        line-height: 1.12;
        letter-spacing: -0.005em;
        margin: 0;
    }

    .whirlwind-headline .before-written {
        display: block;
    }

    .whirlwind-headline .written-lines {
        font-style: italic;
        opacity: 0.92;
    }

    .whirlwind-headline .typed-cursor {
        display: inline-block;
        margin-left: 2px;
        color: rgba(255, 255, 255, 0.85);
        font-weight: 300;
        animation: whirlwindCursorBlink 1s steps(2) infinite;
    }

    @keyframes whirlwindCursorBlink {
        50% { opacity: 0; }
    }
}

/* Preview palette tool */
[data-preview-tool][hidden] {
    display: none;
}

.palette-tool {
    position: fixed;
    right: 18px;
    top: 96px;
    z-index: 1200;
    display: grid;
    gap: 12px;
    width: min(280px, calc(100vw - 32px));
    padding: 14px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.preview-tool-toggle {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-surface);
    color: var(--text-primary);
    cursor: pointer;
    font: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 7px 10px;
}

.preview-tool-body {
    display: grid;
    gap: 12px;
}

.palette-tool.is-collapsed {
    width: auto;
}

.palette-tool.is-collapsed .preview-tool-body {
    display: none;
}

.palette-tool-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.palette-tool-title {
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.preview-tool-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-primary);
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
}

.preview-tool-link:hover {
    border-color: var(--accent-light);
    color: var(--accent);
}

.palette-reset {
    border: none;
    background: transparent;
    color: var(--accent);
    font: inherit;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    padding: 4px 0;
}

.palette-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.palette-presets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.palette-preset {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-surface);
    color: var(--text-primary);
    font: inherit;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    padding: 8px 10px;
    transition: var(--transition);
}

.palette-preset:hover,
.palette-preset.is-active {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-subtle);
}

.palette-field {
    display: grid;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.8125rem;
    font-weight: 600;
}

.palette-field input {
    width: 100%;
    height: 42px;
    padding: 3px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-surface);
    cursor: pointer;
}

.image-direction-note {
    margin: -2px 0 0;
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.35;
}

.image-direction-options {
    display: grid;
    gap: 8px;
}

@media (max-width: 640px) {
    .palette-tool {
        right: 12px;
        top: 82px;
    }
}
