/* FFA V2 Global Styles - Forever Facial Aesthetics */
/* EXACT MATCH to design */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Colors - Matched to Figma */
    --color-sage: #95ab97;
    --color-sage-light: rgba(149, 171, 151, 0.9);
    --color-sage-accent: #a0b787;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-text: #000000;
    --color-text-light: #4A4A4A;
    --color-cream: #f5f5f5;
    --color-dark: #191819;
    --color-heading: #95ab97;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Playfair Display', Georgia, serif;

    /* Transitions */
    --transition: 0.3s ease;
    --header-height: 110px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

main {
    margin: 0;
    padding: 0;
}

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

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

ul {
    list-style: none;
}

/* ============================================
   HEADER - BLACK with ROUNDED BOTTOM CORNERS
   ============================================ */
.header {
    background-color: var(--color-black);
    padding: 20px 40px 25px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo - Centered */
.header__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.header__logo a {
    display: block;
}

.header__logo img {
    height: 50px;
    width: auto;
}

/* Navigation - Centered with bullet separators */
.header__nav {
    display: flex;
    justify-content: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.nav__link {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-white);
    padding: 5px 8px;
    transition: opacity var(--transition);
}

.nav__link:hover {
    opacity: 0.7;
}

/* Bullet separator between nav items */
.nav__item:not(:last-child)::after {
    content: '·';
    color: var(--color-white);
    font-size: 14px;
    margin-left: 8px;
    opacity: 0.6;
}

/* Dropdown Menu */
.nav__item--has-dropdown {
    position: relative;
}

.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-black);
    min-width: 180px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 101;
    margin-top: 10px;
}

.nav__item--has-dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
}

.nav__dropdown li {
    padding: 0;
}

.nav__dropdown a {
    display: block;
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    transition: background-color 0.3s ease;
}

.nav__dropdown a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Toggle */
.header__menu-toggle {
    display: none;
    position: absolute;
    top: 25px;
    right: 20px;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.header__menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
}

/* ============================================
   HERO SECTION - FULL WIDTH, NO BORDERS
   ============================================ */
.hero {
    position: relative;
    height: calc(100vh - var(--header-height));
    min-height: 500px;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Hero Background Image */
.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
}

/* Subtle overlay */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    z-index: 2;
}

/* Hero Content - CENTERED */
.hero__content {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

/* Main Title */
.hero__title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 400;
    font-style: normal;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* Subtitle */
.hero__subtitle {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    color: var(--color-white);
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Book Now Button - Top right, touching nav bar */
.book-now-float {
    position: absolute;
    top: 0;
    right: 40px;
    z-index: 10;
}

.book-now-float--below {
    position: relative;
    top: auto;
    right: auto;
    display: flex;
    justify-content: flex-end;
    padding: 0 40px;
}

.btn-book {
    display: inline-block;
    background-color: var(--color-sage-light);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 30px;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition);
}

.btn-book:hover {
    background-color: var(--color-sage);
}

/* Book Now - top right of hero */
.hero__book-now {
    position: absolute;
    top: 0;
    right: 40px;
    z-index: 3;
}

/* Bottom Bar - REMOVED */
.hero__bottom-bar {
    display: none;
}

/* ============================================
   WELCOME SECTION
   ============================================ */
.welcome {
    background-color: var(--color-cream);
    padding: 40px 60px;
    position: relative;
    overflow: visible;
}

.welcome__inner {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

/* Wider container for the actual Welcome section
   (default .welcome__inner stays 750px so it doesn't widen
   the reuse inside .treatments-carousel) */
.welcome > .welcome__inner {
    max-width: 1000px;
}

.welcome__heading {
    font-family: var(--font-heading);
    font-weight: 400;
    font-style: normal;
    color: var(--color-heading);
    margin-bottom: 20px;
    line-height: 1.4;
    white-space: nowrap;
    text-align: center;
}

.welcome__text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 25px;
}

/* Divider line */
.welcome__divider {
    width: 100%;
    height: 1px;
    background-color: var(--color-black);
    margin: 0 auto;
}

/* Book Now button in welcome section - below hero */
.welcome__cta {
    position: absolute;
    right: 40px;
    top: 0;
    z-index: 20;
}

.btn-book-small {
    display: inline-block;
    background-color: var(--color-sage);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 30px;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition);
}

.btn-book-small:hover {
    background-color: var(--color-heading);
}

/* ============================================
   SLIDE-IN ANIMATIONS
   ============================================ */

/* Initial state - hidden */
.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Visible state */
.slide-in-left.is-visible,
.slide-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Slide indicator */
.welcome__slide-indicator {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    color: #c17f7f;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.welcome__slide-indicator span {
    color: #c17f7f;
}

/* ============================================
   TREATMENTS CAROUSEL
   ============================================ */
.treatments-carousel {
    background-color: var(--color-cream);
    padding: 0 0 40px 0;
    position: relative;
}

.treatments-carousel__heading {
    font-family: var(--font-heading);
    font-weight: 400;
    font-style: normal;
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 30px;
}

.treatments-carousel__wrapper {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.treatments-info__grid {
    max-width: 1180px;
    padding: 0 15px;
}

.treatments-carousel__viewport {
    overflow: hidden;
    width: 100%;
}

.treatments-carousel__track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.treatments-carousel__item {
    flex: 0 0 calc(25% - 15px);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.treatments-carousel__item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Carousel Arrows */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    font-size: 50px;
    font-weight: 300;
    color: var(--color-text);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;
    padding: 0;
    line-height: 1;
    opacity: 0.7;
}

.carousel-nav:hover {
    color: var(--color-sage-accent);
    opacity: 1;
    transform: scale(1.1);
}

.carousel-nav:active {
    transform: scale(0.95);
}

/* Carousel Dots */
.treatments-carousel__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-text);
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.carousel-dot:hover {
    opacity: 0.7;
}

.carousel-dot.is-active {
    opacity: 1;
    background-color: var(--color-text);
}

/* Bottom green line - REMOVED */
.treatments-carousel__bottom-line {
    display: none;
}

/* ============================================
   TREATMENTS CATEGORIES (3-column intro)
   ============================================ */
.treatments-categories {
    max-width: 1300px;
    margin: 40px auto 60px;
    /* matches carousel image-strip width: wrapper-pad 60 + arrow 40 + gap 15 = 115 */
    padding: 0 115px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.treatments-categories__title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-heading);
    margin: 0 0 8px;
    position: relative;
    padding-bottom: 12px;
}

.treatments-categories__title::after {
    display: none;
}

.treatments-categories__text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 16px 0 0;
}

@media (max-width: 1024px) {
    .treatments-categories {
        /* wrapper-pad 50 + arrow 40 + gap 10 = 100 */
        padding: 0 100px;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .treatments-categories {
        grid-template-columns: 1fr;
        padding: 0 40px;
        gap: 32px;
        margin: 24px auto 40px;
    }
}

/* ============================================
   TREATMENTS INFO SECTION
   ============================================ */
.treatments-info {
    background-color: var(--color-sage);
    padding: 40px 60px;
    position: relative;
}

.treatments-info__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
}

.treatments-info__item {
    text-align: left;
}

.treatments-info__title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
    color: var(--color-white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.treatments-info__text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-white);
    opacity: 0.95;
}

.treatments-info__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
}

.treatments-info__buttons .btn-outline {
    background-color: var(--color-dark);
    color: var(--color-white);
    border: 1px solid var(--color-dark);
    padding: 14px 30px;
}

.treatments-info__buttons .btn-outline:hover {
    background-color: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
}

.treatments-info__buttons .btn-solid {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-sage);
    border-color: var(--color-sage);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 30px;
    border: 1px solid var(--color-white);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-sage);
}

.btn-solid {
    display: inline-block;
    background-color: var(--color-heading);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 30px;
    border: 1px solid var(--color-heading);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-solid:hover {
    background-color: #5a6b54;
    border-color: #5a6b54;
}

/* ============================================
   BEFORE AND AFTER SECTION
   ============================================ */
.before-after {
    background-color: var(--color-white);
    padding: 40px;
}

.before-after__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.before-after__images {
    display: flex;
    gap: 0;
}

.before-after__image-wrapper {
    flex: 1;
    border-radius: 0;
    overflow: hidden;
}

.before-after__image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.before-after__content {
    padding-top: 0;
}

.before-after__text-columns {
    column-count: 2;
    column-gap: 30px;
    orphans: 3;
    widows: 3;
}

@media (max-width: 640px) {
    .before-after__text-columns {
        column-count: 1;
    }
}

.before-after__text-col {
    display: flex;
    flex-direction: column;
}

.before-after__title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-style: normal;
    color: var(--color-heading);
    margin-bottom: 10px;
}

.before-after__subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 0;
}

.before-after__text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 15px;
}

.before-after__text:last-child {
    margin-bottom: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background-color: rgba(149, 171, 151, 0.15);
    padding: 40px 60px;
}

.testimonials__container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.testimonials__heading {
    font-family: var(--font-heading);
    font-weight: 400;
    font-style: normal;
    color: var(--color-heading);
    margin-bottom: 40px;
}

.testimonials__slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials__track-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 800px;
}

.testimonials__track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonials__slide {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.testimonials__quote {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    font-style: normal;
    margin: 0 0 30px 0;
    padding: 0;
    border: none;
}

.testimonials__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.testimonials__author-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
}

.testimonials__author-role {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-sage-accent);
}

.testimonials__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    font-size: 40px;
    color: var(--color-text);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;
    padding: 0;
    line-height: 1;
}

.testimonials__nav:hover {
    color: var(--color-sage-accent);
    transform: scale(1.1);
}

.testimonials__nav:active {
    transform: scale(0.95);
}

/* Pagination Dots */
.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-text);
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.testimonials__dot:hover {
    opacity: 0.7;
}

.testimonials__dot.is-active {
    opacity: 1;
    background-color: var(--color-text);
}

.testimonials__cta {
    margin-top: 40px;
}

/* ============================================
   EXPERT PRACTITIONER SECTION
   ============================================ */
.practitioner {
    background-color: var(--color-white);
    padding: 40px;
    position: relative;
}

.practitioner__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.practitioner__left {
    display: flex;
    flex-direction: column;
}

.practitioner__right {
    display: flex;
    flex-direction: column;
}

.practitioner__header {
    margin-bottom: 20px;
}

.practitioner__label {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    color: var(--color-heading);
    display: block;
    margin-bottom: 0;
}

.practitioner__name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
    color: var(--color-heading);
    margin-bottom: 0;
}

.practitioner__title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: var(--color-heading);
}

/* Bio Text - Two Columns */
.practitioner__bio {
    column-count: 2;
    column-gap: 25px;
    orphans: 3;
    widows: 3;
}

.practitioner__bio p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 15px;
}

.practitioner__bio p:last-child {
    margin-bottom: 0;
}

/* Photos - Two side by side */
.practitioner__photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 20px;
}

.practitioner__photo {
    overflow: hidden;
    height: 400px;
}

.practitioner__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


.practitioner__video-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    font-style: normal;
    color: var(--color-heading);
    line-height: 1.4;
    text-align: right;
    margin-top: auto;
    padding-top: 30px;
}

/* Video Player */
.practitioner__video-wrapper {
    position: relative;
    overflow: hidden;
    background: #000;
}

.practitioner__video-player {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/10;
    object-fit: cover;
    cursor: pointer;
}

.practitioner__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.practitioner__play-btn svg {
    width: 28px;
    height: 28px;
    color: var(--color-sage);
    margin-left: 4px;
}

.practitioner__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.practitioner__play-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ============================================
   CONTACT CTA SECTION - PATTERNED BACKGROUND
   ============================================ */
.contact-cta {
    /* Brand knot pattern background */
    background-color: #e8e8e8;
    background-image: url('/assets/images/bg-pattern-tile.svg');
    background-repeat: repeat;
    background-size: 44px 38px;
    padding: 40px 60px;
}

.contact-cta__container {
    max-width: 1300px;
    margin: 0 auto;
}

.contact-cta__content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Left Wrapper - White outer container */
.contact-cta__left-wrapper {
    background-color: var(--color-white);
    padding: 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.contact-cta__header {
    text-align: left;
    margin-bottom: 30px;
}

.contact-cta__title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-style: normal;
    color: var(--color-sage-accent);
    margin-bottom: 15px;
}

.contact-cta__subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text);
}

/* Form Wrapper - Sage green tint */
.contact-cta__form-wrapper {
    background-color: rgba(149, 171, 151, 0.12);
    padding: 30px;
    border-radius: 0;
}

/* Logo Box at Top of Form */
.contact-cta__logo-box {
    background-color: var(--color-dark);
    padding: 35px 30px;
    margin: -30px -30px 25px -30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.contact-cta__logo-icon {
    height: 55px;
    width: auto;
}

.contact-cta__logo-text {
    height: 14px;
    width: auto;
}

.contact-cta__form-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    font-style: normal;
    color: var(--color-sage-accent);
    margin-bottom: 10px;
}

.contact-cta__form-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 25px;
}

.contact-cta__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-cta__form-group {
    display: flex;
    flex-direction: column;
}

.contact-cta__form-group label {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-text);
    margin-bottom: 6px;
}

.contact-cta__form-group input,
.contact-cta__form-group textarea,
.contact-cta__form-group select {
    font-family: var(--font-body);
    font-size: 14px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 0;
    background-color: var(--color-white);
    color: var(--color-text);
    transition: border-color var(--transition);
}

.contact-cta__form-group input:focus,
.contact-cta__form-group textarea:focus,
.contact-cta__form-group select:focus {
    outline: none;
    border-color: var(--color-sage);
}

.contact-cta__form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-cta__form-group select {
    cursor: pointer;
}

.contact-cta__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.contact-cta__checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-cta__checkbox span {
    font-size: 12px;
    line-height: 1.5;
    color: var(--color-text);
}

.contact-cta__submit {
    display: block;
    width: 100%;
    background-color: var(--color-sage);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 30px;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition);
}

.contact-cta__submit:hover {
    background-color: var(--color-heading);
}

.contact-cta__map-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-text);
    text-decoration: underline;
    transition: color var(--transition);
}

.contact-cta__map-link:hover {
    color: var(--color-sage);
}

/* Contact Info - Right Side (matching white card, fills the form's height) */
.contact-cta__info {
    background-color: var(--color-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.contact-cta__info-block {
    margin-bottom: 30px;
}

.contact-cta__info-label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-sage-accent);
    margin-bottom: 8px;
}

.contact-cta__info-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
}

/* Embedded Google Map - grows to fill the remaining column height */
.contact-cta__map-embed {
    flex: 1 1 auto;
    min-height: 260px;
    margin-top: 6px;
}

.contact-cta__map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: 0;
    display: block;
    filter: grayscale(0.15);
}

/* Social row beneath the map */
.contact-cta__map-section {
    margin-top: 18px;
    text-align: left;
}

.contact-cta__map-pin {
    margin-bottom: 10px;
}

.contact-cta__map-pin svg {
    width: 28px;
    height: 36px;
}

.contact-cta__map-text {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--color-text);
    margin-bottom: 15px;
}

.contact-cta__social {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.contact-cta__social-link {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: color var(--transition);
}

.contact-cta__social-link:hover {
    color: var(--color-sage);
}

.contact-cta__social-link svg {
    width: 14px;
    height: 14px;
}

/* ============================================
   FOOTER - Light theme with sage bottom bar
   ============================================ */
.footer {
    background-color: #ffffff;
    padding: 70px 40px 0;
    width: 100%;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer__columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer__column-title {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    color: var(--color-sage-accent);
    margin-bottom: 2px;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: 1px;
}

.footer__links a {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--color-sage);
}

.footer__contact-info {
    margin-top: 20px;
}

.footer__contact-info p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 10px;
}

.footer__contact-info a {
    color: var(--color-text);
    transition: color var(--transition);
}

.footer__contact-info a:hover {
    color: var(--color-sage);
}

.footer__bottom {
    background-color: var(--color-sage);
    text-align: center;
    padding: 20px 40px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.footer__bottom p {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-white);
}

.footer__bottom a {
    color: var(--color-white);
    transition: opacity var(--transition);
}

.footer__bottom a:hover {
    opacity: 0.8;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 42px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .welcome__cta {
        right: 0;
        bottom: 20px;
    }

    .treatments-carousel__wrapper {
        max-width: 100%;
        padding: 0 50px;
        gap: 10px;
    }

    .treatments-carousel__item {
        flex: 0 0 calc(33.333% - 14px);
    }

    .carousel-nav {
        font-size: 40px;
        width: 30px;
    }

    .treatments-info__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 30px;
    }

    .treatments-info {
        padding: 50px 30px;
    }

    /* Before & After - 1024px */
    .before-after__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .before-after__images {
        order: 1;
    }

    .before-after__content {
        order: 2;
    }

    /* Practitioner - 1024px */
    .practitioner {
        padding: 40px;
    }

    .practitioner__book-now {
        right: 40px;
    }

    .practitioner__container {
        gap: 30px;
    }

    .practitioner__video-title {
        font-size: 22px;
    }

    /* Contact CTA - 1024px */
    .contact-cta__content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Footer - 1024px */
    .footer__columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 90px;
    }

    .header {
        padding: 15px 20px 20px;
    }

    .header__logo img {
        height: 40px;
        width: auto;
    }

    .header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-black);
        padding: 20px;
        z-index: 100;
    }

    .header__nav.is-active {
        display: block;
    }

    .nav__list {
        flex-direction: column;
        gap: 15px;
    }

    .nav__item:not(:last-child)::after {
        display: none;
    }

    .header__menu-toggle {
        display: flex;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
        width: 100%;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__subtitle {
        font-size: 14px;
    }

    .book-now-float {
        top: 15px;
        right: 15px;
    }

    .book-now-float--below {
        top: auto;
        right: auto;
        padding: 0 15px;
    }

    .btn-book {
        padding: 10px 16px;
        font-size: 9px;
    }

    .welcome {
        padding: 40px 15px;
    }

    .welcome__heading {
        font-size: 18px;
        line-height: 1.35;
        white-space: normal;
    }

    .welcome__text {
        font-size: 12px;
    }

    .welcome__cta {
        position: absolute;
        right: 0;
        top: -15px;
    }

    .treatments-carousel {
        padding: 25px 15px 40px;
    }

    .treatments-carousel__heading {
        font-size: 20px;
    }

    .treatments-carousel__wrapper {
        padding: 0 40px;
        gap: 8px;
    }

    .treatments-carousel__item {
        flex: 0 0 calc(50% - 10px);
    }

    .treatments-carousel__item img {
        height: 140px;
    }

    .carousel-nav {
        display: flex;
        font-size: 32px;
        width: 25px;
    }

    .treatments-carousel__dots {
        gap: 6px;
    }

    .carousel-dot {
        width: 6px;
        height: 6px;
    }

    .treatments-info {
        padding: 40px 20px;
    }

    .treatments-info__grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0;
    }

    .treatments-info__title {
        font-size: 20px;
    }

    .treatments-info__text {
        font-size: 12px;
    }

    .treatments-info__buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-outline,
    .btn-solid {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Before & After - 768px */
    .before-after {
        padding: 50px 20px;
    }

    .before-after__images {
        flex-direction: column;
        gap: 15px;
    }

    .before-after__image-wrapper img {
        height: 280px;
    }

    .before-after__title {
        font-size: 24px;
    }

    .before-after__text {
        font-size: 14px;
    }

    /* Testimonials - 768px */
    .testimonials {
        padding: 50px 20px;
    }

    .testimonials__heading {
        font-size: 24px;
    }

    .testimonials__quote {
        font-size: 15px;
    }

    .testimonials__slider {
        gap: 10px;
    }

    .testimonials__nav {
        width: 30px;
        height: 30px;
        font-size: 30px;
    }

    .testimonials__slide {
        padding: 0 10px;
    }

    .testimonials__dots {
        margin-top: 25px;
    }

    .testimonials__dot {
        width: 8px;
        height: 8px;
    }

    /* Practitioner - 768px */
    .practitioner {
        padding: 50px 20px;
    }

    .practitioner__book-now {
        position: static;
        text-align: right;
        margin-bottom: 20px;
    }

    .practitioner__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .practitioner__left {
        margin-bottom: 0;
    }

    .practitioner__label,
    .practitioner__name {
        font-size: 20px;
    }

    .practitioner__title {
        font-size: 14px;
    }

    .practitioner__bio {
        column-count: 1;
    }

    .practitioner__bio p {
        font-size: 13px;
    }

    .practitioner__video-title {
        font-size: 20px;
        text-align: center;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    /* Contact CTA - 768px */
    .contact-cta {
        padding: 50px 20px;
    }

    .contact-cta__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-cta__left-wrapper {
        order: 1;
        padding: 25px;
    }

    .contact-cta__info {
        order: 2;
        padding: 25px;
    }

    .contact-cta__title {
        font-size: 26px;
    }

    .contact-cta__form-wrapper {
        padding: 20px;
    }

    .contact-cta__logo-box {
        margin: -20px -20px 20px -20px;
        padding: 25px 20px;
    }

    .contact-cta__logo-icon {
        height: 40px;
    }

    .contact-cta__logo-text {
        height: 10px;
    }

    /* Footer - 768px */
    .footer {
        padding: 40px 20px 0;
    }

    .footer__columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer__column-title {
        font-size: 14px;
    }

    .footer__links a {
        font-size: 13px;
    }

    .footer__bottom {
        padding: 15px 20px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 24px;
    }

    .hero__subtitle {
        font-size: 12px;
    }

    .treatments-carousel__wrapper {
        padding: 0 30px;
        gap: 5px;
    }

    .treatments-carousel__item {
        flex: 0 0 calc(50% - 10px);
    }

    .treatments-carousel__item img {
        height: 110px;
    }

    .carousel-nav {
        font-size: 26px;
        width: 20px;
    }

    /* Before & After - 480px */
    .before-after__image-wrapper img {
        height: 220px;
    }

    .before-after__title {
        font-size: 22px;
    }

    /* Testimonials - 480px */
    .testimonials__heading {
        font-size: 22px;
    }

    .testimonials__quote {
        font-size: 14px;
    }

    .testimonials__nav {
        width: 25px;
        height: 25px;
        font-size: 24px;
    }

    .testimonials__dots {
        gap: 6px;
    }

    /* Practitioner - 480px */
    .practitioner__label,
    .practitioner__name {
        font-size: 22px;
    }

    .practitioner__video-title {
        font-size: 18px;
    }

    /* Contact CTA - 480px */
    .contact-cta__title {
        font-size: 22px;
    }

    .contact-cta__info-label {
        font-size: 16px;
    }

    .contact-cta__info-text {
        font-size: 14px;
    }

    /* Footer - 480px */
    .footer__columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================================
   TREATMENT PAGE STYLES
   ============================================ */

/* Treatment Hero Slider */
.treatment-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    max-height: 600px;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Slider Container */
.treatment-hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.treatment-hero__track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides - Fade effect */
.treatment-hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.treatment-hero__slide.is-active {
    opacity: 1;
}

.treatment-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay */
.treatment-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
    pointer-events: none;
}

/* Navigation Arrows */
.treatment-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 20px;
    transition: all 0.3s ease;
}

.treatment-hero__arrow span {
    display: block;
    font-size: 60px;
    font-weight: 200;
    color: var(--color-white);
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, color 0.2s ease;
}

.treatment-hero__arrow:hover span {
    color: var(--color-sage);
    transform: scale(1.1);
}

.treatment-hero__arrow--prev {
    left: 20px;
}

.treatment-hero__arrow--next {
    right: 20px;
}

/* Content Overlay */
.treatment-hero__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 0 100px;
    pointer-events: none;
}

.treatment-hero__title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.treatment-hero__subtitle {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

/* Navigation Dots */
.treatment-hero__dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.treatment-hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-white);
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.treatment-hero__dot:hover {
    opacity: 0.8;
}

.treatment-hero__dot.is-active {
    opacity: 1;
    background-color: var(--color-white);
}

/* Treatment Intro Section */
.treatment-intro {
    padding: 40px 60px;
    position: relative;
    overflow: visible;
}

.treatment-intro__cta {
    position: absolute;
    top: 0;
    right: calc(50% - 650px);
    z-index: 20;
}

.treatment-intro__container {
    max-width: 1300px;
    margin: 0 auto;
}

.treatment-intro__inner {
    text-align: center;
}

.treatment-intro__heading {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: var(--color-heading);
    margin-bottom: 20px;
    line-height: 1.3;
}

.treatment-intro__text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text);
    max-width: 1000px;
    margin: 0 auto 14px;
    text-align: justify;
    text-align-last: center;
}

.treatment-intro__text:last-of-type {
    margin-bottom: 30px;
}

.treatment-intro__divider {
    width: 100%;
    max-width: 1000px;
    height: 1px;
    background-color: var(--color-black);
    margin: 0 auto;
}

/* 3-Column Info Grid + Image */
.info-grid {
    background-color: var(--color-white);
    padding: 40px 60px;
}

.info-grid__wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: stretch;
}

/* When the info-grid has no side image/video, let the text columns fill the row */
.info-grid__wrapper:not(:has(.info-grid__image, .info-grid__video)) {
    grid-template-columns: 1fr;
}

.info-grid__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-grid__image {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.info-grid__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Info Grid Video */
.info-grid__video {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.info-grid__video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}

.info-grid__video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-grid__video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(149, 171, 151, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.info-grid__video-play svg {
    width: 28px;
    height: 28px;
    color: #fff;
    margin-left: 3px;
}

.info-grid__video-play:hover {
    background: rgba(149, 171, 151, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.info-grid__video-play.hidden {
    display: none;
}

.info-grid__item {
    text-align: left;
}

.info-grid__title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-heading);
    margin-bottom: 15px;
    line-height: 1.3;
}

.info-grid__text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 15px;
    white-space: pre-line;
}

.info-grid__text:last-child {
    margin-bottom: 0;
}

.info-grid__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-grid__list li {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 6px;
    padding-left: 15px;
    position: relative;
}

.info-grid__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-sage);
}

/* 4-Column Features Grid */
/* ============================================
   FEATURES GRID — alternating zigzag rows
   ============================================ */
.features-grid {
    padding: 40px 60px;
}

.features-grid__container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.features-grid__item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: center;
}

/* Even rows: flip image to the right */
.features-grid__item:nth-child(even) {
    grid-template-columns: 1fr 220px;
}

.features-grid__item:nth-child(even) .features-grid__image {
    order: 2;
    margin-left: auto;
}

.features-grid__image {
    width: 100%;
    max-width: 220px;
    overflow: hidden;
    border-radius: 8px;
}

.features-grid__image img,
.features-grid__image picture,
.features-grid__image picture img {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

.features-grid__body {
    text-align: left;
}

.features-grid__title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    color: var(--color-heading);
    margin: 0 0 14px;
    line-height: 1.3;
}

.features-grid__divider {
    display: none;
}

.features-grid__text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin: 0;
}

.features-grid__text a,
.contact-cta__info-text a {
    overflow-wrap: anywhere;
}

/* Online Booking Embed */
.booking-embed {
    background: var(--color-white);
    padding: 0 60px 50px;
}

.booking-embed__container {
    max-width: 1180px;
    margin: 0 auto;
}

.booking-embed__header {
    max-width: 720px;
    margin: 0 auto 28px;
    text-align: center;
}

.booking-embed__heading {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 400;
    color: var(--color-heading);
    margin: 0 0 12px;
    line-height: 1.25;
}

.booking-embed__text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin: 0;
}

.booking-embed__frame-wrap {
    overflow: hidden;
    border: 1px solid rgba(25, 24, 25, 0.12);
    border-radius: 8px;
    background: var(--color-white);
    box-shadow: 0 18px 45px rgba(25, 24, 25, 0.08);
}

.booking-embed__frame {
    display: block;
    width: 100%;
    height: 650px;
    border: 0;
}

/* ============================================
   EXPECT TABS — sidebar tabs, hover/click to switch
   ============================================ */
.expect-tabs {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.expect-tabs__nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.expect-tabs__nav li {
    list-style: none;
}

.expect-tabs__nav-item {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 22px;
    margin: 0;
    margin-left: -1px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 400;
    color: var(--color-text-light);
    line-height: 1.4;
    cursor: pointer;
    display: flex;
    align-items: baseline;
    gap: 12px;
    border-left: 2px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease, font-weight 0.25s ease;
}

.expect-tabs__nav-item:hover {
    color: var(--color-text);
}

.expect-tabs__nav-item.is-active {
    color: var(--color-heading);
    border-left-color: var(--color-sage);
    font-weight: 500;
}

.expect-tabs__nav-num {
    font-size: 13px;
    color: var(--color-sage);
    letter-spacing: 1px;
    flex-shrink: 0;
    min-width: 22px;
}

.expect-tabs__nav-label {
    flex: 1;
}

.expect-tabs__panels {
    position: relative;
    min-height: 280px;
}

.expect-tabs__panel {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    inset: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.expect-tabs__panel.is-active {
    opacity: 1;
    visibility: visible;
    position: relative;
    pointer-events: auto;
}

.expect-tabs__step-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 400;
    color: var(--color-sage);
    line-height: 1;
    margin: 0 0 12px;
    letter-spacing: 2px;
}

.expect-tabs__title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-heading);
    margin: 0 0 14px;
    line-height: 1.3;
}

.expect-tabs__divider {
    display: none;
}

.expect-tabs__text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.85;
    color: var(--color-text-light);
    margin: 0;
}

/* ============================================
   BENEFITS SECTION (Concern pages - image + cards layout)
   ============================================ */

.benefits {
    padding: 40px 60px;
    background-color: var(--color-white);
}

.benefits__heading {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 40px;
}

.benefits__layout {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    align-items: center;
}

.benefits__column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefits__card {
    background-color: rgba(149, 171, 151, 0.08);
    border-radius: 12px;
    padding: 24px 28px;
    text-align: left;
}

.benefits__card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-heading);
    margin-bottom: 8px;
}

.benefits__card-text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text);
}

.benefits__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits__image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

/* Benefits animation states */
.benefits__image--hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

.benefits__card--hidden {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

/* Book Now Row (between features and expect sections) */
.book-now-row {
    background-color: var(--color-white);
    padding: 0 40px 20px;
    margin-top: -1px;
}

.book-now-row__inner {
    text-align: right;
}

.book-now-row__btn {
    display: inline-block;
    background-color: var(--color-sage);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 30px;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition);
}

.book-now-row__btn:hover {
    background-color: #7a9a7c;
}

/* Mid-page treatment CTA */
.treatment-inline-cta {
    padding: 28px 60px;
}

.treatment-inline-cta__inner {
    align-items: center;
    background: var(--color-black);
    border-radius: 8px;
    color: var(--color-white);
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr auto;
    margin: 0 auto;
    max-width: 1000px;
    padding: 30px 34px;
}

.treatment-inline-cta__eyebrow {
    color: var(--color-sage);
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.treatment-inline-cta__title {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 10px;
}

.treatment-inline-cta__text {
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    max-width: 620px;
}

.treatment-inline-cta__button {
    background: var(--color-sage);
    border: 1px solid var(--color-sage);
    border-radius: 4px;
    color: var(--color-black);
    display: inline-flex;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    justify-content: center;
    letter-spacing: 1.4px;
    padding: 14px 22px;
    text-transform: uppercase;
    transition: background-color var(--transition), color var(--transition);
    white-space: nowrap;
}

.treatment-inline-cta__button:hover {
    background: transparent;
    color: var(--color-white);
}

/* Slim mid-scroll CTA band (repeats between sections) */
.treatment-cta-band {
    padding: 0 60px;
    margin: 14px 0;
}

.treatment-cta-band__inner {
    align-items: center;
    background: #f4f7f4;
    border: 1px solid #e2eae2;
    border-left: 3px solid var(--color-sage);
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1000px;
    padding: 18px 30px;
}

.treatment-cta-band__text {
    color: var(--color-dark);
    flex: 1 1 320px;
    font-family: var(--font-heading);
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.treatment-cta-band__button {
    background: var(--color-sage);
    border: 1px solid var(--color-sage);
    border-radius: 4px;
    color: var(--color-white);
    display: inline-flex;
    flex: 0 0 auto;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    justify-content: center;
    letter-spacing: 1.4px;
    padding: 13px 22px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color var(--transition), color var(--transition);
    white-space: nowrap;
}

.treatment-cta-band__button:hover {
    background: #7a9a7c;
}

.treatment-cta-band__button--ghost {
    background: transparent;
    color: var(--color-sage);
}

.treatment-cta-band__button--ghost:hover {
    background: var(--color-sage);
    color: var(--color-white);
}

/* Sticky mobile booking bar (always-visible CTA while scrolling) */
.treatment-sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .treatment-sticky-cta {
        align-items: stretch;
        background: rgba(255, 255, 255, 0.97);
        border-top: 1px solid #e2eae2;
        bottom: 0;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
        display: flex;
        gap: 10px;
        left: 0;
        padding: 10px 14px;
        position: fixed;
        right: 0;
        z-index: 90;
    }

    .treatment-sticky-cta__call,
    .treatment-sticky-cta__book {
        align-items: center;
        border: 1px solid var(--color-sage);
        border-radius: 4px;
        display: inline-flex;
        font-family: var(--font-body);
        font-size: 12px;
        font-weight: 600;
        justify-content: center;
        letter-spacing: 1px;
        text-decoration: none;
        text-transform: uppercase;
    }

    .treatment-sticky-cta__call {
        background: transparent;
        color: var(--color-sage);
        flex: 0 0 auto;
        gap: 7px;
        padding: 13px 16px;
    }

    .treatment-sticky-cta__book {
        background: var(--color-sage);
        color: var(--color-white);
        flex: 1 1 auto;
        padding: 13px 16px;
    }

    /* Keep the footer clear of the fixed bar (scoped to pages that have it) */
    body:has(.treatment-sticky-cta) {
        padding-bottom: 70px;
    }
}

/* What to Expect Section */
.expect-section {
    background-color: var(--color-white);
    padding: 40px 60px;
}

.expect-section__title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-heading);
    margin: 0 auto 40px;
    line-height: 1.3;
    max-width: 1300px;
    text-align: center;
}

.expect-section__grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.expect-section__grid--single-row {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
}

.expect-section__col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.expect-section__step {
    display: block;
}

.expect-section__step-content {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
}

.expect-section__step-content strong {
    color: var(--color-text);
    font-weight: 600;
}

/* Are You a Candidate — solid sage banner with watermark Q */
.expect-section__candidate {
    margin: 56px auto 0;
    max-width: 1000px;
    padding: 44px 56px;
    text-align: center;
    background-color: var(--color-sage);
    border-radius: 12px;
    position: relative;
    color: #fff;
    overflow: hidden;
}

.expect-section__candidate::before {
    content: '?';
    position: absolute;
    right: -20px;
    top: -40px;
    font-family: var(--font-heading);
    font-size: 220px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.18);
    line-height: 1;
    pointer-events: none;
}

.expect-section__candidate-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    margin: 0 auto 18px;
    line-height: 1.3;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.expect-section__candidate-title::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.6);
    margin: 0 auto 18px;
}

.expect-section__candidate-title::after {
    display: none;
}

.expect-section__candidate-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 auto;
    max-width: 860px;
    position: relative;
    z-index: 1;
    white-space: pre-line;
    text-align: center;
}

@media (max-width: 768px) {
    .expect-section__candidate {
        padding: 36px 24px;
        margin-top: 40px;
    }
    .expect-section__candidate::before {
        font-size: 160px;
        right: -10px;
        top: -28px;
    }
    .expect-section__candidate-title {
        font-size: 28px;
    }
}

/* Candidate plain variant (no box) */
.expect-section__candidate--plain {
    margin: 48px auto 0;
    max-width: 860px;
    padding: 0 24px;
    text-align: left;
}

.expect-section__candidate-plain-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    color: var(--color-text);
    margin: 0 0 20px;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.expect-section__candidate-plain-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.85;
    color: var(--color-text-light);
    margin: 0 0 14px;
}

.expect-section__candidate-plain-text:last-child {
    margin-bottom: 0;
}

/* FAQ Section */
.faq {
    background-color: var(--color-cream);
    padding: 40px 60px;
}

.faq__wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: auto auto 1fr;
    gap: 0 50px;
}

.faq__badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 8px 18px;
    margin-bottom: 20px;
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
}

.faq__title {
    grid-column: 2;
    grid-row: 2;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 25px;
    text-align: left;
    line-height: 1.3;
}

.faq__image {
    grid-column: 1;
    grid-row: 1 / -1;
    overflow: hidden;
    align-self: start;
    position: sticky;
    top: 120px;
    border-radius: 8px;
}

.faq__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.faq__list {
    grid-column: 2;
    grid-row: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq__item {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    overflow: hidden;
}

.faq__question {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text);
    text-align: left;
    transition: background-color var(--transition);
    gap: 15px;
}

.faq__question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq__question span:first-child {
    flex: 1;
}

.faq__icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--color-text);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq__answer-inner {
    overflow: hidden;
}

.faq__answer p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    white-space: pre-line;
    color: var(--color-text);
    padding: 0 20px 16px;
    margin: 0;
}

.faq__item.is-open .faq__answer {
    grid-template-rows: 1fr;
}

/* Show More toggle — sage outline pill */
.faq__list--collapsed .faq__item:nth-child(n+6) {
    display: none;
}

.faq__toggle {
    grid-column: 2;
    grid-row: 4;
    justify-self: center;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--color-sage);
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 1;
    color: var(--color-sage);
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.faq__toggle:hover {
    background-color: var(--color-sage);
    color: var(--color-white);
}

.faq__toggle-icon {
    width: 12px;
    height: 12px;
    display: inline-block;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq__toggle[aria-expanded="true"] .faq__toggle-icon {
    transform: rotate(180deg);
}

/* ============================================
   TREATMENT PAGE RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .treatment-intro__cta {
        right: 60px;
    }

    .treatment-hero__title {
        font-size: 44px;
    }

    .treatment-hero__content {
        padding: 0 80px;
    }

    .treatment-hero__arrow span {
        font-size: 50px;
    }

    .info-grid__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-grid__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .info-grid__container .info-grid__item:nth-child(3) {
        grid-column: span 2;
    }

    .info-grid__image {
        max-width: 400px;
        margin: 0 auto;
    }

    .expect-tabs {
        padding: 40px;
    }

    .expect-tabs__container,
    .expect-tabs {
        grid-template-columns: 220px 1fr;
        gap: 40px;
    }

    .expect-tabs__title {
        font-size: 22px;
    }

    .benefits {
        padding: 50px 40px;
    }

    .benefits__layout {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .benefits__image {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .benefits__image img {
        max-width: 350px;
    }

    .benefits__column--left {
        grid-column: 1;
        grid-row: 2;
    }

    .benefits__column--right {
        grid-column: 2;
        grid-row: 2;
    }

    .book-now-row {
        padding: 25px 40px;
    }

    .expect-section__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .treatment-intro__cta {
        right: 20px;
    }

    .treatment-hero {
        height: 50vh;
        min-height: 350px;
    }

    .treatment-hero__title {
        font-size: 28px;
        line-height: 1.15;
    }

    .treatment-hero__subtitle {
        font-size: 14px;
        line-height: 1.35;
    }

    .treatment-hero__content {
        padding: 0 20px;
    }

    .treatment-hero__arrow {
        padding: 10px;
    }

    .treatment-hero__arrow span {
        font-size: 40px;
    }

    .treatment-hero__arrow--prev {
        left: 10px;
    }

    .treatment-hero__arrow--next {
        right: 10px;
    }

    .treatment-hero__dots {
        bottom: 25px;
        gap: 8px;
    }

    .treatment-hero__dot {
        width: 8px;
        height: 8px;
    }

    .treatment-intro {
        padding: 40px 20px;
    }

    .treatment-intro__heading {
        font-size: 26px;
    }

    .treatment-intro__text {
        font-size: 14px;
        text-align: left;
        text-align-last: left;
    }

    .info-grid {
        padding: 40px 20px;
    }

    .info-grid__wrapper {
        gap: 30px;
    }

    .info-grid__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-grid__container .info-grid__item:nth-child(3) {
        grid-column: span 1;
    }

    .info-grid__image {
        max-width: 300px;
    }

    .info-grid__title {
        font-size: 20px;
    }

    .expect-tabs {
        padding: 50px 20px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .expect-tabs__nav {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        border-left: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding-bottom: 8px;
    }

    .expect-tabs__nav-item {
        margin-left: 0;
        padding: 8px 14px;
        font-size: 14px;
        border-left: none;
        border-bottom: 2px solid transparent;
    }

    .expect-tabs__nav-item.is-active {
        border-left: none;
        border-bottom-color: var(--color-sage);
    }

    .expect-tabs__panels {
        min-height: 0;
    }

    .expect-tabs__title {
        font-size: 22px;
    }

    .benefits {
        padding: 40px 20px;
    }

    .benefits__heading {
        font-size: 24px;
        margin-bottom: 30px;
    }

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

    .benefits__image {
        grid-column: 1;
        grid-row: 1;
    }

    .benefits__image img {
        max-width: 300px;
    }

    .benefits__column--left {
        grid-column: 1;
        grid-row: 2;
    }

    .benefits__column--right {
        grid-column: 1;
        grid-row: 3;
    }

    .expect-section {
        padding: 40px 20px;
    }

    .features-grid {
        padding: 40px 20px;
    }

    .booking-embed {
        padding: 0 20px 40px;
    }

    .booking-embed__header {
        margin-bottom: 22px;
        text-align: left;
    }

    .booking-embed__heading {
        font-size: 26px;
    }

    .booking-embed__text {
        font-size: 14px;
    }

    .booking-embed__frame {
        height: 780px;
    }

    .expect-section__title {
        font-size: 24px;
    }

    .expect-section__grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .expect-section__grid--single-row {
        grid-template-columns: 1fr;
    }

    .book-now-row {
        padding: 25px 20px;
    }

    .faq {
        padding: 40px 20px;
    }

    .faq__wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq__image {
        max-width: 400px;
        margin: 0 auto;
    }

    .faq__badge {
        grid-column: 1;
        justify-self: center;
    }

    .faq__title {
        font-size: 24px;
        text-align: center;
        grid-column: 1;
    }

    .faq__list {
        grid-column: 1;
    }

    .faq__question {
        font-size: 14px;
        padding: 14px 15px;
    }
}

@media (max-width: 480px) {
    .treatment-hero {
        height: 45vh;
        min-height: 300px;
    }

    .treatment-hero__title {
        font-size: 24px;
        line-height: 1.15;
    }

    .treatment-hero__subtitle {
        font-size: 14px;
    }

    .treatment-hero__content {
        padding: 0 24px;
    }

    .treatment-hero__arrow span {
        font-size: 32px;
    }

    .treatment-hero__arrow--prev {
        left: 5px;
    }

    .treatment-hero__arrow--next {
        right: 5px;
    }

    .treatment-intro__heading {
        font-size: 22px;
    }

    .expect-section__title {
        font-size: 22px;
    }

    .faq__title {
        font-size: 22px;
    }

    .faq__question {
        font-size: 14px;
    }
}


/* ========================================
   MEGA MENU
   ======================================== */

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    padding: 40px 0 30px;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav__item--has-mega {
    position: static;
}

/* Bridge the hover gap between nav link and mega menu panel */
.nav__item--has-mega > .nav__link {
    position: relative;
}

.nav__item--has-mega > .nav__link::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -20px;
    right: -20px;
    height: 30px;
}

/* Show mega menu via JS class (not pure CSS hover - avoids gap issues) */
.nav__item--has-mega.is-open .mega-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.mega-menu__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.mega-menu__column-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 500;
    color: #95ab97;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(149, 171, 151, 0.3);
}

.mega-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu__item {
    margin-bottom: 8px;
}

.mega-menu__item a {
    color: #fff;
    text-decoration: none;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.mega-menu__item a:hover {
    color: #95ab97;
}

.mega-menu__footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mega-menu__view-all {
    color: #95ab97;
    text-decoration: none;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.mega-menu__view-all:hover {
    color: #fff;
}

/* Book Appointment nav link */
.nav__link--book {
    background: #95ab97;
    color: #fff !important;
    padding: 8px 20px !important;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: background 0.3s ease;
}

.nav__link--book:hover {
    background: rgba(149, 171, 151, 0.8);
}


/* ========================================
   BREADCRUMBS
   ======================================== */

.breadcrumbs {
    background: #f5f5f5;
    padding: 12px 0;
}

.breadcrumbs__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.breadcrumbs a {
    color: #4A4A4A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #95ab97;
}

.breadcrumbs__sep {
    color: #999;
    margin: 0 8px;
}

.breadcrumbs__current {
    color: #95ab97;
}

/* Breadcrumb Bar (breadcrumbs + book now in one row) */
.breadcrumb-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px 12px;
    min-height: 56px;
    margin-top: -1px;
}

.breadcrumb-bar--book-only {
    justify-content: flex-end;
}

.breadcrumb-bar__nav {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.breadcrumb-bar__nav a {
    color: #4A4A4A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-bar__nav a:hover {
    color: #95ab97;
}


/* ========================================
   TREATMENT HERO - SIMPLE (no slider)
   ======================================== */

.treatment-hero--simple {
    height: 45vh;
    min-height: 300px;
    background: linear-gradient(to right, #191819 0%, #4a5e4c 55%, #7a8e7c 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatment-hero--simple .treatment-hero__content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    z-index: 2;
}


/* ========================================
   CATEGORY GRID (treatment cards)
   ======================================== */

.category-grid {
    padding: 40px 60px;
}

.category-grid__header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 30px;
    text-align: center;
}

.category-grid__title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-heading);
    margin-bottom: 15px;
}

.category-grid__subtitle {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Concern Statistics */
.concern-stats {
    background: var(--color-sage);
    padding: 40px 60px;
}

.concern-stats__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.concern-stats__item {
    color: #fff;
}

.concern-stats__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 8px;
}

.concern-stats__label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .concern-stats {
        padding: 40px 20px;
    }
    .concern-stats__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .concern-stats__number {
        font-size: 32px;
    }
}

.category-grid__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    justify-content: start;
}

/* Cap each card's max-width so single-card rows don't stretch full-width */
.category-grid__container:not(.category-grid__container--expandable) .treatment-card,
.category-grid__container:not(.category-grid__container--expandable) .treatment-card--modal-trigger {
    max-width: 240px;
    width: 100%;
    justify-self: start;
}

/* Compact treatment cards inside the category grid */
.category-grid__container .treatment-card .treatment-card__image,
.category-grid__container .treatment-card--expandable .treatment-card__image {
    aspect-ratio: 1 / 1;
}

.category-grid__container .treatment-card .treatment-card__content,
.category-grid__container .treatment-card--expandable .treatment-card__content {
    padding: 16px 14px;
}

.category-grid__container .treatment-card .treatment-card__title,
.category-grid__container .treatment-card--expandable .treatment-card__title {
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.3;
}

.category-grid__container .treatment-card .treatment-card__link,
.category-grid__container .treatment-card--expandable .treatment-card__link--toggle {
    font-size: 11px;
    letter-spacing: 0.04em;
}

.category-grid__container .treatment-card--expandable .treatment-card__link-icon {
    width: 18px;
    height: 18px;
    font-size: 13px;
}

.treatment-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border-radius: 8px;
    line-height: 0;
    font-size: 0;
}

.treatment-card > * {
    line-height: 1.6;
    font-size: 14px;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.treatment-card__image {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.treatment-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    vertical-align: top;
    margin: 0;
    border: 0;
}

.treatment-card:hover .treatment-card__image img {
    transform: scale(1.05);
}

.treatment-card__content {
    padding: 25px;
}

.treatment-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 10px;
}

.treatment-card__desc {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    color: #4A4A4A;
    line-height: 1.6;
    margin: 0 0 15px;
}

.treatment-card__link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #95ab97;
}


/* ========================================
   TREATMENTS LANDING PAGE
   ======================================== */

.treatments-section {
    padding: 40px 0;
}

.treatments-section--alt {
    background: #f5f5f5;
}

.treatments-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.treatments-section__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 15px;
}

.treatments-section__description {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    color: #4A4A4A;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}


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

.about-clinic {
    padding: 40px 0;
}

.about-clinic__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-clinic__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 12px;
}

.about-clinic__subheading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    font-style: italic;
    line-height: 1.6;
    color: #4A4A4A;
    margin: 0 0 22px;
}

.about-clinic__text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    line-height: 1.8;
    color: #4A4A4A;
    margin: 0 0 15px;
}

.about-clinic__image img {
    width: 100%;
    height: auto;
}

.about-team {
    padding: 40px 0;
    background: #f5f5f5;
}

.about-team__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-team__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 12px;
}

.about-team__member {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: stretch;
}

.about-team__portrait {
    background: transparent;
    padding: 0;
    height: 100%;
    min-height: 480px;
    max-height: 520px;
    overflow: hidden;
    align-self: start;
}

.about-team__portrait picture {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-team__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.15);
}

.about-team__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 5px;
}

.about-team__role {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    color: #95ab97;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 25px;
}

.about-team__subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    color: #4A4A4A;
    text-align: center;
    margin: 0 0 30px;
    font-style: italic;
}

.about-team__text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    line-height: 1.8;
    color: #4A4A4A;
    margin: 0 0 15px;
}


/* ========================================
   ABOUT - VIDEO SECTION
   ======================================== */

.about-video {
    padding: 40px 0;
}

.about-video__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-video__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 12px;
}

.about-video__content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
}

.about-video__paragraph {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    line-height: 1.8;
    color: #4A4A4A;
    margin: 0 0 15px;
}

.about-video__player {
    align-self: start;
}

.about-video__wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}

.about-video__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-video__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(149, 171, 151, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.about-video__play-btn svg {
    width: 28px;
    height: 28px;
    color: #fff;
    margin-left: 3px;
}

.about-video__play-btn:hover {
    background: rgba(149, 171, 151, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.about-video__play-btn.hidden {
    display: none;
}

@media (max-width: 768px) {
    .about-video {
        padding: 50px 0;
    }

    .about-video__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-video__heading {
        font-size: 22px;
    }
}


/* ========================================
   PRICING PAGE
   ======================================== */

.pricing-page {
    padding: 40px 0;
}

.pricing-page__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.pricing-page__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 15px;
}

.pricing-page__text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    color: #4A4A4A;
    text-align: center;
    line-height: 1.7;
    margin: 0 0 40px;
}

.pricing-page__section {
    margin-bottom: 40px;
}

.pricing-page__section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: #95ab97;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #95ab97;
}

.pricing-page__category {
    margin-bottom: 25px;
}

.pricing-page__category-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    font-weight: 500;
    margin: 0 0 12px;
}

.pricing-page__category-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pricing-page__category-title a:hover {
    color: #95ab97;
}

.pricing-page__treatments {
    border-left: 2px solid #f0f0f0;
    padding-left: 20px;
}

.pricing-page__treatment {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.pricing-page__treatment-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    color: #4A4A4A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pricing-page__treatment-name:hover {
    color: #95ab97;
}

.pricing-page__treatment-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 13px;
    color: #95ab97;
    font-style: italic;
    white-space: nowrap;
    margin-left: 20px;
}

.pricing-page__note {
    margin-top: 40px;
    padding: 25px;
    background: #f5f5f5;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    line-height: 1.7;
    color: #4A4A4A;
}

.pricing-page__note a {
    color: #95ab97;
}


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

.blog-page {
    padding: 40px 0;
}

.blog-page__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.blog-page__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 20px;
}

.blog-page__text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    line-height: 1.8;
    color: #4A4A4A;
    margin: 0 0 15px;
}

.blog-page__text a {
    color: #95ab97;
}


/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-page {
    padding: 40px 0;
}

.contact-page__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-page__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.contact-page__card {
    background: #f5f5f5;
    padding: 30px;
}

.contact-page__card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 12px;
    color: #95ab97;
}

.contact-page__card-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    line-height: 1.7;
    color: #4A4A4A;
    margin: 0 0 10px;
}

.contact-page__card-text a {
    color: #4A4A4A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-page__card-text a:hover {
    color: #95ab97;
}

.contact-page__card-link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 12px;
    color: #95ab97;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-page__map {
    margin-bottom: 40px;
}

.contact-page__map iframe {
    width: 100%;
    display: block;
}


/* ========================================
   RESPONSIVE - NEW COMPONENTS
   ======================================== */

@media (max-width: 1024px) {
    .mega-menu__container {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        padding: 0 25px;
    }

    .category-grid__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .about-clinic__container {
        gap: 40px;
    }

    .about-team__member {
        grid-template-columns: 1fr 280px;
        gap: 35px;
    }

    .contact-page__cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mega Menu - Mobile */
    .mega-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        padding: 15px 0;
        background: rgba(0,0,0,0.95);
    }

    .mega-menu__container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .mega-menu__column-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .mega-menu__item a {
        font-size: 12px;
    }

    .nav__item--has-mega > .nav__link::after {
        display: none;
    }

    .nav__item--has-mega .mega-menu {
        display: none;
        opacity: 1;
        visibility: visible;
    }

    .nav__item--has-mega.is-open .mega-menu {
        display: block;
    }

    /* Category Grid */
    .category-grid__container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    /* About */
    .about-clinic__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-clinic {
        padding: 50px 0;
    }

    .about-team {
        padding: 50px 0;
    }

    .about-team__member {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-team__portrait {
        max-width: 300px;
        margin: 0 auto;
    }

    /* Contact */
    .contact-page__cards {
        grid-template-columns: 1fr;
    }

    /* Breadcrumbs */
    .breadcrumbs__container {
        padding: 0 20px;
        font-size: 11px;
    }

    .breadcrumb-bar {
        padding: 10px 15px;
        min-height: 50px;
    }

    .breadcrumb-bar__nav {
        font-size: 11px;
    }

    /* Treatment Hero Simple */
    .treatment-hero--simple {
        height: 35vh;
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .mega-menu__container {
        padding: 0 15px;
    }

    .treatments-section__heading {
        font-size: 22px;
    }

    .about-clinic__heading,
    .about-team__heading {
        font-size: 22px;
    }

    .pricing-page__section-title {
        font-size: 18px;
    }

    .pricing-page__treatment {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .pricing-page__treatment-price {
        margin-left: 0;
    }
}

/* ============================================
   BENEFITS SECTION (redesigned Key Benefits)
   Added as append — does NOT override any existing rules
   ============================================ */

.benefits {
    padding: 40px;
    background-color: var(--color-white);
}

.benefits__heading {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 30px;
}

.benefits__layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: stretch;
}

.benefits__column {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
}

.benefits__card {
    background-color: rgba(149, 171, 151, 0.07);
    border-radius: 14px;
    padding: 20px 24px;
    text-align: left;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

.benefits__column--right .benefits__card {
    transform: translateX(40px);
}

.benefits__card.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.benefits__card.is-visible:hover {
    background-color: rgba(149, 171, 151, 0.13);
    box-shadow: 0 2px 12px rgba(149, 171, 151, 0.1);
}

.benefits__card-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 400;
    color: var(--color-heading);
    margin-bottom: 6px;
}

.benefits__card-text {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.7;
    color: var(--color-text);
}

.benefits__image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.benefits__image.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.benefits__image img {
    width: 100%;
    max-width: 340px;
    height: auto;
    aspect-ratio: 340 / 440;
    border-radius: 18px;
    object-fit: cover;
}

/* Stagger delays — image first, then cards cascade left-right */
.benefits__column--left .benefits__card:nth-child(1) { transition-delay: 0.15s; }
.benefits__column--right .benefits__card:nth-child(1) { transition-delay: 0.2s; }
.benefits__column--left .benefits__card:nth-child(2) { transition-delay: 0.25s; }
.benefits__column--right .benefits__card:nth-child(2) { transition-delay: 0.3s; }
.benefits__column--left .benefits__card:nth-child(3) { transition-delay: 0.35s; }
.benefits__column--right .benefits__card:nth-child(3) { transition-delay: 0.4s; }

/* Benefits responsive — 1024px */
@media (max-width: 1024px) {
    .benefits { padding: 50px 40px; }
    .benefits__layout { grid-template-columns: 1fr 1fr; gap: 25px; }
    .benefits__image { grid-column: 1 / -1; grid-row: 1; }
    .benefits__image img { max-width: 350px; }
    .benefits__column--left { grid-column: 1; grid-row: 2; }
    .benefits__column--right { grid-column: 2; grid-row: 2; }
}

/* Benefits responsive — 768px */
@media (max-width: 768px) {
    .benefits { padding: 40px 20px; }
    .benefits__heading { font-size: 24px; margin-bottom: 25px; }
    .benefits__layout { grid-template-columns: 1fr; gap: 20px; }
    .benefits__image { grid-column: 1; grid-row: 1; }
    .benefits__image img { max-width: 300px; }
    .benefits__column--left { grid-column: 1; grid-row: 2; }
    .benefits__column--right { grid-column: 1; grid-row: 3; }
}

/* Paragraphs use natural left alignment site-wide (matching homepage). */

/* Dermal Fillers only: Read-more expander + balanced card heights */
.info-grid--clamped .info-grid__container {
    align-items: stretch;
}

.info-grid--clamped .info-grid__item {
    display: flex;
    flex-direction: column;
}

.info-grid--clamped .info-grid__text {
    hyphens: auto;
    -webkit-hyphens: auto;
}

.info-grid--clamped .info-grid__more {
    margin-top: auto;
    padding-top: 12px;
    text-align: right;
}

.info-grid--clamped .info-grid__more > summary {
    list-style: none;
    cursor: pointer;
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-primary, #95ab97);
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: color 0.2s ease;
}

.info-grid--clamped .info-grid__more > summary::-webkit-details-marker {
    display: none;
}

.info-grid--clamped .info-grid__more > summary:hover {
    color: var(--color-text);
}

.info-grid--clamped .info-grid__more > summary::after {
    content: " \203A";
    display: inline-block;
    transition: transform 0.2s ease;
}

.info-grid--clamped .info-grid__more[open] > summary::after {
    transform: rotate(90deg);
}

.info-grid--clamped .info-grid__more > .info-grid__text {
    margin-top: 14px;
    margin-bottom: 0;
}

/* Tabbed info-grid (Dermal Fillers prototype) */
.info-grid--tabs .info-grid__wrapper {
    display: block;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.info-tabs__nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 1px solid rgba(149, 171, 151, 0.3);
}

.info-tabs__nav > li {
    flex: 0 0 auto;
}

.info-tabs__tab {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 18px 28px;
    margin-bottom: -1px;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 400;
    color: var(--color-text);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.info-tabs__tab:hover {
    color: var(--color-primary, #95ab97);
    background: rgba(149, 171, 151, 0.05);
}

.info-tabs__tab.is-active {
    color: var(--color-primary, #95ab97);
    border-bottom-color: var(--color-primary, #95ab97);
    font-weight: 500;
}

.info-tabs__panels {
    padding: 36px 4px 12px;
}

.info-tabs__panel {
    display: none;
}

.info-tabs__panel.is-active {
    display: block;
    animation: info-tabs-fade 0.3s ease both;
}

.info-tabs__panel .info-grid__text + .info-grid__text {
    margin-top: 14px;
}

.info-tabs__panel .info-grid__list {
    margin-top: 14px;
}

@keyframes info-tabs-fade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .info-tabs__panel.is-active {
        animation: none;
    }
}

@media (max-width: 768px) {
    .info-grid--tabs .info-grid__wrapper {
        padding: 0 20px;
    }
    .info-tabs__nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: thin;
    }
    .info-tabs__tab {
        padding: 14px 18px;
        font-size: 15px;
        white-space: nowrap;
    }
    .info-tabs__panels {
        padding: 24px 0 8px;
    }
}

/* Expandable sub-treatment cards (used on Dermal Fillers) */
.treatment-card--expandable {
    background: #fff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.treatment-card--expandable[open] {
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
    transform: none;
}

.treatment-card--expandable:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.treatment-card--expandable[open]:hover {
    transform: none;
}

.treatment-card__summary {
    list-style: none;
    cursor: pointer;
    display: block;
}

.treatment-card__summary::-webkit-details-marker { display: none; }

.treatment-card--expandable[open] .treatment-card__summary {
    border-bottom: 1px solid rgba(149, 171, 151, 0.25);
}

/* Cards align at top; image keeps its natural size */
.category-grid__container--expandable {
    align-items: start;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    justify-content: stretch;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

.treatment-card--expandable {
    display: block;
}

.treatment-card__summary {
    display: block;
}

.treatment-card__summary > .treatment-card__content {
    display: block;
}

/* When opened, the card spans the full row — body gets wider, image stays compact */
.treatment-card--expandable[open] {
    grid-column: 1 / -1;
}

.treatment-card--expandable[open] .treatment-card__summary {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
}

.treatment-card--expandable[open] .treatment-card__image {
    max-width: 220px;
}

.treatment-card__link--toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary, #95ab97);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.treatment-card__link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
    transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
}

.treatment-card--expandable:hover .treatment-card__link-icon {
    background: var(--color-primary, #95ab97);
    color: #fff;
}

.treatment-card--expandable[open] .treatment-card__link-icon {
    transform: rotate(45deg);
    background: var(--color-primary, #95ab97);
    color: #fff;
}

.treatment-card__body {
    padding: 22px 18px;
    background: linear-gradient(180deg, rgba(149, 171, 151, 0.08), rgba(149, 171, 151, 0));
    border-top: 3px solid var(--color-primary, #95ab97);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.treatment-card__body .treatment-card__text {
    width: 100%;
}

.treatment-card__body::-webkit-scrollbar {
    width: 6px;
}

.treatment-card__body::-webkit-scrollbar-thumb {
    background: rgba(149, 171, 151, 0.5);
    border-radius: 3px;
}

.treatment-card__body::-webkit-scrollbar-track {
    background: transparent;
}

/* Smooth fade + slide-down when the card opens */
.treatment-card--expandable[open] .treatment-card__body {
    animation: treatment-card-reveal 0.35s ease both;
}

@keyframes treatment-card-reveal {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .treatment-card--expandable[open] .treatment-card__body {
        animation: none;
    }
}

/* Bottom CTA — sage pill button anchored at the foot of the body */
.treatment-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding: 11px 22px;
    background: var(--color-primary, #95ab97);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(149, 171, 151, 0.35);
}

.treatment-card__cta:hover {
    background: var(--color-heading, #191819);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(25, 24, 25, 0.18);
    color: #fff;
}

.treatment-card__cta-arrow {
    display: inline-block;
    transition: transform 0.25s ease;
}

.treatment-card__cta:hover .treatment-card__cta-arrow {
    transform: translateX(4px);
}

.treatment-card__body::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-heading, #191819);
}

.treatment-card__text {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.75;
    color: #000;
    margin: 0 0 16px;
}

/* Lead paragraph: slightly larger, regular style — no italic */
.treatment-card__text:first-of-type {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 15px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(149, 171, 151, 0.25);
}

.treatment-card__text:last-child {
    margin-bottom: 0;
}

/* Expandable card row: keep cards aligned at top so opening one doesn't push others */
.category-grid__container--expandable {
    align-items: start;
}

/* Alternating image / text rows with sage numerals (Dermal Fillers info-grid) */
.info-grid--rows .info-grid__wrapper,
.info-grid--rows {
    /* Override the default 2-column wrapper so rows can fill the page */
}

.info-rows {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.info-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 60px;
    align-items: center;
}

.info-row--reverse .info-row__media {
    order: 2;
}

.info-row__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: visible;
}

/* Imageless + numberless variant: hide media column, body fills the row */
.info-row__media--no-image {
    display: none;
}

.info-row:has(.info-row__media--no-image),
.info-row--reverse:has(.info-row__media--no-image),
.info-grid--rows-imageless:not(.info-grid--compact) .info-row {
    display: block !important;
    grid-template-columns: none !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    direction: ltr !important;
    text-align: left !important;
}

.info-grid--rows-imageless:not(.info-grid--compact) .info-rows {
    max-width: 1000px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.info-row:has(.info-row__media--no-image) .info-row__body,
.info-row--reverse:has(.info-row__media--no-image) .info-row__body,
.info-grid--rows-imageless .info-row__body {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    direction: ltr !important;
    text-align: left !important;
}

.info-grid--rows-imageless .info-row__title,
.info-grid--rows-imageless .info-row__body > * {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.info-grid--rows-imageless .info-grid__list li {
    padding-left: 15px !important;
}

.info-grid--rows-imageless .info-row__media {
    display: none;
}

/* When media is hidden, drop any reverse-direction tweaks so every row aligns the same */
.info-row--reverse:has(.info-row__media--no-image) .info-row__body,
.info-row--reverse:has(.info-row__media--no-image) {
    direction: ltr;
    text-align: left;
}

.info-row--reverse:has(.info-row__media--no-image) .info-row__media--no-image {
    order: 0;
}

.info-row--reverse .info-row__media--no-image .info-row__number {
    right: auto;
}

/* Read-more inside an info-row */
.info-row__more {
    margin-top: 12px;
}

.info-row__more > summary {
    list-style: none;
    cursor: pointer;
    display: inline-block;
    align-self: flex-start;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-primary, #95ab97);
    padding-bottom: 0;
    transition: color 0.2s ease;
}

.info-row__more > summary::-webkit-details-marker { display: none; }

.info-row__more > summary:hover {
    color: var(--color-heading, #191819);
}

.info-row__more > summary::after {
    content: " \203A";
    display: inline-block;
    transition: transform 0.2s ease;
}

.info-row__more[open] > summary::after {
    transform: rotate(90deg);
}

/* Toggle the "Read more" / "Show less" label based on open state */
.info-row__more .info-row__more-label--less {
    display: none;
}

.info-row__more[open] .info-row__more-label--more {
    display: none;
}

.info-row__more[open] .info-row__more-label--less {
    display: inline;
}

/* When open, push the toggle below the expanded text */
.info-row__more[open] {
    display: flex;
    flex-direction: column;
}

.info-row__more[open] > summary {
    order: 2;
    margin-top: 14px;
}

.info-row__more[open] > *:not(summary) {
    order: 1;
    margin-top: 0;
}

.info-row__more > *:not(summary) {
    margin-top: 14px;
    animation: info-row-reveal 0.3s ease both;
}

.info-row__more > .info-grid__text {
    margin-bottom: 0;
}

@keyframes info-row-reveal {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .info-row__more > .info-grid__text { animation: none; }
}

.info-row__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 12px 36px rgba(149, 171, 151, 0.18);
    position: relative;
    z-index: 1;
}

.info-row__number {
    position: absolute;
    top: -36px;
    left: -28px;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 110px;
    line-height: 1;
    font-weight: 400;
    color: rgba(149, 171, 151, 0.35);
    letter-spacing: -0.04em;
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

.info-row--reverse .info-row__number {
    left: auto;
    right: -28px;
}

.info-row__body {
    padding: 0 8px;
}

.info-row__title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-heading, #191819);
    line-height: 1.25;
    margin: 0 0 18px;
}

.info-row__title::after {
    display: none;
}

.info-row__body .info-grid__text {
    margin: 0 0 16px;
    line-height: 1.75;
}

.info-row__body .info-grid__text:last-child {
    margin-bottom: 0;
}

.info-row__body .info-grid__list {
    margin-top: 16px;
}

@media (max-width: 900px) {
    .info-rows {
        gap: 60px;
        padding: 0 24px;
    }
    .info-row,
    .info-row--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .info-row--reverse .info-row__media {
        order: 0;
    }
    .info-row__media {
        aspect-ratio: 16 / 10;
    }
    .info-row__number {
        font-size: 72px;
        top: -22px;
        left: -8px;
    }
    .info-row__media--no-image {
        min-height: 0;
    }
    .info-row__media--no-image .info-row__number {
        font-size: 96px;
    }
    .info-row--reverse .info-row__number {
        left: -8px;
        right: auto;
    }
    .info-row__title {
        font-size: 22px;
    }
    .info-row__body {
        padding: 0;
    }
}

/* "Read full description" button inside the expandable card body */
.treatment-card__open-modal {
    background: none;
    border: none;
    padding: 0;
    margin-top: 14px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary, #95ab97);
    transition: color 0.2s ease, gap 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.treatment-card__open-modal:hover {
    color: var(--color-heading, #191819);
}

.treatment-card__open-modal:hover > span {
    transform: translateX(3px);
}

.treatment-card__open-modal > span {
    transition: transform 0.2s ease;
    font-size: 14px;
}

/* Sub-treatment detail modal */
.treatment-modal {
    position: fixed;
    inset: 0;
    margin: auto;
    border: none;
    padding: 0;
    background: transparent;
    max-width: 640px;
    width: calc(100% - 32px);
    max-height: 85vh;
    border-radius: 6px;
    box-shadow: 0 24px 60px rgba(25, 24, 25, 0.25);
    overflow: hidden;
}

.treatment-modal::backdrop {
    background: rgba(25, 24, 25, 0.55);
    backdrop-filter: blur(2px);
}

.treatment-modal[open] {
    animation: treatment-modal-open 0.28s ease both;
}

@keyframes treatment-modal-open {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .treatment-modal[open] { animation: none; }
}

.treatment-modal__inner {
    background: #fff;
    padding: 40px 44px 36px;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

.treatment-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(149, 171, 151, 0.12);
    color: var(--color-heading, #191819);
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.treatment-modal__close:hover {
    background: var(--color-primary, #95ab97);
    color: #fff;
    transform: rotate(90deg);
}

.treatment-modal__title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    color: var(--color-heading, #191819);
    margin: 0 0 12px;
    padding-right: 30px;
    line-height: 1.25;
}

.treatment-modal__divider {
    display: none;
}

.treatment-modal__body {
    margin-bottom: 24px;
}

.treatment-modal__text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: #000;
    margin: 0 0 16px;
    white-space: pre-line;
}

.treatment-modal__text:last-child {
    margin-bottom: 0;
}

.treatment-modal__cta {
    margin-top: 0;
}

@media (max-width: 640px) {
    .treatment-modal {
        max-width: 100%;
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    .treatment-modal__inner {
        padding: 28px 22px 24px;
        max-height: 100vh;
    }
    .treatment-modal__title {
        font-size: 22px;
    }
}

/* Sub-treatment card as a modal trigger (button reset) */
.treatment-card--modal-trigger {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: #fff;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
    font-size: 0;
}

.treatment-card--modal-trigger > * {
    line-height: 1.6;
    font-size: 14px;
}

.treatment-card--modal-trigger:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.treatment-card--modal-trigger .treatment-card__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.treatment-card--modal-trigger .treatment-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    vertical-align: top;
    margin: 0;
    border: 0;
}

.treatment-card--modal-trigger:hover .treatment-card__image img {
    transform: scale(1.05);
}

.treatment-card--modal-trigger .treatment-card__content {
    display: block;
    padding: 16px 14px;
}

.treatment-card--modal-trigger .treatment-card__title {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-heading, #191819);
    margin: 0 0 6px;
}

.treatment-card--modal-trigger .treatment-card__link--toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary, #95ab97);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.treatment-card--modal-trigger .treatment-card__link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 13px;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease;
}

.treatment-card--modal-trigger:hover .treatment-card__link-icon {
    background: var(--color-primary, #95ab97);
    color: #fff;
}

/* In-card inline expand: body overlays the image area when open, card size unchanged */
.treatment-card--inline {
    position: relative;
    overflow: hidden;
}

.treatment-card--inline > summary {
    list-style: none;
    cursor: pointer;
    display: block;
}

.treatment-card--inline > summary::-webkit-details-marker { display: none; }

.treatment-card--inline .treatment-card__body {
    position: absolute;
    inset: 0;
    background: #fff;
    border-top: none;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow-y: auto;
    z-index: 5;
    animation: treatment-card-inline-fade 0.25s ease both;
    box-shadow: inset 0 0 0 1px rgba(149, 171, 151, 0.25);
}

.treatment-card--inline:not([open]) .treatment-card__body {
    display: none;
}

.treatment-card--inline[open] .treatment-card__link-icon {
    transform: rotate(45deg);
    background: var(--color-primary, #95ab97);
    color: #fff;
}

.treatment-card--inline .treatment-card__close {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 22px;
    line-height: 1;
    color: var(--color-primary, #95ab97);
    pointer-events: none;
}

.treatment-card--inline .treatment-card__text {
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.55;
    color: #000;
    margin: 0 0 8px;
}

.treatment-card--inline .treatment-card__text:first-of-type {
    font-size: 12.5px;
    font-weight: 500;
}

.treatment-card--inline .treatment-card__text:last-child {
    margin-bottom: 0;
}

@keyframes treatment-card-inline-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .treatment-card--inline .treatment-card__body { animation: none; }
}

/* Compact boxed info-grid (Polynucleotides "Our Preferred" + ICONA Pn+ products) */
.info-grid--compact {
    padding: 24px 0;
}

.info-grid--compact .info-rows {
    gap: 16px;
    max-width: 920px;
}

.info-grid--compact .info-row {
    background: linear-gradient(180deg, rgba(149, 171, 151, 0.06), rgba(255, 255, 255, 0.4));
    border: 1px solid rgba(149, 171, 151, 0.25);
    border-radius: 6px;
    padding: 22px 26px;
    box-shadow: 0 2px 10px rgba(149, 171, 151, 0.10);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.info-grid--compact .info-row:hover {
    box-shadow: 0 6px 18px rgba(149, 171, 151, 0.18);
    transform: translateY(-2px);
}

.info-grid--compact .info-row__title {
    font-size: 19px;
    margin: 0 0 10px;
}

.info-grid--compact .info-row__body .info-grid__text {
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 8px;
}

.info-grid--compact .info-row__body .info-grid__text:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .info-grid--compact .info-row {
        padding: 18px 18px;
    }
}

/* Centered info block (rendered below treatment cards — e.g. Consultations) */
.centered-info {
    background-color: var(--color-white);
    padding: 40px 60px;
    text-align: center;
}

.centered-info__container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--color-cream);
    border: 1px solid rgba(149, 171, 151, 0.3);
    border-radius: 12px;
    padding: 36px 44px;
    box-shadow: 0 4px 14px rgba(25, 24, 25, 0.04);
}

.centered-info__title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    color: var(--color-heading);
    margin: 0 0 18px;
    line-height: 1.3;
}

.centered-info__text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0 auto 16px;
    white-space: pre-line;
}

.centered-info__list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .centered-info {
        padding: 40px 20px;
    }
    .centered-info__container {
        padding: 26px 22px;
    }
}

/* ============================================
   EXPECT STEPPER — horizontal stepper + panel for "What to Expect"
   ============================================ */
.expect-stepper {
    max-width: 1000px;
    margin: 40px auto 0;
}

.expect-stepper__nav {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.expect-stepper__nav::before {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    top: 24px;
    height: 2px;
    background-color: var(--color-sage);
    opacity: 0.35;
    z-index: 0;
}

.expect-stepper__nav li {
    list-style: none;
}

.expect-stepper__step {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0;
    position: relative;
    z-index: 1;
    width: 100%;
}

.expect-stepper__circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-cream);
    border: 2px solid var(--color-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-heading);
    transition: all 0.2s ease;
}

.expect-stepper__step.is-active .expect-stepper__circle,
.expect-stepper__step:hover .expect-stepper__circle {
    background-color: var(--color-sage);
    color: #fff;
}

.expect-stepper__label {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-text-light);
    text-align: center;
}

.expect-stepper__step.is-active .expect-stepper__label {
    color: var(--color-heading);
    font-weight: 600;
}

.expect-stepper__panels {
    position: relative;
}

.expect-stepper__panel {
    display: none;
    background-color: var(--color-cream);
    border: 1px solid rgba(149, 171, 151, 0.25);
    border-radius: 12px;
    padding: 32px 40px;
    text-align: center;
}

.expect-stepper__panel.is-active {
    display: block;
}

.expect-stepper__panel-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: var(--color-heading);
    margin: 0 0 18px;
    line-height: 1.3;
    line-height: 1.3;
}

.expect-stepper__panel-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin: 0;
}

@media (max-width: 1024px) {
    .expect-stepper__label {
        font-size: 10px;
    }
}

@media (max-width: 640px) {
    .expect-stepper__nav {
        grid-template-columns: repeat(5, 1fr);
        gap: 4px;
    }
    .expect-stepper__nav::before {
        display: none;
    }
    .expect-stepper__circle {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    .expect-stepper__label {
        display: none;
    }
    .expect-stepper__panel {
        padding: 24px 22px;
    }
    .expect-stepper__panel-title {
        font-size: 20px;
    }
}



/* ============================================
   NESTED CARDS — outlined parent box with inner card grid
   (Polynucleotides "Our Preferred" + variant cards)
   ============================================ */
.nested-cards {
    padding: 40px 60px;
    background-color: var(--color-white);
}

.nested-cards__outer {
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid var(--color-sage);
    border-radius: 12px;
    padding: 36px 40px;
    background-color: rgba(149, 171, 151, 0.04);
}

.nested-cards__title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    color: var(--color-heading);
    margin: 0 0 14px;
    line-height: 1.3;
    text-align: center;
}

.nested-cards__intro {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.85;
    color: var(--color-text-light);
    margin: 0 auto 28px;
    max-width: 820px;
    text-align: center;
    white-space: pre-line;
}

.nested-cards__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.nested-cards__item {
    background-color: #fff;
    border: 1px solid rgba(149, 171, 151, 0.3);
    border-radius: 8px;
    padding: 22px 24px;
}

.nested-cards__item-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 400;
    color: var(--color-heading);
    margin: 0 0 10px;
    line-height: 1.3;
}

.nested-cards__item-text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0;
}

@media (max-width: 768px) {
    .nested-cards {
        padding: 40px 20px;
    }
    .nested-cards__outer {
        padding: 26px 22px;
    }
    .nested-cards__items {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   HIGHLIGHT-LIST — bulleted solutions list, no cards
   ============================================ */
.highlight-list {
    padding: 40px 20px 0;
    background-color: var(--color-bg);
}

.highlight-list__container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.highlight-list__title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-heading);
    margin: 0 0 12px;
    line-height: 1.3;
}

.highlight-list__intro {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0 0 20px;
}

.highlight-list__items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-list__item {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-light);
    padding-left: 20px;
    position: relative;
}

.highlight-list__item::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--color-sage);
}

.highlight-list__name {
    font-weight: 600;
    color: var(--color-sage);
    font-style: normal;
}

@media (max-width: 768px) {
    .highlight-list {
        padding: 32px 20px 0;
    }
}

/* ============================================
   TEXT-BLOCKS — plain headings + paragraphs (no box)
   ============================================ */
.text-blocks {
    padding: 40px 20px;
}

.text-blocks__container {
    max-width: 1000px;
    margin: 0 auto;
}

.text-blocks__title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-heading);
    margin: 0 0 24px;
    line-height: 1.3;
}

.text-blocks__item {
    margin-bottom: 32px;
}

.text-blocks__item:last-child {
    margin-bottom: 0;
}

.text-blocks__item-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-heading);
    margin: 0 0 12px;
    line-height: 1.3;
}

.text-blocks__item-text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0 0 12px;
}

.text-blocks__item-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .text-blocks {
        padding: 40px 20px;
    }
    .text-blocks__item-title {
        font-size: 20px;
    }
}

/* ============================================
   TEXT-WITH-PLACEHOLDER — 3 (or N) text columns + a single image placeholder
   No box around the text. Mirrors the doc layout.
   ============================================ */
.text-with-placeholder {
    padding: 40px 60px;
}

.text-with-placeholder__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    align-items: start;
}

.text-with-placeholder__cols {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 24px;
}

.text-with-placeholder__col {
    /* Each column at its own natural height — visible text shows in full
       (no truncation), Read more sits directly under it. align-self: start
       prevents columns from stretching when neighbours expand, so opening
       one Read more does not shift the others. */
    align-self: start;
}

.text-with-placeholder--equal-cols .text-with-placeholder__cols {
    align-items: stretch;
}

.text-with-placeholder--equal-cols .text-with-placeholder__col {
    align-self: stretch;
    display: flex;
    flex-direction: column;
}

.text-with-placeholder--equal-cols .text-with-placeholder__col > .info-row__more {
    margin-top: 0;
    padding-top: 0;
}

.text-with-placeholder__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-heading);
    margin: 0 0 12px;
    line-height: 1.3;
}

.text-with-placeholder__text {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0 0 12px;
    white-space: pre-line;
}

.text-with-placeholder__text:last-child {
    margin-bottom: 0;
}

.text-with-placeholder__image {
    aspect-ratio: 1 / 1;
    background-color: rgba(149, 171, 151, 0.15);
    border: 1px dashed rgba(149, 171, 151, 0.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-with-placeholder__image-label {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-sage);
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .text-with-placeholder__inner {
        grid-template-columns: 1fr;
    }
    .text-with-placeholder__image {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .text-with-placeholder {
        padding: 40px 20px;
    }
    .text-with-placeholder__cols {
        grid-auto-flow: row;
        grid-auto-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.text-with-placeholder__list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.7;
    color: var(--color-text);
}

.text-with-placeholder__list li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 4px;
}

.text-with-placeholder__list li::before {
    content: '•';
    color: var(--color-sage);
    position: absolute;
    left: 0;
}

/* FAQ answer bullet list */
.faq__bullets {
    list-style: none;
    padding: 0;
    margin: 8px 0;
}
.faq__bullets li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    line-height: 1.7;
}
.faq__bullets li::before {
    content: '•';
    color: var(--color-sage);
    position: absolute;
    left: 0;
}

/* Plain ampersand styling — replaces the ornate Playfair "&" glyph in titles */
.amp {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    font-style: normal;
}

/* Ensure paragraph breaks (\n\n in JSON) render as visible breaks across all body text classes */
.text-with-placeholder__text,
.expect-stepper__panel-text,
.features-grid__text,
.nested-cards__item-text,
.nested-cards__intro,
.treatment-intro__text,
.expect-section__candidate-text {
    white-space: pre-line;
}

/* Keep 3-column treatment intro blocks balanced while collapsed. */
@media (min-width: 641px) {
    .text-with-placeholder--equal-cols .text-with-placeholder__cols:not(:has(.info-row__more[open])) .text-with-placeholder__col > .info-row__more {
        margin-top: auto;
        padding-top: 16px;
    }

    .text-with-placeholder--equal-cols .text-with-placeholder__col:has(> .info-row__more:not([open])) > .text-with-placeholder__text:first-of-type {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 7;
        line-clamp: 7;
        overflow: hidden;
        white-space: normal;
    }

    .text-with-placeholder--equal-cols .text-with-placeholder__col:has(> .info-row__more[open]) > .text-with-placeholder__text:first-of-type {
        display: block;
        overflow: visible;
        white-space: pre-line;
    }
}

/* About page — Meet the Team heading + subtitle (centered) */
.about-team-preview .about-video__heading {
    text-align: center;
}
.about-team-preview__subtitle {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-text-light);
    margin: 12px 0 0;
    text-align: center;
}

/* Reverse member layout: photo left, bio right */
.about-team__member--reverse {
    direction: rtl;
}
.about-team__member--reverse > * {
    direction: ltr;
}

@media (max-width: 768px) {
    .treatment-inline-cta {
        padding: 24px 20px;
    }

    .treatment-inline-cta__inner {
        grid-template-columns: 1fr;
        padding: 26px 22px;
    }

    .treatment-inline-cta__button {
        text-align: center;
        white-space: normal;
        width: 100%;
    }
}
