:root {
    --bg: #f8f2ea;
    --surface: #fffaf4;
    --surface-soft: #f1e6db;
    --surface-clay: #e5d2c0;
    --text: #302a25;
    --muted: #74695f;
    --border: rgba(112, 91, 74, 0.18);
    --primary: #728268;
    --primary-dark: #4f6149;
    --accent: #d9bfa8;
    --accent-soft: #ead7c5;
    --sage-soft: #e3ecdd;
    --cream: #fffaf4;
    --success: #dff2e1;
    --error: #f7dddd;
    --shadow: 0 22px 55px rgba(63, 48, 37, 0.10);
    --shadow-soft: 0 14px 34px rgba(63, 48, 37, 0.075);
    --radius: 24px;
    --container: 1180px;
    --transition: 0.28s ease;
}

/* ================================
   BASE
================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 0% 0%, rgba(217, 191, 168, 0.26), transparent 32rem),
        radial-gradient(circle at 96% 14%, rgba(114, 130, 104, 0.13), transparent 28rem),
        linear-gradient(180deg, #fbf6ef 0%, #f7f1e9 48%, #fffaf4 100%);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

h1,
h2,
h3,
h4 {
    color: var(--text);
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
}

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}

.section {
    padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section-tight {
    padding: clamp(3rem, 5vw, 5rem) 0;
}

.card {
    background: rgba(255, 250, 244, 0.84);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(114, 130, 104, 0.26);
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: 0.75rem;
    z-index: 10000;
    transform: translateY(-140%);
    background: var(--surface);
    color: var(--primary-dark);
    padding: 0.75rem 1rem;
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

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

/* ================================
   NAVBAR
================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 250, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(112, 91, 74, 0.14);
    box-shadow: 0 10px 34px rgba(72, 52, 37, 0.06);
}

.nav-container {
    width: min(96%, 1500px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 1rem;
    position: relative;
}

.brand,
.brand-logo,
.logo-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    flex: 0 0 auto;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    padding: 0;
}

.brand-logo img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 16px;
    background: var(--surface);
    box-shadow: 0 8px 22px rgba(63, 48, 37, 0.10);
}

.brand-logo span,
.brand span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 1.55vw, 1.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.22rem, 0.55vw, 0.65rem);
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
}

.site-nav a,
.nav-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: clamp(0.78rem, 0.74vw, 0.94rem);
    font-weight: 700;
    line-height: 1;
    color: var(--muted);
    padding: 0.52rem 0.68rem;
    border-radius: 999px;
    border: 0;
    background: transparent;
    transition: color var(--transition), background var(--transition), transform var(--transition);
}

.site-nav a::after {
    display: none;
}

.site-nav a:hover,
.site-nav a.active-nav,
.nav-link-button:hover,
.nav-link-button:focus-visible {
    color: var(--primary-dark);
    background: rgba(114, 130, 104, 0.11);
    transform: translateY(-1px);
}

.nav-cta,
.site-nav .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    color: #fffaf4 !important;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: 0 16px 28px rgba(79, 97, 73, 0.22);
}

.nav-cta:hover,
.active-nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.admin-nav-link {
    color: var(--primary-dark) !important;
    font-weight: 800;
}

.logout-form {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    margin: 0;
}

.user-welcome {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 auto;
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--primary-dark);
    font-weight: 800;
    font-size: clamp(0.76rem, 0.74vw, 0.92rem);
    line-height: 1;
    background: rgba(217, 191, 168, 0.26);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.55rem 0.75rem;
}

/* Language switcher */
.language-switcher,
.language-form,
.nav-language,
.navbar-language {
    display: inline-flex;
    align-items: center;
    width: auto;
    min-width: 118px;
    flex: 0 0 auto;
}

.language-switcher select,
.language-form select,
select[name="language"] {
    width: 118px;
    min-width: 118px;
    max-width: 118px;
    height: 44px;
    padding: 0 2rem 0 1rem;
    box-sizing: border-box;
    border: 1px solid var(--border);
    background: rgba(255, 250, 244, 0.95);
    color: var(--text);
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    text-overflow: clip;
    box-shadow: 0 6px 16px rgba(45, 42, 38, 0.04);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    font-size: 1.45rem;
    background: rgba(255, 250, 244, 0.95);
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--text);
}

@media (max-width: 1400px) {
    .nav-container {
        width: min(97%, 1400px);
        gap: 0.75rem;
    }

    .brand-logo img {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .brand-logo span,
    .brand span {
        font-size: 1.35rem;
    }

    .site-nav a,
    .nav-link-button {
        padding-inline: 0.5rem;
        font-size: 0.8rem;
    }

    .user-welcome {
        max-width: 145px;
        padding-inline: 0.6rem;
    }
}

@media (max-width: 1280px) {
    .nav-container {
        width: min(94%, var(--container));
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        text-align: center;
        background: rgba(255, 250, 244, 0.98);
        border: 1px solid var(--border);
        border-radius: 26px;
        padding: 1rem;
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .site-nav.show {
        display: flex;
        animation: navDrop 0.22s ease;
    }

    .site-nav a,
    .logout-form,
    .language-switcher,
    .nav-link-button,
    .nav-cta,
    .user-welcome {
        width: 100%;
        max-width: none;
        justify-content: center;
        text-align: center;
    }

    .site-nav a,
    .nav-link-button {
        min-height: 42px;
        font-size: 0.95rem;
        padding: 0.65rem 0.8rem;
    }

    .language-switcher {
        margin-top: 0.5rem;
    }

    .language-switcher select,
    .language-form select,
    select[name="language"] {
        width: 140px;
        min-width: 140px;
        max-width: 140px;
        margin: 0 auto;
    }

    .menu-toggle {
        display: inline-flex;
    }
}

/* ================================
   HERO / GENERAL SECTIONS
================================ */

.hero {
    padding: clamp(4rem, 7vw, 6rem) 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
}

.hero-text {
    background: rgba(255, 250, 244, 0.64);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: clamp(1.6rem, 3vw, 2.4rem);
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.58);
    box-shadow: var(--shadow-soft);
}

.hero-text h1,
.home-sanctuary h1,
.section-heading h2,
.page-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: -0.055em;
    color: var(--text);
}

.hero-text h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 0.98;
    margin: 0 0 1rem;
}

.hero-text p {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 64ch;
}

.hero-actions {
    display: flex;
    gap: 0.85rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.hero-panel {
    background: linear-gradient(180deg, rgba(255, 250, 244, 0.88), rgba(241, 230, 219, 0.88));
    border-radius: 30px;
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fffaf4;
    box-shadow: 0 16px 30px rgba(79, 97, 73, 0.24);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.btn-secondary {
    color: var(--primary-dark);
    border: 1px solid rgba(112, 91, 74, 0.18);
    background: rgba(255, 250, 244, 0.78);
}

.section-heading {
    max-width: 760px;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-heading:not(.section-heading--left) {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(2.25rem, 4.6vw, 4.6rem);
    line-height: 0.98;
    margin: 0 0 0.7rem;
}

.section-heading p {
    color: var(--muted);
    line-height: 1.8;
}

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

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--accent);
}

/* ================================
   HOME
================================ */

.hero-home {
    position: relative;
    overflow: hidden;
    min-height: 88vh;
    background:
        radial-gradient(circle at top right, rgba(217, 191, 168, 0.16), transparent 30%),
        linear-gradient(180deg, #f6f1ea 0%, #fbf8f4 100%);
    display: flex;
    align-items: center;
}

.hero-home .hero-grid {
    position: relative;
    z-index: 2;
}

.home-sanctuary {
    position: relative;
    min-height: min(820px, 88vh);
    padding: clamp(5rem, 8vw, 7rem) 0 clamp(4rem, 7vw, 6rem);
    background:
        linear-gradient(110deg, rgba(255, 248, 239, 0.94) 0 52%, rgba(229, 210, 192, 0.72) 52% 100%),
        radial-gradient(circle at 80% 20%, rgba(114, 130, 104, 0.18), transparent 28rem),
        radial-gradient(circle at 16% 86%, rgba(217, 191, 168, 0.20), transparent 30rem);
    overflow: hidden;
    isolation: isolate;
}

.home-sanctuary::before {
    content: "";
    position: absolute;
    inset: auto -4rem -8rem auto;
    width: clamp(280px, 42vw, 560px);
    height: clamp(280px, 42vw, 560px);
    border-radius: 50%;
    border: 1px solid rgba(112, 91, 74, 0.13);
    background: radial-gradient(circle, rgba(255, 250, 244, 0.68), rgba(255, 250, 244, 0));
    z-index: -1;
}

.home-sanctuary__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
}

.home-sanctuary h1 {
    max-width: 12.5ch;
    font-size: clamp(3rem, 7.2vw, 6.4rem);
    line-height: 0.92;
    margin: 0 0 1.4rem;
}

.home-sanctuary__copy > p {
    max-width: 720px;
    color: var(--muted);
    font-size: clamp(1.02rem, 1.4vw, 1.2rem);
    line-height: 1.85;
}

.home-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.home-trust-row span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 250, 244, 0.78);
    border: 1px solid var(--border);
    color: var(--muted);
    font-weight: 700;
    font-size: 0.9rem;
}

.home-visual-panel {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border-radius: 44px;
    padding: clamp(1.8rem, 4vw, 3rem);
    background:
        linear-gradient(160deg, rgba(255, 250, 244, 0.96), rgba(238, 224, 210, 0.86)),
        radial-gradient(circle at top right, rgba(114, 130, 104, 0.20), transparent 22rem);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}

.home-visual-panel::after {
    content: "";
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    width: 42%;
    height: 46%;
    border-radius: 999px 999px 28px 28px;
    border: 1px solid rgba(112, 91, 74, 0.14);
    background: linear-gradient(180deg, rgba(114,130,104,0.13), rgba(255,250,244,0.34));
}

.home-visual-panel__orb {
    width: clamp(150px, 18vw, 220px);
    height: clamp(150px, 18vw, 220px);
    border-radius: 50%;
    margin-left: auto;
    background:
        radial-gradient(circle at 32% 30%, #fffaf4, rgba(255,250,244,0.18) 38%, transparent 39%),
        linear-gradient(145deg, rgba(217,191,168,0.40), rgba(114,130,104,0.24));
    box-shadow: inset 0 0 34px rgba(255,255,255,0.40), 0 22px 42px rgba(72,52,37,0.16);
}

.home-visual-panel__label {
    margin-top: clamp(2.5rem, 6vw, 5rem);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
    font-size: 0.78rem;
}

.home-visual-panel h2 {
    position: relative;
    z-index: 1;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1;
    letter-spacing: -0.055em;
    max-width: 10ch;
    margin: 0 0 2rem;
}

.home-visual-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 0.8rem;
}

.home-visual-list div {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0.85rem;
    align-items: center;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(255, 250, 244, 0.78);
    border: 1px solid var(--border);
}

.home-visual-list strong {
    color: var(--primary-dark);
}

.home-focus-section {
    background:
        linear-gradient(180deg, rgba(255,255,255,0), rgba(234, 215, 197, 0.32)),
        radial-gradient(circle at 12% 35%, rgba(114, 130, 104, 0.10), transparent 24rem);
}

.home-focus-grid {
    align-items: stretch;
}

.home-focus-card {
    position: relative;
    overflow: hidden;
    min-height: 245px;
    padding: 2rem;
    border-radius: 30px;
}

.home-focus-card::after {
    content: "";
    position: absolute;
    right: -2.8rem;
    top: -2.8rem;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    background: rgba(114, 130, 104, 0.10);
}

.home-focus-card__mark {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.2rem;
    background: var(--sage-soft);
    color: var(--primary-dark);
    font-weight: 800;
}

.home-focus-card h3,
.home-value-card h3,
.begin-step h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.home-therapist-section {
    background: linear-gradient(110deg, rgba(114,130,104,0.10), rgba(255,250,244,0.42));
}

.home-values-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr 1.05fr;
    gap: 1.2rem;
    align-items: stretch;
}

.home-value-card {
    border-radius: 32px;
}

.home-value-card:nth-child(1) {
    transform: translateY(2rem);
}

.home-value-card:nth-child(2) {
    background: rgba(227, 236, 221, 0.65);
}

.begin-card {
    position: relative;
    overflow: hidden;
    border-radius: 38px;
    padding: clamp(2rem, 5vw, 4rem);
    background:
        linear-gradient(135deg, rgba(255, 250, 244, 0.90), rgba(227, 236, 221, 0.70));
}

.begin-card::after {
    content: "";
    position: absolute;
    inset: 1.1rem;
    border: 1px solid rgba(112, 91, 74, 0.10);
    border-radius: 30px;
    pointer-events: none;
}

.begin-step {
    position: relative;
    z-index: 1;
    padding: 1.2rem;
}

.begin-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: #fffaf4;
    font-weight: 800;
}

.latest-post-grid {
    margin-top: 1.5rem;
}

.journal-card,
.journal-feature {
    border-radius: 30px;
}

.journal-card img {
    border-radius: 24px 24px 0 0;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.journal-actions {
    margin-top: 2rem;
}

.home-final-cta,
.cta-band {
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    padding: clamp(2.4rem, 6vw, 5rem);
    background:
        radial-gradient(circle at top right, rgba(255,250,244,0.52), transparent 18rem),
        linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fffaf4;
    box-shadow: var(--shadow);
}

.home-final-cta .eyebrow,
.cta-band .eyebrow,
.home-final-cta h2,
.cta-band h2,
.home-final-cta p,
.cta-band p {
    color: #fffaf4;
}

.home-final-cta .btn-primary,
.cta-band .btn-primary {
    background: #fffaf4;
    color: var(--primary-dark);
    box-shadow: none;
}

/* ================================
   LOGO MODAL / LIGHTBOX
================================ */

.logo-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.logo-modal.is-open {
    display: flex;
}

.logo-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(47, 40, 35, 0.62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo-modal__content {
    position: relative;
    z-index: 1;
    max-width: 540px;
    width: min(100%, 540px);
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.72);
    border-radius: 36px;
    padding: 2rem;
    box-shadow: 0 34px 90px rgba(47, 40, 35, 0.34);
    animation: logoModalIn 0.28s ease;
}

.logo-modal__content img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.logo-modal__close {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    border: 0;
    background: rgba(255, 255, 255, 0.78);
    color: #3d332d;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(48, 39, 33, 0.12);
}

.logo-modal__close:hover {
    background: #ffffff;
}

body.logo-modal-open {
    overflow: hidden;
}

@keyframes logoModalIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(10px);
    }

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

/* ================================
   PAGE HERO / COMMON ELEMENTS
================================ */

.page-hero {
    background:
        linear-gradient(110deg, rgba(255, 248, 239, 0.95), rgba(229, 210, 192, 0.58)),
        radial-gradient(circle at 90% 12%, rgba(114,130,104,0.14), transparent 24rem);
    padding: clamp(5rem, 8vw, 7rem) 0 clamp(3.2rem, 6vw, 5rem);
}

.page-hero h1 {
    font-size: clamp(2.25rem, 4.6vw, 4.8rem);
    line-height: 0.98;
    margin: 0 0 0.8rem;
}

.page-intro,
.page-lead {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible,
.fade-in.is-visible,
.no-js .fade-in {
    opacity: 1;
    transform: translateY(0);
}

.content-block,
.split-feature,
.services-intro-grid,
.transition-layout,
.work-intro-layout,
.fees-highlight-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

.contact-intro-layout,
.location-intro-layout,
.work-practical-layout,
.contact-grid,
.location-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: start;
}

.soft-panel,
.soft-card,
.detail-item,
.statement-card,
.pathway-step,
.contact-flow-step,
.work-process-step,
.feature-panel,
.transition-note,
.contact-welcome,
.location-setting,
.work-intro-card,
.fees-card-main,
.fees-card-side,
.work-side-panel,
.work-practical-card,
.work-final-panel {
    background: rgba(255, 250, 244, 0.82);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 1.7rem;
    box-shadow: var(--shadow-soft);
}

.soft-panel img {
    width: 100%;
    min-height: 320px;
    border-radius: 18px;
    object-fit: cover;
    border: 2px solid var(--border);
}

.list-clean {
    padding-left: 1.1rem;
    color: var(--muted);
}

.list-clean li {
    margin-bottom: 0.7rem;
}

.detail-stack,
.contact-reassurance,
.location-details-panel {
    display: grid;
    gap: 1rem;
}

.section-divider {
    height: 1px;
    background: var(--border);
    margin: 2rem 0;
}

.success-box {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.text-page {
    max-width: 850px;
}

.text-page h2 {
    margin-top: 2rem;
}

.band-section,
.contact-note-band,
.location-info-band,
.work-band,
.blog-editorial-band {
    background: #efe7dc;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.band-inner,
.contact-note-inner,
.location-info-band-inner,
.work-band .container,
.blog-editorial-band .container {
    padding: 2.4rem 0;
}

.statement-grid,
.pathway-grid,
.contact-flow,
.work-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pathway-step span,
.contact-flow-step span,
.work-process-step span {
    display: inline-block;
    margin-bottom: 0.8rem;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-dark);
    font-weight: 800;
}

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

.pull-quote {
    padding: 2rem;
    border-left: 4px solid var(--accent);
    background: #f8f3ed;
    border-radius: 0 18px 18px 0;
}

/* ================================
   SERVICES / CARDS
================================ */

.service-card,
.services-card,
.info-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    border-radius: 32px;
    background: rgba(255, 250, 244, 0.84);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    padding: 2rem;
    color: var(--text);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card h2,
.service-card h3,
.service-card p,
.service-card a,
.services-card h2,
.services-card h3,
.services-card p,
.services-card a,
.info-card h3,
.info-card p {
    color: inherit;
}

.service-card p,
.services-card p,
.info-card p {
    color: var(--muted);
}

.service-card a,
.services-card a {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.service-card:hover,
.services-card:hover,
.info-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: rgba(114, 130, 104, 0.26);
}

.service-card::after,
.services-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover::after,
.services-card:hover::after {
    opacity: 1;
}

.service-card--featured {
    background:
        radial-gradient(circle at top right, rgba(255,250,244,0.28), transparent 14rem),
        linear-gradient(135deg, rgba(114, 130, 104, 0.92), rgba(79, 97, 73, 0.96));
    color: #fffaf4;
}

.service-card--featured h2,
.service-card--featured h3,
.service-card--featured p,
.service-card--featured a {
    color: #fffaf4;
}

.services-highlight {
    background: rgba(255, 250, 244, 0.84);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 1.8rem;
    box-shadow: var(--shadow-soft);
}

/* ================================
   BLOG
================================ */

.page-hero--blog {
    background:
        radial-gradient(circle at top right, rgba(217, 191, 168, 0.28), transparent 30%),
        linear-gradient(180deg, #efe6db 0%, #f7f4ef 70%);
    padding: 5.5rem 0 3.5rem;
}

.blog-hero-wrap {
    max-width: 920px;
}

.blog-hero-wrap h1 {
    max-width: 12ch;
    line-height: 1.04;
    margin-bottom: 1rem;
}

.blog-subtext {
    max-width: 760px;
    font-size: 1.08rem;
    color: var(--muted);
}

.blog-editorial-band p {
    margin: 0;
    max-width: 780px;
    font-size: 1.04rem;
    color: var(--text);
}

.blog-feature-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: stretch;
}

.blog-feature-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 24px;
}

.blog-feature-copy,
.blog-detail-shell,
.blog-nav-card {
    background: rgba(255, 250, 244, 0.86);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.blog-feature-copy h2 {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

.blog-grid-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
}

.blog-list-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.blog-list-card-media {
    background: linear-gradient(180deg, #eee4d7, #f8f3ed);
}

.blog-list-card-media img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.blog-list-card-body {
    padding: 1.6rem 1.8rem;
}

.blog-list-card-body h3 {
    margin-top: 0.3rem;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.blog-kicker,
.blog-meta {
    color: var(--muted);
}

.blog-kicker {
    display: inline-block;
    margin-bottom: 0.6rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-dark);
    font-weight: 800;
}

.blog-reading-space {
    max-width: 860px;
    margin: 0 auto;
}

.blog-detail-hero {
    padding: 4.5rem 0 2rem;
}

.blog-detail-hero h1 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.08;
    margin-bottom: 1rem;
    max-width: 14ch;
}

.blog-detail-intro {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.08rem;
}

.blog-detail-shell .blog-detail-image {
    margin-top: 0;
}

.blog-content p {
    font-size: 1.04rem;
    line-height: 1.9;
    color: #4d473f;
}

.blog-detail-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.4rem;
    color: var(--muted);
    font-size: 0.94rem;
}

.blog-nav-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.blog-nav-card small {
    display: block;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.blog-nav-card a,
.blog-link {
    font-weight: 800;
    color: var(--primary-dark);
}

.blog-card {
    overflow: hidden;
    padding: 0;
    border-radius: 30px;
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-body {
    padding: 1.4rem;
}

.blog-detail-image {
    margin: 1.5rem 0;
}

.blog-detail-image img {
    width: 100%;
    border-radius: 22px;
}

/* ================================
   CONTACT / LOCATION / FORMS
================================ */

.form-card,
.contact-form-shell,
.location-form-shell,
.location-map-shell {
    background: rgba(255, 250, 244, 0.86);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

.form-card {
    padding: 2rem;
}

.contact-form-shell,
.location-form-shell,
.location-map-shell {
    padding: 1.2rem;
}

.contact-form-shell .form-card,
.location-form-shell .form-card {
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 1.2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-input,
.auth-form input,
.auth-form textarea,
.auth-form select,
input,
textarea,
select {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(112, 91, 74, 0.22);
    background: rgba(255, 250, 244, 0.90);
    color: var(--text);
    font-size: 1rem;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.form-input:focus,
.auth-form input:focus,
.auth-form textarea:focus,
.auth-form select:focus,
.language-switcher select:focus,
.menu-toggle:focus-visible,
.logo-open-btn:focus-visible,
.brand-logo:focus-visible,
a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(114, 130, 104, 0.28);
    outline-offset: 3px;
}

.form-error {
    display: block;
    margin-top: 0.35rem;
    color: #9b3f3f;
    font-size: 0.92rem;
}

.alert {
    margin: 1rem 0;
    padding: 1rem 1.2rem;
    border-radius: 14px;
}

.alert-success {
    background: var(--success);
}

.alert-error {
    background: var(--error);
}

.message-stack {
    padding-top: 1rem;
}

.form-hp {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.location-map-placeholder {
    background: #f3eee7;
    border: 1px dashed var(--border);
    border-radius: 22px;
    padding: 2rem;
    min-height: 220px;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--muted);
}

.location-map-frame {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 22px;
    display: block;
    box-shadow: var(--shadow-soft);
}

/* ================================
   WORK WITH ME / THERAPIST
================================ */

.fee-amount {
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 1rem 0 0.5rem;
    color: var(--text);
}

.fee-caption {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.fees-note,
.disclaimer-note {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: #efe7dc;
    border: 1px solid var(--border);
    font-weight: 800;
    color: var(--text);
}

.home-therapist-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: start;
}

.home-therapist-grid .soft-panel {
    height: 100%;
    padding: 1.3rem;
}

.home-therapist-grid .soft-panel img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    max-height: 430px;
    object-fit: cover;
    border-radius: 18px;
}

.therapist-home-card,
.therapist-card,
.elevated-profile-card {
    padding: 1.8rem;
    border-radius: 34px;
}

.therapist-image-frame {
    position: sticky;
    top: 110px;
    border-radius: 48px;
    padding: 1rem;
    background: linear-gradient(145deg, rgba(255,250,244,0.84), rgba(229,210,192,0.72));
}

.therapist-image-frame img {
    border-radius: 38px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.therapist-role {
    margin-bottom: 1rem;
    color: var(--text);
}

.therapist-bio-box {
    margin-top: 1rem;
    margin-bottom: 1.2rem;
}

.therapist-label {
    display: inline-block;
    margin-bottom: 0.45rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-dark);
    font-weight: 800;
}

.therapist-bio-preview {
    color: var(--muted);
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.therapist-bio-preview p {
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.therapist-bio-preview.is-collapsed {
    max-height: 5.8rem;
}

.therapist-bio-preview.is-expanded {
    max-height: 1000px;
}

.bio-toggle-btn {
    margin-top: 0.5rem;
    background: none;
    border: none;
    padding: 0;
    color: var(--primary-dark);
    font-weight: 800;
    cursor: pointer;
    font-size: 0.95rem;
}

.bio-toggle-btn:hover {
    text-decoration: underline;
}

.therapist-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.4rem;
}

.therapist-meta-card {
    background: #f5eee6;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1rem 1.1rem;
}

.therapist-meta-card h4 {
    margin-top: 0;
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

.therapist-meta-card ul {
    margin: 0;
    padding-left: 1rem;
}

.therapist-placeholder {
    min-height: 320px;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--muted);
}

.therapist-contact-mini {
    margin: 1rem 0 1.2rem;
    padding: 1rem;
    background: #f5eee6;
    border: 1px solid var(--border);
    border-radius: 16px;
}

.therapist-contact-mini p {
    margin: 0 0 0.45rem;
    color: var(--text);
}

.therapist-contact-mini p:last-child {
    margin-bottom: 0;
}

.therapist-contact-mini a {
    color: var(--primary-dark);
    font-weight: 800;
    word-break: break-word;
}

/* ================================
   FAQ / DISCLAIMER / ADMIN / AUTH
================================ */

.faq-item,
.disclaimer-card,
.admin-panel,
.admin-dashboard-card,
.auth-card {
    background: rgba(255, 250, 244, 0.86);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-item h3,
.disclaimer-card h2,
.disclaimer-card h3 {
    margin-top: 0;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.admin-dashboard-page {
    background:
        radial-gradient(circle at top left, rgba(173, 142, 112, 0.14), transparent 34%),
        var(--bg);
}

.admin-dashboard-hero {
    max-width: 780px;
    margin-bottom: 3rem;
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.admin-dashboard-card {
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.admin-dashboard-card span {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

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

.admin-list-item,
.admin-enquiry-card {
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.admin-list-item:first-of-type,
.admin-enquiry-card:first-of-type {
    padding-top: 0;
}

.admin-enquiry-card {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 1.5rem;
}

.admin-message-box {
    background: var(--surface-soft);
    border-radius: 18px;
    padding: 1rem;
}

.auth-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.auth-container {
    display: flex;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 520px;
    padding: 2rem;
    border-radius: 28px;
}

.auth-card h1 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.auth-form {
    margin-top: 1.5rem;
}

.auth-form p {
    margin-bottom: 1rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 800;
    color: var(--text);
}

.auth-form .helptext {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.auth-form ul {
    margin: 0.75rem 0 1rem 1.25rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.auth-links {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.auth-links a {
    color: var(--primary-dark);
    font-weight: 800;
}

/* ================================
   FOOTER
================================ */

.site-footer {
    margin-top: auto;
    background: #2c312d;
    color: #f3efe9;
    padding-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

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

.site-footer li {
    margin-bottom: 0.6rem;
}

.site-footer p,
.site-footer a,
.site-footer h2,
.site-footer h3,
.site-footer h4 {
    color: #f3efe9;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding: 1.5rem 0;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

@media (max-width: 1050px) {
    .hero-grid,
    .grid-3,
    .grid-2,
    .footer-grid,
    .content-block,
    .contact-grid,
    .location-grid,
    .blog-feature-wrap,
    .blog-list-card,
    .blog-nav-shell,
    .split-feature,
    .services-intro-grid,
    .statement-grid,
    .pathway-grid,
    .transition-layout,
    .soft-columns,
    .contact-intro-layout,
    .contact-flow,
    .location-intro-layout,
    .work-intro-layout,
    .work-process-grid,
    .work-practical-layout,
    .fees-highlight-grid,
    .home-therapist-grid,
    .therapist-meta-grid,
    .disclaimer-grid,
    .admin-dashboard-columns,
    .admin-enquiry-card,
    .home-sanctuary__grid,
    .home-values-grid {
        grid-template-columns: 1fr;
    }

    .home-value-card:nth-child(1) {
        transform: none;
    }

    .therapist-image-frame {
        position: relative;
        top: auto;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        background: rgba(255, 250, 244, 0.98);
        border: 1px solid var(--border);
        border-radius: 26px;
        padding: 1rem;
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .site-nav.show {
        display: flex;
        animation: navDrop 0.22s ease;
    }

    .site-nav a,
    .logout-form,
    .language-switcher,
    .nav-link-button,
    .nav-cta {
        width: 100%;
        justify-content: center;
    }

    .language-switcher {
        margin-top: 0.5rem;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .user-welcome {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .home-therapist-grid .soft-panel img {
        min-height: 320px;
        max-height: none;
    }

    .auth-page {
        min-height: auto;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@keyframes navDrop {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

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

@media (max-width: 680px) {
    .home-sanctuary {
        background:
            radial-gradient(circle at top right, rgba(114,130,104,0.14), transparent 20rem),
            linear-gradient(180deg, #fff8ef 0%, #efe3d6 100%);
        padding-top: 4.5rem;
    }

    .home-sanctuary h1 {
        font-size: clamp(2.6rem, 14vw, 4rem);
        max-width: 12ch;
    }

    .home-visual-panel {
        min-height: auto;
        border-radius: 32px;
        padding: 1.4rem;
    }

    .home-visual-panel__orb {
        width: 128px;
        height: 128px;
    }

    .grid-3,
    .begin-steps-grid {
        grid-template-columns: 1fr;
    }

    .brand-logo img {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .brand-logo span {
        font-size: 1.28rem;
    }

    .section-heading:not(.section-heading--left) {
        text-align: left;
    }

    .home-final-cta,
    .cta-band {
        border-radius: 30px;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 3rem 0;
    }

    .hero {
        padding: 3.5rem 0 3rem;
    }

    .auth-card,
    .form-card {
        padding: 1.5rem;
        border-radius: 22px;
    }

    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .admin-panel,
    .admin-dashboard-card {
        border-radius: 20px;
    }

    .logo-modal__content {
        padding: 1.25rem;
        border-radius: 22px;
    }

    .language-switcher,
    .language-form,
    .nav-language,
    .navbar-language {
        min-width: 118px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}



/* =========================================================
   CORANIMA HOME REDESIGN 2026
   Compact premium clinic + warm human therapy + modern wellness.
   This replaces the oversized editorial homepage layout.
========================================================= */

.home-page,
.home-hero-compact,
.home-support-section,
.home-therapist-refresh,
.home-begin-refresh,
.home-journal-refresh,
.home-final-refresh {
    position: relative;
}

.home-hero-compact {
    overflow: hidden;
    padding: clamp(4.2rem, 6vw, 6.2rem) 0 clamp(3.2rem, 5vw, 4.6rem);
    background:
        linear-gradient(115deg, rgba(255, 250, 244, 0.96) 0 58%, rgba(229, 210, 192, 0.55) 58% 100%),
        radial-gradient(circle at 82% 18%, rgba(114, 130, 104, 0.16), transparent 24rem),
        radial-gradient(circle at 10% 78%, rgba(217, 191, 168, 0.20), transparent 26rem);
    border-bottom: 1px solid var(--border);
}

.home-hero-compact::before {
    content: "";
    position: absolute;
    right: -7rem;
    bottom: -10rem;
    width: clamp(260px, 32vw, 460px);
    height: clamp(260px, 32vw, 460px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 250, 244, 0.70), rgba(255, 250, 244, 0));
    border: 1px solid rgba(112, 91, 74, 0.12);
}

.home-hero-compact__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.home-hero-compact__copy {
    max-width: 760px;
}

.home-hero-compact__copy h1 {
    margin: 0 0 1rem;
    max-width: 13.8ch;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.65rem, 5vw, 4.75rem);
    line-height: 0.98;
    letter-spacing: -0.058em;
    color: var(--text);
}

.home-hero-compact__lead {
    max-width: 62ch;
    margin: 0;
    font-size: clamp(1rem, 1.2vw, 1.13rem);
    line-height: 1.8;
    color: var(--muted);
}

.home-hero-compact__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.35rem;
}

.home-hero-compact__trust span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 250, 244, 0.76);
    border: 1px solid var(--border);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.9rem;
}

.home-hero-compact__panel {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    border-radius: 34px;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    background:
        linear-gradient(160deg, rgba(255, 250, 244, 0.96), rgba(241, 230, 219, 0.88)),
        radial-gradient(circle at top right, rgba(114, 130, 104, 0.18), transparent 18rem);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}

.home-hero-compact__orb {
    width: clamp(110px, 11vw, 155px);
    height: clamp(110px, 11vw, 155px);
    margin-left: auto;
    margin-bottom: clamp(1rem, 3vw, 2.4rem);
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 30%, #fffaf4, rgba(255,250,244,0.22) 38%, transparent 39%),
        linear-gradient(145deg, rgba(217,191,168,0.42), rgba(114,130,104,0.25));
    box-shadow: inset 0 0 30px rgba(255,255,255,0.42), 0 20px 38px rgba(72,52,37,0.14);
}

.home-hero-compact__label {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 900;
    font-size: 0.76rem;
}

.home-hero-compact__panel h2 {
    max-width: 11ch;
    margin: 0 0 0.85rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.95rem, 3.2vw, 3.15rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    color: var(--text);
}

.home-hero-compact__panel p {
    max-width: 40ch;
    margin: 0;
    color: var(--muted);
}

.home-hero-compact__steps {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.35rem;
}

.home-hero-compact__steps div {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0.8rem;
    align-items: center;
    padding: 0.78rem 0.9rem;
    border-radius: 16px;
    background: rgba(255, 250, 244, 0.76);
    border: 1px solid var(--border);
}

.home-hero-compact__steps strong {
    color: var(--primary-dark);
    font-weight: 900;
}

.home-hero-compact__steps span {
    color: var(--text);
    font-weight: 700;
    line-height: 1.35;
}

.home-support-section {
    background:
        linear-gradient(180deg, rgba(255, 250, 244, 0), rgba(234, 215, 197, 0.22)),
        radial-gradient(circle at 10% 40%, rgba(114, 130, 104, 0.09), transparent 22rem);
}

.home-support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.home-support-card {
    min-height: 215px;
    padding: 1.45rem;
    border-radius: 26px;
    background: rgba(255, 250, 244, 0.82);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.home-support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(114, 130, 104, 0.26);
}

.home-support-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: var(--sage-soft);
    color: var(--primary-dark);
    font-weight: 900;
    font-size: 0.86rem;
}

.home-support-card h3 {
    margin: 0 0 0.65rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.42rem;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.home-support-card p {
    margin: 0;
    color: var(--muted);
}

.home-support-card--highlight {
    background:
        radial-gradient(circle at top right, rgba(255,250,244,0.30), transparent 14rem),
        linear-gradient(135deg, rgba(114, 130, 104, 0.94), rgba(79, 97, 73, 0.98));
}

.home-support-card--highlight span {
    background: rgba(255, 250, 244, 0.18);
    color: #fffaf4;
    border: 1px solid rgba(255, 250, 244, 0.22);
}

.home-support-card--highlight h3,
.home-support-card--highlight p,
.home-support-card--highlight a {
    color: #fffaf4;
}

.home-support-card--highlight a {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 0.28rem;
}

.home-therapist-refresh {
    background: linear-gradient(110deg, rgba(114,130,104,0.10), rgba(255,250,244,0.46));
}

.home-therapist-refresh__grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.12fr);
    gap: clamp(1.6rem, 4vw, 3rem);
    align-items: center;
}

.home-therapist-refresh__image {
    border-radius: 34px;
    padding: 0.85rem;
    background: linear-gradient(145deg, rgba(255,250,244,0.86), rgba(229,210,192,0.72));
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.home-therapist-refresh__image img {
    width: 100%;
    max-height: 520px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 26px;
}

.home-therapist-refresh__content h2,
.home-begin-refresh__shell h2,
.home-final-refresh__card h2 {
    margin: 0 0 1rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -0.052em;
}

.home-therapist-refresh__card {
    padding: clamp(1.4rem, 3vw, 2rem);
    border-radius: 28px;
    background: rgba(255, 250, 244, 0.84);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.home-begin-refresh__shell {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    padding: clamp(1.7rem, 4vw, 3rem);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255, 250, 244, 0.92), rgba(227, 236, 221, 0.70));
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.home-begin-refresh__shell p {
    max-width: 44ch;
}

.home-begin-refresh__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
}

.home-begin-refresh__steps div {
    padding: 1.1rem;
    border-radius: 22px;
    background: rgba(255, 250, 244, 0.78);
    border: 1px solid var(--border);
}

.home-begin-refresh__steps strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 0.75rem;
    border-radius: 50%;
    background: var(--primary-dark);
    color: #fffaf4;
    font-weight: 900;
}

.home-begin-refresh__steps h3 {
    margin: 0 0 0.45rem;
    font-size: 1.08rem;
}

.home-begin-refresh__steps p {
    margin: 0;
    font-size: 0.95rem;
}

.home-journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}

.home-featured-post,
.home-journal-card {
    background: rgba(255, 250, 244, 0.84);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.home-featured-post {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.2rem;
    padding: 1.5rem;
    border-radius: 28px;
}

.home-featured-post h3,
.home-journal-card h3 {
    margin: 0.2rem 0 0.55rem;
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: -0.025em;
}

.home-featured-post p,
.home-journal-card p {
    margin-bottom: 0;
}

.home-journal-card {
    overflow: hidden;
    border-radius: 26px;
}

.home-journal-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.home-journal-card div {
    padding: 1.25rem;
}

.home-final-refresh__card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
    overflow: hidden;
    padding: clamp(1.8rem, 4vw, 3.5rem);
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(255,250,244,0.46), transparent 18rem),
        linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fffaf4;
    box-shadow: var(--shadow);
}

.home-final-refresh__card .eyebrow,
.home-final-refresh__card h2,
.home-final-refresh__card p {
    color: #fffaf4;
}

.home-final-refresh__card p {
    max-width: 56ch;
    margin: 0;
}

.home-final-refresh__card .btn-primary {
    background: #fffaf4;
    color: var(--primary-dark);
    box-shadow: none;
}

@media (max-width: 1100px) {
    .home-hero-compact__copy h1 {
        font-size: clamp(2.45rem, 5.5vw, 4rem);
    }

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

    .home-begin-refresh__shell,
    .home-therapist-refresh__grid {
        grid-template-columns: 1fr;
    }

    .home-therapist-refresh__image {
        max-width: 520px;
    }
}

@media (max-width: 900px) {
    .home-hero-compact {
        padding-top: 4rem;
    }

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

    .home-hero-compact__panel {
        min-height: auto;
    }

    .home-hero-compact__copy h1 {
        max-width: 14ch;
    }

    .home-begin-refresh__steps {
        grid-template-columns: 1fr;
    }

    .home-featured-post,
    .home-final-refresh__card {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

@media (max-width: 640px) {
    .home-hero-compact {
        padding: 3.4rem 0 2.8rem;
        background:
            radial-gradient(circle at top right, rgba(114,130,104,0.14), transparent 18rem),
            linear-gradient(180deg, #fff8ef 0%, #efe3d6 100%);
    }

    .home-hero-compact__copy h1 {
        font-size: clamp(2.25rem, 11vw, 3.35rem);
        line-height: 1;
        max-width: 13ch;
    }

    .home-hero-compact__panel,
    .home-begin-refresh__shell,
    .home-final-refresh__card {
        border-radius: 26px;
    }

    .home-support-grid,
    .home-journal-grid {
        grid-template-columns: 1fr;
    }

    .home-support-card {
        min-height: auto;
    }

    .home-hero-compact__trust span {
        font-size: 0.86rem;
    }
}


/* CORANIMA COMPACT WORDMARK */
.brand-wordmark {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    white-space: nowrap;
    line-height: 1;
}

.brand-wordmark strong {
    display: block;
    font: inherit;
    font-size: 1.45rem;
    line-height: 0.95;
    letter-spacing: -0.025em;
}

.brand-wordmark small {
    display: block;
    margin-top: 0.2rem;
    font-family: Arial, sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-dark, #66735e);
}

/* CORANIMA COMPACT DESKTOP NAVBAR - START */

.brand-text {
    display: inline-block !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 1.18rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: -0.025em !important;
    white-space: nowrap !important;
}

@media (min-width: 1281px) {
    .site-header .nav-container {
        width: calc(100% - 18px) !important;
        max-width: none !important;
        gap: 0.25rem !important;
        justify-content: flex-start !important;
    }

    .site-header .brand {
        flex: 0 0 auto !important;
        margin-left: -0.15rem !important;
        margin-right: 0.15rem !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .site-header .brand-logo {
        gap: 0.45rem !important;
    }

    .site-header .brand-logo img {
        width: 40px !important;
        height: 40px !important;
        flex: 0 0 40px !important;
        border-radius: 13px !important;
    }

    .site-header .site-nav {
        position: static !important;
        display: flex !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        margin-left: auto !important;
        justify-content: flex-end !important;
        gap: 0 !important;
    }

    .site-header .site-nav > a,
    .site-header .nav-link-button {
        padding-left: 0.34rem !important;
        padding-right: 0.34rem !important;
        font-size: 0.76rem !important;
        white-space: nowrap !important;
    }

    .site-header .nav-cta {
        padding-left: 0.65rem !important;
        padding-right: 0.65rem !important;
    }

    .site-header .user-welcome {
        flex: 0 0 auto !important;
        max-width: none !important;
        padding-left: 0.55rem !important;
        padding-right: 0.55rem !important;
        font-size: 0.75rem !important;
        white-space: nowrap !important;
    }

    .site-header .language-switcher {
        flex: 0 0 88px !important;
        width: 88px !important;
        min-width: 88px !important;
    }

    .site-header .language-switcher select {
        width: 88px !important;
        min-width: 88px !important;
        padding: 0.55rem 1.45rem 0.55rem 0.55rem !important;
        font-size: 0.74rem !important;
    }
}

/* CORANIMA COMPACT DESKTOP NAVBAR - END */

/* CORANIMA NAV GROUPS FIX - START */

@media (min-width: 1281px) {
    .site-header .nav-container {
        width: calc(100% - 28px) !important;
        max-width: none !important;
        justify-content: flex-start !important;
        gap: 0.55rem !important;
    }

    .site-header .brand {
        flex: 0 0 auto !important;
        margin: 0 !important;
    }

    .site-header .brand-text {
        font-size: 1.14rem !important;
    }

    .site-header .site-nav {
        display: flex !important;
        flex: 1 1 auto !important;
        align-items: center !important;
        justify-content: flex-start !important;
        min-width: 0 !important;
        margin-left: 0.65rem !important;
        gap: 0.08rem !important;
    }

    .site-header .site-nav > a {
        flex: 0 0 auto !important;
        padding-left: 0.38rem !important;
        padding-right: 0.38rem !important;
        white-space: nowrap !important;
    }

    .site-header .nav-tools {
        display: inline-flex !important;
        flex: 0 0 auto !important;
        align-items: center !important;
        margin-left: auto !important;
        gap: 0.15rem !important;
        white-space: nowrap !important;
    }

    .site-header .nav-tools .admin-nav-link,
    .site-header .nav-tools .nav-link-button {
        padding-left: 0.42rem !important;
        padding-right: 0.42rem !important;
    }

    .site-header .nav-tools .user-welcome {
        max-width: none !important;
        padding-left: 0.55rem !important;
        padding-right: 0.55rem !important;
        white-space: nowrap !important;
    }

    .site-header .nav-tools .language-switcher {
        width: 84px !important;
        min-width: 84px !important;
        flex: 0 0 84px !important;
    }

    .site-header .nav-tools .language-switcher select {
        width: 84px !important;
        min-width: 84px !important;
        padding: 0.5rem 1.35rem 0.5rem 0.5rem !important;
        font-size: 0.72rem !important;
    }
}

@media (max-width: 1280px) {
    .site-header .nav-tools {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-left: 0;
        gap: 0.5rem;
    }

    .site-header .nav-tools > * {
        width: 100%;
    }
}

/* CORANIMA NAV GROUPS FIX - END */

