/* —— Design tokens (Dr. Chiguer Redouane clone) —— */
:root {
    --color-teal: #156b6b;
    --color-teal-dark: #0f5555;
    --color-gold: #c9a45c;
    --color-text: #1a1a1a;
    --color-muted: #555;
    --color-top-bg: #f5f5f5;
    --color-border: #e2e2e2;
    --font-sans: "Jost", system-ui, -apple-system, sans-serif;
    --font-serif: "Cormorant Garamond", Georgia, serif;
    --container-max: 1380px;
    --container: min(var(--container-max), calc(100% - 2rem));
    --hero-align-padding: max(1rem, calc((100vw - min(var(--container-max), 100vw - 2rem)) / 2));
    --color-hero-green: #1a3d32;
    --color-hero-green-active: #142f26;
    --color-hero-btn: #b8945a;
    --color-about-teal: #124a40;
    --color-about-teal-deep: #0d3830;
}

/* —— Hero slider —— */
.hero-slider {
    --hero-gradient-left: #f0e4d4;
    --hero-gradient-mid: #f7f0e6;
    background: var(--hero-gradient-mid);
}

.hero-slider__swiper {
    overflow: hidden;
}

.hero-slider .swiper-wrapper {
    align-items: stretch;
}

.hero-slider .swiper-slide {
    height: auto;
    display: flex;
}

.hero-slider__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    width: 100%;
    min-height: clamp(420px, 52vh, 640px);
    flex: 1;
}

.hero-slider__content {
    min-width: 0;
    align-self: stretch;
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem) clamp(2rem, 4vw, 3.5rem) var(--hero-align-padding);
    background: linear-gradient(
        105deg,
        var(--hero-gradient-left) 0%,
        var(--hero-gradient-mid) 72%,
        #f2e9de 100%
    );
}

.hero-slider__media {
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 100%;
    align-self: stretch;
    overflow: hidden;
    isolation: isolate;
}

.hero-slider__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(247, 240, 230, 0.97) 0%,
        rgba(247, 240, 230, 0.55) 12%,
        rgba(247, 240, 230, 0.2) 28%,
        transparent 48%
    );
}

.hero-slider__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-slider__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.hero-slider__title {
    margin: 0 0 1rem;
    max-width: 40ch;
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 4.5vw, 3rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1c1c1c;
}

.hero-slider__tagline {
    margin: 0 0 1rem;
    max-width: 28ch;
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-muted);
}

.hero-slider__text {
    margin: 0 0 1.75rem;
    max-width: 48ch;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--color-muted);
}

.hero-slider__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: var(--color-hero-btn);
    transition: filter 0.2s ease, transform 0.2s ease;
}

.hero-slider__cta:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.hero-slider__tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--color-hero-green);
}

.hero-slider__tab {
    margin: 0;
    padding: 2rem 0.75rem;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background: var(--color-hero-green);
    cursor: pointer;
    transition: background 0.2s ease;
}

.hero-slider__tab:last-child {
    border-right: none;
}

.hero-slider__tab:hover {
    background: var(--color-hero-green-active);
}

.hero-slider__tab.is-active {
    background: var(--color-hero-green-active);
}

@media (max-width: 900px) {
    .hero-slider__row {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .hero-slider__content {
        padding: clamp(2rem, 5vw, 3rem) var(--hero-align-padding);
    }

    .hero-slider__media {
        position: relative;
        min-height: clamp(220px, 42vw, 320px);
        width: 100vw;
        margin-left: calc(50% - 50vw);
    }

    .hero-slider__media::after {
        background: linear-gradient(
            180deg,
            transparent 50%,
            rgba(247, 240, 230, 0.35) 100%
        );
    }
}

@media (max-width: 520px) {
    .hero-slider__tab {
        font-size: 0.5625rem;
        padding: 0.85rem 0.35rem;
    }
}

/* —— Services grid —— */
.services-grid {
    background: #fff;
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}

.services-grid__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.services-grid__intro {
    min-width: 0;
    flex: 1;
}

.services-grid__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.services-grid__title {
    margin: 0;
    max-width: 24ch;
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 3.2vw, 2.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #1a1a1a;
}

.services-grid__arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--color-teal);
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.services-grid__arrow:hover {
    background: var(--color-teal-dark);
    transform: translateX(2px);
}

.services-grid__swiper {
    overflow: hidden;
}

.services-grid__swiper .swiper-wrapper {
    transition-timing-function: ease-in-out;
}

.services-grid__slide {
    height: auto;
}

.services-grid__card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
}

.services-grid__media {
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 1.25rem;
    background: #f0ebe6;
}

.services-grid__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-grid__body {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    min-width: 0;
}

.services-grid__num {
    flex-shrink: 0;
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 0.85;
    color: #edd9cf;
    font-variant-numeric: tabular-nums;
}

.services-grid__card-title {
    margin: 0;
    padding-top: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1a1a1a;
}

@media (max-width: 640px) {
    .services-grid__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-grid__title {
        max-width: none;
    }
}

/* —— About split (50/50) —— */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: clamp(400px, 56vh, 680px);
}

.about-split__media {
    position: relative;
    min-height: clamp(360px, 45vh, 560px);
    overflow: hidden;
    isolation: isolate;
}

.about-split__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-split__green-slide {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 58%;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(13, 56, 48, 0.97) 0%,
        rgba(18, 74, 64, 0.72) 32%,
        rgba(18, 74, 64, 0.28) 58%,
        transparent 85%
    );
}

.about-split__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: clamp(1.75rem, 4vw, 3rem);
    max-width: 38ch;
}

.about-split__caption-eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
}

.about-split__caption-title {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}

.about-split__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.25rem, 5vw, 4.25rem) clamp(2rem, 4.5vw, 4.5rem);
    background-color: var(--color-about-teal);
    background-image:
        radial-gradient(ellipse 100% 60% at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 80% 50% at 10% 90%, rgba(0, 0, 0, 0.15) 0%, transparent 45%);
    color: #fff;
}

.about-split__eyebrow {
    margin: 0 0 1rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

.about-split__title {
    margin: 0 0 1.25rem;
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
}

.about-split__text {
    margin: 0 0 1.75rem;
    max-width: 46ch;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
}

.about-split__cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.85rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-about-teal);
    background: #fff;
    border-radius: 0;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.about-split__cta:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
}

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

    .about-split__media {
        min-height: clamp(300px, 62vw, 420px);
    }
}

/* —— Before / After comparison grid —— */
.before-after {
    background: #f5f0e8;
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}

.before-after__head {
    text-align: center;
    max-width: 58ch;
    margin-inline: auto;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.before-after__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.before-after__title {
    margin: 0 0 1rem;
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #1a1a1a;
}

.before-after__intro {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--color-muted);
}

.before-after__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.5vw, 2rem);
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.before-after__cell {
    position: relative;
    min-height: 0;
}

.before-after__edge {
    position: absolute;
    top: 50%;
    z-index: 3;
    pointer-events: none;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.before-after__edge--before {
    left: 0.4rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: translateY(-50%);
}

.before-after__edge--after {
    right: 0.4rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: translateY(-50%);
}

.before-after__slider {
    display: block;
    width: 100%;
    aspect-ratio: var(--ba-ratio, 3 / 4);
    height: auto;
    --divider-width: 0.1875rem;
    --divider-color: #ffffff;
    border-radius: 2px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.before-after__slider:not(:defined) {
    aspect-ratio: var(--ba-ratio, 3 / 4);
    min-height: 12rem;
    background: transparent;
}

.before-after__slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: transparent;
    display: block;
}

.before-after__handle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.before-after__handle-text {
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #c41e3a;
}

.before-after__cta-wrap {
    display: flex;
    justify-content: center;
}

.before-after__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    max-width: min(920px, 100%);
    padding: 1rem 1.5rem;
    font-size: clamp(0.625rem, 1.4vw, 0.75rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.35;
    color: #fff;
    background: var(--color-gold);
    transition: filter 0.2s ease, transform 0.2s ease;
}

.before-after__cta:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

/* img-comparison-slider (sneas) — divider styling */
.before-after__slider::part(divider) {
    width: var(--divider-width);
    background: var(--divider-color);
}

@media (max-width: 720px) {
    .before-after__grid {
        grid-template-columns: 1fr;
    }

    .before-after__slider,
    .before-after__slider:not(:defined) {
        aspect-ratio: var(--ba-ratio-mobile, 1 / 1);
    }

    .before-after__edge--before {
        left: 0.25rem;
    }

    .before-after__edge--after {
        right: 0.25rem;
    }
}

/* —— Impact stats split —— */
.impact-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: clamp(420px, 58vh, 680px);
}

.impact-stats__left {
    background-color: var(--color-about-teal);
    background-image:
        radial-gradient(ellipse 90% 55% at 15% 10%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 120% 70% at 80% 95%, rgba(0, 0, 0, 0.2) 0%, transparent 52%);
    color: #fff;
}

.impact-stats__inner {
    padding: clamp(2.2rem, 4.5vw, 4rem) clamp(1.25rem, 4vw, 4rem);
    max-width: 42rem;
}

.impact-stats__eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

.impact-stats__title {
    margin: 0 0 1rem;
    font-family: var(--font-serif);
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    font-weight: 600;
    line-height: 1.14;
    text-transform: uppercase;
    color: #fff;
}

.impact-stats__intro {
    margin: 0 0 2rem;
    max-width: 52ch;
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
}

.impact-stats__list {
    display: grid;
    gap: 1rem;
    margin: 0 0 1.75rem;
}

.impact-stats__item {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
}

.impact-stats__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.92);
    color: #fff;
    font-size: 1.1rem;
}

.impact-stats__icon.is-dot::before {
    content: "";
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: #fff;
}

.impact-stats__item-title {
    margin: 0 0 0.35rem;
    font-size: clamp(1.05rem, 2vw, 1.95rem);
    font-weight: 500;
    line-height: 1.25;
    text-transform: uppercase;
    color: #fff;
}

.impact-stats__item-text {
    margin: 0;
    max-width: 48ch;
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

.impact-stats__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.65rem 1.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: var(--color-gold);
    transition: filter 0.2s ease, transform 0.2s ease;
}

.impact-stats__cta:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.impact-stats__right {
    min-height: inherit;
}

.impact-stats__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 960px) {
    .impact-stats {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .impact-stats__right {
        min-height: clamp(260px, 48vw, 420px);
    }
}

/* —— Testimonials —— */
.testimonials {
    background: #f4efea;
    background-image:
        radial-gradient(circle at 6% 10%, rgba(255, 255, 255, 0.45) 0 0.5rem, transparent 0.55rem),
        radial-gradient(circle at 94% 18%, rgba(255, 255, 255, 0.4) 0 0.55rem, transparent 0.6rem),
        radial-gradient(circle at 12% 88%, rgba(255, 255, 255, 0.35) 0 0.45rem, transparent 0.5rem),
        radial-gradient(circle at 90% 78%, rgba(255, 255, 255, 0.35) 0 0.5rem, transparent 0.55rem);
    padding: clamp(3.2rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
}

.testimonials__head {
    text-align: center;
    max-width: 44rem;
    margin-inline: auto;
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.testimonials__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.testimonials__title {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    font-weight: 600;
    line-height: 1.15;
    text-transform: uppercase;
    color: #1b1b1b;
}

.testimonials__quote-mark {
    margin-top: 1.25rem;
    font-size: 1.5rem;
    color: #d1513d;
    letter-spacing: 0.15em;
}

.testimonials__swiper {
    max-width: 54rem;
    margin-inline: auto;
    padding-bottom: 2.5rem;
}

.testimonials__slide {
    display: grid;
    grid-template-columns: 7.5rem minmax(0, 1fr);
    gap: 1.35rem;
    align-items: center;
}

.testimonials__avatar {
    width: 7.5rem;
    height: 7.5rem;
    object-fit: cover;
}

.testimonials__card {
    position: relative;
    background: #fff;
    padding: 1.15rem 1.2rem 0.95rem;
}

.testimonials__card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0.5rem;
    background: linear-gradient(180deg, #0e5b52 0%, #dfe8df 100%);
}

.testimonials__content {
    margin: 0 0 0.8rem;
    padding-left: 0.65rem;
    font-size: 1.02rem;
    font-style: italic;
    line-height: 1.45;
    color: #222;
}

.testimonials__meta {
    margin: 0;
    padding-left: 0.65rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1f1f1f;
}

.testimonials__role {
    margin-left: 0.45rem;
    color: var(--color-gold);
}

.testimonials__stars {
    margin: 0.55rem 0 0;
    padding-left: 0.65rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--color-gold);
}

.testimonials__pagination {
    text-align: center;
}

.testimonials__pagination .swiper-pagination-bullet {
    width: 1rem;
    height: 0.18rem;
    border-radius: 999px;
    background: #d8c8a7;
    opacity: 1;
    margin: 0 0.2rem !important;
}

.testimonials__pagination .swiper-pagination-bullet-active {
    background: var(--color-gold);
    width: 1.7rem;
}

@media (max-width: 700px) {
    .testimonials__slide {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .testimonials__avatar {
        width: 6.25rem;
        height: 6.25rem;
    }
}

/* —— Footer —— */
.site-footer {
    background: #0f6f67;
    color: rgba(255, 255, 255, 0.95);
}

.site-footer__top {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: clamp(1.25rem, 2.5vw, 2.2rem);
}

.site-footer__column,
.site-footer__brand {
    min-width: 0;
}

.site-footer__grid h3 {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
}

.site-footer__logo img {
    width: min(13.5rem, 100%);
    height: auto;
    margin-bottom: 0;
}

.site-footer__list,
.site-footer__links {
    display: grid;
    gap: 0.7rem;
    font-size: 0.95rem;
}

.site-footer__list li,
.site-footer__links li a {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.site-footer__list i,
.site-footer__links i {
    margin-top: 0.2rem;
    font-size: 0.75rem;
    opacity: 0.9;
}

.site-footer__links a {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.84rem;
}

.site-footer__newsletter {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    min-height: 2.5rem;
}

.site-footer__newsletter input {
    flex: 1;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 0.4rem 0;
    outline: none;
    font-family: var(--font-sans);
}

.site-footer__newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.site-footer__newsletter button {
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 1.1rem;
}


.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;
}

@media (max-width: 980px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }
}

/* —— Services page —— */
.services-page {
    background: #f8f4ef;
}

.services-page__hero {
    text-align: center;
    padding: 1.4rem 0 2.2rem;
    border-top: 1px solid rgba(201, 164, 92, 0.22);
}

.services-page__hero h1 {
    margin: 0 0 0.45rem;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    font-weight: 600;
    color: #161616;
}

.services-page__hero p {
    margin: 0;
    font-size: 0.82rem;
    color: #626262;
}

.services-page__grid-block {
    padding: 0 0 3.2rem;
}

.services-page__head {
    text-align: center;
    max-width: 56ch;
    margin: 0 auto 2rem;
}

.services-page__eyebrow {
    margin: 0 0 0.6rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.services-page__head h2 {
    margin: 0 0 0.7rem;
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-weight: 600;
    text-transform: uppercase;
    color: #1a1a1a;
}

.services-page__lead {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

.services-page__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.3rem, 2.4vw, 2rem) clamp(1rem, 2.1vw, 1.7rem);
}

.services-page__card {
    min-width: 0;
    text-align: center;
}

.services-page__media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 0.85rem;
}

.services-page__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-page__card h3 {
    margin: 0 0 0.55rem;
    font-size: 0.83rem;
    font-weight: 600;
    line-height: 1.35;
    text-transform: uppercase;
    color: #1f1f1f;
}

.services-page__card p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.6;
    color: #5f5f5f;
}

.services-page__cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2.1rem;
}

.services-page__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 2.5rem;
    padding: 0.65rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: var(--color-gold);
}

.services-page__transform {
    padding: clamp(2.6rem, 6vw, 4.2rem) 0;
    background: #f3eeea;
}

.services-page__transform-wrap {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: clamp(1.2rem, 3vw, 2.4rem);
    align-items: center;
}

.services-page__transform-copy h2 {
    margin: 0 0 0.8rem;
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.8vw, 2.15rem);
    font-weight: 600;
    line-height: 1.15;
    text-transform: uppercase;
    color: #171717;
}

.services-page__transform-copy .services-page__lead {
    margin-bottom: 1.45rem;
    max-width: 46ch;
}

.services-page__transform-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.9rem, 2vw, 1.3rem);
    align-items: start;
}

.services-page__transform-cell {
    position: relative;
}

.services-page__transform-grid .services-page__transform-cell:nth-child(2) {
    margin-top: clamp(1.4rem, 2.6vw, 2.3rem);
}

.services-page__compare-slider.before-after__slider {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.services-page__engagement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: clamp(420px, 60vh, 680px);
}

.services-page__engagement-media {
    position: relative;
    overflow: hidden;
}

.services-page__engagement-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-page__engagement-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 74, 64, 0.8) 0%, rgba(18, 74, 64, 0.15) 40%, transparent 70%);
}

.services-page__engagement-content {
    background: var(--color-about-teal);
    background-image:
        radial-gradient(ellipse 90% 56% at 8% 12%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 70% 40% at 100% 85%, rgba(255, 255, 255, 0.1) 0%, transparent 55%);
    color: #fff;
    padding: clamp(2rem, 5vw, 4rem) clamp(1.6rem, 4vw, 4rem);
}

.services-page__engagement-content h2 {
    margin: 0 0 0.8rem;
    font-family: var(--font-serif);
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    font-weight: 600;
    text-transform: uppercase;
}

.services-page__engagement-content .services-page__lead {
    color: rgba(255, 255, 255, 0.92);
    max-width: 52ch;
    margin-bottom: 1.6rem;
}

.services-page__engagement-content ul {
    display: grid;
    gap: 0.8rem;
    margin: 0 0 1.7rem;
    padding: 0;
    list-style: none;
}

.services-page__engagement-content li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(0.95rem, 1.6vw, 1.6rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.services-page__engagement-content li::before {
    content: "";
    width: 1.2rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1100px) {
    .services-page__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .services-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-page__engagement {
        grid-template-columns: 1fr;
    }

    .services-page__engagement-media {
        min-height: 320px;
    }

    .services-page__transform-wrap {
        grid-template-columns: 1fr;
    }

    .services-page__transform-grid .services-page__transform-cell:nth-child(2) {
        margin-top: 0;
    }
}

@media (max-width: 520px) {
    .services-page__grid {
        grid-template-columns: 1fr;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.5;
}

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.container {
    width: var(--container);
    margin-inline: auto;
}

/* —— Top bar —— */
.top-bar {
    background: var(--color-top-bg);
    border-bottom: 1px solid var(--color-border);
}

.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    padding-block: 0.65rem;
}

.top-bar__contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 1.5rem;
}

.top-bar__link {
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--color-text);
}

.top-bar__link:hover {
    color: var(--color-teal);
}

.top-bar__social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--color-teal);
    color: #fff;
    font-size: 0.75rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.top-bar__social-link:hover {
    background: var(--color-teal-dark);
    transform: translateY(-1px);
}

/* —— Main header —— */
.main-header {
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.main-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    padding-block: 0.85rem 1rem;
}

.main-header__logo img {
    height: clamp(52px, 10vw, 68px);
    width: auto;
    max-width: min(280px, 55vw);
}

.main-nav__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 1.35rem;
}

.main-nav__link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text);
    padding: 0.35rem 0;
    transition: color 0.2s ease;
}

.main-nav__link:hover {
    color: var(--color-teal);
}

.main-nav__link.is-active {
    color: var(--color-gold);
}

.main-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    color: #fff;
    background: var(--color-teal);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.main-header__cta:hover {
    background: var(--color-teal-dark);
    box-shadow: 0 4px 14px rgba(21, 107, 107, 0.35);
}

@media (max-width: 900px) {
    .main-header__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .main-nav__list {
        justify-content: center;
    }

    .main-header__cta {
        width: 100%;
        max-width: 320px;
        margin-inline: auto;
    }
}

@media (max-width: 520px) {
    .top-bar__inner {
        justify-content: center;
        text-align: center;
    }

    .top-bar__contact {
        justify-content: center;
    }
}

/* Clinic page */
.clinic-page__cabinet-section {
    padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(2rem, 4vw, 3rem);
}

.clinic-page__cabinet-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.2rem, 3vw, 2.2rem);
    align-items: center;
}

.clinic-page__cabinet-content {
    max-width: 56ch;
}

.clinic-page__eyebrow {
    margin: 0 0 0.8rem;
    font-size: 0.6875rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #9c8554;
    font-weight: 600;
}

.clinic-page__title {
    margin: 0 0 0.9rem;
    font-size: clamp(1.55rem, 2.7vw, 2.2rem);
    font-weight: 500;
    line-height: 1.18;
    text-transform: uppercase;
    color: #111;
}

.clinic-page__description {
    margin: 0 0 1.45rem;
    color: #323232;
    line-height: 1.8;
    font-size: 0.95rem;
}

.clinic-page__list {
    list-style: none;
    margin: 0 0 1.6rem;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.clinic-page__list li {
    font-size: 1.08rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #111;
    font-weight: 600;
}

.clinic-page__list li::before {
    content: "- ";
}

.clinic-page__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: #c9a45c;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.78rem 1.25rem;
    border-radius: 2px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.clinic-page__cta:hover {
    background: #b99144;
    transform: translateY(-1px);
}

.clinic-page__cabinet-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.clinic-page__emergency-section {
    background: #0e7068;
    padding: 1.9rem 0;
}

.clinic-page__emergency-wrap {
    display: flex;
    justify-content: center;
}

.clinic-page__emergency-button {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: #fff;
    border-radius: 999px;
    padding: 0.5rem 1rem 0.5rem 0.7rem;
    text-decoration: none;
    color: #161616;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.clinic-page__emergency-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111;
    border: 1px solid #d5d5d5;
    background: #fff;
    font-size: 0.88rem;
}

.clinic-page__emergency-copy {
    display: inline-flex;
    flex-direction: column;
    gap: 0.12rem;
}

.clinic-page__emergency-label {
    font-size: 0.56rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #b59a63;
    font-weight: 600;
}

.clinic-page__emergency-phone {
    font-size: 1.28rem;
    line-height: 1.1;
    font-weight: 700;
    color: #161616;
}

.clinic-page__doctor-section {
    background: #f8f6f4;
    padding: clamp(2rem, 5vw, 4rem) 0 clamp(2.4rem, 5vw, 4.5rem);
}

.clinic-page__doctor-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.35fr);
    gap: clamp(1.2rem, 3vw, 2.4rem);
    align-items: center;
}

.clinic-page__doctor-content {
    max-width: 42ch;
    padding-left: clamp(0rem, 2vw, 1.2rem);
}

.clinic-page__doctor-eyebrow {
    margin: 0 0 0.7rem;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #b9a06e;
    font-weight: 600;
}

.clinic-page__doctor-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    line-height: 1.1;
    text-transform: uppercase;
    color: #121212;
}

.clinic-page__doctor-text {
    margin: 0 0 1.5rem;
    color: #2c2c2c;
    line-height: 1.9;
    font-size: 0.96rem;
}

.clinic-page__doctor-media {
    background: #fbfbfb;
    border: 1px solid #efefef;
}

.clinic-page__doctor-media img {
    width: 100%;
    height: auto;
    display: block;
}

.clinic-page__doctor-quote {
    margin: 0;
    background: #fff;
    padding: 1rem 1.2rem 1.1rem;
    font-family: var(--font-serif);
    font-size: clamp(1.45rem, 2.3vw, 2rem);
    line-height: 1.28;
    color: #0f0f0f;
}

.clinic-page__doctor-quote span {
    color: #0e7068;
    font-weight: 600;
}

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

.clinic-page__space-section {
    background: #0e7068;
}

.clinic-page__space-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
    min-height: 460px;
}

.clinic-page__space-left {
    display: flex;
    align-items: center;
    padding: clamp(2rem, 4vw, 3rem) clamp(1.2rem, 4vw, 2.5rem);
}

.clinic-page__space-inner {
    width: min(760px, 100%);
}

.clinic-page__space-eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
}

.clinic-page__space-title {
    margin: 0 0 1.2rem;
    color: #fff;
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 2.6vw, 2.3rem);
    text-transform: uppercase;
}

.clinic-page__space-faq {
    display: grid;
    gap: 0.5rem;
}

.clinic-page__space-item {
    background: #fff;
}

.clinic-page__space-item.is-open {
    background: rgba(255, 255, 255, 0.16);
}

.clinic-page__space-question {
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.88rem 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.68rem;
    font-weight: 700;
    color: #0f0f0f;
    text-align: left;
}

.clinic-page__space-question::after {
    content: "+";
    font-size: 0.92rem;
    line-height: 1;
}

.clinic-page__space-item.is-open .clinic-page__space-question::after {
    content: "−";
}

.clinic-page__space-item.is-open .clinic-page__space-question {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.clinic-page__space-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms ease;
}

.clinic-page__space-panel p {
    margin: 0;
    padding: 0.85rem 0.95rem 1rem;
    color: #fff;
    line-height: 1.7;
    font-size: 0.9rem;
    max-width: 78ch;
}

.clinic-page__space-right {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

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

.clinic-page__space-right h3 {
    margin: 0;
    position: absolute;
    top: 2rem;
    left: 1.6rem;
    color: #0e7068;
    text-transform: uppercase;
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 3vw, 2.9rem);
}

@media (max-width: 980px) {
    .clinic-page__space-grid {
        grid-template-columns: 1fr;
    }

    .clinic-page__space-right {
        min-height: 320px;
    }
}

.faq-page__content {
    padding: 1.2rem 0 3.2rem;
}

.faq-page__container {
    max-width: 980px;
}

.faq-page__head {
    text-align: center;
    margin-bottom: 1.7rem;
}

.faq-page__head h2 {
    margin: 0 0 0.7rem;
    font-family: var(--font-serif);
    text-transform: uppercase;
    font-size: clamp(1.45rem, 2.8vw, 2.2rem);
    color: #141414;
}

.faq-page__head p {
    margin: 0 auto;
    max-width: 72ch;
    color: #2d2d2d;
    line-height: 1.8;
}

.faq-page__tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq-page__tab {
    border: 1px solid #c9cecf;
    border-right: 0;
    background: #fff;
    color: #194e4a;
    padding: 0.68rem 0.4rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    cursor: pointer;
}

.faq-page__tab:last-child {
    border-right: 1px solid #c9cecf;
}

.faq-page__tab.is-active {
    background: #0e7068;
    color: #fff;
}

.faq-page__group {
    display: none;
}

.faq-page__group.is-active {
    display: grid;
    gap: 1rem;
}

.faq-page__item {
    border: 1px solid #c9cecf;
    background: #fff;
}

.faq-page__question {
    width: 100%;
    border: 0;
    background: transparent;
    color: #1b1b1b;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1rem 1rem 1.25rem;
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 2.2vw, 1.95rem);
    line-height: 1.1;
    text-transform: uppercase;
}

.faq-page__question::before {
    content: "⌄";
    font-family: inherit;
    font-size: 1.35rem;
    color: #0e7068;
    transform: rotate(180deg);
    transition: transform 220ms ease;
}

.faq-page__item.is-open .faq-page__question::before {
    transform: rotate(0deg);
}

.faq-page__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms ease;
}

.faq-page__panel p {
    margin: 0;
    padding: 0 1rem 1rem 3.2rem;
    color: #232323;
    line-height: 1.72;
}

@media (max-width: 980px) {
    .faq-page__tabs {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .faq-page__tabs {
        grid-template-columns: 1fr;
    }

    .faq-page__question {
        font-size: 1.35rem;
    }
}

.emergency-page__intro {
    padding: 2.2rem 0 2.8rem;
}

.emergency-page__intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: clamp(1.2rem, 3vw, 2.4rem);
    align-items: start;
}

.emergency-page__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #f30f0f;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: clamp(1.25rem, 2.1vw, 2rem);
    padding: 0.9rem 1.4rem;
    margin-bottom: 1rem;
}

.emergency-page__intro-content h2 {
    margin: 0 0 0.45rem;
    font-family: var(--font-serif);
    text-transform: uppercase;
    font-size: clamp(1.55rem, 2.4vw, 2.2rem);
    color: #101010;
}

.emergency-page__intro-text {
    margin: 0 0 0.85rem;
    color: #1f1f1f;
    line-height: 1.75;
}

.emergency-page__points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.emergency-page__points li {
    text-transform: uppercase;
    letter-spacing: 0.17em;
    font-size: 0.78rem;
}

.emergency-page__points li::before {
    content: "- ";
}

.emergency-page__intro-media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 920px) {
    .emergency-page__intro-grid {
        grid-template-columns: 1fr;
    }
}
