/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Manrope:wght@200;400;500;600&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

/* =========================================
   GLOBAL SCALE SYSTEM (8px baseline)
   ========================================= */

:root {
    --primary-color: #539fa2;
    --secondary-color: #e2bbab;
    /* Refined accent (replaces burnt orange for nav & non-warning UI) */
    --burnt-orange: #7a1e3a;
    --accent-burgundy-hover: #5a1a32;
    --text-color: #271209;
    --white: #ffffff;
    --light-bg: #faf8f6;
    --warm-bg: #f5f1ed;
    --warm-accent: #d4c4b8;
    /* Editorial measure & rhythm (premium, consistent copy blocks) */
    --text-measure: 36rem;
    --lh-body: 1.55;
    --lh-paragraph: 1.44;
    --heading-tracking: -0.028em;

    /* 8px spacing scale */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 40px;
    --space-8: 48px;
    --space-9: 64px;

    /* Typography scale (reduced ~20%) */
    --text-xs: 0.7rem;
    --text-sm: 0.85rem;
    --text-base: 0.95rem;
    --text-md: 1.1rem;
    --text-lg: 1.4rem;
    --text-xl: 1.8rem;
    --text-2xl: 2.2rem;
    --text-3xl: 2.8rem;

    /* Layout */
    --container-width: 1100px;

    /* Body copy — aligned with about.html quality cards (desktop + scale) */
    --body-copy-size: 1rem;
    --body-copy-leading: 1.65;
}

html {
    scroll-behavior: smooth;
    font-size: 112.5%;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: var(--lh-body);
    background-color: var(--warm-bg);
    font-size: 1.08rem;
    font-weight: 200;
}

p {
    line-height: var(--lh-paragraph);
    font-size: var(--text-base);
}

/* All headings should be bold */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: var(--heading-tracking);
}

h1 {
    font-size: var(--text-3xl);
}

h2 {
    font-size: var(--text-2xl);
}

h3 {
    font-size: var(--text-xl);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-4);
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 30px;
    margin-right: 0.25rem;
}

.logo h1 {
    font-size: 1.65rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.logo a:hover h1 {
    color: var(--text-color);
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 0.42em;
    line-height: 1;
    /* Base em for center symbol only; wordmark text uses 0.75em = 25% smaller than this scale */
    font-size: clamp(1.2rem, 1.05rem + 1.15vw, 1.85rem);
    border: none;
    background: none;
    padding: 0;
}

.logo-text .brand {
    font-family: 'Playfair Display', serif;
    font-size: 0.75em;
    font-weight: 600;
    color: #5A1A32;
    letter-spacing: 0.02em;
    transform: translateX(12px);
}

.logo-text .descriptor {
    font-family: 'Inter', sans-serif;
    font-size: 0.75em;
    font-weight: 400;
    color: inherit;
    opacity: 0.85;
    letter-spacing: normal;
    transform: translateX(-14px);
}

.logo-divider {
    /* Stays at full .logo-text scale; text is 0.75em so symbol does not shrink with the words */
    height: 1em;
    width: auto;
    margin: 0 0.32em;
    flex-shrink: 0;
    opacity: 1;
    transform: translateY(0.06em);
    background: transparent;
    border: none;
    padding: 0;
    filter: brightness(0.75) contrast(1.2);
    display: block;
    object-fit: contain;
}

.nav-menu,
.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-menu {
    /* Push nav actions to the right edge while keeping internal spacing intact */
    margin-left: auto;
}

.nav-links a,
.nav-menu .nav-link {
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 1.08rem;
    line-height: 1.45;
    font-weight: 500;
    color: #5A1A32;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-menu .nav-link:hover {
    color: var(--accent-burgundy-hover);
}

.nav-menu .nav-link.nav-link--active {
    color: var(--primary-color);
    font-weight: 600;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* About Section */
.about {
    background-color: var(--warm-bg);
    padding: 5rem 0 4rem;
    margin-top: 0;
}

#home.about {
    padding: 2rem 0 2rem;
}

.about-content {
    max-width: 750px;
    margin: 0 auto;
}

.about-content.about-layout {
    display: flex;
    gap: 3rem;
    align-items: stretch;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-image {
    flex: 0 0 280px;
    display: flex;
    min-height: 0;
    padding: 0;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.about-text {
    flex: 1;
    min-width: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.about-content.about-layout .about-text {
    flex: 0 1 420px;
    max-width: 420px;
}

.about-text .about-last-line {
    margin-bottom: 0;
}

/* Compact vertical sizing for home about-layout so it fits in viewport */
.about-content.about-layout .about-greeting {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    text-align: left;
}

.about-content.about-layout .about-intro,
.about-content.about-layout .about-text p {
    font-size: 1.05rem;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.about-content.about-layout + .about-slogan {
    padding-top: 1.25rem;
}

.about-greeting {
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-intro {
    font-size: 1.45rem;
    line-height: 1.45;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    line-height: 1.45;
    color: var(--text-color);
}

.about-text h3 {
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-text h3:first-of-type {
    margin-top: 0;
}

.about-page .about-content {
    max-width: 750px;
    margin: 0 auto;
}

/* Get in Touch page */
.get-in-touch {
    padding: 5rem 0;
    min-height: 50vh;
}

.get-in-touch-content {
    max-width: 600px;
    margin: 0 auto;
}

.get-in-touch-content p {
    margin-bottom: 1.5rem;
    line-height: 1.45;
}

.get-in-touch-content .contact-details {
    margin-top: 2rem;
}

.get-in-touch-content .contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.get-in-touch-content .contact-details a:hover {
    text-decoration: underline;
}

.about-slogan {
    padding-top: 2rem;
    border-top: 1px solid var(--warm-accent);
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.slogan-text {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin: 0;
}

/* Hero — spacious, calm, editorial rhythm (1200px cap) */
.hero {
    padding: 0;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #f4f1ea;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(120, 140, 120, 0.05), transparent 62%),
        radial-gradient(circle at 80% 70%, rgba(180, 160, 140, 0.04), transparent 62%);
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 48px var(--space-4) 56px;
    width: 100%;
    box-sizing: border-box;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: start;
    width: 100%;
}

.hero-text,
.hero-content.hero-text {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    text-align: left;
    min-width: 0;
    padding-left: 42px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.hero-brand {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.hero-brand img {
    height: 240px;
    margin-bottom: 32px;
    opacity: 0.9;
    width: auto;
    display: block;
    transform: none; /* Keep symbol anchored to the text flow */
    mix-blend-mode: multiply;
}

.hero-headline {
    font-size: 3.52rem;
    line-height: 1.18;
    letter-spacing: var(--heading-tracking);
    color: #3e2f2b;
    margin: 0 0 24px 0;
}

.hero-subtext {
    font-size: 1.38rem;
    line-height: var(--lh-body);
    color: #6b5e59;
    margin: 0 0 16px 0;
    max-width: 480px;
}

.hero-statement {
    font-size: 1.25rem;
    line-height: var(--body-copy-leading);
    color: #8a7f7a;
    opacity: 0.9;
    margin: 0 0 32px 0;
    max-width: 480px;
}

.hero-text .hero-buttons,
.hero-text .cta-group {
    margin-top: 0;
}

.hero h1 em,
.hero-headline em {
    font-style: italic;
    font-weight: 400;
}

.hero p:not(.hero-subtext):not(.hero-statement),
.hero-text p:not(.hero-subtext):not(.hero-statement) {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-md);
    line-height: 1.48;
    color: #6b5a54;
    max-width: var(--text-measure);
    margin-top: 18px;
    margin-bottom: 32px;
}

.hero-buttons,
.cta-group {
    display: flex;
    gap: 16px;
    align-items: center;
    margin: 0;
}

.hero .btn-primary,
.hero .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
    font-size: 1.19rem;
    line-height: 1.4;
    padding: 14px 24px;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    border: none;
    cursor: pointer;
}

.hero .btn-primary {
    background-color: #3f7f73;
    color: #ffffff;
}

.hero .btn-primary:hover {
    background-color: #366b62;
}

.hero .btn-secondary {
    border: 1px solid rgba(63, 127, 115, 0.55);
    color: #3f7f73;
    background: transparent;
}

.hero .btn-secondary:hover {
    background-color: rgba(63, 127, 115, 0.07);
    border-color: rgba(54, 107, 98, 0.65);
    color: #366b62;
}

.hero-image {
    width: 100%;
    margin: 0;
    align-self: center;
    justify-self: start;
}

.hero-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    border-radius: 16px;
    display: block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    object-fit: cover;
    object-position: center 35%;
    opacity: 0.98;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 200;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: var(--text-sm);
    line-height: 1.45;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

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

.btn-primary,
.btn-secondary {
    padding: 10px 18px;
    font-weight: 500;
    font-size: var(--text-sm);
}

.btn-full {
    width: 100%;
}

@media (max-width: 900px) {
    .hero-container {
        padding: 48px 20px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-image {
        order: -1;
        max-width: 100%;
        transform: none;
    }

    .hero-content.hero-text,
    .hero-text {
        max-width: 100%;
        padding-left: 0;
        align-items: flex-start;
        text-align: left;
    }

    .hero h1,
    .hero-headline {
        font-size: clamp(34px, 6vw, 46px);
    }

    .hero-buttons,
    .cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .hero-image img {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 4 / 5;
    }
}

/* Section Styles */
section {
    padding: var(--space-8) 0;
}

.section-title {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: var(--space-6);
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: var(--heading-tracking);
}


/* Services Section */
.services {
    background-color: var(--white);
}

.services-layout,
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
    max-width: 1000px;
    margin: 0 auto;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-7);
}

.service-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-item h3 {
    font-size: 1.95rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-item--featured h3 {
    font-size: 2.05rem;
}

.service-badge {
    font-family: 'Manrope', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
    opacity: 0.9;
    margin: -0.35rem 0 0.65rem 0;
    line-height: 1.3;
}

.service-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.service-audience {
    font-family: 'Manrope', sans-serif;
    font-size: 0.98rem;
    line-height: 1.32;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0 0 0.85rem 0;
    max-width: 42ch;
}

.service-item .service-body {
    color: var(--text-color);
    line-height: var(--body-copy-leading);
    font-size: var(--body-copy-size);
    max-width: min(var(--text-measure), 100%);
    margin: 0;
}

/* Secondary CTA on light background (matches hero outline treatment; ~20% smaller than default .btn) */
.services .service-cta.btn-secondary {
    margin-top: 13px;
    padding: 11px 18px;
    font-size: var(--body-copy-size);
    line-height: var(--body-copy-leading);
    border: 1px solid #3A7D73;
    color: #3A7D73;
    background: transparent;
    border-radius: 40px;
    font-weight: 500;
    letter-spacing: 0.4px;
}

.services .service-cta.btn-secondary:hover {
    background: #7A2E3A;
    color: #ffffff;
    border-color: #7A2E3A;
    transform: translateY(-1px);
}

.service-item--featured {
    padding-top: 0.35rem;
    padding-bottom: 0.15rem;
}

/* Organisations pathway (Reset Room) — visually separate from individual services */
.services-organisations {
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 2.85rem 2rem 3rem;
    background-color: var(--light-bg);
    border-radius: 22px;
    border: 1px solid rgba(90, 26, 50, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.services-organisations__title {
    font-size: clamp(1.45rem, 2.8vw, 1.85rem);
    margin: 0 0 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    text-align: left;
    line-height: 1.2;
}

.services-organisations__sub {
    margin: 0 0 1.65rem;
    font-size: var(--body-copy-size);
    line-height: var(--body-copy-leading);
    color: var(--text-color);
    opacity: 0.85;
    max-width: 40ch;
}

.services-organisations-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-decoration: none;
    color: inherit;
    max-width: 520px;
    padding: 2.25rem 2.15rem 2.35rem 2.85rem;
    background-color: var(--white);
    border-radius: 28px;
    border: 2px solid var(--warm-accent);
    box-shadow:
        0 1px 2px rgba(39, 18, 9, 0.04),
        0 6px 28px rgba(39, 18, 9, 0.045);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.services-organisations-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 2px 6px rgba(39, 18, 9, 0.045),
        0 10px 36px rgba(39, 18, 9, 0.055);
}

.services-organisations-card__title {
    font-size: 1.75rem;
    margin: 0 0 0.42rem;
    color: var(--primary-color);
    font-weight: 700;
}

.services-organisations-card__desc {
    margin: 0 0 0.52rem;
    font-size: var(--body-copy-size);
    line-height: var(--body-copy-leading);
    color: var(--text-color);
    max-width: 38ch;
}

.services .services-organisations-card .service-cta.btn-secondary {
    margin-top: 0;
    align-self: flex-start;
    border-color: #7A2E3A;
    color: #7A2E3A;
    background: transparent;
}

.services .services-organisations-card .service-cta.btn-secondary:hover {
    background: #3A7D73;
    color: #ffffff;
    border-color: #3A7D73;
    transform: translateY(-1px);
}

/* Pricing Section */
.pricing {
    background-color: var(--warm-bg);
}

/* Pathway page: tighter hero-to-cards rhythm */
.work-with-me-page .pricing .section-title {
    margin-bottom: 0.55rem;
}

.work-with-me-page .work-with-me-intro {
    text-align: center;
    margin: 0 auto 1.35rem;
    max-width: 36ch;
    line-height: 1.45;
    color: var(--text-color);
    font-weight: 400;
    opacity: 0.88;
}

.pricing-grid,
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    max-width: 1000px;
    margin: 2rem auto 0 auto;
    justify-items: center;
}

.work-with-me-page .pricing .pricing-grid {
    margin-top: 0;
}

/* pricing-online.html: two rows × three columns */
.pricing-grid--online {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card,
.card,
.booking-card {
    background-color: var(--white);
    padding: var(--space-5);
    border-radius: 16px;
    box-shadow: none;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    max-width: 340px;
    margin: 0 auto;
    box-sizing: border-box;
}

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

/* Softer treatment for secondary pathway (e.g. Reset Room on work-with-me) */
.pricing-card--secondary {
    background-color: var(--light-bg);
    border-width: 1.5px;
    border-color: rgba(212, 196, 184, 0.72);
    box-shadow: 0 2px 12px rgba(39, 18, 9, 0.06);
}

.pricing-card--secondary:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 26px rgba(39, 18, 9, 0.1);
    border-color: rgba(212, 196, 184, 0.9);
}

.pricing-card--secondary .pricing-description {
    margin-bottom: 0.45rem;
}

.pricing-card-location {
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--text-color);
    opacity: 0.62;
    margin: 0 0 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.pricing-card.featured {
    border: 1.5px solid #7a1e3a;
    background-color: var(--warm-bg);
    transform: none;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Premium 12-hour card */
.pricing-card.premium {
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    background: #fdfcfa;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.pricing-card.premium h3 {
    font-size: var(--text-lg);
}

.pricing-card.premium .price {
    font-size: var(--text-2xl);
}

.pricing-card.premium .price-sub {
    font-size: var(--text-sm);
    opacity: 0.7;
}

.pricing-card.premium .pricing-highlight {
    font-size: var(--text-sm);
    margin: var(--space-3) 0;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #7A1E3A;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 600;
}

/* Refined “Most Popular” on pricing featured cards */
.badge.most-popular-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
    border-radius: 999px;
    background-color: rgba(128, 32, 52, 0.9);
    color: #ffffff;
    letter-spacing: 0.04em;
    font-weight: 500;
    top: -10px;
    text-transform: none;
}

.pricing-card h2,
.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
    color: var(--text-color);
    font-weight: 700;
}

.pricing-card .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 6px 0;
}

.pricing-card .price-period,
.pricing-card .price-sub {
    color: #666;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.pricing-card .pricing-highlight {
    color: #666;
    margin: 0 auto var(--space-4);
    max-width: min(28em, 100%);
    font-size: var(--text-sm);
    line-height: 1.45;
    text-align: center;
}

.pricing-description {
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.pricing-features,
.pricing-card .features {
    list-style: none;
    margin: 16px 0;
    padding: 0;
    text-align: left;
}

.pricing-features li,
.pricing-card .features li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    padding: 0;
    border-bottom: none;
}

.pricing-features li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.pricing-card .btn,
.pricing-card button {
    margin-top: 12px;
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Discovery Call — softer than paid tiers (pricing-online) */
.discovery-card {
    opacity: 0.92;
}

.discovery-card .price {
    opacity: 0.85;
    font-weight: 500;
}

.discovery-card .secondary-button,
.discovery-card button {
    background-color: transparent;
    border: 1px solid #3d2b1f;
    color: #3d2b1f;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 12px;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.45;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    text-align: center;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.discovery-card .secondary-button:hover {
    background-color: rgba(61, 43, 31, 0.06);
    color: #3d2b1f;
}

/* Booking Section */
.booking-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.booking-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--warm-accent);
    background-color: var(--white);
}

.booking-container iframe {
    display: block;
    min-height: 750px;
}

.booking-form,
.payment-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--warm-accent);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 200;
    color: var(--text-color);
    font-size: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--warm-accent);
    border-radius: 12px;
    font-size: 1.2rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 200;
    transition: border-color 0.3s ease;
    background-color: var(--warm-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

/* Payment page */
.payment-page {
    padding: 5rem 0;
    min-height: 50vh;
}

.payment-options-card {
    max-width: 520px;
    margin: 0 auto;
    padding: 2.5rem;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--warm-accent);
}

.payment-plan-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.payment-plan-price {
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.payment-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-buttons .btn {
    display: block;
    text-align: center;
}

.payment-btn-secondary {
    background-color: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
}

.payment-btn-secondary:hover {
    background-color: var(--warm-bg) !important;
    color: var(--text-color) !important;
    border-color: var(--text-color) !important;
}

.payment-notice {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--warm-accent);
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.45;
}

.payment-fallback {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-color);
}

.payment-fallback a {
    color: var(--primary-color);
    text-decoration: none;
}

.payment-fallback a:hover {
    text-decoration: underline;
}

/* Available Times */
.available-times {
    margin-top: 0.5rem;
}

.time-placeholder {
    color: #666;
    font-style: italic;
    padding: 1rem;
    text-align: center;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.time-slot {
    padding: 0.875rem 1rem;
    border: 2px solid var(--warm-accent);
    border-radius: 12px;
    background-color: var(--warm-bg);
    color: var(--text-color);
    font-size: 1.15rem;
    font-weight: 200;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Manrope', sans-serif;
}

.time-slot:hover {
    border-color: var(--primary-color);
    background-color: var(--white);
    transform: translateY(-2px);
}

.time-slot.selected {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.time-slot.unavailable {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: #e0e0e0;
    border-color: #ccc;
}

.time-slot.unavailable:hover {
    transform: none;
    border-color: #ccc;
}

.no-times-available {
    padding: 1.5rem;
    text-align: center;
    color: #666;
    font-style: italic;
    background-color: var(--warm-bg);
    border-radius: 12px;
    border: 1px solid var(--warm-accent);
}

/* Payment Section */
.payment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.payment-summary {
    background-color: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 20px;
    height: fit-content;
    border: 1px solid var(--warm-accent);
}

.payment-summary h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--text-color);
    font-size: 1.4rem;
}

/* --------------------------------------------------------------------------
   Unified UI overlay (global loader + system messages, #ui-overlay-root)
   -------------------------------------------------------------------------- */
@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 0.9;
        transform: scale(1);
    }
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ui-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    padding: 20px;
    box-sizing: border-box;
}

.ui-overlay.active {
    opacity: 1;
    pointer-events: all;
}

#ui-overlay-root.ui-overlay {
    z-index: 10050;
}

.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.loader img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    /* Spin only: fadeIn kept logo at opacity 0 for ~400ms — invisible during fast navigations */
    animation: spinSlow 1.8s linear infinite;
    opacity: 0.9;
}

.ui-modal {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 18px;
    max-width: 340px;
    width: 100%;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    animation: modalFade 0.3s ease;
    box-sizing: border-box;
}

.ui-modal--wide {
    max-width: 500px;
    padding: 2rem 1.75rem;
}

.ui-modal p {
    font-size: 15px;
    line-height: 1.4;
    color: #3b2f2f;
    margin: 0 0 16px;
}

#ui-overlay-root .ui-modal button,
#ui-overlay-root .ui-modal .ui-modal-dismiss {
    padding: 10px 16px;
    border-radius: 999px;
    background: #5f2a0a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition:
        background-color 0.2s ease,
        transform 0.15s ease;
}

#ui-overlay-root .ui-modal button:hover,
#ui-overlay-root .ui-modal .ui-modal-dismiss:hover {
    background: #4a2108;
}

#ui-overlay-root .ui-modal button:active,
#ui-overlay-root .ui-modal .ui-modal-dismiss:active {
    transform: scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
    .loader img {
        animation: none;
        opacity: 0.9;
    }

    .ui-modal {
        animation: none;
    }

    .success-content.ui-modal {
        animation: none;
    }
}

/* Modal Styles — login/signup: same overlay language; tall forms scroll */
.modal {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: fixed;
    z-index: 2000;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    overflow-y: auto;
    padding: 24px 16px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 24px;
    border-radius: 25px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    border: 1px solid var(--warm-accent);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
}

@media (max-height: 700px) {
    .modal-content {
        margin: 0 auto;
        padding: 20px;
        border-radius: 22px;
    }
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-color);
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary-color);
}

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

/* Login / signup modals: tighter vertical rhythm (scoped — other forms unchanged) */
.modal .form-group {
    margin-bottom: 14px;
}

.modal .form-group input,
.modal .form-group select,
.modal .form-group textarea {
    padding: 10px 12px;
    font-size: 0.95rem;
}

.password-wrapper {
    position: relative;
}

.modal .password-wrapper input {
    padding-right: 64px;
    width: 100%;
    box-sizing: border-box;
}

#togglePassword,
#toggleConfirmPassword,
.modal .password-wrapper .toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 13px;
    color: #6f8f88;
    cursor: pointer;
    padding: 0;
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: 1.2;
}

#togglePassword:hover,
#toggleConfirmPassword:hover,
.modal .password-wrapper .toggle-password:hover {
    opacity: 0.85;
}

.password-strength {
    font-size: 0.85rem;
    margin-top: 6px;
    line-height: 1.35;
    min-height: 1.2em;
    color: #777;
}

.password-strength.weak {
    color: #b71c1c;
}

.password-strength.moderate {
    color: #f57c00;
}

.password-strength.strong {
    color: #2e7d32;
}

.password-checklist {
    list-style: none;
    padding: 0;
    margin-top: 8px;
    font-size: 13px;
    color: #7a6f6a;
}

.password-checklist li {
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.password-checklist li.valid {
    color: #2e7d32;
}

.consent-block {
    margin-top: 18px;
    margin-bottom: 18px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.02);
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #5f5650;
    cursor: pointer;
    margin: 0;
    font-weight: inherit;
}

.checkbox-field:hover {
    color: #3e6f66;
}

.checkbox-field input {
    margin-top: 3px;
    flex-shrink: 0;
    transform: scale(1.1);
    transform-origin: left center;
}

.checkbox-field span {
    display: block;
}

.modal .login-form .btn-primary.btn-full,
.modal .login-form button.btn-primary.btn-full {
    padding: 10px 16px;
    font-size: 1.08rem;
    line-height: 1.45;
}

.signup-link {
    text-align: center;
    margin-top: 1rem;
}

.signup-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    text-decoration: underline;
}

.auth-link {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: #2A9D8F;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.auth-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.login-error {
    color: #b00020;
    font-size: 0.85rem;
    margin-top: 6px;
}

.modal .form-group input.error,
.modal .password-wrapper input.error {
    border-color: #b00020;
}

/* Client Profile */
.client-profile {
    min-height: 70vh;
    padding: 5rem 0;
}

.profile-info {
    background-color: var(--warm-bg);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid var(--warm-accent);
}

.profile-info h3 {
    font-weight: 700;
}

.upcoming-sessions {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--warm-accent);
}

.upcoming-sessions h3 {
    font-weight: 700;
}

.sessions-list {
    margin-top: 1.5rem;
}

.session-item {
    padding: 1.5rem;
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    margin-bottom: 1rem;
    background-color: var(--warm-bg);
}

.session-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.no-sessions {
    text-align: center;
    color: #666;
    padding: 2rem;
}

/* Success Message — uses unified .ui-overlay backdrop */
.success-message.ui-overlay {
    z-index: 3000;
}

.success-content.ui-modal {
    margin: 0 auto;
    border: 1px solid var(--warm-accent);
    animation: modalFade 0.3s ease;
}

.success-content.ui-modal.ui-modal--wide {
    max-width: 500px;
    padding: 2.5rem 2rem;
}

.success-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.75rem;
}

.success-content p {
    margin-bottom: 2rem;
    line-height: 1.3;
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: var(--space-7) 0;
    margin-top: 4rem;
    opacity: 0.95;
}

.footer p {
    font-size: var(--text-sm);
    opacity: 0.9;
}

.footer a {
    font-size: var(--text-sm);
    opacity: 0.85;
}

.footer a:hover {
    opacity: 1;
}

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

.footer h3,
.footer .footer-brand,
.footer .footer-title {
    font-size: var(--text-lg);
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: var(--space-2);
    color: var(--secondary-color);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        /* Below sticky bar: padding + scaled logo line (~1em text + symbol) */
        top: calc(36px + 2.35rem + 12px);
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .about-content.about-layout {
        flex-direction: column;
        align-items: stretch;
    }

    .about-image {
        flex: none;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        min-height: auto;
    }

    .about-image img {
        height: auto;
    }

    .about-greeting {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

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

    .section-title {
        font-size: 2.25rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-brand img {
        height: 160px;
        margin-bottom: 24px;
        transform: none;
    }

    .btn {
        width: 100%;
    }

    .services-layout,
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .services-column {
        gap: var(--space-6);
    }

    .services-organisations {
        margin-top: 3.25rem;
        padding: 2.25rem 1.35rem 2.5rem;
    }

    .services-organisations-card {
        max-width: none;
        padding: 2.1rem 1.2rem 2.25rem 1.65rem;
    }

    .pricing-grid,
    .pricing-container {
        grid-template-columns: 1fr;
    }

    .payment-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .time-slots {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.5rem;
    }

    .time-slot {
        padding: 0.75rem 0.5rem;
        font-size: 1.1rem;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

    .about-greeting {
        font-size: 2.25rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .service-item h3 {
        font-size: 1.65rem;
    }

    .service-item h4 {
        font-size: 1.25rem;
    }

    .service-item .service-body {
        font-size: 1.035rem;
    }

    .service-audience {
        font-size: 0.92rem;
    }

    .price {
        font-size: 2.75rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}
/* Booking Locked UX Upgrade */
.booking-locked-message {
    max-width: 520px;
    margin: 40px auto;
    padding: 32px 28px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  
  .booking-locked-message h3 {
    margin-bottom: 12px;
    font-weight: 500;
  }
  
  .booking-locked-message p {
    opacity: 0.75;
    margin-bottom: 20px;
  }
  /* Credit display above calendar */
  .credit-display {
    text-align: center;
    margin-bottom: 16px;
    font-size: 0.95rem;
    opacity: 0.75;
  }

  /* ===== Credit Banner on booking/dashboard ===== */
  .credit-banner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;

    padding: 18px 20px;

    font-size: var(--body-copy-size);
    font-weight: inherit;

    border-radius: 12px 12px 0 0;

    transition: all 0.3s ease;
    margin: 0;
  }

  .credit-action {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #credit-action:empty {
    display: none;
  }

  .credit-btn {
    display: inline-block;
    margin: 0;
    padding: 12px 24px;
    background: #3A7D73;
    color: #ffffff;
    border-radius: 30px;
    font-size: 1.08rem;
    line-height: 1.45;
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
  }

  .credit-btn:hover {
    background: #271209;
    box-shadow: 0 6px 16px rgba(39, 18, 9, 0.18);
  }

  .credit-btn-secondary {
    display: inline-block;
    margin: 0;
    padding: 6px 14px;
    font-size: 1.08rem;
    line-height: 1.45;
    font-weight: 500;
    color: rgba(107, 90, 69, 0.78);
    text-decoration: none;
    border: 1px solid rgba(107, 90, 69, 0.22);
    border-radius: 999px;
    background: transparent;
    transition:
      color 0.2s ease,
      border-color 0.2s ease,
      background-color 0.2s ease;
  }

  .credit-btn-secondary:hover {
    color: #5a4a38;
    border-color: rgba(107, 90, 69, 0.38);
    background-color: rgba(255, 255, 255, 0.45);
  }

  #credit-message,
  .message-text {
    display: block;
    max-width: min(32em, 100%);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;

    font-size: var(--body-copy-size);
    font-weight: inherit;
    line-height: var(--body-copy-leading);
    white-space: pre-line;
  }

  .cta-button {
    margin: 0;
    padding: 12px 24px;
    background: #3a7d73;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 1.08rem;
    line-height: 1.45;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
  }

  .cta-button:hover {
    background: #271209;
    box-shadow: 0 6px 16px rgba(39, 18, 9, 0.18);
  }

  #credit-icon svg {
    width: 22px;
    height: 22px;
  }

  .banner.warm {
    background-color: #f4f1ed;
    border: 1px solid #e8e2db;
  }

  .banner.boundary {
    background-color: #f8edeb;
    border: 1px solid #e6cfcb;
  }

  .banner.neutral {
    background-color: #f6f3ee;
    border: 1px solid #e5ded6;
  }

  .banner.positive {
    background-color: #f1f5f4;
    border: 1px solid #d6e3e1;
  }

  .credit-normal {
    background: linear-gradient(
      180deg,
      #faf9f7 0%,
      #f4f1ed 100%
    );
    color: #4a1f2e;
    border-bottom: 1px solid rgba(74, 31, 46, 0.12);
  }

  .credit-warning {
    background: linear-gradient(
      180deg,
      #fbf8f2 0%,
      #f1e8d8 100%
    );
    color: #6b5a45;
    border-bottom: 1px solid rgba(179, 152, 118, 0.45);
  }

  .credit-critical {
    background: linear-gradient(
      180deg,
      #fdf9f8 0%,
      #f3e8e6 100%
    );
    color: #9a4a4a;
    border-bottom: 1px solid rgba(196, 140, 135, 0.55);
  }

.about-hero {
  padding: 120px 0 60px;
  text-align: center;
}

.about-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.about-subtitle {
  font-size: 20px;
  opacity: 0.8;
}

.about-intro {
  padding: 40px 0 80px;
  text-align: center;
}

.about-intro p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.narrow {
  max-width: var(--text-measure);
  margin: 0 auto;
}

.about-qualities {
  padding: 72px 0;
}

.about-qualities h2 {
  text-align: center;
  margin-bottom: 28px;
}

.qualities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

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

.quality-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 32px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.quality-card h3 {
  margin-bottom: 10px;
}

.pillar-tagline {
  font-style: italic;
  font-size: 1.15rem;
  color: #7a1e3a;
  margin-top: 0;
  margin-bottom: 14px;
  line-height: 1.4;
}

.quality-card p:last-child {
  margin-bottom: 0;
  line-height: 1.55;
}

.about-journey,
.about-grounded,
.about-training,
.about-invite {
  padding: 72px 0;
}

.about-roots {
  padding: 72px 0;
}

.reflections {
  padding: 72px 0 56px;
  background-color: #f7f3ef;
}

.reflections h2 {
  text-align: center;
  margin-bottom: 16px;
}

.reflections-intro {
  text-align: center;
  max-width: var(--text-measure);
  margin: 0 auto 40px;
  font-size: 0.95rem;
  opacity: 0.8;
}

.reflections-list {
  max-width: var(--text-measure);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.reflections blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.44;
  color: #3e2f2b;
  margin: 0;
}

.subtle-subheading {
  margin-top: 24px;
  font-weight: 500;
  opacity: 0.7;
}

.roots-content {
  max-width: var(--text-measure);
}

.roots-content p {
  line-height: 1.5;
}

.roots-content p + p {
  margin-top: 18px;
}

.about-training .training-intro {
  max-width: 40rem;
  margin: 0 auto 1.15rem;
  line-height: 1.5;
  text-align: center;
}

.training-narrative {
  max-width: 42rem;
  margin: 0 auto 48px;
  line-height: 1.5;
  text-align: left;
  color: inherit;
}

.about-training h2 {
  margin-bottom: 16px;
  text-align: center;
}

.about-roots h2,
.about-invite h2 {
  margin-bottom: 16px;
}

.about-invite {
  text-align: center;
}

.about-invite a {
  margin-top: 20px;
  display: inline-block;
}

/* About page — density, subtle colour rhythm (scoped) */
.about-page {
  background-color: #f7f4f1;
}

/* Progressive disclosure toggle: mobile only (see ≤768px rules) */
.about-page .expand-toggle {
  display: none;
}

.about-page .about-qualities,
.about-page .about-roots,
.about-page .about-invite {
  padding: 76px 0;
}

.about-page .reflections,
.about-page .about-training {
  padding: 76px 0;
  background-color: #f1ece8;
}

.about-page .about-qualities h2,
.about-page .reflections h2,
.about-page .about-training h2,
.about-page .about-invite h2 {
  margin-bottom: 20px;
}

.about-page .about-roots h2 {
  margin-bottom: 20px;
}

/* Soft accent under key section titles */
.about-page .about-qualities h2::after,
.about-page .reflections h2::after,
.about-page .about-training h2::after,
.about-page .about-invite h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin: 8px auto 0;
  background: rgba(63, 125, 115, 0.55);
}

.about-page .qualities-grid {
  gap: 48px;
}

.about-page .quality-card {
  max-width: 560px;
  width: 100%;
  justify-self: center;
}

.about-page .quality-card h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2a211c;
}

.about-page .quality-card p {
  font-size: var(--body-copy-size);
  line-height: var(--body-copy-leading);
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 0;
}

.about-page .quality-card p:last-child {
  line-height: var(--body-copy-leading);
}

.about-page .quality-card .pillar-tagline {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #6b4a52;
  margin-bottom: 18px;
}

.about-page section h2 {
  font-size: clamp(1.65rem, 3.6vw, 1.9rem);
  line-height: 1.25;
  font-weight: 600;
  color: #2a211c;
}

.about-page .reflections-intro {
  max-width: 580px;
  font-size: var(--body-copy-size);
  line-height: var(--body-copy-leading);
  color: rgba(0, 0, 0, 0.8);
  margin: 0 auto 20px;
}

.about-page .reflections-list {
  max-width: 580px;
  gap: 28px;
}

.about-page .reflections blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
  color: rgba(0, 0, 0, 0.8);
  margin: 0;
  border-left: 2px solid rgba(0, 0, 0, 0.1);
  padding-left: 16px;
}

.about-page .roots-content {
  max-width: min(var(--text-measure), 580px);
}

.about-page .roots-content p {
  font-size: var(--body-copy-size);
  line-height: var(--body-copy-leading);
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 18px;
}

.about-page .roots-content p:last-child {
  margin-bottom: 0;
}

.about-page .roots-content p + p {
  margin-top: 0;
}

.about-page .roots-content p.subtle-subheading {
  margin-bottom: 8px;
}

.about-page .subtle-subheading {
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
  opacity: 1;
  font-size: 1.05rem;
  color: #4a6b63;
}

.about-page .subtle-subheading + p {
  margin-top: 8px;
}

.about-page .training .training-intro {
  max-width: 580px;
  font-size: var(--body-copy-size);
  line-height: var(--body-copy-leading);
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 0;
}

.about-page .training-narrative {
  max-width: 580px;
  margin: 16px auto 0;
  line-height: var(--body-copy-leading);
  text-align: center;
  font-size: var(--body-copy-size);
  color: rgba(0, 0, 0, 0.8);
}

.about-page .about-invite > .container.narrow > p {
  font-size: var(--body-copy-size);
  line-height: var(--body-copy-leading);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 0;
}

.about-page .about-invite .btn,
.about-page .about-invite .btn-primary {
  margin-top: 28px;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 1rem;
  line-height: 1.45;
}

.about-page .about-invite .btn-primary {
  background-color: #27150d;
  color: #fff;
}

.about-page .about-invite .btn-primary:hover {
  background-color: #1a0e09;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(39, 21, 13, 0.22);
}

@media (max-width: 768px) {
  .about-page .container {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  .about-page .about-qualities,
  .about-page .about-roots,
  .about-page .about-invite {
    padding: 56px 0;
  }

  .about-page .reflections,
  .about-page .about-training {
    padding: 56px 0;
  }

  .about-page .reflections-list {
    gap: 24px;
    flex-direction: column;
  }

  .about-page .qualities-grid {
    gap: 36px;
  }

  .about-qualities h2 {
    margin-bottom: 20px;
  }

  .qualities-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Stack in order (1-4) and add a subtle compressed slide-in */
  .quality-card {
    padding: 24px 20px;
    animation: qualityCardSlideIn 0.45s ease forwards;
    opacity: 0;
  }

  .quality-card:nth-child(1) {
    animation-delay: 0ms;
  }
  .quality-card:nth-child(2) {
    animation-delay: 60ms;
  }
  .quality-card:nth-child(3) {
    animation-delay: 120ms;
  }
  .quality-card:nth-child(4) {
    animation-delay: 180ms;
  }
}

/* Checkout pages */
.checkout {
  padding: 80px 0;
}

.checkout h1 {
  text-align: center;
  margin-bottom: 32px;
}

.checkout-summary {
  text-align: center;
  margin-bottom: 40px;
}

.checkout-price {
  font-size: 42px;
  color: #5A9A9A;
  font-weight: 500;
  margin-top: 8px;
}

.checkout .payment-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.payment-options {
  max-width: none;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.payment-options h3 {
  text-align: center;
  margin-bottom: 0;
}

.payment-trust {
  font-size: 14px;
  text-align: center;
  color: #6b5a4a;
  margin-top: 0;
  margin-bottom: 0;
  opacity: 0.9;
}

/* Checkout payment cards (scoped — does not affect pricing .badge) */
.checkout .payment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.checkout .payment-card.preferred {
  padding: 14px 16px 18px;
  border-radius: 16px;
  background: #eef3ec;
  box-sizing: border-box;
}

.checkout .payment-card > .badge {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3e8ea;
  color: #7a1e3a;
  font-weight: 500;
  font-family: 'Manrope', sans-serif;
  position: static;
  transform: none;
  left: auto;
  top: auto;
  text-transform: none;
  letter-spacing: normal;
}

.checkout .btn-wise,
.checkout .btn-paypal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  width: 100%;
  max-width: 360px;
}

.checkout .btn-wise {
  background: #8edb65;
  color: #1f1f1f;
}

.checkout .btn-wise:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.checkout .btn-paypal {
  background: #0070ba;
  color: #ffffff;
  opacity: 0.95;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.checkout .btn-paypal:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.checkout .btn-icon {
  height: 20px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.checkout .payment-card .hint {
  font-size: 13px;
  color: #5f5f5f;
  font-family: 'Manrope', sans-serif;
  font-weight: 200;
  margin: 0;
  text-align: center;
}

/* Legacy checkout links (if any page still uses .payment-btn) */
.payment-btn {
  display: block;
  text-align: center;
  padding: 16px;
  border-radius: 40px;
  margin-bottom: 16px;
  font-weight: 600;
  text-decoration: none;
}

.bank-transfer {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.48;
  text-align: left;
}

.checkout-next-steps {
  max-width: 500px;
  margin: 22px auto 30px auto;
  padding: 14px 18px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  background: rgba(0,0,0,0.02);
}

.checkout-next-steps h3 {
  margin-bottom: 8px;
}

.checkout-next-steps ul {
  padding-left: 18px;
}

.checkout-next-steps li {
  margin-bottom: 4px;
}

/* Client dashboard */
.client-dashboard {
  padding: 5rem 0;
}

.portal-page {
  background: #f4efe9;
}

.portal-container {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

.portal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 50px;
}

.portal-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.portal-header h1 {
  font-size: 2rem;
  margin-bottom: 4px;
}

.portal-subtitle {
  color: #6b6b6b;
  font-size: 1rem;
}

/* Profile dashboard: Book Session + Purchase credits (scoped — not logout modal) */
.portal-page .portal-header .secondary-btn {
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    transform 0.15s ease, box-shadow 0.15s ease;
}

.portal-page .portal-header .secondary-btn:hover {
  background-color: #2A9D8F;
  border-color: #2A9D8F;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(42, 157, 143, 0.28);
}

/* Session Credits CTA; ~20% smaller than global .primary-btn */
.portal-page #credit-cta.primary-btn {
  background: #7A1E3A;
  border-color: #7A1E3A;
  padding: 10px 21px;
  font-size: 1.08rem;
  line-height: 1.45;
  border-radius: 24px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    transform 0.15s ease, box-shadow 0.15s ease;
}

.portal-page #credit-cta.primary-btn:hover {
  background-color: #2A9D8F;
  border-color: #2A9D8F;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(42, 157, 143, 0.3);
  transform: translateY(-1px);
}

/* Session Credits — medium state: quiet top-up (matches booking secondary CTA tone) */
.portal-page #credit-cta.credit-cta--topup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  padding: 8px 18px;
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(107, 90, 69, 0.82);
  text-decoration: none;
  border: 1px solid rgba(107, 90, 69, 0.24);
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  transform: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.portal-page #credit-cta.credit-cta--topup:hover {
  color: #5a4a38;
  border-color: rgba(107, 90, 69, 0.4);
  background-color: rgba(255, 255, 255, 0.5);
  transform: none;
  box-shadow: none;
}

.avatar-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2f6f6a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
  flex: 0 0 auto;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1.3fr;
  gap: 30px;
  margin-bottom: 40px;
}

.dashboard-card {
  padding: 30px;
  border-radius: 16px;
  background: #f7f4ef;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
  margin-bottom: 10px;
}

.dashboard-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
}

.dashboard-card h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

/* Session Credits card — calm state cues (profile only) */
.session-credits-card {
  transition:
    background-color 0.4s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.session-credits-card.session-credits--low {
  background: color-mix(in srgb, #f7f4ef 93%, #dba9a4 7%);
}

.session-credits-card.session-credits--medium {
  background: color-mix(in srgb, #f7f4ef 90%, #dfc9a0 10%);
}

.session-credits-card.session-credits--high {
  background: color-mix(in srgb, #f7f4ef 92%, #a8cfc6 8%);
}

.session-credits-card #credit-number {
  color: #2f6f6a;
  transition: color 0.35s ease;
}

.session-credits-card.session-credits--low #credit-number {
  color: #8f5f5c;
}

.session-credits-card.session-credits--medium #credit-number {
  color: #7a6a52;
}

.session-credits-card.session-credits--low .credit-bar {
  background: color-mix(in srgb, #e9e4dd 82%, #e0c5c2 18%);
}

.session-credits-card.session-credits--medium .credit-bar {
  background: color-mix(in srgb, #e9e4dd 78%, #e5d9c4 22%);
}

.session-credits-card.session-credits--high .credit-bar {
  background: color-mix(in srgb, #e9e4dd 85%, #c5ddd6 15%);
}

/* Session Credits — tighter vertical rhythm; number + copy read as one block */
.session-credits-card .credit-unit {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.35;
}

.session-credits-card .credit-bar {
  margin-top: 8px;
  margin-bottom: 8px;
}

.session-credits-card #credit-explanation {
  margin-top: 0;
  margin-bottom: 16px;
}

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

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

.skeleton-line {
  height: 10px;
  background: #e8e3df;
  border-radius: 6px;
  margin-bottom: 10px;
  animation: pulse 1.4s ease-in-out infinite;
}

.skeleton-line.short {
  width: 60%;
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.dashboard-card-upcoming .timezone-note {
  margin-bottom: 8px;
}

.dashboard-card-upcoming .dashboard-section {
  margin-top: 12px;
}

.dashboard-card-upcoming .session-card {
  padding: 12px;
  margin-bottom: 8px;
  line-height: 1.35;
}

.dashboard-card-upcoming .zoom-join-btn {
  margin-top: 6px;
}

.dashboard-card-upcoming .empty-state {
  margin-top: 4px;
  margin-bottom: 0;
  line-height: 1.5;
}

.credit-display {
  font-size: 3rem;
  font-weight: 600;
  color: #2f6f6a;
  margin-bottom: 10px;
}

.session-credits-card .credit-display {
  color: inherit;
  margin-bottom: 4px;
}

.credit-unit {
  display: block;
  font-size: 1rem;
  color: #777;
}

.credit-bar {
  height: 10px;
  background: #e9e4dd;
  border-radius: 6px;
  margin: 16px 0;
  overflow: hidden;
}

#credit-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 6px;
  transition: width .4s ease;
}

/* Profile session credits fill — soft teal / amber / rose (only used on profile.html) */
.credit-bar-good {
  background: linear-gradient(90deg, #4f9d91 0%, #3d8c81 100%);
}

.credit-bar-warning {
  background: linear-gradient(90deg, #c4a872 0%, #b89765 100%);
}

.credit-bar-critical {
  background: linear-gradient(90deg, #c69a93 0%, #b88b84 100%);
}

#credit-explanation {
  font-size: .95rem;
  color: #6b6b6b;
  line-height: 1.45;
  max-width: 32em;
  margin-bottom: 20px;
}

.dashboard-section {
  margin-top: 40px;
}

.dashboard-section h2 {
  margin-bottom: 16px;
}

.session-card {
  padding: 14px;
  border-radius: 10px;
  background: #f3efe8;
  margin-bottom: 12px;
  line-height: 1.45;
}

.empty-state{
  color:#6b6b6b;
  line-height:1.6;
  margin-top:6px;
  text-align:center;
}

.last-session {
  margin-top: 18px;
  margin-bottom: 18px;
}

.last-session-label {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 4px;
}

.last-session-details {
  font-size: 0.95rem;
  color: #2d1b12;
}

.timezone-note {
  font-size: 0.9rem;
  color: #6b6b6b;
  margin-bottom: 12px;
}

.logout-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.logout-modal:not(.hidden) {
  visibility: visible;
  transition: visibility 0s;
}

.logout-modal.hidden {
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 0.25s;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.logout-modal:not(.hidden) .modal-overlay {
  opacity: 1;
}

.logout-modal.hidden .modal-overlay {
  opacity: 0;
}

.modal-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 16px;
  width: 100%;
  max-width: 360px;
  margin-inline: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.logout-modal:not(.hidden) .modal-card {
  opacity: 1;
  transform: scale(1);
}

.logout-modal.hidden .modal-card {
  opacity: 0;
  transform: scale(0.96);
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2d1b12;
}

.modal-subtext {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}

.modal-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.logout-modal .modal-card .primary-btn {
  padding: 12px 22px;
  border-radius: 999px;
  background-color: #3b1406;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 500;
  font-family: 'Manrope', sans-serif;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.logout-modal .modal-card .primary-btn:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(83, 159, 162, 0.28);
}

.logout-modal .modal-card .primary-btn:active {
  transform: translateY(0) scale(0.97);
}

.logout-modal .modal-card .secondary-btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #3b1406;
  background: transparent;
  color: #3b1406;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 500;
  font-family: 'Manrope', sans-serif;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.logout-modal .modal-card .secondary-btn:hover {
  background: rgba(83, 159, 162, 0.12);
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: none;
  opacity: 1;
}

.logout-modal .modal-card .secondary-btn:active {
  transform: translateY(0) scale(0.97);
}

@media (prefers-reduced-motion: reduce) {
  .logout-modal {
    transition: none !important;
  }

  .logout-modal.hidden {
    transition: visibility 0s !important;
  }

  .modal-overlay,
  .modal-card {
    transition: opacity 0.15s ease !important;
  }

  .logout-modal .modal-card {
    transform: none !important;
  }

  .logout-modal:not(.hidden) .modal-card {
    transform: none !important;
  }

  .logout-modal.hidden .modal-card {
    transform: none !important;
  }

  .logout-modal .modal-card .primary-btn,
  .logout-modal .modal-card .secondary-btn {
    transition: background-color 0.15s ease, opacity 0.15s ease !important;
  }

  .logout-modal .modal-card .primary-btn:hover,
  .logout-modal .modal-card .secondary-btn:hover,
  .logout-modal .modal-card .primary-btn:active,
  .logout-modal .modal-card .secondary-btn:active {
    transform: none !important;
  }
}

.resource-links{
  margin-top:16px;
  padding-left: 18px;
}

.resource-links li{
  margin-bottom:10px;
  font-size: .95rem;
  display:flex;
  align-items:center;
  gap:8px;
}

.resource-links a{
  color:#2f6f6a;
  text-decoration:none;
}

.resource-links a:hover{
  text-decoration:underline;
}

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

.resources-card {
  grid-column: 1 / -1;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3b1408;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 600;
  border: 2px solid #3b1408;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.12);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #3b1408;
  background: transparent;
  padding: 10px 24px;
  border-radius: 30px;
  color: #3b1408;
  text-decoration: none;
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 600;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.secondary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.10);
}

/* Subtle pulse for critical credit banner */
@keyframes creditPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(154, 74, 74, 0.18);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(154, 74, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(154, 74, 74, 0);
  }
}

.credit-pulse {
  animation: creditPulse 2s ease-out;
}
/* Zoom join button inside session cards */
.zoom-join-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #2A9D8F;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.zoom-join-btn:hover {
  background-color: #1E7A6E;
}

/* ——— Reset Room (for teams) — scoped to body.reset-room-page ——— */
.reset-room-page section {
    padding: 3.35rem 0;
}

.reset-room-page .reset-room-hero {
    padding: 2.35rem 0 2.15rem;
    text-align: center;
}

.reset-room-page .reset-room-hero__panel {
    max-width: 29rem;
    margin: 0 auto;
    padding: 1.65rem 1.75rem 1.7rem;
    background: linear-gradient(
        165deg,
        rgba(253, 250, 246, 0.98) 0%,
        rgba(235, 228, 218, 0.94) 100%
    );
    border: 1px solid rgba(39, 18, 9, 0.085);
    border-radius: 26px;
    box-shadow:
        0 1px 2px rgba(39, 18, 9, 0.04),
        0 3px 10px rgba(39, 18, 9, 0.035);
}

.reset-room-page .reset-room-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3rem);
    color: var(--text-color);
    margin: 0 0 0.55rem;
    font-weight: 700;
}

.reset-room-page .reset-room-hero__lead {
    font-size: 1.12rem;
    line-height: 1.45;
    color: var(--text-color);
    opacity: 0.9;
    margin: 0 auto;
    max-width: 38ch;
}

.reset-room-page .reset-room-cta .btn-secondary {
    background-color: rgba(255, 255, 255, 0.35);
    color: rgba(39, 18, 9, 0.68);
    border: 1.5px solid rgba(39, 18, 9, 0.38);
}

.reset-room-page .reset-room-cta .btn-secondary:hover {
    background-color: rgba(39, 18, 9, 0.08);
    color: var(--text-color);
    border-color: rgba(39, 18, 9, 0.52);
}

.reset-room-page .section-title {
    font-size: clamp(1.85rem, 3.5vw, 2.2rem);
    margin-bottom: 1.15rem;
    line-height: 1.2;
}

.reset-room-page .reset-room-problem {
    text-align: left;
    background-color: #ebe6e0;
    border-bottom: 1px solid rgba(39, 18, 9, 0.05);
}

.reset-room-page .reset-room-problem .section-title {
    font-size: clamp(1.7rem, 3.2vw, 2.05rem);
    margin-bottom: 1rem;
    text-align: left;
}

.reset-room-page #what-is-reset-room {
    scroll-margin-top: 96px;
}

.reset-room-page .reset-problem-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem 2.25rem;
    max-width: 52rem;
    margin: 0;
    align-items: center;
}

.reset-room-page .reset-problem-col:first-child {
    align-self: start;
}

.reset-room-page .reset-problem-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 34ch;
}

.reset-room-page .reset-problem-stack p {
    margin: 0;
    padding: 0.82rem 0;
    line-height: 1.48;
    font-size: 1.02rem;
    color: var(--text-color);
    border-bottom: 1px solid rgba(39, 18, 9, 0.1);
}

.reset-room-page .reset-problem-stack p:first-child {
    padding-top: 0;
}

.reset-room-page .reset-problem-stack p:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.reset-room-page .reset-problem-pullquote {
    display: flex;
    align-items: center;
    min-height: 100%;
}

.reset-room-page .reset-problem-pullquote p {
    margin: 0;
    line-height: 1.48;
    font-size: clamp(1.2rem, 2.1vw, 1.32rem);
    font-weight: 600;
    font-style: italic;
    color: #140a06;
    padding-left: 1.15rem;
    border-left: 4px solid rgba(90, 26, 50, 0.48);
}

.reset-room-page .reset-room-what .section-title {
    text-align: center;
    margin-bottom: 1.25rem;
}

.reset-room-page .reset-room-prose {
    text-align: left;
    max-width: min(var(--text-measure), 100%);
    margin: 0 auto 2.15rem;
}

.reset-room-page .reset-room-prose p {
    margin: 0 0 1.42rem;
    line-height: 1.48;
    font-size: 1.05rem;
    color: var(--text-color);
}

.reset-room-page .reset-room-prose p:first-of-type {
    font-size: 1.13rem;
    font-weight: 500;
    line-height: 1.52;
    letter-spacing: -0.012em;
}

.reset-room-page .reset-room-prose p:last-child {
    margin-bottom: 0;
}

.reset-room-page .reset-room-merge-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 2.5rem;
    max-width: 44rem;
    margin: 0 auto;
    padding-top: 0.25rem;
    border-top: 1px solid rgba(39, 18, 9, 0.08);
}

.reset-room-page .reset-room-what .reset-room-merge-grid {
    gap: 1.65rem 3.5rem;
    max-width: 36rem;
    padding-top: 0.55rem;
}

.reset-room-page .reset-room-merge-list {
    list-style: none;
    margin: 0;
    padding: 1.15rem 0 0;
}

.reset-room-page .reset-room-what .reset-room-merge-list {
    padding-top: 1.2rem;
}

.reset-room-page .reset-room-merge-list li {
    position: relative;
    padding-left: 1.05rem;
    margin-bottom: 0.65rem;
    line-height: 1.45;
    font-size: 1rem;
    color: var(--text-color);
}

.reset-room-page .reset-room-what .reset-room-merge-list li {
    font-size: 0.91rem;
    line-height: 1.42;
    color: rgba(39, 18, 9, 0.72);
}

.reset-room-page .reset-room-merge-list li:last-child {
    margin-bottom: 0;
}

.reset-room-page .reset-room-merge-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.65;
}

.reset-room-page .reset-room-what .reset-room-merge-list li::before {
    width: 4px;
    height: 4px;
    top: 0.52em;
    opacity: 0.4;
}

.reset-room-page .reset-room-who {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    text-align: center;
}

.reset-room-page .reset-room-who .section-title {
    margin-bottom: 0.85rem;
}

.reset-room-page .reset-room-bullets {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 34rem;
    text-align: left;
}

.reset-room-page .reset-room-bullets li {
    position: relative;
    padding-left: 1.15rem;
    margin-bottom: 0.45rem;
    line-height: 1.45;
    font-size: 1rem;
    color: var(--text-color);
}

.reset-room-page .reset-room-bullets li:last-child {
    margin-bottom: 0;
}

.reset-room-page .reset-room-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.65;
}

.reset-room-page .reset-room-engagement {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--light-bg);
    border-top: 1px solid rgba(39, 18, 9, 0.06);
    text-align: center;
}

.reset-room-page .reset-room-price-grid {
    display: inline-grid;
    grid-template-columns: max-content min-content max-content;
    column-gap: 0.85rem;
    row-gap: 1.35rem;
    justify-content: center;
    align-items: baseline;
    margin: 0 auto;
    line-height: 1.4;
}

.reset-room-page .reset-room-price-label {
    justify-self: end;
    text-align: right;
    font-size: 1.05rem;
    color: var(--text-color);
}

.reset-room-page .reset-room-price-label strong {
    font-weight: 700;
    color: var(--text-color);
    font-family: 'Playfair Display', serif;
}

.reset-room-page .reset-room-price-hint {
    font-weight: 400;
    font-size: 0.86em;
    color: rgba(39, 18, 9, 0.56);
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

.reset-room-page .reset-room-price-sep {
    justify-self: center;
    color: rgba(39, 18, 9, 0.42);
    font-weight: 300;
    padding: 0 0.1rem;
    transform: translateY(-0.04em);
}

.reset-room-page .reset-room-price-figures {
    justify-self: start;
    text-align: left;
    font-size: clamp(1.12rem, 2.4vw, 1.32rem);
    font-weight: 600;
    color: #120805;
    letter-spacing: 0.015em;
    font-variant-numeric: tabular-nums;
}

.reset-room-page .reset-room-engagement .reset-room-pricing-note {
    margin-top: 1.35rem;
    margin-bottom: 0;
    font-size: 0.88rem;
    opacity: 0.72;
    line-height: 1.45;
}

.reset-room-page .reset-room-cta {
    text-align: center;
    margin-top: 0;
    padding-top: 4.65rem;
    padding-bottom: 3.65rem;
    background: linear-gradient(
        180deg,
        rgba(248, 242, 235, 0.88) 0%,
        rgba(238, 230, 222, 0.42) 38%,
        rgba(252, 248, 243, 0.96) 100%
    );
    border-top: 1px solid rgba(39, 18, 9, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 -12px 36px rgba(39, 18, 9, 0.03);
}

.reset-room-page .reset-room-cta .section-title {
    margin-bottom: 1.45rem;
}

.reset-room-page .reset-room-cta .btn-primary {
    padding: 16px 30px;
    font-weight: 600;
    font-size: 1.08rem;
    line-height: 1.45;
    background-color: #140a06;
    color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.18);
    box-shadow:
        0 3px 12px rgba(20, 10, 6, 0.28),
        0 1px 2px rgba(0, 0, 0, 0.12);
}

.reset-room-page .reset-room-cta .btn-primary:hover {
    background-color: var(--primary-color);
    border-color: rgba(58, 116, 112, 0.55);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(58, 125, 115, 0.28);
}

.reset-room-page .reset-room-cta .btn-secondary {
    padding: 11px 20px;
    font-size: 1.08rem;
    line-height: 1.45;
    font-weight: 500;
    opacity: 1;
}

.reset-room-page .reset-room-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .reset-room-page .reset-problem-grid,
    .reset-room-page .reset-room-merge-grid {
        grid-template-columns: 1fr;
    }

    .reset-room-page .reset-room-hero {
        padding: 2.15rem 0 1.85rem;
    }

    .reset-room-page .reset-room-hero__panel {
        padding: 1.45rem 1.35rem 1.5rem;
        max-width: none;
    }

    .reset-room-page .reset-room-cta__actions {
        flex-direction: column;
        width: 100%;
    }

    .reset-room-page .reset-room-cta__actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .reset-room-page .reset-problem-grid {
        margin: 0 auto;
        max-width: 100%;
    }

    .reset-room-page .reset-problem-pullquote {
        align-items: flex-start;
    }

    .reset-room-page .reset-problem-pullquote p {
        padding-left: 0;
        border-left: none;
        padding-top: 0.85rem;
        border-top: 2px solid rgba(90, 26, 50, 0.35);
        font-size: clamp(1.14rem, 4vw, 1.26rem);
        color: #140a06;
    }

    .reset-room-page .reset-room-merge-grid {
        padding-top: 1rem;
    }

    .reset-room-page .reset-room-price-grid {
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 0.35rem;
        max-width: 100%;
        justify-content: center;
        align-items: center;
    }

    .reset-room-page .reset-room-price-sep {
        display: none;
    }

    .reset-room-page .reset-room-price-label {
        justify-self: center;
        text-align: center;
        font-size: 0.98rem;
    }

    .reset-room-page .reset-room-price-figures {
        justify-self: center;
        text-align: center;
        font-size: 1.08rem;
        margin-bottom: 1.15rem;
    }

    .reset-room-page .reset-room-price-figures:last-child {
        margin-bottom: 0;
    }
}

/* --- PWA install banner (js/pwa-install.js) --- */
.install-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
}

.install-banner.hidden {
  display: none !important;
}

.install-banner__inner {
  max-width: 420px;
  margin: 0 auto;
  padding: 18px 18px 16px;
  background: #faf8f5;
  border: 1px solid rgba(63, 125, 115, 0.18);
  border-radius: 16px;
  box-shadow:
    0 8px 28px rgba(39, 18, 9, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.04);
  pointer-events: auto;
  text-align: center;
  box-sizing: border-box;
}

.install-banner__text,
.install-banner__steps {
  margin: 0 0 14px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
  color: #3a2a22;
}

.install-banner__steps {
  font-size: 0.9rem;
  font-weight: 400;
  color: #554840;
  margin-bottom: 16px;
}

.install-banner .hidden {
  display: none !important;
}

.install-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

@media (min-width: 480px) {
  .install-banner__actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.install-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.install-banner__btn--primary {
  background: #3f7d73;
  border-color: #3f7d73;
  color: #ffffff;
}

.install-banner__btn--primary:hover {
  background: #356b62;
  border-color: #356b62;
}

.install-banner__btn--primary:focus-visible {
  outline: 3px solid rgba(63, 125, 115, 0.45);
  outline-offset: 2px;
}

.install-banner__btn--ghost {
  background: transparent;
  border-color: rgba(59, 20, 8, 0.2);
  color: #4a3b35;
}

.install-banner__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(59, 20, 8, 0.35);
}

.install-banner__btn--ghost:focus-visible {
  outline: 3px solid rgba(63, 125, 115, 0.35);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Mobile (≤768px): density, typography, hero, booking, polish — desktop unchanged
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  html {
    overflow-x: clip;
  }

  body {
    overflow-x: clip;
    transition:
      background-color 0.25s ease,
      color 0.2s ease;
  }

  section {
    transition:
      background-color 0.25s ease,
      color 0.2s ease;
    padding: clamp(40px, 8vw, 52px) 0;
  }

  a {
    transition:
      background-color 0.2s ease,
      color 0.2s ease,
      border-color 0.2s ease;
  }

  button,
  .btn,
  .primary-btn,
  .secondary-btn {
    transition:
      background-color 0.2s ease,
      transform 0.15s ease,
      border-color 0.2s ease,
      color 0.2s ease,
      box-shadow 0.2s ease;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
    max-width: min(1200px, 100%);
  }

  /* Navbar — wordmark centered to viewport row, hamburger stays right */
  .navbar {
    position: relative;
    padding: 18px 16px;
    box-sizing: border-box;
  }

  .navbar .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }

  .nav-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navbar .logo {
    position: static;
    transform: none;
    text-align: left;
    white-space: nowrap;
    margin-left: 0;
    margin-right: auto;
    pointer-events: auto;
    max-width: calc(100vw - 72px);
    box-sizing: border-box;
  }

  .navbar .logo .logo-link {
    pointer-events: auto;
    max-width: 100%;
    justify-content: flex-start;
  }

  .navbar .logo-text {
    font-size: clamp(24px, 3.2vw + 12px, 30px);
    line-height: 1.08;
    max-width: 100%;
    min-width: 0;
    gap: 0.32em;
  }

  .navbar .logo-text .brand,
  .navbar .logo-text .descriptor {
    font-size: 1em;
    transform: none;
  }

  .navbar .logo-divider {
    height: 0.88em;
    margin: 0 0.14em;
    flex-shrink: 0;
    transform: translateY(0.05em);
  }

  .nav-menu .nav-link,
  .nav-links a {
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.45;
  }

  .mobile-menu-toggle {
    margin-left: auto;
    z-index: 2;
    flex-shrink: 0;
  }

  .section-title {
    font-size: clamp(26px, 6.5vw, 34px);
    line-height: 1.25;
    margin-bottom: 14px;
  }

  section h1,
  .hero h1,
  .hero-headline {
    font-size: clamp(31px, 7.2vw, 38px);
    line-height: 1.25;
  }

  section h2:not(.section-title),
  .modal-content h2,
  .modal-title {
    font-size: clamp(22px, 5.6vw, 28px);
    line-height: 1.25;
  }

  section h3,
  .modal-content h3 {
    font-size: clamp(20px, 5vw, 24px);
    line-height: 1.25;
  }

  section p,
  .hero p,
  .hero-subtext,
  .hero-statement {
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.45;
    max-width: 624px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero p,
  .hero-subtext,
  .hero-statement {
    margin-bottom: 13px;
  }

  .service-item p,
  .booking-locked-message p,
  .footer-section p,
  .modal-content p,
  .modal-content .login-error,
  .logout-modal .modal-subtext {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .service-item p + p,
  .service-item h4 + p {
    margin-top: 14px;
  }

  .section-title + .services-layout,
  .section-title + div {
    margin-top: 4px;
  }

  .booking-locked-message h3 + p {
    margin-top: 14px;
  }

  .booking-locked-message .btn {
    margin-top: 18px;
  }

  /* Type hierarchy (≤768px): page title > block title > subhead > body — font-size only (~+20% vs prior pass) */
  .services .service-item h3 {
    font-size: clamp(20px, 5vw, 24px);
  }

  .services .service-item--featured h3 {
    font-size: clamp(20px, 5.1vw, 24px);
  }

  /* h4 (e.g. Online Sessions) matches badge; both ~1–2px under h3 (1:1 Counselling) */
  .services .service-item h4,
  .services .service-badge {
    font-size: clamp(18px, 4.4vw, 22px);
  }

  .services .service-item .service-body {
    font-size: clamp(16px, 3.9vw, 17px);
  }

  .services .service-audience {
    font-size: clamp(15px, 3.78vw, 17px);
  }

  /* Organisations block — same h3 / h4 / body scale as 1:1 & couples service cards */
  .services .services-organisations__title {
    font-size: clamp(20px, 5vw, 24px);
    line-height: 1.25;
  }

  .services .services-organisations__sub {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(16px, 3.9vw, 17px);
    font-weight: 400;
    line-height: 1.46;
    color: var(--text-color);
    opacity: 0.88;
  }

  .services .services-organisations-card__title {
    font-size: clamp(18px, 4.4vw, 22px);
    line-height: 1.25;
  }

  .services .services-organisations-card__desc {
    font-size: clamp(16px, 3.9vw, 17px);
    line-height: 1.46;
  }

  .section-intro {
    font-size: clamp(16px, 3.9vw, 17px);
    line-height: 1.45;
  }

  /* Footer — match services / body scale site-wide on small screens */
  .footer .footer-section h3 {
    font-size: clamp(20px, 5vw, 24px);
    line-height: 1.25;
    margin-bottom: 0.75rem;
  }

  .footer .footer-section h4 {
    font-size: clamp(18px, 4.4vw, 22px);
    line-height: 1.25;
    margin-bottom: 0.75rem;
  }

  .footer .footer-section p,
  .footer .footer-section li {
    font-size: clamp(16px, 3.9vw, 17px);
    line-height: 1.45;
  }

  .footer .footer-section a {
    font-size: inherit;
  }

  .footer-bottom {
    font-size: clamp(15px, 3.78vw, 17px);
    line-height: 1.45;
  }

  /* Narrower than full-bleed .btn; width capped to editorial measure (not wider than body copy) */
  .services .service-item .service-cta.btn-secondary,
  .services .services-organisations-card .service-cta.btn-secondary {
    width: auto;
    max-width: min(var(--text-measure), 100%);
    align-self: center;
    box-sizing: border-box;
    padding: 9px 14px;
    font-size: clamp(16px, 3.9vw, 17px);
    line-height: 1.48;
  }

  .pricing-description {
    font-size: clamp(15px, 3.78vw, 17px);
  }

  .work-with-me-page .work-with-me-intro {
    font-size: clamp(16px, 4vw, 18px);
  }

  .booking-locked-message h3 {
    font-size: clamp(20px, 5vw, 24px);
  }

  .booking-locked-message p {
    font-size: clamp(16px, 3.9vw, 17px);
  }

  .booking .credit-banner {
    font-size: clamp(16px, 3.9vw, 17px);
    font-weight: inherit;
  }

  .booking .credit-banner #credit-message,
  .booking .credit-banner .message-text {
    font-size: clamp(16px, 3.9vw, 17px);
    font-weight: inherit;
    line-height: var(--body-copy-leading);
  }

  .credit-btn,
  .cta-button {
    font-size: clamp(16px, 4vw, 18px);
  }

  .credit-btn-secondary {
    font-size: clamp(16px, 4vw, 18px);
  }

  .about-page section h2 {
    font-size: clamp(28px, 6.2vw, 32px);
  }

  .about-page .quality-card h3 {
    font-size: clamp(19px, 4.75vw, 22px);
  }

  .about-page .quality-card p {
    font-size: clamp(16px, 3.85vw, 17px);
  }

  .about-page .quality-card .pillar-tagline {
    font-size: clamp(16px, 3.85vw, 17px);
  }

  .about-page .reflections-intro {
    font-size: clamp(16px, 3.85vw, 17px);
  }

  .about-page .reflections blockquote {
    font-size: clamp(15px, 3.72vw, 17px);
  }

  .about-page .roots-content p {
    font-size: clamp(16px, 3.85vw, 17px);
  }

  .about-page .subtle-subheading {
    font-size: clamp(17px, 4.14vw, 19px);
  }

  .about-page .training .training-intro,
  .about-page .training-narrative {
    font-size: clamp(16px, 3.85vw, 17px);
  }

  .about-page .about-invite > .container.narrow > p {
    font-size: clamp(16px, 3.85vw, 17px);
  }

  /* About page: progressive disclosure (mobile only) */
  .about-page .expand-toggle {
    display: block;
    font-size: 13px;
    line-height: 1.35;
    opacity: 0.6;
    margin-top: 8px;
    margin-bottom: 0;
    cursor: pointer;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: rgba(39, 18, 9, 0.75);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
  }

  .about-page .expand-toggle:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
    opacity: 0.9;
  }

  .about-page .collapsible-content {
    max-height: 80px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }

  .about-page .collapsible-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, rgba(247, 244, 241, 0), #f7f4f1);
    pointer-events: none;
  }

  .about-page .reflections .collapsible-content::after,
  .about-page .about-training .collapsible-content::after {
    background: linear-gradient(to bottom, rgba(241, 236, 232, 0), #f1ece8);
  }

  .about-page .collapsible-content.expanded {
    max-height: 1000px;
  }

  .about-page .collapsible-content.expanded::after {
    display: none;
  }

  .about-page .reflections .expand-toggle {
    text-align: center;
  }

  .reset-room-page .reset-room-hero h1 {
    font-size: clamp(29px, 6.6vw, 36px);
  }

  .reset-room-page .reset-room-hero__lead {
    font-size: clamp(16px, 4vw, 18px);
  }

  .reset-room-page .section-title {
    font-size: clamp(26px, 6vw, 32px);
  }

  .reset-room-page .reset-room-problem .section-title {
    font-size: clamp(24px, 5.7vw, 29px);
  }

  .reset-room-page .reset-problem-stack p {
    font-size: clamp(15px, 3.72vw, 17px);
  }

  .reset-room-page .reset-problem-pullquote p {
    font-size: clamp(17px, 4.14vw, 19px);
  }

  .reset-room-page .reset-room-prose p {
    font-size: clamp(16px, 3.85vw, 17px);
  }

  .reset-room-page .reset-room-prose p:first-of-type {
    font-size: clamp(17px, 4.14vw, 19px);
  }

  .btn,
  button.btn,
  .btn-full {
    padding: 12px 17px;
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.45;
  }

  .primary-btn,
  .secondary-btn {
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.45;
  }

  .checkout .btn-wise,
  .checkout .btn-paypal {
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.45;
  }

  .zoom-join-btn {
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.45;
  }

  .btn-primary:hover,
  .btn-secondary:hover,
  .primary-btn:hover,
  .secondary-btn:hover {
    transform: translateY(-1px);
  }

  /* Home hero */
  .hero {
    padding: 0;
    min-height: 0;
    align-items: stretch;
  }

  .hero-container {
    padding: 24px 20px;
  }

  .hero-inner {
    gap: 24px;
    width: 100%;
    max-width: 624px;
    margin: 0 auto;
  }

  .hero-headline br {
    display: none;
  }

  .hero .hero-subtext {
    font-weight: 400;
  }

  .hero-image {
    order: -1;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    transform: none;
  }

  .hero img,
  .hero-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    max-height: none;
    min-height: 0;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    margin-bottom: 0;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    opacity: 0.98;
  }

  .hero-content.hero-text,
  .hero-text {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding-left: 0;
    align-items: flex-start;
    text-align: left;
  }

  .hero h1,
  .hero-headline {
    margin-bottom: 20px;
  }

  .hero .hero-headline {
    font-size: clamp(32px, 7vw, 46px);
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  .hero-text .hero-headline {
    margin: 0 0 20px 0;
  }

  .hero .hero-subtext {
    order: 8;
    margin-top: 20px;
    margin-bottom: 14px;
  }

  .hero .hero-statement {
    order: 10;
    margin-top: 0;
    margin-bottom: 0;
    opacity: 1;
    font-style: italic;
    font-weight: 400;
    color: #6b5e59;
  }

  .hero-text .hero-subtext,
  .hero-text .hero-statement {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-text .hero-buttons,
  .hero-text .cta-group {
    order: 3;
    margin: 0;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
  }

  .hero-buttons,
  .cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .hero .btn-primary,
  .hero .btn-secondary {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 13px 20px;
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
    box-sizing: border-box;
  }

  /* Pricing cards — lighter, compact, easier to scan */
  .pricing-grid,
  .pricing-container {
    gap: var(--space-6);
  }

  .pricing-card,
  .card,
  .booking-card {
    max-width: 340px;
    margin: 0 auto;
    padding: var(--space-5);
    border-radius: 16px;
    box-shadow: none;
  }

  .pricing-card h3 {
    font-size: clamp(16px, 4vw, 19px);
    margin-bottom: 6px;
  }

  .pricing-card .price {
    margin: 6px 0;
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.1;
  }

  .pricing-card ul {
    margin: 12px 0;
  }

  .pricing-card li {
    margin-bottom: 8px;
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 1.45;
  }

  .pricing-card .price-period,
  .pricing-card .value-line,
  .pricing-card .pricing-highlight {
    font-size: clamp(13px, 3.2vw, 15px);
    line-height: 1.45;
  }

  .pricing-card .btn,
  .pricing-card button,
  .pricing-card .secondary-button {
    font-size: clamp(13px, 3.2vw, 15px);
    padding: 8px 16px;
  }

  /* Cal.com / booking embed — extra inset so users can scroll past the iframe on touch */
  .booking .container {
    overflow-x: clip;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }

  .booking-container {
    padding: 0;
    overflow-x: clip;
    box-sizing: border-box;
    width: 94%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .booking-container iframe {
    width: 100%;
    max-width: 100%;
    min-height: 620px;
    display: block;
    touch-action: manipulation;
    margin-bottom: 40px;
    box-sizing: border-box;
  }

  /* About: subsection density (numbers already removed from markup) */
  .about-page .qualities-grid {
    gap: 36px;
  }

  .about-page .about-qualities,
  .about-page .reflections,
  .about-page .about-roots,
  .about-page .about-training,
  .about-page .about-invite {
    padding: clamp(40px, 7vw, 52px) 0;
  }

  .about-page .pillar-number {
    display: none !important;
  }

  .services-layout,
  .services-column {
    gap: 2.25rem;
  }

  .services-organisations {
    margin-top: 2.5rem;
    padding: 1.75rem 1.1rem 2rem;
  }

  /* Profile: welcome block — centered vertical stack */
  .welcome-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 16px;
    margin-bottom: 28px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-sizing: border-box;
    gap: 14px;
  }

  .welcome-section .portal-header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    min-width: 0;
    gap: 0;
  }

  .welcome-avatar {
    margin-bottom: 12px;
    width: 48px;
    height: 48px;
    font-size: 16px;
    flex: 0 0 auto;
  }

  .welcome-section h1 {
    margin-bottom: 6px;
  }

  .welcome-section p {
    margin-bottom: 14px;
    max-width: 312px;
    margin-left: auto;
    margin-right: auto;
  }

  .welcome-section .btn,
  .welcome-section .secondary-btn {
    display: inline-block;
    margin: 0 auto;
    padding: 12px 18px;
    min-width: 240px;
    box-sizing: border-box;
  }

  /* Profile / portal — align dashboard copy with services body scale */
  .portal-page .welcome-section h1 {
    font-size: clamp(26px, 6.5vw, 34px);
    line-height: 1.25;
  }

  .portal-page .welcome-section .portal-subtitle {
    font-size: clamp(16px, 3.9vw, 17px);
    line-height: 1.45;
  }

  .portal-page .dashboard-card h3 {
    font-size: clamp(20px, 5vw, 24px);
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .portal-page .dashboard-card > p,
  .portal-page .resources-card p,
  .portal-page #credit-explanation,
  .portal-page .empty-state,
  .portal-page .last-session-details,
  .portal-page .session-card,
  .portal-page .timezone-note {
    font-size: clamp(16px, 3.9vw, 17px);
    line-height: 1.45;
  }

  .portal-page .last-session-label {
    font-size: clamp(15px, 3.78vw, 17px);
    line-height: 1.4;
  }

  .portal-page .resource-links {
    font-size: clamp(16px, 3.9vw, 17px);
  }

  .portal-page .session-credits-card .credit-display {
    font-size: clamp(2rem, 7.5vw, 2.65rem);
    line-height: 1.15;
  }

  .portal-page .session-credits-card .credit-unit {
    font-size: clamp(16px, 3.9vw, 17px);
    line-height: 1.45;
  }
}
