/* Elegant landing — Nutrition Planett logo palette: soft green + coral + neutral gray */

[x-cloak] {
    display: none !important;
}

:root {
    /* Logo green — figure & leaf */
    --primary: #58b05c;
    --primary-dark: #449948;
    --primary-light: #eef8ef;
    --primary-rgb: 88, 176, 92;

    /* Logo coral — wordmark & utensils */
    --accent-coral: #de6b6b;
    --accent-coral-dark: #c85555;
    --accent-coral-light: #fdf1f1;
    --accent-rgb: 222, 107, 107;

    --accent: var(--accent-coral);

    /* Logo ring gray + readable neutrals */
    --neutral-dark: #454542;
    --neutral-gray: #8a8680;
    --neutral-light: #f4f3f1;
    --neutral-ring: #d3d3d3;
    --white: #ffffff;
    --surface: #fffefb;

    --shadow-sm: 0 1px 2px rgba(69, 69, 66, 0.05), 0 2px 10px rgba(var(--primary-rgb), 0.07);
    --shadow: 0 4px 18px rgba(69, 69, 66, 0.07), 0 2px 8px rgba(var(--primary-rgb), 0.06);
    --shadow-lg: 0 18px 44px rgba(69, 69, 66, 0.09), 0 8px 18px rgba(var(--primary-rgb), 0.08);
    --radius: 12px;
    --spacing-xl: 5.5rem;
    --spacing-lg: 3.5rem;
    --spacing-md: 2.5rem;
    --spacing-sm: 1.5rem;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

.site-elegant {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.7;
    color: var(--neutral-dark);
    background: radial-gradient(
        ellipse 120% 80% at 50% -20%,
        rgba(var(--primary-rgb), 0.06) 0%,
        transparent 55%
        ),
        linear-gradient(180deg, var(--neutral-light) 0%, var(--white) 32%, var(--white) 100%);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-elegant h1,
.site-elegant h2,
.site-elegant h3,
.site-elegant h4 {
    font-family: 'Lora', Georgia, serif;
    line-height: 1.25;
    color: var(--neutral-dark);
    font-weight: 600;
}

.site-elegant h1 {
    font-size: 3rem;
    font-weight: 700;
}

.site-elegant h2 {
    font-size: 2.25rem;
}

.site-elegant h3 {
    font-size: 1.5rem;
}

.site-elegant h4 {
    font-size: 1.1rem;
}

.site-elegant main section p,
.site-elegant main .lead {
    color: var(--neutral-gray);
    font-size: 1rem;
    line-height: 1.75;
}

/* Contact page coral banner — overrides global h1/p colours (elegant.css loads after Tailwind) */
.site-elegant main .contact-page section.contact-coral-banner {
    color: #fff;
}

.site-elegant main .contact-page .contact-coral-banner__title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #ffffff !important;
    font-size: clamp(1.375rem, 2.8vw, 2rem) !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    margin: 0;
}

.site-elegant main .contact-page .contact-coral-banner__lead {
    color: rgba(255, 255, 255, 0.96) !important;
    font-size: 0.9375rem !important;
    line-height: 1.65 !important;
    margin: 0;
}

@media (min-width: 640px) {
    .site-elegant main .contact-page .contact-coral-banner__lead {
        font-size: 1.0625rem !important;
    }
}

.site-elegant main .contact-page .contact-coral-banner__label {
    color: #ffffff !important;
    opacity: 0.92;
}

.site-elegant main .contact-page .contact-coral-banner__value,
.site-elegant main .contact-page .contact-coral-banner__link {
    color: rgba(255, 255, 255, 0.98) !important;
}

.site-elegant main .contact-page .contact-coral-banner__link:hover {
    color: #ffffff !important;
}

.site-elegant main {
    flex: 1;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Header */
.site-elegant header.site-nav {
    background: rgba(255, 253, 249, 0.88);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-elegant header.site-nav nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.site-elegant .logo {
    font-family: 'Nunito', 'Inter', system-ui, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-coral);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.site-elegant .logo:hover {
    color: var(--primary);
}

.site-elegant .logo:hover .logo-text {
    color: inherit;
}

.site-elegant .logo--lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    max-width: min(100%, 22rem);
}

.site-elegant .logo-img {
    display: block;
    height: 2.75rem;
    width: auto;
    max-width: 10rem;
    flex-shrink: 0;
    object-fit: contain;
}

.site-elegant .logo .logo-text {
    font-family: 'Nunito', 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.15;
    color: inherit;
}

.elegant-menu-btn {
    display: none;
}

.site-elegant .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.site-elegant .nav-links li a {
    text-decoration: none;
    color: var(--neutral-dark);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.site-elegant .nav-links li a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.site-elegant .nav-links li a:not(.btn):hover {
    color: var(--primary);
}

.site-elegant .nav-links li a:not(.btn):hover::after {
    width: 100%;
}

.site-elegant .btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.95rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 253, 249, 0.12);
    cursor: pointer;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
    font-size: 0.95rem;
    text-align: center;
    font-family: 'Inter', system-ui, sans-serif;
    box-shadow: 0 2px 10px rgba(var(--primary-rgb), 0.22);
}

.site-elegant .btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.site-elegant .btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}

.site-elegant .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.site-elegant .btn-sm-nav {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
}

/* Site top bar (FitMeal-style) */
.site-top-bar {
    background: var(--neutral-dark);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-top-bar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.75rem;
    padding: 0.55rem 0;
}

.site-top-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-top-bar__item:hover {
    color: #fff;
}

.site-top-bar__item--muted {
    color: rgba(255, 255, 255, 0.72);
}

.site-top-bar__icon {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Hero slider (nutritionist homepage) */
.hero-slider-section {
    position: relative;
    background: var(--neutral-dark);
}

.hero-expertise-stack {
    position: relative;
}

.hero-expertise-stack__lower {
    position: relative;
    z-index: 4;
    margin-top: clamp(-4rem, -7vh, -3rem);
    padding: 0 0 clamp(2.5rem, 4vw, 3.5rem);
    background: transparent;
    overflow: visible;
}

.hero-expertise-stack__lower::before {
    display: none;
}

.hero-expertise-stack__lower > * {
    position: relative;
    z-index: 1;
}

.hero-slider {
    width: 100%;
    min-height: clamp(640px, 90vh, 960px);
}

.hero-slider__slide {
    position: relative;
    min-height: clamp(640px, 90vh, 960px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-slider__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(20, 28, 22, 0.82) 0%, rgba(20, 28, 22, 0.45) 52%, rgba(20, 28, 22, 0.25) 100%);
    z-index: 1;
}

.hero-slider__content {
    position: relative;
    z-index: 2;
    padding: clamp(4.5rem, 8vh, 6.5rem) 0 clamp(6rem, 12vh, 9rem);
    max-width: 42rem;
}

.hero-slider__title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.35rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff !important;
    margin: 0 0 1rem;
}

.hero-slider__lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92) !important;
    margin: 0 0 1.75rem;
}

.hero-slider__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-slider__btn {
    display: inline-block;
    padding: 0.85rem 1.65rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-slider__btn--primary {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
}

.hero-slider__btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-slider__btn--ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.75);
}

.hero-slider__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hero-slider__pagination {
    bottom: 1.25rem !important;
    z-index: 3;
}

.hero-slider__pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.45;
}

.hero-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary);
}

.hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: var(--neutral-dark);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: background 0.2s ease;
}

.hero-slider__arrow:hover {
    background: #fff;
}

.hero-slider__arrow--prev {
    left: 1rem;
}

.hero-slider__arrow--next {
    right: 1rem;
}

/* Specialty marquee */
.specialty-marquee {
    background: var(--primary-dark);
    color: #fff;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.specialty-marquee__track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    padding: 0.85rem 0;
    animation: specialty-marquee 28s linear infinite;
}

.specialty-marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.specialty-marquee__dot {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.65rem;
}

@keyframes specialty-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .specialty-marquee__track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        gap: 0.75rem 1.25rem;
    }
}

/* Expertise offer strip (FitMeal-style flat boxes) */
.expertise-offers {
    padding: 0;
}

.expertise-offers__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.expertise-offers-swiper {
    overflow: hidden;
    border-radius: 1.25rem;
    box-shadow: 0 10px 32px rgba(69, 69, 66, 0.14);
}

.expertise-offers-swiper .swiper-slide {
    height: auto;
}

.expertise-offer-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-height: 9.5rem;
    height: 100%;
    padding: 1.75rem 1.35rem;
    border-radius: 0;
    box-shadow: none;
}

.expertise-offer-card__icon {
    flex-shrink: 0;
    width: 2.75rem;
    font-size: 2.1rem;
    line-height: 1;
    margin-top: 0.15rem;
}

.expertise-offer-card__body {
    flex: 1;
    min-width: 0;
}

.expertise-offer-card__title {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.5rem;
}

.expertise-offer-card__line {
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.55;
    margin: 0;
}

/* Tone 1 — white */
.expertise-offer-card--tone-1 {
    background: #fff;
}

.expertise-offer-card--tone-1 .expertise-offer-card__title {
    color: var(--neutral-dark) !important;
}

.expertise-offer-card--tone-1 .expertise-offer-card__line {
    color: var(--neutral-gray) !important;
}

/* Tone 2 — brand green */
.expertise-offer-card--tone-2 {
    background: var(--primary);
}

.expertise-offer-card--tone-2 .expertise-offer-card__title {
    color: #fff !important;
}

.expertise-offer-card--tone-2 .expertise-offer-card__line {
    color: rgba(255, 255, 255, 0.92) !important;
}

/* Tone 3 — dark */
.expertise-offer-card--tone-3 {
    background: #2e3338;
}

.expertise-offer-card--tone-3 .expertise-offer-card__title,
.expertise-offer-card--tone-3 .expertise-offer-card__line {
    color: #fff !important;
}

.expertise-offer-card--tone-3 .expertise-offer-card__line {
    color: rgba(255, 255, 255, 0.82) !important;
}

/* Tone 4 — soft green */
.expertise-offer-card--tone-4 {
    background: var(--primary-light);
}

.expertise-offer-card--tone-4 .expertise-offer-card__title {
    color: var(--neutral-dark) !important;
}

.expertise-offer-card--tone-4 .expertise-offer-card__line {
    color: var(--neutral-gray) !important;
}

@media (max-width: 991px) {
    .hero-expertise-stack__lower {
        margin-top: -2.5rem;
    }

    .expertise-offer-card {
        min-height: 8.5rem;
        padding: 1.35rem 1.15rem;
    }

    .expertise-offer-card__icon {
        font-size: 1.75rem;
        width: 2.25rem;
    }

    .expertise-offer-card__title {
        font-size: 1rem;
    }

    .expertise-offer-card__line {
        font-size: 0.78rem;
    }
}

/* Site 1 — green promo hero banner */
.nutrition-promo-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(125deg, #5aab3e 0%, #6ec045 38%, #7dcc52 100%);
    color: #fff;
    padding: 4rem 0 6.25rem;
    min-height: clamp(420px, 52vh, 560px);
}

.nutrition-promo-banner__waves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.nutrition-promo-banner__wave {
    position: absolute;
    bottom: 0;
    width: 45%;
    height: 5rem;
    color: rgba(45, 110, 30, 0.22);
}

.nutrition-promo-banner__wave--left {
    left: 0;
}

.nutrition-promo-banner__wave--right {
    right: 0;
}

.nutrition-promo-banner__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3.5rem;
    align-items: center;
    min-height: inherit;
}

.nutrition-promo-banner__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.92);
}

.nutrition-promo-banner__title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(2rem, 4.2vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1.35rem;
    color: #fff !important;
}

.nutrition-promo-banner__title-line {
    display: block;
}

.nutrition-promo-banner__lead {
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 0 0 1.75rem;
    max-width: 32rem;
    color: rgba(255, 255, 255, 0.94) !important;
}

.nutrition-promo-banner__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.nutrition-promo-banner__btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nutrition-promo-banner__btn--primary {
    background: #fff;
    color: var(--primary-dark);
    border: 2px solid #fff;
}

.nutrition-promo-banner__btn--primary:hover {
    transform: translateY(-2px);
    background: #f4fff4;
}

.nutrition-promo-banner__btn--ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.75);
}

.nutrition-promo-banner__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

.nutrition-promo-banner__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.nutrition-promo-banner__image {
    width: 100%;
    max-width: 580px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.12));
    animation: promo-float 5s ease-in-out infinite;
}

@keyframes promo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
    .nutrition-promo-banner__image {
        animation: none;
    }
}

.nutrition-promo-banner__placeholder {
    font-size: 5rem;
    opacity: 0.35;
}

.nutrition-promo-banner--fallback {
    text-align: center;
    padding: 4rem 0;
}

.nutrition-promo-banner--fallback h1 {
    color: #fff !important;
}

/* Hero features strip — four boxes with gaps */
.hero-features-strip {
    position: relative;
    z-index: 3;
    margin-top: -3.25rem;
    padding: 0 0 3rem;
    background: var(--white);
}

.hero-features-strip__bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
}

.hero-features-strip__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.35rem 1.1rem;
    min-height: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(44, 48, 40, 0.09);
}

.hero-features-strip__icon {
    flex-shrink: 0;
    width: 2.65rem;
    height: 2.65rem;
}

.hero-features-strip__icon svg {
    width: 100%;
    height: 100%;
}

.hero-features-strip__title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.35rem;
}

.hero-features-strip__desc {
    font-size: 0.8125rem;
    line-height: 1.5;
    margin: 0;
}

.hero-features-strip__item--1 {
    background: #fff;
}

.hero-features-strip__item--1 .hero-features-strip__icon {
    color: #6ec045;
}

.hero-features-strip__item--1 .hero-features-strip__title {
    color: #1e2420;
}

.hero-features-strip__item--1 .hero-features-strip__desc {
    color: #6b7280;
}

.hero-features-strip__item--2 {
    background: linear-gradient(135deg, #6ec045 0%, #7dcc52 100%);
}

.hero-features-strip__item--2 .hero-features-strip__icon {
    color: #fff;
}

.hero-features-strip__item--2 .hero-features-strip__title {
    color: #fff;
}

.hero-features-strip__item--2 .hero-features-strip__desc {
    color: rgba(30, 60, 20, 0.82);
}

.hero-features-strip__item--3 {
    background: linear-gradient(135deg, #2a3330 0%, #1e2420 100%);
}

.hero-features-strip__item--3 .hero-features-strip__icon {
    color: #7dcc52;
}

.hero-features-strip__item--3 .hero-features-strip__title {
    color: #fff;
}

.hero-features-strip__item--3 .hero-features-strip__desc {
    color: rgba(255, 255, 255, 0.78);
}

.hero-features-strip__item--4 {
    background: var(--primary-light);
}

.hero-features-strip__item--4 .hero-features-strip__icon {
    color: var(--primary-dark);
}

.hero-features-strip__item--4 .hero-features-strip__title {
    color: #1e2420;
}

.hero-features-strip__item--4 .hero-features-strip__desc {
    color: #5a6b58;
}

@media (max-width: 1100px) {
    .hero-features-strip__bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 900px) {
    .nutrition-promo-banner {
        padding: 3rem 0 5rem;
        min-height: auto;
    }

    .nutrition-promo-banner__inner {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
    }

    .nutrition-promo-banner__lead {
        margin-left: auto;
        margin-right: auto;
    }

    .nutrition-promo-banner__cta {
        justify-content: center;
    }

    .nutrition-promo-banner__visual {
        order: -1;
        min-height: 240px;
    }

    .hero-features-strip {
        margin-top: -2rem;
    }

    .hero-features-strip__bar {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .hero-features-strip__item {
        padding: 1.2rem 1rem;
    }
}

/* Hero — improved split layout (image | copy | stats) */
.hero.hero--improved {
    padding: 3rem 0;
    background: linear-gradient(135deg, #faf8f3 0%, #f3ede3 50%, #ede5d9 100%);
    position: relative;
    overflow: hidden;
}

.hero.hero--improved::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.08);
    z-index: 0;
}

.hero.hero--improved::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 10%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.1);
    z-index: 0;
    pointer-events: none;
}

.hero--improved .deco-circle-3 {
    top: 40%;
    right: 5%;
    width: 120px;
    height: 120px;
    background: rgba(var(--primary-rgb), 0.07);
    border: 2px solid rgba(var(--primary-rgb), 0.15);
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero--improved .hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.5rem 3rem;
    align-items: center;
}

.hero-layout--with-stats {
    grid-template-columns: 1.2fr 1fr 0.85fr;
}

.hero-layout--no-stats {
    grid-template-columns: 1.05fr 1.2fr;
    max-width: 960px;
    margin: 0 auto;
}

/* Left column: image + floating badges */
.hero-image-section {
    position: relative;
}

.hero-image-container {
    position: relative;
    aspect-ratio: 1;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        var(--primary-light) 0%,
        rgba(var(--accent-rgb), 0.12) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-layout--no-stats .hero-image-container {
    max-width: 420px;
    margin: 0 auto;
}

.hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-image-content {
    font-size: clamp(3rem, 12vw, 5rem);
    opacity: 0.45;
    line-height: 1;
    z-index: 0;
}

.image-deco-circle {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.08);
    border: 2px dashed rgba(var(--primary-rgb), 0.18);
    z-index: 2;
    pointer-events: none;
}

.hero--improved .floating-badge {
    position: absolute;
    background: var(--white);
    padding: 0.75rem 1.2rem;
    border-radius: 25px;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--primary-dark);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    z-index: 3;
}

.hero--improved .floating-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.hero--improved .badge-top {
    top: -15px;
    left: 12px;
}

.hero--improved .badge-bottom {
    bottom: 16px;
    right: -8px;
}

/* Center column */
.hero-content--split {
    text-align: left;
    max-width: none;
    margin: 0;
}

.hero--improved .hero-content--split h1 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

.site-elegant main .hero--improved .hero-lead {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--neutral-gray) !important;
    max-width: 38rem;
}

.hero--improved .hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    justify-content: flex-start;
}

.hero--improved .trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--neutral-gray);
}

.hero--improved .trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* Right: stat sidebar */
.stats-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-stat-box {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.hero-stat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.hero-stat-box.stat-box--1 {
    border-left-color: var(--primary);
}

.hero-stat-box.stat-box--2 {
    border-left-color: var(--accent-coral);
}

.hero-stat-box.stat-box--3 {
    border-left-color: var(--primary);
}

.hero-stat-box .stat-number {
    font-family: 'Lora', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    line-height: 1.2;
}

.hero-stat-box.stat-box--1 .stat-number {
    color: var(--primary);
}

.hero-stat-box.stat-box--2 .stat-number {
    color: var(--accent-coral-dark);
}

.hero-stat-box.stat-box--3 .stat-number {
    color: var(--primary);
}

.hero-stat-box .stat-label {
    font-size: 0.8rem;
    color: var(--neutral-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Generic stat-box (about page etc.) */
.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(var(--primary-rgb), 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

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

.stat-number {
    font-family: 'Lora', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--neutral-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .hero-layout--with-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hero-layout--with-stats .stats-sidebar {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: stretch;
    }

    .hero-layout--with-stats .hero-stat-box {
        flex: 1;
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .hero.hero--improved {
        padding: 2rem 0;
    }

    .hero-layout--with-stats,
    .hero-layout--no-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-layout--with-stats .stats-sidebar {
        flex-direction: row;
        gap: 1rem;
    }

    .hero-stat-box {
        flex: 1;
        text-align: center;
        border-left: none !important;
        border-top: 4px solid var(--primary);
    }

    .hero-stat-box.stat-box--2 {
        border-top-color: var(--accent-coral);
    }

    .hero-stat-box.stat-box--3 {
        border-top-color: var(--primary);
    }

    .hero--improved .hero-cta {
        flex-direction: column;
    }

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

    .hero-image-container {
        aspect-ratio: 16 / 9;
        max-height: 280px;
    }
}

/* About */
.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--surface);
}

.about-section--layout {
    position: relative;
    overflow: hidden;
    background: var(--white);
    padding: clamp(4rem, 7vw, 6rem) 0;
}

.about-section__shape {
    position: absolute;
    border-radius: 3rem;
    pointer-events: none;
    z-index: 0;
}

.about-section__shape--tl {
    top: -4rem;
    right: -6rem;
    width: min(42vw, 420px);
    height: min(42vw, 420px);
    background: rgba(var(--primary-rgb), 0.12);
}

.about-section__shape--br {
    bottom: -5rem;
    left: -4rem;
    width: min(28vw, 280px);
    height: min(28vw, 280px);
    background: rgba(var(--accent-rgb), 0.08);
}

.about-section--layout .container {
    position: relative;
    z-index: 1;
}

.about-layout-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.about-layout-media__stack {
    position: relative;
    min-height: 420px;
}

.about-layout-media__photo {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--primary-light);
}

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

.about-layout-media__photo--back {
    position: absolute;
    top: 0;
    left: 0;
    width: 58%;
    aspect-ratio: 3 / 4;
    z-index: 1;
}

.about-layout-media__photo--front {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 62%;
    aspect-ratio: 3 / 4;
    z-index: 2;
}

.about-layout-media__photo--video {
    display: block;
    text-decoration: none;
}

.about-layout-media__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 28, 22, 0.28);
    color: #fff;
    font-size: 2rem;
    transition: background 0.2s ease;
}

.about-layout-media__photo--video:hover .about-layout-media__play {
    background: rgba(20, 28, 22, 0.4);
}

.about-layout-media__photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: var(--neutral-gray);
    min-height: 280px;
}

.about-layout-copy__head {
    margin-bottom: 1.25rem;
}

.about-layout-copy__title {
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    line-height: 1.2;
    margin: 0 0 0.75rem;
    max-width: 22ch;
}

.about-layout-copy__subtitle {
    font-size: 1.05rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin: 0;
}

.about-layout-copy__body p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--neutral-gray);
    margin: 0 0 1rem;
}

.about-layout-checklist {
    margin: 1.75rem 0 0;
}

.about-layout-checklist__heading {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--neutral-dark) !important;
}

.about-layout-checklist__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.about-layout-checklist__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--neutral-dark);
}

.about-layout-checklist__icon {
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    aspect-ratio: 3 / 4;
    background: linear-gradient(
        135deg,
        var(--primary-light) 0%,
        rgba(var(--primary-rgb), 0.08) 45%,
        rgba(var(--accent-rgb), 0.12) 100%
    );
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--neutral-gray);
}

.about-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about-image.placeholder::before {
    content: '👨‍⚕️';
    font-size: 6rem;
    opacity: 0.3;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Placeholder copy sits above the decorative glyph */
.about-image.placeholder {
    position: relative;
    z-index: 0;
    font-size: 0.95rem;
    padding: 1.5rem;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0;
}

.credential-badge {
    display: inline-block;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(var(--primary-rgb), 0.22);
}

.about-cta {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* About — personality layout (legacy, kept for other pages) */
.about-section--personality {
    background: var(--white);
}

.about-personality-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
    align-items: center;
}

.about-photo-card,
.about-video-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
    background: var(--primary-light);
}

.about-photo-card img,
.about-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-photo-card--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: var(--neutral-gray);
}

.about-video-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 28, 22, 0.28);
    color: #fff;
    font-size: 2rem;
    transition: background 0.2s ease;
}

.about-video-card:hover .about-video-card__play {
    background: rgba(20, 28, 22, 0.4);
}

.about-personality__title {
    margin-bottom: 0.75rem;
}

.about-personality__subtitle {
    font-size: 1.05rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-personality-facts {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.about-personality-facts a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
}

.about-personality-facts a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .about-layout-grid {
        grid-template-columns: 1fr;
    }

    .about-layout-media {
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }

    .about-layout-media__stack {
        min-height: 360px;
    }

    .about-layout-copy__title {
        max-width: none;
    }

    .about-personality-grid {
        grid-template-columns: 1fr;
    }

    .about-personality-media {
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-slider__content {
        padding: 3rem 0 4rem;
    }

    .hero-slider__arrow {
        display: none;
    }
}

/* Services */
.services-section {
    padding: var(--spacing-xl) 0;
    background: var(--neutral-light);
}

.services-section > .container > h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--neutral-gray);
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    border: 1px solid rgba(var(--primary-rgb), 0.07);
    border-top: 2px solid rgba(var(--primary-rgb), 0.38);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-card .btn {
    width: 100%;
}

/* Services — photo cards */
.services-section--photo {
    background: transparent;
}

.homepage-section--muted {
    background: #f3f4f2;
}

.homepage-section--mint {
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.05) 100%);
}

.homepage-section--white {
    background: var(--white);
}

.homepage-section--brand {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #6bc46f 100%);
}

.homepage-body .services-section,
.homepage-body .testimonials-section,
.homepage-body .newsletter-band,
.homepage-body .contact-cta-section,
.homepage-body .location-map-section {
    background: transparent;
}

.homepage-body .homepage-section--muted {
    background: #f3f4f2;
}

.homepage-body .homepage-section--mint {
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.05) 100%);
}

.homepage-body .homepage-section--white {
    background: var(--white);
}

.homepage-body .homepage-section--brand {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #6bc46f 100%);
}

.services-section__header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 3rem;
}

.services-section__header .section-eyebrow {
    justify-content: center;
}

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

.service-photo-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(var(--primary-rgb), 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.service-photo-card__image-link {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--primary-light);
}

.service-photo-card__image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.service-photo-card:hover .service-photo-card__image-link img {
    transform: scale(1.04);
}

.service-photo-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    opacity: 0.4;
}

.service-photo-card__body {
    padding: 1.35rem 1.25rem 1.5rem;
}

.service-photo-card__body h3 {
    margin-bottom: 0.65rem;
    font-size: 1.15rem;
}

.service-photo-card__body h3 a {
    color: inherit;
    text-decoration: none;
}

.service-photo-card__body h3 a:hover {
    color: var(--primary-dark);
}

.service-photo-card__body p {
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
}

.service-photo-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
}

.service-photo-card__link:hover {
    color: var(--primary);
    text-decoration: underline;
}

@media (max-width: 900px) {
    .services-photo-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 1100px) and (min-width: 901px) {
    .services-photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Testimonials */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background: var(--surface);
}

.testimonials-section > .container > h2 {
    text-align: center;
    margin-bottom: 3.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--neutral-light);
    padding: 2.5rem;
    border-radius: var(--radius);
    border-left: 3px solid rgba(var(--primary-rgb), 0.55);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.testimonial-quote {
    font-family: 'Lora', Georgia, serif;
    font-size: 2rem;
    color: var(--accent-coral);
    opacity: 0.28;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--neutral-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--neutral-dark);
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--accent-coral-dark);
    font-weight: 500;
}

/* Resources */
.resources-section {
    padding: var(--spacing-xl) 0;
    background: var(--neutral-light);
}

.resources-section > .container > h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.resources-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--neutral-gray);
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.resource-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(var(--primary-rgb), 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.resource-image {
    height: 200px;
    background: linear-gradient(
        135deg,
        var(--primary-light) 0%,
        rgba(var(--primary-rgb), 0.1) 42%,
        rgba(var(--accent-rgb), 0.2) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.resource-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.resource-tag {
    display: inline-block;
    background: rgba(var(--accent-rgb), 0.92);
    color: var(--white);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    width: fit-content;
}

.resource-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.resource-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.resource-card a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-card a:hover {
    color: var(--accent-coral-dark);
}

/* Contact */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--neutral-light) 100%);
}

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

.contact-section > .container > .contact-container > h2 {
    margin-bottom: 1rem;
}

.contact-intro {
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.home-contact-form {
    text-align: left;
}

.home-contact-form input,
.home-contact-form textarea,
.home-contact-form select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(110, 106, 98, 0.18);
    border-radius: var(--radius);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    background: var(--surface);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.home-contact-form input:focus,
.home-contact-form textarea:focus,
.home-contact-form select:focus {
    outline: none;
    border-color: rgba(var(--primary-rgb), 0.45);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

.home-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .home-contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(var(--primary-rgb), 0.12);
}

.contact-method-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.contact-method a:hover {
    color: var(--primary-dark);
}

/* Section eyebrow (Healthy Living style) */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 0.75rem;
}

.section-eyebrow--accent {
    color: var(--accent-coral);
}

.section-head {
    text-align: center;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.section-head__title {
    margin-bottom: 0.75rem;
}

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

/* Testimonials slider */
.testimonials-section--slider {
    background: transparent;
}

.testimonials-section--slider .testimonial-slide {
    background: var(--white);
    border-radius: 1.25rem;
    box-shadow: 0 8px 28px rgba(69, 69, 66, 0.08);
}

.testimonials-section__header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
}

.testimonials-section__title {
    margin-bottom: 0.75rem;
}

.testimonials-section__intro {
    color: var(--neutral-gray);
    font-size: 1.05rem;
    margin: 0;
}

.testimonials-section__empty {
    text-align: center;
    color: var(--neutral-gray);
}

.testimonials-swiper-wrap {
    max-width: 52rem;
    margin: 0 auto;
}

.testimonial-slide {
    margin: 0;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    border: 1px solid rgba(var(--primary-rgb), 0.08);
}

.testimonial-slide__quote {
    font-family: 'Lora', Georgia, serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--accent-coral);
    opacity: 0.35;
    margin-bottom: 0.5rem;
}

.testimonial-slide__text {
    font-size: 1.125rem;
    line-height: 1.85;
    color: var(--neutral-dark);
    font-style: italic;
    margin: 0 0 1.5rem;
}

.testimonial-slide__footer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-style: normal;
}

.testimonial-slide__author {
    font-weight: 700;
    font-size: 1rem;
    color: var(--neutral-dark);
    font-style: normal;
}

.testimonial-slide__location {
    font-size: 0.875rem;
    color: var(--accent-coral-dark);
    font-weight: 500;
}

.testimonials-swiper__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.75rem;
}

.testimonials-swiper__btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1.5px solid rgba(var(--primary-rgb), 0.35);
    background: var(--white);
    color: var(--primary-dark);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.testimonials-swiper__btn:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}

.testimonials-swiper__pagination {
    position: static !important;
    width: auto !important;
}

.testimonials-swiper__pagination .swiper-pagination-bullet {
    background: var(--neutral-gray);
    opacity: 0.45;
}

.testimonials-swiper__pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

/* Newsletter band */
.newsletter-band {
    padding: var(--spacing-lg) 0;
    background: transparent;
    color: var(--white);
}

.newsletter-band__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.newsletter-band__copy {
    flex: 1 1 16rem;
    max-width: 32rem;
}

.newsletter-band__title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white) !important;
    margin: 0 0 0.5rem;
}

.newsletter-band__lead {
    color: rgba(255, 255, 255, 0.92) !important;
    margin: 0;
    font-size: 1rem;
}

.newsletter-band__form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex: 1 1 18rem;
    max-width: 28rem;
    align-items: stretch;
}

.newsletter-band__honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.newsletter-band__input {
    flex: 1 1 12rem;
    min-width: 0;
    padding: 0.85rem 1.15rem;
    border: none;
    border-radius: 999px;
    font-size: 0.95rem;
}

.newsletter-band__submit {
    background: var(--neutral-dark) !important;
    border-color: transparent !important;
    border-radius: 999px !important;
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
}

.newsletter-band__submit:hover {
    background: #2a2a28 !important;
}

.newsletter-band__feedback {
    flex: 1 1 100%;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.newsletter-band__feedback.is-success {
    color: #e8fce9;
}

.newsletter-band__feedback.is-error {
    color: #ffe0e0;
}

/* Contact CTA (replaces home form) */
.contact-cta-section {
    padding: var(--spacing-lg) 0;
    background: transparent;
}

.contact-cta-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 2.75rem;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.contact-cta-card__copy {
    flex: 1 1 16rem;
    max-width: 36rem;
}

.contact-cta-card__copy h2 {
    margin-bottom: 0.75rem;
}

.contact-cta-card__copy p {
    margin: 0;
    color: var(--neutral-gray);
}

.contact-cta-card__action {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Location / map */
.location-map-section {
    padding: var(--spacing-lg) 0;
    background: transparent;
}

.location-map-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    border: 1px solid rgba(var(--primary-rgb), 0.08);
}

.location-map-embed {
    min-height: 320px;
    background: var(--neutral-light);
}

.location-map-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}

.location-map-placeholder {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
    color: var(--neutral-gray);
}

.location-map-details {
    padding: 2rem 2.25rem;
    background: var(--surface);
}

.location-map-details__title {
    margin: 0 0 1.25rem;
    font-size: 1.35rem;
}

.location-map-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.location-map-list__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
}

.location-map-list__value {
    color: var(--neutral-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.location-map-list__link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
}

.location-map-list__link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Footer — rich multi-column (Site 2 style) */
.site-elegant footer.site-footer {
    background: linear-gradient(165deg, #2d3d30 0%, #243528 48%, #1e2d22 100%);
    color: rgba(237, 242, 238, 0.78);
    padding: 3.5rem 0 0;
    font-size: 0.9rem;
    margin-top: auto;
    border-top: 1px solid rgba(88, 176, 92, 0.12);
}

.site-footer--rich {
    text-align: left;
}

.footer-rich-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2.5rem 2rem;
    padding-bottom: 2.5rem;
}

.footer-rich-logo img {
    height: 2.75rem;
    width: auto;
    max-width: 9rem;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-rich-name {
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.footer-rich-tagline {
    color: rgba(232, 237, 233, 0.72);
    line-height: 1.65;
    margin: 0;
    max-width: 18rem;
}

.footer-rich-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 1rem;
}

.footer-rich-links,
.footer-rich-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-rich-links li,
.footer-rich-contact li {
    margin-bottom: 0.55rem;
}

.footer-rich-links a,
.footer-rich-contact a {
    color: rgba(248, 192, 192, 0.88);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-rich-links a:hover,
.footer-rich-contact a:hover {
    color: #fdecec;
}

.footer-rich-contact__label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(200, 220, 200, 0.65);
    margin-bottom: 0.15rem;
}

.footer-rich-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0 1.75rem;
    text-align: center;
}

.footer-rich-bottom p {
    margin: 0;
    color: rgba(232, 237, 233, 0.65);
    font-size: 0.85rem;
}

.site-footer p {
    color: rgba(232, 237, 233, 0.78);
}

@media (max-width: 900px) {
    .location-map-grid {
        grid-template-columns: 1fr;
    }

    .footer-rich-grid {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter-band__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-band__form {
        max-width: none;
    }

    .contact-cta-card {
        padding: 2rem 1.5rem;
    }

    .contact-cta-card__action {
        width: 100%;
    }

    .contact-cta-card__action .btn {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .footer-rich-grid {
        grid-template-columns: 1fr;
    }
}

.elegant-page {
    padding: var(--spacing-md) 0 var(--spacing-xl);
}

.elegant-breadcrumb-bar {
    background: rgba(var(--primary-rgb), 0.08);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.14);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.elegant-breadcrumb-bar a {
    color: var(--primary-dark);
}

.elegant-cookie-inner {
    background: linear-gradient(135deg, #2f3f33 0%, #273528 100%);
    border: 1px solid rgba(88, 176, 92, 0.15);
    color: rgba(245, 242, 237, 0.96);
}

.elegant-cookie-inner p,
.elegant-cookie-inner .font-semibold {
    color: rgba(250, 248, 244, 0.98);
}

.elegant-cookie-inner .text-gray-300 {
    color: rgba(212, 228, 214, 0.82);
}

.elegant-cookie-inner a.text-gray-300 {
    color: rgba(248, 200, 200, 0.9);
}

.elegant-cookie-inner a.text-gray-300:hover {
    color: var(--white);
}

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

.elegant-btn-accept:hover {
    background: var(--primary-dark);
}

.elegant-back-top {
    background: var(--primary);
    color: var(--white);
}

.elegant-back-top:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 3.5rem;
    }

    .site-elegant h1 {
        font-size: 2rem;
    }

    .site-elegant h2 {
        font-size: 1.75rem;
    }

    .elegant-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.75rem;
        height: 2.75rem;
        border: 1px solid rgba(var(--primary-rgb), 0.14);
        border-radius: var(--radius);
        background: var(--surface);
        cursor: pointer;
        color: var(--neutral-dark);
        margin-left: auto;
    }

    .site-elegant header.site-nav nav {
        flex-wrap: wrap;
    }

    .site-elegant .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(var(--primary-rgb), 0.08);
    }

    .site-elegant .nav-links.mobile-open {
        display: flex;
    }

    .site-elegant .nav-links li {
        width: 100%;
    }

    .site-elegant .nav-links li .btn.btn-sm-nav {
        width: 100%;
        text-align: center;
    }

    .site-elegant .logo--lockup {
        max-width: min(100%, 70vw);
        gap: 0.5rem;
    }

    .site-elegant .logo--lockup .logo-img {
        height: 2.35rem;
        max-width: 4.5rem;
    }

    .site-elegant .logo .logo-text {
        font-size: 1.05rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        aspect-ratio: 16 / 9;
    }

    .services-grid,
    .testimonials-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1.5rem;
    }
}
