.pricing-header {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gray);
    margin: 1.2rem 0 1.2rem 0;
}
.pricing-block, .pricing-list, .small-note, .pricing-header, .text-link, .pricing-list li {
    color: var(--gray) !important;
}
.treat-list-checks {
    list-style: none;
    padding: 0;
    margin: 2rem 0 2.5rem 0;
}
.treat-list-checks li {
    position: relative;
    padding-left: 2.1em;
    margin-bottom: 1.1em;
    color: var(--gray);
    font-size: 1.13rem;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    min-height: 1.7em;
}
.treat-list-checks li::before {
    content: '\2713';
    display: inline-block;
    width: 1.5em;
    min-width: 1.5em;
    text-align: center;
    margin-right: 0.3em;
    font-size: 1.35em;
    color: #222;
    font-weight: bold;
    line-height: 1.2;
    position: relative;
    top: 0.08em;
}
.treat-outline-note {
    font-size: 0.98rem;
    color: var(--gray);
    margin: 1.2rem 0 0.5rem 0;
    font-style: italic;

}

@media (max-width: 406px) {
    .intro-text br {
        display: none;
    }
}

.treat-text-small-italic {
    font-size: 1.02rem;
    color: var(--gray);
    font-style: italic;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
}
.faq-link-spaced {
    margin-top: 2.5rem;
}
.opening-text-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal, #008080);
    margin-bottom: 0.7rem;
}
.conditions-grid li {
    color: var(--gray);
}

/* Contact page icons row */
.contact-icons-row {
    align-items: center;
}

@media (max-width: 640px) {
    .contact-icons-row {
        flex-direction: column;
        gap: 2rem;
    }
}

.treat-list-boxes {
    display: flex;
    flex-direction: column;
    /* align-items: center; removed to allow full width */
    gap: 1.5rem;
    margin: 2.5rem 0 2.5rem 0;
    padding: 0;
    list-style: none;
}
.treat-list-boxes li {
    background: #f8fafd;
    border: 2px solid var(--teal, #008080);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 1.25rem 2.2rem;
    width: 100%;
    max-width: 800px; /* Match .container max-width */
    font-size: 1.13rem;
    margin: 0 auto;   /* Center the box if needed */
    transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s cubic-bezier(.4,0,.2,1), border-color 0.18s;
    cursor: pointer;
    text-align: left;
    position: relative;
    z-index: 1;
}
.treat-list-boxes li:hover, .treat-list-boxes li:focus {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,128,128,0.13);
    border-color: #005f5f;
    background: #e6f7f7;
}
.treat-list-boxes li strong {
    color: var(--teal, #008080);
}

.treat-bottom-text-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--teal, #008080);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}
/* Center footer content */
.footer-container {
    text-align: center;
}

.footer-bottom {
    text-align: center;
}
.faq-item:not([open]) .faq-question::after {
    transform: rotate(0deg);
}
/* ========== FAQ (Two-level accordion) ========== */

/* Group (H3 dropdown) */
.faq-group {
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    background: #fff;
    margin: 1.25rem 0;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(0,0,0,0.05);
}

.faq-group summary {
    list-style: none;
}
.faq-group summary::-webkit-details-marker {
    display: none;
}

.section-title {
    cursor: pointer;
    padding: 1.05rem 1.1rem;
    margin: 0;
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(74, 140, 168, 0.08);
}

.section-title::after {
    content: "▾";
    font-size: 1.2rem;
    color: var(--teal-dark);
    transition: transform 0.2s ease;
}

.faq-group[open] .section-title::after {
    transform: rotate(180deg);
}

.faq-group summary:focus-visible {
    outline: 3px solid rgba(74, 140, 168, 0.35);
    outline-offset: 2px;
    border-radius: 12px;
}

.faq-group__content {
    padding: 0.25rem 0.85rem 1rem;
}

/* Question dropdowns (inside group) */
.faq-item {
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    background: #fff;
    margin: 0.85rem 0;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    cursor: pointer;
    padding: 1rem 1rem;
    font-weight: 700;
    font-size: 1.075rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    user-select: none;
}

.faq-question::after {
    content: "▾";
    font-size: 1.1rem;
    color: var(--teal-dark);
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(180deg);
}


.faq-answer {
    padding: 0.15rem 1rem 1rem;
    display: block;
}

/* Ensure answer is always visible when question is open */
.faq-item[open] .faq-answer {
    display: block !important;
}

.faq-answer .treat-text {
    margin: 0.75rem 0 0;
}

@media (prefers-reduced-motion: reduce) {
    .section-title::after,
    .faq-question::after {
        transition: none;
    }
}
/* ==========================================
     FILE: css/style.css
     Save this in a folder named "css"
     ========================================== */

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

:root {
    --teal: #4a8ca8;
    --teal-dark: #3a7a92;
    --ink: #333;
    --gray: #666;
    --light-gray: #888;
    --bg: #ffffff;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Muli', sans-serif;
    background-color: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    flex: 1;
}

/* ========== NAVIGATION ========== */
.site-header {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.2s;
}

body {
    padding-top: 70px; /* Adjust to match header height so content isn't hidden */
}

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

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 1.325rem;
    font-weight: 700;
    color: var(--teal-dark);
    text-decoration: none;
    letter-spacing: 0.5px;
}

/* Desktop Nav */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

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

.nav-link {
    padding: 0.6rem 1rem;
    font-size: 1.025rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-link:hover {
    background: #f0f0f0;
    color: var(--teal-dark);
}

.nav-link.active {
    background: var(--teal);
    color: white;
}

/* Dropdown */
.nav-item-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.nav-item-dropdown:hover .dropdown,
.nav-item-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.025rem;
    transition: all 0.2s;
}

.dropdown a:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown a:last-child {
    border-radius: 0 0 8px 8px;
}

.dropdown a:hover {
    background: #f0f0f0;
    color: var(--teal-dark);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    font-size: 1.925rem;
    cursor: pointer;
    color: var(--ink);
    padding: 0.5rem;
}

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

.mobile-nav {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid #e0e0e0;
}

.mobile-nav.active {
    display: block;
}

.mobile-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
    margin: 0.25rem 0;
}

.mobile-link:hover,
.mobile-link.active {
    background: var(--teal);
    color: white;
}

/* ========== HERO BANNER ========== */
.hero-banner {
    background: var(--teal);
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-card {
    background: white;
    border: 3px solid black;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 8px 8px 0 black;
}

.hero-card h1 {
    font-size: 2.325rem;
    font-weight: 300;
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    line-height: 1.6;
    max-width: 32em;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

/* Home hero variant: transparent card with white text */
.hero-banner.home .hero-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 1.5rem 1rem;
}

.hero-banner.home .hero-card h1 {
    color: white;
    font-weight: 700;
    font-size: 4rem; /* even larger title on homepage */
    line-height: 1.02;
    margin-bottom: 1rem; /* restored spacing */
    letter-spacing: 2.5px; /* more spacing for hero title */
}

.hero-banner.home .subtitle {
    color: rgba(255,255,255,0.95);
    font-size: 1.6rem; /* larger subtitle for homepage */
    line-height: 1.4;
}  

/* ========== MAIN CONTENT ========== */
.main-content {
    padding: 3rem 0;
}

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

.intro-text,
.tagline,
.description {
    text-align: center;
    color: var(--gray);
    font-size: 1.225rem;
    margin: 2rem 0;
}

.intro-text {
    margin-top: -10px;
    font-size: 1.5rem;
}

.tagline {
    font-size: 1.5rem;
}
 

.description strong {
    color: var(--ink);
}

.divider {
    text-align: center;
    font-size: 2rem;
    color: var(--light-gray);
    margin: 0.75rem 0; /* bring intro, diamond, and tagline closer together */
}

.section-label {
    text-align: center;
    color: var(--light-gray);
    font-size: 1.025rem;
    margin: 3rem 0 1.5rem;
}

/* Unified video placeholder styles for all screens */
.video-placeholder {
    background: transparent;
    border: none;
    padding: 0.35rem;
    text-align: center;
    box-shadow: none;
    margin: 3rem auto;
    max-width: 1000px;
    width: 100%;
    aspect-ratio: 16/9;
    min-height: 260px;
}

.video-placeholder video {
    display: block;
    width: 100%;
    height: 100%;
    max-height: min(720px, 78vh);
    min-height: 320px;
    border-radius: 12px;
    box-shadow: none;
}

/* ========== COMPARISON SECTION ========== */
.comparison-section {
    margin: 4rem 0;
}

.comparison-title {
    text-align: center;
    color: var(--gray);
    font-size: 1.225rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.comparison-title strong {
    font-weight: 600;
    color: var(--ink);
}

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

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

.list-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 1.075rem;
    color: var(--gray);
}

.no-list .icon {
    color: black;
    font-size: 1.2rem;
    font-weight: bold;
}

.yes-list .icon {
    color: #22c55e;
    font-size: 1.2rem;
    font-weight: bold;
}

/* ========== PHOTO CTA ========== */
.photo-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

/* Front-page small profile inside the photo-cta — keeps about page unchanged */
.photo-cta .about-photo.front-photo {
    width: 200px;
    height: 200px;
    flex: 0 0 200px; /* prevent flex-growing */
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.photo-cta .about-photo.front-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    border: 2px solid #999;
}

/* Larger on wider screens */
@media (min-width: 900px) {
  .photo-cta .about-photo.front-photo {
    width: 240px;
    height: 240px;
    flex: 0 0 240px;
  }
}

@media (max-width: 768px) {
    .photo-cta {
        flex-direction: column;
        text-align: center;
    }
}

.photo-box {
    width: 150px;
    height: 150px;
    border: 2px solid #999;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #999;
}

.cta-text {
    color: var(--gray);
    font-size: 1.5rem;
}

.cta-text a {
    color: var(--gray);
    text-decoration: underline;
}

.cta-text a:hover {
    color: var(--ink);
}

.final-cta-heading-small {
  font-size: 1.8rem !important;
}
/* ========== FINAL CTA ========== */
.final-cta {
    text-align: center;
    margin: 6rem 0 4rem 0;
}

.final-cta h2 {
    color: var(--gray);
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.final-cta a {
    color: var(--gray);
    font-size: 1.425rem;
    text-decoration: underline;
}

.final-cta a:hover {
    color: var(--ink);
}

.opening-text {
    color: var(--gray);
    font-size: 1.225rem;
    margin: 1rem 0 0.5rem;
}

.form-note {
    color: var(--light-gray);
    font-size: 1.025rem;
    font-style: italic;
}

/* ========== FOOTER ========== */
.site-footer {
    background: #3a7a92; /* keep your color */
    color: #ffffff;
    margin-top: 3rem;
}

/* Main content */
.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

/* Column headings */
.footer-column h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

/* Text */
.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0.4rem;
}

/* Links */
.footer-column a {
    color: #ffffff;
    text-decoration: none;
}

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

/* Legal list */
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal li {
    margin-bottom: 0.4rem;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.75;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        padding: 1.5rem 1.2rem;
        gap: 1.5rem;
    }
}


/* ========== TREATMENT APPROACH PAGE ========== */

.page-title {
    text-align: center;
    color: var(--gray);
    font-size: 1.725rem;
    margin: 2rem 0 2rem;
    font-weight: 500;
}

.treat-text {
    color: var(--gray);
    font-size: 1.175rem;
    margin: 1.5rem 0;
    line-height: 1.7;
    transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
    overflow: hidden;
    opacity: 1;
    max-height: 1000px;
}

.treat-text.treat-text-small-italic {
    margin-top: 6rem;
}

.pricing-intro {
    margin-bottom: 4rem;
}

.treat-text[style*="display: none"] {
    opacity: 0;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.faq-question {
    cursor: pointer;
    position: relative;
    padding-right: 2rem;
    transition: color 0.2s;
}
.faq-question::after {
    content: '\25BC';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 1rem;
    color: var(--teal-dark);
    transition: transform 0.3s;
}
.faq-question.open {
    color: var(--teal-dark);
}
.faq-question.open::after {
    transform: translateY(-50%) rotate(180deg);
}



.treatment-photo {
    margin: 2.5rem auto;
    text-align: center;
}

.treatment-photo img {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
}

.treat-bottom-text {
    text-align: center;
    font-size: 1.225rem;
    color: var(--gray);
    margin-top: 2rem;
}

.final-cta-link {
    text-align: center;
    font-size: 1.425rem;
    margin: 1rem 0 3rem;
}

.final-cta-link a {
    color: var(--gray);
    text-decoration: underline;
}

.final-cta-link a:hover {
    color: var(--ink);
}

/* ========== CONDITIONS TREATED PAGE ========== */

.conditions-photo {
    margin: 2.5rem 0 3rem;
    text-align: center;
}

.conditions-photo img {
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
}

/* Hypnotherapy */
.hypno-section {
    margin: 4rem 0;
    text-align: center;
}

/* Pricing */
.pricing-block {
    margin: 0 0 2.8rem 0;
}

.pricing-list {
    margin-left: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.small-note {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin: 0 0 1.2rem 0;
}

/* Small Hero Banner (Treatment Approach) */

.hero-banner-small {
    padding: 2rem 1rem;
    text-align: center;
}

.hero-title-simple {
    color: white;
    font-size: 2.325rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ===== ABOUT PAGE LAYOUT ===== */

.about-layout {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    align-items: center; /* NEW — centers the photo vertically */
}

.about-photo img {
    width: 300px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 5/6;
    object-fit: cover;
    border-radius: 30px;
    border: 3px solid black;
    box-shadow: 6px 6px 0 black;
}
.about-text {
    flex: 1;
}

.about-membership {
    text-align: center;
    color: var(--gray);
    margin: 3rem 0 1rem;
    font-size: 1.175rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 800px) {
    .about-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .about-text {
        text-align: left;
    }
}


/*Contact Form Page*/
.waitlist-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.waitlist-form label {
    font-weight: 600;
    color: var(--gray);
}

.waitlist-form input,
.waitlist-form textarea,
.waitlist-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 2px solid #ccc;
    font-size: 1rem;
    font-family: inherit;
}

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

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-row input {
    margin-top: 0.3rem;
}

.submit-button {
    background: var(--teal);
    border: none;
    padding: 0.9rem;
    cursor: pointer;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.2s;
}

.submit-button:hover {
    background: var(--teal-dark);
}

@media (min-width: 1440px) {
    html {
        font-size: 18px;
    }

    .container,
    .hero-content {
        max-width: 900px;
    }

    nav {
        max-width: 1400px;
    }
}

@media (min-width: 2560px) {
    html {
        font-size: 20px;
    }

    .container,
    .hero-content {
        max-width: 1100px;
    }

    nav {
        max-width: 1600px;
    }
}

/* Mobile adjustments ( <= 600px ) */
@media (max-width: 600px) {
    @media (max-width: 406px) and (min-width: 360px) {
        .intro-text {
            white-space: normal !important;
            max-width: 95vw;
            text-align: center;
            font-size: 1rem;
            line-height: 1.3;
        }
        .intro-text br {
            display: inline;
        }
    }
    @media (max-width: 406px) and (min-width: 360px) {
        .subtitle {
            white-space: normal !important;
            max-width: 95vw;
            text-align: center;
            font-size: 1.05rem;
            line-height: 1.3;
        }
        .subtitle br {
            display: inline;
        }
    }
    html {
        font-size: 14px;
    }
    .video-placeholder {
        max-width: 94vw;
        min-height: 0;
    }
    .video-placeholder video {
        width: 94vw;
        max-width: 94vw;
        height: auto;
        min-height: unset;
        max-height: 65vw;
        margin-left: calc(-1 * (47vw - 50%)); /* centered, not edge-to-edge */
    }
  /* Keep the desktop hero look but scaled for mobile */
  .hero-banner { padding: 20px 12px; }
  .hero-card {
    padding: 1.5rem 1rem; /* smaller vertical padding but keeps the framed look */
    border-radius: 18px;
    border: 3px solid black; /* preserve bold border */
    box-shadow: 8px 8px 0 black; /* preserve framed shadow */
  }

  .hero-card h1 {
    font-size: 1.5rem;
    line-height: 1.15;
    font-weight: 600;
    color: var(--light-gray);
    margin-bottom: 0.5rem;
  }

  .subtitle { font-size: 0.95rem; }

  /* Home hero mobile overrides */
  .hero-banner.home .hero-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 1rem 0.75rem;
  }

  .hero-banner.home .hero-card h1 {
    color: white;
    font-weight: 700;
    font-size: 1.75rem; /* larger on mobile */
    line-height: 1.05;
    margin-bottom: 0.5rem;
  }

  .hero-banner.home .subtitle {
    color: rgba(255,255,255,0.95);
    font-size: 1.05rem;
  }

  /* General body text */
  .intro-text, .tagline, .description {
    font-size: 1rem;
  }


  /* Tighten header navigation spacing but keep logo weight */
  .nav-container { padding: 8px 12px; height: 64px; }
  .logo { font-size: 1.15rem; }
}

.final-cta {
  text-align: center;
  margin: 3.5rem 0;
  padding: 1.6rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.final-cta h2 {
  font-size: 2.1rem;
  margin: 0 0 .5rem;
  color: var(--ink);
}

.final-cta a {
  display: inline-block;
  margin-top: .5rem;
  background: var(--teal);
  color: #fff;
  padding: .72rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
}
.final-cta a:hover,
.final-cta a:focus { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.12); outline: none; }
@media (max-width:600px) {
  .final-cta h2 { font-size: 1.4rem; }
  .final-cta { padding: 1.2rem 0.8rem; }
}

/* Between ~520px and 360px, keep "disorders & addictions"
    together on its own (third) line. */
@media (max-width: 520px) and (min-width: 360px) {
    .hero-banner.home .subtitle {
        max-width: 22em;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-banner.home .subtitle .subtitle-phrase {
        white-space: nowrap;
    }
}

@media (max-width: 600px) {
    .comparison-section {
        margin-top: 4rem;
    }
}

/* Home hero subtitle: tweak wrap between ~520px and 412px */
@media (max-width: 520px) and (min-width: 412px) {
    .hero-banner.home .subtitle {
        max-width: 22em;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-banner.home .subtitle .mobile-break {
        display: none;
    }
}

@media (max-width: 410px) {
    .hero-banner.home .subtitle {
        font-size: 0.98rem;
        line-height: 1.25;
        text-align: center;
        max-width: 95vw;
        white-space: normal;
    }
    .hero-banner.home .subtitle .mobile-break {
        display: none;
    }
}

@media (max-width: 716px) and (min-width: 600px) {
    .hero-banner.home .subtitle {
        font-size: 1.5rem;
        line-height: 1.25;
        text-align: center;
        max-width: 95vw;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-height: calc(2 * 1.25em + 2px);
    }
    .hero-banner.home .subtitle .mobile-break {
        display: none;
    }
    .hero-banner.home .hero-card h1 {
        white-space: nowrap;
        font-size: 3rem;
        line-height: 1.1;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 600px) {
  .hero-banner.home .hero-card h1 {
    font-size: 2.0rem;
    white-space: normal;
  }

 .hero-banner.home .hero-card .subtitle {
    font-size: 1.2rem;
     white-space: normal;
  }

   .intro-text {
    font-size: 1.3rem; /* or your desired size */
    
  }

  .tagline {
    font-size: 1.3rem; /* or your desired size */
  }

  .description {
    font-size: 1.3rem; /* or your desired size */
  }
}

body.about-page .about-hero {
  padding: 2.5rem 1rem 1.25rem;
  text-align: center;
  background: transparent;
}

body.about-page .about-hero__title {
  font-size: 3rem;
  font-weight: 300;
  color: #b6b6b6;
  letter-spacing: 0.5px;
  margin: 0;
}

/* About page container can be wider without changing other pages */
body.about-page .about-container {
    max-width: 1400px;
}

/* Layout: photo left, text right */
body.about-page .about-layout {
  display: flex;
  gap: 3rem;
  margin: 2rem 0;
  align-items: center; /* change from flex-start to center */
}

/* About page photo only */
body.about-page .about-photo-profile {
    margin-top: 32px;
}
body.about-page .about-photo-profile img {
    width: 280px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 36px;
    border: 3px solid #111;
    box-shadow: none;
    display: block;
}

/* About page paragraphs only */
body.about-page .about-paragraph {
    color: var(--gray);
    font-size: 1.18rem;
    line-height: 1.9;
    margin: 0 0 1.75rem;
    max-width: 1350px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Membership line like mockup */
body.about-page .about-membership {
  text-align: center;
    color: var(--gray);
    margin: 3rem auto 1rem;
    font-size: 1.18rem; /* match about-paragraph size */
    max-width: 1050px;
    line-height: 1.5;
}

/* Mobile */
@media (max-width: 800px) {
  body.about-page .about-layout {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  body.about-page .about-hero__title {
    font-size: 2.2rem;
  }

  body.about-page .about-photo-profile img {
    width: 260px;
  }
}