/* ===== VARIABLES ===== */
:root {
    --orange: #E8713A;
    --orange-light: #F4A261;
    --orange-dark: #C85A1F;
    --turquoise: #2EC4B6;
    --turquoise-light: #5DD9CE;
    --turquoise-dark: #1A9E92;
    --cream: #FFF8F0;
    --white: #FFFFFF;
    --dark: #2D3436;
    --gray: #636E72;
    --gray-light: #B2BEC3;
    --gray-bg: #F7F7F7;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--turquoise-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--orange);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }

.section-title {
    text-align: center;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(232, 113, 58, 0.35);
}

.btn-primary:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 113, 58, 0.45);
}

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

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

.btn-large {
    padding: 18px 42px;
    font-size: 1.1rem;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo:hover {
    color: var(--orange);
}

.nav-portrait {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--turquoise);
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray);
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--orange);
}

.nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--orange-dark) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== HERO (Landing Page) ===== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, rgba(46, 196, 182, 0.05) 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--turquoise-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hero h1 {
    margin-bottom: 24px;
}

.highlight {
    color: var(--orange);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-frame {
    width: 320px;
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    position: relative;
}

.image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 3px solid var(--turquoise);
    opacity: 0.3;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: -16px;
    right: -20px;
    background: var(--white);
    border: 2px solid var(--orange-light);
    border-radius: var(--radius);
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray);
    box-shadow: var(--shadow-md);
    max-width: 240px;
    line-height: 1.4;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--turquoise);
    padding: 40px 0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.trust-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
}

.trust-label {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== SERVICES GRID (Landing) ===== */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-light);
    color: inherit;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background: var(--cream);
}

.about-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    margin-bottom: 24px;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about p {
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--turquoise-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background: var(--orange);
    color: var(--white);
}

.cta-section .btn-primary:hover {
    background: var(--white);
    color: var(--orange);
}

/* ===== EXPANDED MODALITIES (Homepage) ===== */
.modalities-expanded {
    padding-top: 100px;
}

.modalities-expanded > .container {
    margin-bottom: 60px;
}

.mod-block {
    padding: 80px 0;
}

.mod-block-light {
    background: var(--white);
}

.mod-block-cream {
    background: var(--cream);
}

.mod-block-inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    align-items: start;
}

.mod-block-reverse {
    grid-template-columns: 1fr 260px;
}

.mod-block-reverse .mod-block-visual {
    order: 2;
}

.mod-block-reverse .mod-block-content {
    order: 1;
}

.mod-block-visual {
    position: sticky;
    top: 100px;
    text-align: center;
}

.mod-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    color: var(--turquoise);
    opacity: 0.12;
    line-height: 1;
    margin-bottom: -16px;
}

.mod-icon-large {
    font-size: 7rem;
    line-height: 1.2;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.08));
}

.mod-block-content {
    max-width: 700px;
}

.mod-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--turquoise-dark);
    background: rgba(46, 196, 182, 0.1);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.mod-block-content h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 6px;
}

.mod-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--orange);
    font-style: italic;
    margin-bottom: 20px;
}

.mod-block-content > p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 1.02rem;
}

.mod-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.mod-highlight-item {
    background: var(--gray-bg);
    border-radius: var(--radius);
    padding: 18px 20px;
    border-left: 3px solid var(--turquoise);
    transition: all 0.3s ease;
}

.mod-block-cream .mod-highlight-item {
    background: var(--white);
}

.mod-highlight-item:hover {
    transform: translateX(4px);
    border-left-color: var(--orange);
}

.mod-highlight-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.mod-highlight-item span {
    font-size: 0.87rem;
    color: var(--gray);
    line-height: 1.5;
}

.mod-best-for {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
}

.mod-best-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mod-pill {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--turquoise-dark);
    background: rgba(46, 196, 182, 0.1);
    padding: 5px 14px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.mod-pill:hover {
    background: var(--turquoise);
    color: var(--white);
}

.mod-together {
    background: var(--turquoise);
    padding: 48px 0;
}

.mod-together-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.mod-together h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.mod-together p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ===== ADDITIONAL SERVICES ===== */
.additional-services {
    padding: 80px 0;
    background: var(--cream);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.additional-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--turquoise);
    transition: all 0.3s ease;
}

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

.additional-card h3 {
    color: var(--turquoise-dark);
    margin-bottom: 4px;
    font-size: 1.3rem;
}

.additional-card .card-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--orange);
    font-style: italic;
    margin-bottom: 16px;
}

.additional-card p:last-child {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

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

.footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer ul a:hover {
    color: var(--orange-light);
}

.contact-list li {
    font-size: 0.9rem;
}

.contact-list a {
    color: rgba(255,255,255,0.7);
}

.contact-list a:hover {
    color: var(--orange-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== PAGE HERO (Sub-pages) ===== */
.page-hero {
    padding: 140px 0 60px;
    text-align: center;
}

.pain-hero {
    background: linear-gradient(135deg, var(--cream) 0%, rgba(232, 113, 58, 0.08) 100%);
}

.gastro-hero {
    background: linear-gradient(135deg, var(--cream) 0%, rgba(46, 196, 182, 0.08) 100%);
}

.menopause-hero {
    background: linear-gradient(135deg, var(--cream) 0%, rgba(244, 162, 97, 0.1) 100%);
}

.page-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 16px;
}

.page-hero h1 {
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PAGE INTRO ===== */
.page-intro {
    padding: 80px 0;
    background: var(--white);
}

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

.intro-content h2 {
    margin-bottom: 24px;
}

.lead {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-content p {
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* ===== CONDITIONS GRID ===== */
.conditions {
    padding: 80px 0;
    background: var(--gray-bg);
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.condition-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

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

.condition-card h3 {
    color: var(--turquoise-dark);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.condition-card p {
    color: var(--gray);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* ===== HOW IT WORKS / STEPS ===== */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 16px;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--turquoise);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 12px;
}

.step p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===== INFO COLUMNS ===== */
.info-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 16px;
}

.info-col h3 {
    color: var(--turquoise-dark);
    margin-bottom: 16px;
}

.info-col p {
    color: var(--gray);
    line-height: 1.8;
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 0;
    background: var(--cream);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 50px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--orange);
    transition: transform 0.3s ease;
}

.faq-question.open::after {
    content: '\2212';
}

.faq-question:hover {
    border-color: var(--orange-light);
}

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

.faq-answer.open {
    max-height: 300px;
}

.faq-answer p {
    padding: 16px 24px 20px;
    color: var(--gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===== PERIMENOPAUSE SECTION ===== */
.perimenopause {
    padding: 80px 0;
    background: var(--gray-bg);
}

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

.peri-content h2 {
    margin-bottom: 24px;
}

.peri-content .lead {
    color: var(--dark);
}

.peri-content p {
    color: var(--gray);
    line-height: 1.8;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    background: linear-gradient(135deg, var(--cream) 0%, rgba(46, 196, 182, 0.06) 50%, rgba(232, 113, 58, 0.06) 100%);
}

.about-page-intro {
    padding: 80px 0;
    background: var(--white);
}

.about-page-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}

.about-page-photo .image-frame {
    width: 100%;
    height: 400px;
}

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

.about-page-text .lead {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-page-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-personality {
    padding: 60px 0;
    background: var(--cream);
}

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

.personality-content .lead {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gray);
}

/* ===== SPECIALTIES OVERVIEW (About Page) ===== */
.specialties-overview {
    padding: 80px 0;
    background: var(--white);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.specialty-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-light);
    color: inherit;
}

.specialty-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.specialty-card h3 {
    margin-bottom: 8px;
    color: var(--dark);
}

.specialty-card p {
    color: var(--gray);
    font-size: 0.93rem;
    margin-bottom: 16px;
}

/* ===== MODALITIES GRID ===== */
.modalities-overview {
    padding: 80px 0;
    background: var(--gray-bg);
}

.modalities-for-condition {
    padding: 80px 0;
    background: var(--cream);
}

.modalities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.modality-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border-bottom: 3px solid var(--turquoise);
}

.modality-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.modality-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.modality-card-link:hover {
    color: inherit;
}

.modality-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.modality-card h3 {
    margin-bottom: 4px;
    color: var(--dark);
}

.modality-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--orange);
    font-style: italic;
    margin-bottom: 16px;
}

.modality-card p:last-of-type {
    color: var(--gray);
    font-size: 0.93rem;
    line-height: 1.7;
}

.modality-card .service-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.93rem;
}

.home-modalities {
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== PROMISE SECTION ===== */
.promise {
    padding: 80px 0;
    background: var(--white);
}

.promise-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.promise-content h2 {
    margin-bottom: 32px;
}

.promise-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.promise-item {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    padding: 16px 24px;
    background: var(--cream);
    border-radius: var(--radius);
    border-left: 4px solid var(--turquoise);
    text-align: left;
    line-height: 1.6;
}

.promise-item:last-child {
    border-left-color: var(--orange);
    font-style: italic;
}

/* ===== OTHER MODALITIES SECTION ===== */
.other-modalities {
    padding: 80px 0;
    background: var(--gray-bg);
}

.additional-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.additional-card-link:hover {
    color: inherit;
}

.additional-card .service-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.93rem;
}

/* ===== MODALITY PAGE HEROES ===== */
.acupuncture-hero {
    background: linear-gradient(135deg, var(--cream) 0%, rgba(232, 113, 58, 0.08) 100%);
}

.herbs-hero {
    background: linear-gradient(135deg, var(--cream) 0%, rgba(46, 196, 182, 0.08) 100%);
}

.qigong-hero {
    background: linear-gradient(135deg, var(--cream) 0%, rgba(244, 162, 97, 0.08) 100%);
}

/* ===== ACU VS DRY NEEDLING / QIGONG VS SECTIONS ===== */
.acupuncture-vs-dry,
.qigong-vs {
    padding: 80px 0;
    background: var(--gray-bg);
}

.acupuncture-vs-dry .intro-content,
.qigong-vs .intro-content {
    text-align: center;
}

.acupuncture-vs-dry .intro-content p,
.qigong-vs .intro-content p {
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* ===== TESTIMONIALS PAGE ===== */
.testimonials-hero {
    background: linear-gradient(135deg, var(--cream) 0%, rgba(232, 113, 58, 0.06) 50%, rgba(46, 196, 182, 0.06) 100%);
}

/* Featured testimonial */
.testimonial-featured-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonial-featured {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.featured-quote-mark {
    font-family: var(--font-display);
    font-size: 8rem;
    line-height: 1;
    color: var(--orange-light);
    opacity: 0.3;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.testimonial-featured blockquote {
    font-family: var(--font-display);
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--dark);
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Person silhouette avatar (shared) */
.testimonial-avatar {
    --avatar-size: 48px;
    --avatar-bg: var(--turquoise);
    --avatar-color: rgba(255,255,255,0.85);
}

.testimonial-avatar::before {
    content: '';
    display: block;
    width: var(--avatar-size);
    height: var(--avatar-size);
    border-radius: 50%;
    background-color: var(--avatar-bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.85)'%3E%3Cpath d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z'/%3E%3C/svg%3E");
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.testimonial-featured cite {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
    font-size: 1.05rem;
    font-weight: 600;
    font-style: normal;
    color: var(--turquoise-dark);
}

.testimonial-featured cite::before {
    content: '';
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--turquoise);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.85)'%3E%3Cpath d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z'/%3E%3C/svg%3E");
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* Scrolling ticker */
.testimonial-ticker {
    background: var(--dark);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    gap: 60px;
    animation: ticker 40s linear infinite;
    width: max-content;
}

.ticker-item {
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticker-item::before {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.12);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.5)'%3E%3Cpath d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z'/%3E%3C/svg%3E");
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.ticker-item span {
    color: var(--orange-light);
    font-style: normal;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 4px;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* All testimonials masonry */
.testimonials-all {
    padding: 80px 0;
    background: var(--gray-bg);
}

.testimonials-masonry {
    columns: 3;
    column-gap: 24px;
}

.testimonial-card {
    break-inside: avoid;
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    border-left: 3px solid transparent;
}

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

.testimonial-highlight {
    border-left-color: var(--orange);
    background: linear-gradient(135deg, var(--white) 0%, rgba(232, 113, 58, 0.04) 100%);
}

.testimonial-card blockquote {
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark);
    font-style: italic;
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 2px solid var(--orange-light);
}

.testimonial-highlight blockquote {
    border-left-color: var(--orange);
}

.testimonial-card cite {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    font-style: normal;
    color: var(--turquoise-dark);
}

.testimonial-card cite::before {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--turquoise);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.85)'%3E%3Cpath d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z'/%3E%3C/svg%3E");
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.testimonial-highlight cite::before {
    background-color: var(--orange);
}

.testimonial-tag {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange);
    background: rgba(232, 113, 58, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
}

/* Inline testimonial strip (for specialty/modality pages) */
.testimonial-strip {
    padding: 60px 0;
    background: var(--dark);
    overflow: hidden;
}

.testimonial-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.testimonial-strip h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

.testimonial-strip-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.strip-card {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 32px 28px;
    border-left: 3px solid var(--orange);
}

.strip-card blockquote {
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
    font-style: italic;
    margin-bottom: 16px;
}

.strip-card cite {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    font-style: normal;
    color: var(--orange-light);
}

.strip-card cite::before {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.6)'%3E%3Cpath d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z'/%3E%3C/svg%3E");
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* Featured single testimonial (for inline use) */
.testimonial-inline {
    padding: 60px 0;
    background: var(--dark);
    text-align: center;
}

.testimonial-inline-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.testimonial-inline-inner::before {
    content: '';
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.12);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.6)'%3E%3Cpath d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z'/%3E%3C/svg%3E");
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto 20px;
}

.testimonial-inline blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-inline cite {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    font-style: normal;
    color: var(--orange-light);
}

.testimonial-inline .see-all {
    display: inline-block;
    margin-top: 24px;
    color: var(--turquoise-light);
    font-weight: 500;
    font-size: 0.9rem;
}

.testimonial-inline .see-all:hover {
    color: var(--white);
}

/* Homepage testimonial carousel */
.testimonials-home {
    padding: 80px 0;
    background: var(--dark);
    text-align: center;
}

.testimonials-home h2 {
    color: var(--white);
    margin-bottom: 8px;
}

.testimonials-home .section-subtitle {
    color: rgba(255,255,255,0.7);
    margin-bottom: 48px;
}

.home-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.home-testimonial-card {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: left;
    border-top: 3px solid var(--orange);
    transition: all 0.3s ease;
}

.home-testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.home-testimonial-card blockquote {
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
    font-style: italic;
    margin-bottom: 16px;
}

.home-testimonial-card cite {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    font-style: normal;
    color: var(--orange-light);
}

.home-testimonial-card cite::before {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.12);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.6)'%3E%3Cpath d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z'/%3E%3C/svg%3E");
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.testimonials-home .see-all-link {
    display: inline-block;
    margin-top: 40px;
    color: var(--turquoise-light);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.testimonials-home .see-all-link:hover {
    color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .image-badge {
        right: 0;
    }

    .trust-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .conditions-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 16px auto 0;
    }

    .info-columns {
        grid-template-columns: 1fr;
    }

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

    .additional-grid {
        grid-template-columns: 1fr;
    }

    .mod-block-inner,
    .mod-block-reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .mod-block-reverse .mod-block-visual {
        order: 0;
    }

    .mod-block-reverse .mod-block-content {
        order: 0;
    }

    .mod-block-visual {
        position: static;
    }

    .mod-number {
        font-size: 3.5rem;
        margin-bottom: -10px;
    }

    .mod-icon-large {
        font-size: 5rem;
    }

    .mod-highlights {
        grid-template-columns: 1fr;
    }

    .mod-block-content {
        text-align: left;
    }

    .about-page-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-page-photo {
        display: flex;
        justify-content: center;
    }

    .about-page-photo .image-frame {
        width: 280px;
        height: 340px;
    }

    .specialties-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .modalities-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .testimonials-masonry {
        columns: 1;
    }

    .home-testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .testimonial-strip-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-menu.open {
        transform: translateY(0);
    }

    .image-frame {
        width: 260px;
        height: 310px;
    }
}

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .image-frame {
        width: 220px;
        height: 270px;
    }

    .image-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        text-align: center;
    }
}
