﻿:root {
    --color-primary: #b52868;
    --color-primary-dark: #8e1d50;
    --color-soft-pink: #fdf1f5;
    --color-pink-light: #f8dce7;
    --color-text: #2f2f35;
    --color-muted: #6f6f76;
    --color-white: #ffffff;
    --color-border: #f0d7e1;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --container: 1180px;
    --radius: 18px;
    --shadow: 0 18px 50px rgba(181, 40, 104, 0.10);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(240, 215, 225, 0.65);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo img {
    width: 220px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 14px;
    font-weight: 500;
}

.main-nav a {
    color: var(--color-text);
    transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-primary);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 13px 24px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 24px rgba(181, 40, 104, 0.22);
}

.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    margin: 5px auto;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 26px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: 0.2s ease;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 12px 26px rgba(181, 40, 104, 0.24);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
}

.btn-outline {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.eyebrow {
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 24%, rgba(248, 220, 231, 0.55), transparent 34%),
        linear-gradient(100deg, #ffffff 0%, #ffffff 58%, #fff7fa 100%);
}

.hero-inner {
    min-height: 690px;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 56px;
    padding-top: 64px;
    padding-bottom: 46px;
}

@media (min-width: 1200px) {
    .hero-inner {
        min-height: 720px;
        padding-top: 76px;
        padding-bottom: 58px;
    }

    .hero-actions {
        margin-bottom: 10px;
    }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(52px, 5.4vw, 82px);
    line-height: 1.02;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--color-primary);
}

.hero-divider {
    width: 160px;
    height: 1px;
    background: var(--color-pink-light);
    margin-bottom: 26px;
}

.hero-text {
    max-width: 500px;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-image {
    align-self: end;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-height: 565px;
    object-fit: contain;
    object-position: center bottom;
}

/* Tablet */

@media (max-width: 980px) {
    .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 58px;
        gap: 30px;
        text-align: center;
    }

    .hero-text,
    .hero-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        justify-content: center;
    }
}

/* Mobile */

@media (max-width: 640px) {
    .hero {
        background:
            radial-gradient(circle at 75% 42%, rgba(248, 220, 231, 0.50), transparent 34%),
            linear-gradient(180deg, #ffffff 0%, #ffffff 58%, #fff7fa 100%);
    }

    .hero-inner {
        padding-top: 42px;
        gap: 22px;
    }

    .hero .eyebrow {
        font-size: 10px;
        line-height: 1.5;
        letter-spacing: 0.22em;
        margin-bottom: 14px;
    }

    .hero h1 {
        font-size: 39px;
        line-height: 1.03;
        margin-bottom: 18px;
    }

    .hero-divider {
        margin-bottom: 18px;
    }

    .hero-text {
        max-width: 330px;
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .hero-actions {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 45px;
    }

    .hero-image {
        margin-top: 8px;
    }

    .hero-image img {
        max-height: 360px;
        width: 100%;
    }
}

/* Trust Bar */

.trust-bar {
    background: linear-gradient(90deg, #fff7fa, #ffffff, #fff7fa);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 18px;
    border-right: 1px solid var(--color-border);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    color: var(--color-primary);
    font-size: 28px;
}

.trust-item p {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text);
}

/* Sections */

.section {
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 44px;
}

.section-heading h2 {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.15;
}

/* Treatment Cards */

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.treatment-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 0 24px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.treatment-card img {
    width: calc(100% + 48px);
    margin-left: -24px;
    height: 190px;
    object-fit: cover;
}

.card-icon {
    width: 68px;
    height: 68px;
    margin: -34px auto 18px;
    position: relative;
    z-index: 2;
    border-radius: 50%;
    background: var(--color-pink-light);
    color: var(--color-primary);
    display: grid;
    place-items: center;
    font-size: 26px;
    border: 5px solid var(--color-white);
}

.treatment-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.treatment-card p {
    color: var(--color-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.treatment-card a {
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Footer */

.site-footer {
    background: linear-gradient(90deg, #fff, #fff3f7);
    border-top: 1px solid var(--color-border);
}

.footer-top {
    padding: 64px 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
}

.footer-cta h2 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 38px;
    margin-bottom: 12px;
}

.footer-cta p {
    color: var(--color-muted);
    max-width: 520px;
    margin-bottom: 24px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.footer-col h3 {
    color: var(--color-primary);
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
    display: block;
    color: var(--color-muted);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--color-muted);
    font-size: 13px;
}

/* Responsive */

@media (max-width: 980px) {
    .main-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .trust-grid,
    .treatment-grid,
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .logo img {
        width: 180px;
    }

    .btn {
        width: 100%;
    }

    .trust-grid,
    .treatment-grid,
    .footer-top,
    .footer-columns {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--color-border);
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}


/* Why Choose */

.why-choose {
    padding: 34px 0 46px;
    background: var(--color-white);
}

.section-heading-small {
    margin-bottom: 24px;
}

.why-grid {
    background: linear-gradient(90deg, #fff7fa, #ffffff);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.why-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 24px 22px;
    display: flex;
    gap: 16px;
    box-shadow: 0 12px 34px rgba(181, 40, 104, 0.07);
}

.why-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-soft-pink);
    color: var(--color-primary);
    display: grid;
    place-items: center;
    font-size: 22px;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.55;
}


/* Practitioner */

.practitioner-section {
    background: linear-gradient(90deg, #fff7fa 0%, #ffffff 48%, #fff 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.practitioner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.practitioner-image {
    height: 390px;
    overflow: hidden;
    border-radius: 0 22px 22px 0;
}

.practitioner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.practitioner-content {
    padding: 56px 0;
}

.practitioner-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 20px;
}

.practitioner-content p {
    color: var(--color-muted);
    max-width: 620px;
    margin-bottom: 14px;
}

.practitioner-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 22px 0 24px;
}

.practitioner-contact a {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
}


/* Results */

.results-section {
    padding: 52px 0 58px;
    background: var(--color-white);
}

.results-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 26px;
}

.results-heading-row h2 {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.1;
}

.results-note {
    color: var(--color-muted);
    font-size: 13px;
    margin-bottom: 8px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.result-card {
    border: 1px solid var(--color-border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 12px 34px rgba(181, 40, 104, 0.08);
}

.result-card img {
    width: 100%;
    height: 145px;
    object-fit: cover;
}

.result-card-content {
    padding: 16px 18px 18px;
}

.result-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 4px;
}

.result-card p {
    color: var(--color-muted);
    font-size: 13px;
}


/* Offer Banner */

.offer-banner {
    background: linear-gradient(90deg, #fce3eb, #fff3f7);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.offer-inner {
    min-height: 92px;
    display: grid;
    grid-template-columns: 1.3fr 1fr auto;
    align-items: center;
    gap: 30px;
}

.offer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.offer-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    display: grid;
    place-items: center;
    font-size: 28px;
    background: rgba(255,255,255,0.55);
}

.offer-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3vw, 38px);
    color: var(--color-primary);
    font-weight: 500;
}

.offer-inner p {
    color: var(--color-muted);
    font-size: 14px;
}


/* Testimonials */

.testimonials-section {
    padding: 62px 0 70px;
    background: var(--color-white);
}

.testimonials-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 30px;
    margin-bottom: 34px;
}

.testimonials-heading-row h2 {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.1;
}

.quote-mark {
    font-family: var(--font-heading);
    color: var(--color-pink-light);
    font-size: 96px;
    line-height: 0.8;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 12px 34px rgba(181, 40, 104, 0.07);
}

.stars {
    color: var(--color-primary);
    letter-spacing: 0.12em;
    font-size: 15px;
    margin-bottom: 14px;
}

.testimonial-card p {
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.testimonial-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
}


/* Extra Responsive */

@media (max-width: 980px) {
    .why-grid,
    .results-grid,
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }

    .practitioner-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .practitioner-image {
        height: 420px;
        border-radius: 0;
    }

    .practitioner-content {
        padding: 46px 0;
    }

    .offer-inner {
        grid-template-columns: 1fr;
        padding: 28px 0;
        text-align: center;
    }

    .offer-left {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .why-grid,
    .results-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .results-heading-row,
    .testimonials-heading-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .quote-mark {
        display: none;
    }

    .offer-left {
        flex-direction: column;
    }

    .practitioner-image {
        height: 340px;
    }
}

/* =========================================================
   PROFESSIONAL POLISH PATCH - HOMEPAGE V1
   Add this at the very bottom of style.css
========================================================= */

/* Global rhythm */

body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.section {
    padding: 68px 0;
}

.section-heading {
    margin-bottom: 38px;
}

.eyebrow {
    margin-bottom: 14px;
    letter-spacing: 0.24em;
}

/* Header polish */

.header-inner {
    min-height: 68px;
}

.logo img {
    width: 185px;
}

.main-nav {
    gap: 30px;
    font-size: 13px;
}

.header-cta {
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 12px;
}

/* Trust bar polish */

.trust-item {
    min-height: 86px;
    gap: 15px;
}

.trust-item p {
    font-size: 12px;
    letter-spacing: 0.02em;
}

/* Treatment cards polish */

.treatments-preview {
    padding-top: 72px;
    padding-bottom: 76px;
}

.treatment-grid {
    gap: 26px;
}

.treatment-card {
    display: flex;
    flex-direction: column;
    min-height: 360px;
    padding-bottom: 26px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.treatment-card:hover {
    transform: translateY(-4px);
    border-color: rgba(181, 40, 104, 0.28);
    box-shadow: 0 22px 58px rgba(181, 40, 104, 0.14);
}

.treatment-card img {
    height: 170px;
}

.treatment-card h3 {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.treatment-card p {
    min-height: 66px;
    line-height: 1.55;
    margin-bottom: 18px;
}

.treatment-card a {
    margin-top: auto;
    letter-spacing: 0.04em;
}

/* Why choose polish */

.why-choose {
    padding-top: 46px;
    padding-bottom: 54px;
}

.why-grid {
    padding: 20px;
    gap: 20px;
    border-radius: 22px;
}

.why-card {
    min-height: 172px;
    padding: 24px 22px;
    align-items: flex-start;
}

.why-card h3 {
    font-size: 18px;
}

.why-card p {
    font-size: 13px;
}

/* Practitioner polish */

.practitioner-section {
    background:
        linear-gradient(90deg, #fff7fa 0%, #ffffff 52%, #ffffff 100%);
}

.practitioner-inner {
    gap: 64px;
}

.practitioner-image {
    height: 410px;
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(181, 40, 104, 0.10);
}

.practitioner-content {
    padding: 54px 0;
}

.practitioner-content h2 {
    margin-bottom: 16px;
}

.practitioner-content p {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 12px;
}

.practitioner-contact {
    margin: 20px 0 24px;
}

.practitioner-contact a {
    font-size: 13px;
}

/* Results section polish */

.results-section {
    padding-top: 56px;
    padding-bottom: 62px;
}

.results-heading-row {
    margin-bottom: 30px;
}

.results-grid {
    gap: 26px;
}

.result-card {
    border-radius: 15px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.result-card:hover {
    transform: translateY(-3px);
    border-color: rgba(181, 40, 104, 0.26);
    box-shadow: 0 20px 48px rgba(181, 40, 104, 0.13);
}

.result-card img {
    height: 165px;
    object-fit: cover;
}

.result-card-content {
    padding: 15px 18px 18px;
}

.result-card h3 {
    font-size: 18px;
}

.result-card p {
    font-size: 12px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* NHS banner polish */

.offer-inner {
    min-height: 86px;
}

.offer-icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
}

.offer-left h2 {
    line-height: 1.15;
}

.offer-inner p {
    font-size: 13px;
}

/* Testimonials polish */

.testimonials-section {
    padding-top: 58px;
    padding-bottom: 64px;
}

.testimonials-heading-row {
    margin-bottom: 30px;
}

.testimonial-card {
    min-height: 178px;
    padding: 24px 24px 22px;
}

.testimonial-card p {
    font-size: 13px;
    line-height: 1.65;
}

.testimonial-card h3 {
    font-size: 13px;
}

/* Footer polish */

.footer-top {
    padding: 58px 0;
    gap: 62px;
}

.footer-cta h2 {
    font-size: 36px;
    line-height: 1.15;
}

.footer-cta p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-col h3 {
    font-size: 12px;
    letter-spacing: 0.04em;
}

.footer-col a,
.footer-col p {
    font-size: 13px;
    line-height: 1.55;
}

.footer-bottom {
    padding: 17px 0;
}

.footer-bottom-inner {
    font-size: 12px;
}

/* Mobile polish */

@media (max-width: 980px) {
    .section {
        padding: 56px 0;
    }

    .treatment-card {
        min-height: 350px;
    }

    .why-card {
        min-height: 150px;
    }

    .practitioner-image {
        height: 390px;
        border-radius: 16px;
    }

    .footer-top {
        gap: 42px;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 44px 0;
    }

    .header-inner {
        min-height: 64px;
    }

    .logo img {
        width: 165px;
    }

    .treatments-preview {
        padding-top: 52px;
        padding-bottom: 56px;
    }

    .treatment-card {
        min-height: auto;
    }

    .treatment-card h3,
    .treatment-card p {
        min-height: unset;
    }

    .why-choose {
        padding-top: 38px;
        padding-bottom: 42px;
    }

    .practitioner-image {
        height: 330px;
    }

    .results-section {
        padding-top: 44px;
        padding-bottom: 48px;
    }

    .result-card img {
        height: 185px;
    }

    .offer-inner {
        gap: 18px;
    }

    .footer-top {
        padding: 44px 0;
    }

    .footer-cta h2 {
        font-size: 30px;
    }
}


/* =========================================================
   PROFESSIONAL POLISH PATCH - HOMEPAGE V2
   Stronger visible cleanup
========================================================= */

/* Better overall rhythm */

:root {
    --shadow-soft: 0 18px 45px rgba(181, 40, 104, 0.08);
    --shadow-card: 0 18px 48px rgba(181, 40, 104, 0.11);
    --section-line: 1px solid rgba(181, 40, 104, 0.12);
}

.container {
    width: min(100% - 64px, 1220px);
}

/* Header cleaner and more premium */

.site-header {
    box-shadow: 0 4px 24px rgba(181, 40, 104, 0.04);
}

.header-inner {
    min-height: 66px;
}

.logo img {
    width: 170px;
}

.main-nav {
    gap: 32px;
}

.main-nav a {
    font-size: 13px;
}

.header-cta {
    border-radius: 7px;
    min-height: 42px;
    padding: 0 24px;
}

/* Trust bar more refined */

.trust-bar {
    background: #fff7fa;
}

.trust-grid {
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
}

.trust-item {
    min-height: 82px;
    justify-content: flex-start;
    padding-left: 46px;
}

.trust-icon {
    font-size: 22px;
}

/* Popular treatments: more elegant cards */

.treatments-preview {
    padding-top: 68px;
    padding-bottom: 74px;
    background:
        linear-gradient(180deg, #ffffff 0%, #ffffff 72%, #fff8fb 100%);
}

.section-heading h2 {
    letter-spacing: -0.015em;
}

.treatment-grid {
    gap: 30px;
}

.treatment-card {
    min-height: 390px;
    border-radius: 16px;
    border: 1px solid rgba(181, 40, 104, 0.18);
    box-shadow: 0 16px 42px rgba(181, 40, 104, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #fffafd 100%);
}

.treatment-card img {
    height: 175px;
    object-position: center;
}

.treatment-card:nth-child(1) img {
    object-position: center center;
}

.treatment-card:nth-child(2) img,
.treatment-card:nth-child(3) img,
.treatment-card:nth-child(4) img {
    object-position: center top;
}

.card-icon {
    width: 64px;
    height: 64px;
    margin-top: -32px;
    background: #f8d7e4;
    box-shadow: 0 8px 20px rgba(181, 40, 104, 0.13);
}

.treatment-card h3 {
    font-size: 23px;
    min-height: 58px;
}

.treatment-card p {
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;
}

/* Why choose: stronger premium block */

.why-choose {
    padding: 62px 0;
    background: #ffffff;
}

.why-grid {
    padding: 24px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(253, 241, 245, 0.95), rgba(255, 255, 255, 0.95));
    box-shadow: 0 22px 60px rgba(181, 40, 104, 0.08);
}

.why-card {
    min-height: 178px;
    border-radius: 15px;
    border: 1px solid rgba(181, 40, 104, 0.15);
    background: rgba(255, 255, 255, 0.94);
}

.why-icon {
    background: #fff0f6;
    color: var(--color-primary);
}

.why-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

/* Practitioner: make it feel like a feature section */

.practitioner-section {
    padding: 58px 0;
    background:
        linear-gradient(90deg, #fff7fa 0%, #ffffff 48%, #ffffff 100%);
}

.practitioner-inner {
    background: #ffffff;
    border: 1px solid rgba(181, 40, 104, 0.14);
    border-radius: 22px;
    box-shadow: 0 24px 64px rgba(181, 40, 104, 0.10);
    padding: 34px;
    grid-template-columns: 0.95fr 1.05fr;
}

.practitioner-image {
    height: 390px;
    border-radius: 18px;
    box-shadow: none;
}

.practitioner-content {
    padding: 14px 16px 14px 10px;
}

.practitioner-content h2 {
    font-size: clamp(42px, 4vw, 56px);
}

.practitioner-content p {
    max-width: 560px;
}

/* Results: bigger and more premium */

.results-section {
    padding: 66px 0 70px;
    background: linear-gradient(180deg, #ffffff 0%, #fff9fb 100%);
}

.results-heading-row {
    align-items: flex-end;
}

.results-note {
    margin-bottom: 12px;
}

.results-grid {
    gap: 30px;
}

.result-card {
    border-radius: 16px;
    border: 1px solid rgba(181, 40, 104, 0.16);
    box-shadow: 0 18px 46px rgba(181, 40, 104, 0.09);
    background: #ffffff;
}

.result-card img {
    height: 205px;
    object-fit: cover;
}

.result-card-content {
    padding: 18px 20px 20px;
}

.result-card h3 {
    font-size: 19px;
    margin-bottom: 6px;
}

.result-card p {
    color: var(--color-primary);
    font-weight: 700;
}

/* NHS banner: cleaner horizontal layout */

.offer-banner {
    background: linear-gradient(90deg, #fae2eb 0%, #fff4f8 100%);
}

.offer-inner {
    min-height: 96px;
    grid-template-columns: auto 1fr auto;
}

.offer-left h2 {
    font-size: clamp(28px, 2.5vw, 38px);
    white-space: nowrap;
}

.offer-inner p {
    justify-self: center;
}

/* Testimonials: more premium */

.testimonials-section {
    padding: 66px 0 74px;
    background: #ffffff;
}

.testimonial-card {
    min-height: 190px;
    border-radius: 16px;
    border: 1px solid rgba(181, 40, 104, 0.16);
    box-shadow: 0 16px 42px rgba(181, 40, 104, 0.08);
}

.stars {
    font-size: 14px;
    margin-bottom: 16px;
}

.quote-mark {
    opacity: 0.72;
}

/* Footer stronger but cleaner */

.site-footer {
    background:
        linear-gradient(90deg, #fff7fa 0%, #ffffff 45%, #fff2f7 100%);
}

.footer-top {
    padding: 64px 0 58px;
    grid-template-columns: 1.25fr 1fr;
}

.footer-cta h2 {
    max-width: 560px;
    color: var(--color-primary);
}

.footer-columns {
    gap: 36px;
}

.footer-col h3 {
    margin-bottom: 18px;
    color: var(--color-primary);
}

.footer-col a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    background: rgba(255, 255, 255, 0.45);
}

/* Mobile/tablet stronger cleanup */

@media (max-width: 980px) {
    .container {
        width: min(100% - 40px, 1220px);
    }

    .trust-item {
        padding-left: 24px;
    }

    .practitioner-inner {
        grid-template-columns: 1fr;
        padding: 26px;
    }

    .offer-inner {
        grid-template-columns: 1fr;
    }

    .offer-left h2 {
        white-space: normal;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1220px);
    }

    .trust-item {
        justify-content: center;
        padding-left: 18px;
    }

    .treatment-card img {
        height: 190px;
    }

    .why-grid {
        padding: 16px;
    }

    .practitioner-inner {
        padding: 18px;
    }

    .practitioner-content {
        padding: 28px 4px 10px;
    }

    .result-card img {
        height: 220px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   TREATMENT CARD IMAGE CROP FIX
========================================================= */

.treatment-card {
    padding: 0 0 28px;
    overflow: hidden;
}

.treatment-card img {
    width: 100%;
    height: 185px;
    margin: 0;
    object-fit: cover;
    display: block;
    border-radius: 16px 16px 0 0;
}

/* Better individual image positioning */

.treatment-card:nth-child(1) img {
    object-position: center center;
}

.treatment-card:nth-child(2) img {
    object-position: center 28%;
}

.treatment-card:nth-child(3) img {
    object-position: center 30%;
}

.treatment-card:nth-child(4) img {
    object-position: center 22%;
}

/* Icon overlap correction after removing image margin trick */

.card-icon {
    margin: -32px auto 22px;
    position: relative;
    z-index: 2;
}

/* Text area spacing after image fix */

.treatment-card h3,
.treatment-card p,
.treatment-card a {
    padding-left: 24px;
    padding-right: 24px;
}

.treatment-card h3 {
    margin-top: 0;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--color-primary);
}

/* =========================================================
   COLOUR BALANCE PATCH - LESS PINK / MORE PREMIUM
========================================================= */

:root {
    --color-primary: #b52868;
    --color-primary-dark: #8e1d50;

    --color-soft-pink: #fff7fa;
    --color-page-soft: #fbf8f7;
    --color-warm-white: #fffdfc;
    --color-border-soft: rgba(181, 40, 104, 0.12);

    --shadow: 0 14px 38px rgba(63, 45, 52, 0.07);
    --shadow-soft: 0 16px 42px rgba(63, 45, 52, 0.06);
    --shadow-card: 0 18px 45px rgba(63, 45, 52, 0.08);
}

/* Main background should feel cleaner */

body {
    background: #ffffff;
}

/* Header cleaner */

.site-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(181, 40, 104, 0.10);
}

/* Trust bar less pink */

.trust-bar {
    background: #fffdfc;
    border-top: 1px solid rgba(181, 40, 104, 0.10);
    border-bottom: 1px solid rgba(181, 40, 104, 0.10);
}

/* Popular treatments: cleaner white section */

.treatments-preview {
    background: #ffffff;
}

.treatment-card {
    background: #ffffff;
    border-color: rgba(181, 40, 104, 0.14);
    box-shadow: 0 14px 36px rgba(63, 45, 52, 0.07);
}

.treatment-card:hover {
    box-shadow: 0 20px 48px rgba(63, 45, 52, 0.10);
}

/* Softer icon pink */

.card-icon {
    background: #f9dfe9;
    box-shadow: 0 8px 18px rgba(181, 40, 104, 0.10);
}

/* Why choose: reduce pink block feel */

.why-choose {
    background: #fffdfc;
}

.why-grid {
    background: #ffffff;
    border-color: rgba(181, 40, 104, 0.12);
    box-shadow: 0 18px 46px rgba(63, 45, 52, 0.06);
}

.why-card {
    background: #ffffff;
    border-color: rgba(181, 40, 104, 0.12);
    box-shadow: none;
}

.why-icon {
    background: #fff5f8;
}

/* Practitioner section: make it clinical-premium, not pink block */

.practitioner-section {
    background: #fbf8f7;
    border-top: 1px solid rgba(181, 40, 104, 0.10);
    border-bottom: 1px solid rgba(181, 40, 104, 0.10);
}

.practitioner-inner {
    background: #ffffff;
    border-color: rgba(181, 40, 104, 0.12);
    box-shadow: 0 20px 52px rgba(63, 45, 52, 0.07);
}

/* Results section: cleaner */

.results-section {
    background: #ffffff;
}

.result-card {
    background: #ffffff;
    border-color: rgba(181, 40, 104, 0.12);
    box-shadow: 0 14px 36px rgba(63, 45, 52, 0.07);
}

/* NHS banner can stay pink, but less strong */

.offer-banner {
    background: #fff1f6;
    border-top: 1px solid rgba(181, 40, 104, 0.12);
    border-bottom: 1px solid rgba(181, 40, 104, 0.12);
}

/* Testimonials: white and clean */

.testimonials-section {
    background: #ffffff;
}

.testimonial-card {
    background: #ffffff;
    border-color: rgba(181, 40, 104, 0.12);
    box-shadow: 0 14px 36px rgba(63, 45, 52, 0.06);
}

/* Footer: much less pink */

.site-footer {
    background: #fbf8f7;
    border-top: 1px solid rgba(181, 40, 104, 0.10);
}

.footer-bottom {
    background: #ffffff;
    border-top: 1px solid rgba(181, 40, 104, 0.08);
}

/* Keep buttons strong */

.btn-primary,
.header-cta {
    box-shadow: 0 12px 24px rgba(181, 40, 104, 0.20);
}

/* Slightly reduce pink dominance in small text */

.eyebrow {
    color: #b52868;
}

.footer-cta h2,
.offer-left h2 {
    color: #b52868;
}

/* =========================================================
   MOBILE MENU + RESPONSIVE CLEANUP
========================================================= */

@media (max-width: 980px) {
    .site-header {
        position: sticky;
        top: 0;
    }

    .header-inner {
        position: relative;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #ffffff;
        border: 1px solid rgba(181, 40, 104, 0.14);
        border-radius: 14px;
        box-shadow: 0 20px 45px rgba(63, 45, 52, 0.12);
        overflow: hidden;
        z-index: 999;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 15px 18px;
        border-bottom: 1px solid rgba(181, 40, 104, 0.08);
        font-size: 14px;
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn span {
        transition: 0.2s ease;
    }

    .mobile-menu-btn.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-btn.is-active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* =========================================================
   MOBILE HOMEPAGE POLISH
========================================================= */

@media (max-width: 640px) {

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item {
        min-height: 78px;
        padding: 16px 10px;
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }

    .trust-item p {
        font-size: 11px;
        line-height: 1.35;
    }

    .section-heading h2,
    .results-heading-row h2,
    .testimonials-heading-row h2 {
        font-size: 32px;
    }

    .treatment-grid {
        gap: 22px;
    }

    .treatment-card {
        max-width: 390px;
        margin-inline: auto;
    }

    .why-grid {
        gap: 14px;
    }

    .practitioner-inner {
        border-radius: 18px;
    }

    .practitioner-content h2 {
        font-size: 36px;
    }

    .practitioner-contact {
        flex-direction: column;
        gap: 8px;
    }

    .results-heading-row {
        gap: 8px;
    }

    .results-note {
        font-size: 12px;
    }

    .offer-inner {
        text-align: center;
        padding: 26px 0;
    }

    .offer-left h2 {
        font-size: 28px;
    }

    .testimonial-card {
        min-height: auto;
    }

    .footer-columns {
        gap: 24px;
    }

    .footer-cta {
        text-align: left;
    }
}

/* =========================================================
   MOBILE FINAL POLISH PATCH
   Cleaner, more premium mobile layout
========================================================= */

@media (max-width: 640px) {

    body {
        font-size: 15px;
    }

    .container {
        width: min(100% - 30px, 1220px);
    }

    /* Header */

    .header-inner {
        min-height: 62px;
    }

    .logo img {
        width: 150px;
    }

    .mobile-menu-btn {
        width: 38px;
        height: 38px;
    }

    .main-nav {
        left: 15px;
        right: 15px;
    }

    /* Trust bar */

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        border-left: 0;
        border-right: 0;
    }

    .trust-item {
        min-height: 82px;
        padding: 16px 8px;
        border-right: 1px solid rgba(181, 40, 104, 0.12);
        border-bottom: 1px solid rgba(181, 40, 104, 0.12);
        flex-direction: column;
        gap: 8px;
        justify-content: center;
    }

    .trust-item:nth-child(2),
    .trust-item:nth-child(4) {
        border-right: 0;
    }

    .trust-icon {
        font-size: 20px;
    }

    .trust-item p {
        font-size: 10px;
        line-height: 1.35;
        max-width: 120px;
    }

    /* Section headings */

    .section-heading {
        margin-bottom: 28px;
    }

    .section-heading h2,
    .results-heading-row h2,
    .testimonials-heading-row h2 {
        font-size: 34px;
        line-height: 1.08;
    }

    .eyebrow {
        font-size: 10px;
        letter-spacing: 0.22em;
    }

    /* Popular treatments */

    .treatments-preview {
        padding-top: 50px;
        padding-bottom: 54px;
    }

    .treatment-grid {
        gap: 20px;
    }

    .treatment-card {
        max-width: 340px;
        min-height: auto;
        margin-inline: auto;
        border-radius: 16px;
    }

    .treatment-card img {
        height: 165px;
    }

    .card-icon {
        width: 58px;
        height: 58px;
        margin-top: -29px;
        margin-bottom: 18px;
    }

    .treatment-card h3 {
        font-size: 22px;
        line-height: 1.15;
        min-height: unset;
        margin-bottom: 10px;
    }

    .treatment-card p {
        font-size: 13px;
        line-height: 1.55;
        min-height: unset;
        max-width: 250px;
        margin-bottom: 18px;
    }

    .treatment-card a {
        font-size: 12px;
    }

    /* Why choose */

    .why-choose {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .why-grid {
        padding: 14px;
        gap: 14px;
        border-radius: 18px;
    }

    .why-card {
        min-height: auto;
        padding: 22px 18px;
        text-align: center;
        align-items: center;
    }

    .why-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .why-card h3 {
        font-size: 19px;
    }

    .why-card p {
        font-size: 13px;
        line-height: 1.6;
    }

    /* Practitioner */

    .practitioner-section {
        padding: 42px 0;
    }

    .practitioner-inner {
        padding: 16px;
        border-radius: 18px;
    }

    .practitioner-image {
        height: 300px;
        border-radius: 14px;
    }

    .practitioner-content {
        padding: 28px 4px 8px;
        text-align: left;
    }

    .practitioner-content h2 {
        font-size: 37px;
        line-height: 1.05;
    }

    .practitioner-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .practitioner-contact {
        gap: 6px;
        margin: 18px 0 20px;
    }

    .practitioner-contact a {
        font-size: 12px;
        word-break: break-word;
    }

    .practitioner-content .btn {
        width: 100%;
    }

    /* Results */

    .results-section {
        padding-top: 46px;
        padding-bottom: 48px;
    }

    .results-heading-row {
        margin-bottom: 24px;
    }

    .results-note {
        font-size: 11px;
        line-height: 1.5;
    }

    .results-grid {
        gap: 18px;
    }

    .result-card {
        max-width: 340px;
        margin-inline: auto;
    }

    .result-card img {
        height: 185px;
    }

    .result-card-content {
        padding: 15px 16px 17px;
    }

    .result-card h3 {
        font-size: 17px;
    }

    .result-card p {
        font-size: 11px;
    }

    /* NHS offer */

    .offer-inner {
        min-height: auto;
        padding: 26px 0;
        gap: 14px;
        text-align: center;
    }

    .offer-left {
        flex-direction: column;
        gap: 12px;
    }

    .offer-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .offer-left h2 {
        font-size: 27px;
        line-height: 1.15;
        max-width: 320px;
    }

    .offer-inner p {
        font-size: 13px;
        justify-self: center;
    }

    .offer-inner .btn {
        width: 100%;
        max-width: 260px;
        margin-inline: auto;
    }

    /* Testimonials */

    .testimonials-section {
        padding-top: 48px;
        padding-bottom: 52px;
    }

    .testimonials-heading-row {
        margin-bottom: 24px;
    }

    .testimonial-grid {
        gap: 16px;
    }

    .testimonial-card {
        max-width: 340px;
        margin-inline: auto;
        padding: 22px 20px;
    }

    .testimonial-card p {
        font-size: 13px;
    }

    /* Footer */

    .footer-top {
        padding: 44px 0 38px;
        gap: 34px;
    }

    .footer-cta h2 {
        font-size: 31px;
        line-height: 1.12;
    }

    .footer-cta p {
        font-size: 14px;
    }

    .footer-cta .btn {
        width: 100%;
        max-width: 310px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .footer-col h3 {
        margin-bottom: 10px;
    }

    .footer-col a,
    .footer-col p {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        font-size: 11px;
    }
}

/* =========================================================
   POPULAR TREATMENTS - FINAL CARD SYSTEM
========================================================= */

.popular-treatments-section {
    padding: 72px 0 78px;
    background: #ffffff;
}

.popular-heading {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.section-intro {
    max-width: 560px;
    margin: 14px auto 0;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.7;
}

.service-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px;
}

.service-pills a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(181, 40, 104, 0.18);
    background: #fffafd;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    transition: 0.2s ease;
}

.service-pills a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.popular-treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 42px;
}

.popular-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(181, 40, 104, 0.16);
    border-radius: 18px;
    overflow: hidden;
    min-height: 408px;
    box-shadow: 0 16px 40px rgba(63, 45, 52, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.popular-card:hover {
    transform: translateY(-4px);
    border-color: rgba(181, 40, 104, 0.30);
    box-shadow: 0 22px 52px rgba(63, 45, 52, 0.10);
}

.popular-card-image {
    display: block;
    height: 178px;
    overflow: hidden;
    background: #fff7fa;
}

.popular-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Individual image positions */

.popular-card:nth-child(1) .popular-card-image img {
    object-position: center center;
}

.popular-card:nth-child(2) .popular-card-image img {
    object-position: center 28%;
}

.popular-card:nth-child(3) .popular-card-image img {
    object-position: center 30%;
}

.popular-card:nth-child(4) .popular-card-image img {
    object-position: center 24%;
}

.popular-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f8dce7;
    border: 6px solid #ffffff;
    color: var(--color-primary);
    display: grid;
    place-items: center;
    margin: -32px auto 18px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 22px rgba(181, 40, 104, 0.12);
}

.popular-card-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.popular-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 24px 28px;
    text-align: center;
}

.popular-card-body h3 {
    font-family: var(--font-heading);
    font-size: 23px;
    line-height: 1.15;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.popular-card-body p {
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.6;
    max-width: 245px;
    min-height: 68px;
    margin: 0 auto 20px;
}

.popular-card-link {
    margin-top: auto;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.popular-card-link:hover {
    color: var(--color-primary-dark);
}

.popular-section-cta {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

/* Popular treatment responsive */

@media (max-width: 1100px) {
    .popular-treatment-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .popular-treatments-section {
        padding: 52px 0 58px;
    }

    .section-intro {
        font-size: 14px;
        max-width: 330px;
    }

    .service-pills {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 2px 0 8px;
        margin-left: -2px;
        margin-right: -2px;
        scrollbar-width: none;
    }

    .service-pills::-webkit-scrollbar {
        display: none;
    }

    .service-pills a {
        flex: 0 0 auto;
        font-size: 11px;
    }

    .popular-treatment-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        max-width: 340px;
    }

    .popular-card {
        min-height: auto;
    }

    .popular-card-image {
        height: 168px;
    }

    .popular-card-body h3 {
        min-height: unset;
        font-size: 22px;
    }

    .popular-card-body p {
        min-height: unset;
    }

    .popular-section-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* =========================================================
   FOOTER ORCHID DECORATION
========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;
}

.site-footer::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 34px;
    width: 360px;
    height: 260px;
    background-image: url("/assets/images/footer-orchid.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    opacity: 0.42;
    pointer-events: none;
    z-index: 0;
}

.footer-top,
.footer-bottom {
    position: relative;
    z-index: 1;
}

@media (max-width: 980px) {
    .site-footer::after {
        width: 260px;
        height: 190px;
        opacity: 0.22;
    }
}

@media (max-width: 640px) {
    .site-footer::after {
        display: none;
    }
}

/* =========================================================
   FINAL DESKTOP POLISH - STEP 1
   Logo, service pills, results cards, NHS banner
========================================================= */

/* Header logo balance */

@media (min-width: 981px) {
    .logo img {
        width: 190px;
    }

    .header-inner {
        min-height: 72px;
    }
}

/* Popular treatments intro and full service pills */

.popular-heading .section-intro {
    font-size: 15px;
    color: #6b6065;
    margin-top: 16px;
}

.service-pills {
    margin-top: 26px;
    gap: 10px;
}

.service-pills::before {
    content: "Explore all treatments:";
    width: 100%;
    display: block;
    margin-bottom: 2px;
    color: #6b6065;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.service-pills a {
    min-height: 38px;
    padding: 0 17px;
    font-size: 12px;
    border-color: rgba(181, 40, 104, 0.22);
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(63, 45, 52, 0.04);
}

/* Popular card refinement */

.popular-treatment-grid {
    margin-top: 44px;
}

.popular-card {
    min-height: 418px;
}

.popular-card-image {
    height: 184px;
}

.popular-card-body h3 {
    font-size: 24px;
}

.popular-card-body p {
    font-size: 14px;
    line-height: 1.62;
}

/* Results section stronger */

.results-section {
    padding-top: 72px;
    padding-bottom: 76px;
}

.results-heading-row {
    margin-bottom: 34px;
}

.results-grid {
    gap: 34px;
}

.result-card {
    border-radius: 18px;
    overflow: hidden;
}

.result-card img {
    height: 230px;
    width: 100%;
    object-fit: cover;
}

.result-card-content {
    padding: 19px 22px 22px;
}

.result-card h3 {
    font-size: 20px;
    line-height: 1.2;
}

.result-card p {
    margin-top: 5px;
}

/* NHS banner balance */

.offer-inner {
    min-height: 104px;
    grid-template-columns: auto 1fr auto;
}

.offer-left {
    gap: 18px;
}

.offer-left h2 {
    font-size: clamp(30px, 2.4vw, 40px);
}

.offer-inner p {
    justify-self: center;
    font-size: 14px;
    color: #5f565b;
}

.offer-inner .btn {
    min-width: 150px;
}

/* Footer orchid slightly better position */

.site-footer::after {
    width: 390px;
    height: 285px;
    right: -8px;
    bottom: 28px;
    opacity: 0.38;
}

/* Mobile guard so desktop polish does not break mobile */

@media (max-width: 640px) {
    .service-pills::before {
        text-align: left;
        font-size: 12px;
        margin-left: 2px;
    }

    .service-pills a {
        min-height: 34px;
        padding: 0 13px;
        font-size: 11px;
    }

    .popular-card {
        min-height: auto;
    }

    .popular-card-image {
        height: 168px;
    }

    .result-card img {
        height: 190px;
    }

    .offer-inner {
        min-height: auto;
    }

    .site-footer::after {
        display: none;
    }
}


/* =========================================================
   POPULAR TREATMENTS MENU REFINEMENT
========================================================= */

.service-pills {
    max-width: 780px;
    margin: 24px auto 0;
    padding: 12px 16px;
    border: 1px solid rgba(181, 40, 104, 0.10);
    border-radius: 999px;
    background: #fffdfc;
    box-shadow: 0 10px 28px rgba(63, 45, 52, 0.04);
}

.service-pills::before {
    display: none;
}

.service-pills a {
    min-height: 32px;
    padding: 0 13px;
    border-radius: 999px;
    font-size: 11px;
    background: transparent;
    box-shadow: none;
    border-color: rgba(181, 40, 104, 0.14);
}

.service-pills a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.popular-treatment-grid {
    margin-top: 38px;
}

/* Slightly more premium popular cards */

.popular-card {
    min-height: 400px;
}

.popular-card-image {
    height: 176px;
}

.popular-card-body {
    padding-left: 22px;
    padding-right: 22px;
}

.popular-card-body h3 {
    font-size: 23px;
    min-height: 52px;
}

.popular-card-body p {
    font-size: 13px;
    min-height: 64px;
}

.popular-section-cta {
    margin-top: 32px;
}

/* Mobile service menu should stay scrollable and not become a large block */

@media (max-width: 640px) {
    .service-pills {
        max-width: none;
        border-radius: 14px;
        padding: 10px;
        justify-content: flex-start;
    }

    .service-pills a {
        min-height: 32px;
        font-size: 11px;
    }
}

/* =========================================================
   MOBILE POLISH PATCH - V2
   Fix header, hero, trust bar, NHS banner and footer
========================================================= */

@media (max-width: 640px) {

    /* Header */

    .header-inner {
        min-height: 66px;
    }

    .logo img {
        width: 172px;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 42px;
    }

    /* Trust bar */

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        min-height: 62px;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 14px 22px;
        gap: 14px;
        border-right: 0;
    }

    .trust-icon {
        width: 24px;
        text-align: center;
        font-size: 19px;
    }

    .trust-item p {
        max-width: none;
        font-size: 11px;
        line-height: 1.35;
    }

    /* Popular cards */

    .popular-treatment-grid {
        max-width: 360px;
    }

    .popular-card {
        border-radius: 18px;
    }

    .popular-card-image {
        height: 180px;
    }

    .popular-card-body {
        padding-bottom: 30px;
    }

    /* Why choose */

    .why-card {
        text-align: left;
        flex-direction: row;
        align-items: flex-start;
    }

    .why-icon {
        flex: 0 0 38px;
    }

    /* Practitioner */

    .practitioner-image {
        height: 330px;
    }

    .practitioner-content h2 {
        font-size: 39px;
    }

    /* Results */

    .result-card {
        max-width: 360px;
    }

    .result-card img {
        height: 205px;
    }

    /* NHS banner - fix squeezed mobile layout */

    .offer-banner {
        padding: 0;
    }

    .offer-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 14px;
        padding: 30px 0;
        text-align: center;
    }

    .offer-left {
        flex-direction: column;
        gap: 12px;
    }

    .offer-left h2 {
        font-size: 29px;
        line-height: 1.14;
        max-width: 330px;
        text-align: center;
    }

    .offer-inner p {
        font-size: 13px;
        line-height: 1.5;
    }

    .offer-inner .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Testimonials */

    .testimonial-card {
        max-width: 360px;
    }

    /* Footer */

    .footer-top {
        text-align: left;
    }

    .footer-cta h2 {
        font-size: 32px;
    }

    .footer-cta .btn {
        max-width: 100%;
    }

    .footer-columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 26px 22px;
    }

    .footer-col:last-child {
        grid-column: 1 / -1;
    }

    .footer-col h3 {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .footer-col a,
    .footer-col p {
        font-size: 12px;
        line-height: 1.55;
    }
}

@media (max-width: 420px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }

    .footer-col:last-child {
        grid-column: auto;
    }
}

/* =========================================================
   POPULAR SECTION REFINEMENT + MOBILE GRID + ORCHID RETURN
========================================================= */

/* Remove old service pill styling completely */

.service-pills {
    display: none !important;
}

/* Cleaner intro */

.popular-heading .section-intro {
    max-width: 610px;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #675d62;
}

/* Elegant also-available line */

.also-available-treatments {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 30px;
    color: #675d62;
    font-size: 14px;
    line-height: 1.5;
}

.also-available-treatments span:first-child {
    font-weight: 600;
    color: #3b3337;
}

.also-available-treatments a {
    color: var(--color-primary);
    font-weight: 700;
    border-bottom: 1px solid rgba(181, 40, 104, 0.22);
    transition: 0.2s ease;
}

.also-available-treatments a:hover {
    color: var(--color-primary-dark);
    border-bottom-color: var(--color-primary-dark);
}

.also-available-treatments .separator {
    color: rgba(181, 40, 104, 0.45);
}

.popular-section-cta {
    margin-top: 24px;
}

/* More refined popular icon style */

.popular-card-icon {
    background: #fff4f8;
    border: 6px solid #ffffff;
    color: var(--color-primary);
}

.popular-card-icon svg {
    width: 29px;
    height: 29px;
    stroke-width: 1.55;
}

.popular-card:hover .popular-card-icon {
    background: #f8dce7;
    transform: translateY(-1px);
}

/* Desktop card consistency */

.popular-card {
    min-height: 404px;
}

.popular-card-image {
    height: 178px;
}

.popular-card-body h3 {
    min-height: 52px;
}

.popular-card-body p {
    min-height: 62px;
}

/* Tablet and larger mobile: 2 columns */

@media (min-width: 431px) and (max-width: 980px) {
    .popular-treatment-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 720px;
        gap: 22px;
    }

    .popular-card {
        min-height: 390px;
    }

    .popular-card-image {
        height: 170px;
    }

    .popular-card-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .popular-card-body h3 {
        font-size: 21px;
    }

    .popular-card-body p {
        font-size: 13px;
    }
}

/* Small mobile: keep 1 column */

@media (max-width: 430px) {
    .popular-treatment-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        gap: 20px;
    }

    .popular-card {
        min-height: auto;
    }

    .popular-card-image {
        height: 172px;
    }

    .popular-card-body h3,
    .popular-card-body p {
        min-height: unset;
    }

    .also-available-treatments {
        max-width: 310px;
        margin-left: auto;
        margin-right: auto;
        gap: 7px;
        font-size: 13px;
    }
}

/* Footer orchid visible on mobile too */

@media (max-width: 640px) {
    .site-footer::after {
        display: block;
        width: 210px;
        height: 155px;
        right: -42px;
        bottom: 92px;
        opacity: 0.20;
    }

    .footer-top,
    .footer-bottom {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 420px) {
    .site-footer::after {
        width: 190px;
        height: 140px;
        right: -48px;
        bottom: 118px;
        opacity: 0.18;
    }
}


/* =========================================================
   POPULAR TREATMENTS STRUCTURE FIX
========================================================= */

.popular-treatments-section .container {
    width: min(100% - 64px, 1240px);
}

.popular-heading {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    text-align: center;
}

.popular-treatment-grid {
    width: 100%;
    max-width: 1120px;
    margin: 46px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.popular-card {
    min-width: 0;
    min-height: 410px;
}

.popular-card-image {
    height: 188px;
}

.popular-card-body {
    padding-left: 24px;
    padding-right: 24px;
}

.popular-card-body h3 {
    font-size: 23px;
    min-height: 54px;
}

.popular-card-body p {
    min-height: 66px;
    font-size: 14px;
}

/* Also available line */

.also-available-treatments {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    max-width: 720px;
    margin: 34px auto 0;
    color: #675d62;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.also-available-treatments span:first-child {
    font-weight: 700;
    color: #3b3337;
}

.also-available-treatments a {
    color: var(--color-primary);
    font-weight: 700;
    border-bottom: 1px solid rgba(181, 40, 104, 0.25);
}

.also-available-treatments a:hover {
    color: var(--color-primary-dark);
    border-bottom-color: var(--color-primary-dark);
}

.also-available-treatments .separator {
    color: rgba(181, 40, 104, 0.45);
}

.popular-section-cta {
    margin-top: 24px;
}

/* Keep old pills hidden */

.service-pills {
    display: none !important;
}

/* Tablet */

@media (max-width: 1100px) {
    .popular-treatment-grid {
        max-width: 760px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */

@media (max-width: 640px) {
    .popular-treatments-section .container {
        width: min(100% - 30px, 1240px);
    }

    .popular-treatment-grid {
        max-width: 360px;
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 34px;
    }

    .popular-card {
        min-height: auto;
    }

    .popular-card-image {
        height: 180px;
    }

    .popular-card-body h3,
    .popular-card-body p {
        min-height: unset;
    }

    .also-available-treatments {
        max-width: 310px;
        margin-top: 28px;
        font-size: 13px;
        gap: 7px;
    }

    .popular-section-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* =========================================================
   FULL TREATMENTS SECTION - 7 SERVICE CARDS
========================================================= */

.popular-treatments-section,
.popular-treatment-grid,
.popular-card,
.popular-card-image,
.popular-card-icon,
.popular-card-body,
.popular-card-link,
.also-available-treatments,
.service-pills {
    all: unset;
}

.treatments-section {
    padding: 74px 0 82px;
    background: #ffffff;
}

.treatments-section .container {
    width: min(100% - 64px, 1240px);
}

.treatments-heading {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 44px;
    text-align: center;
}

.treatments-heading .section-intro {
    max-width: 610px;
    margin: 16px auto 0;
    color: #675d62;
    font-size: 15px;
    line-height: 1.7;
}

.treatments-full-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
}

.treatment-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 404px;
    background: #ffffff;
    border: 1px solid rgba(181, 40, 104, 0.16);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(63, 45, 52, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.treatment-service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(181, 40, 104, 0.30);
    box-shadow: 0 22px 52px rgba(63, 45, 52, 0.10);
}

.treatment-service-image {
    display: block;
    height: 178px;
    overflow: hidden;
    background: #fff7fa;
}

.treatment-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Image crop positions */

.treatment-service-card:nth-child(1) .treatment-service-image img {
    object-position: center center;
}

.treatment-service-card:nth-child(2) .treatment-service-image img {
    object-position: center 34%;
}

.treatment-service-card:nth-child(3) .treatment-service-image img {
    object-position: center 32%;
}

.treatment-service-card:nth-child(4) .treatment-service-image img {
    object-position: center 35%;
}

.treatment-service-card:nth-child(5) .treatment-service-image img {
    object-position: center 35%;
}

.treatment-service-card:nth-child(6) .treatment-service-image img {
    object-position: center 24%;
}

.treatment-service-card:nth-child(7) .treatment-service-image img {
    object-position: center 38%;
}

/* Centre second row of 3 on desktop */

@media (min-width: 981px) {
    .treatment-service-card:nth-child(5) {
        grid-column: 1 / 2;
    }

    .treatment-service-card:nth-child(5),
    .treatment-service-card:nth-child(6),
    .treatment-service-card:nth-child(7) {
        transform: translateX(calc(50% + 15px));
    }

    .treatment-service-card:nth-child(5):hover,
    .treatment-service-card:nth-child(6):hover,
    .treatment-service-card:nth-child(7):hover {
        transform: translateX(calc(50% + 15px)) translateY(-4px);
    }
}

.treatment-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff4f8;
    border: 6px solid #ffffff;
    color: var(--color-primary);
    display: grid;
    place-items: center;
    margin: -32px auto 18px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 22px rgba(181, 40, 104, 0.12);
    transition: 0.2s ease;
}

.treatment-service-card:hover .treatment-service-icon {
    background: #f8dce7;
}

.treatment-service-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.treatment-service-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 24px 28px;
    text-align: center;
}

.treatment-service-body h3 {
    font-family: var(--font-heading);
    font-size: 23px;
    line-height: 1.15;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.treatment-service-body p {
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.6;
    max-width: 245px;
    min-height: 66px;
    margin: 0 auto 20px;
}

.treatment-service-link {
    margin-top: auto;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.treatment-service-link:hover {
    color: var(--color-primary-dark);
}

/* Tablet */

@media (max-width: 1100px) {
    .treatments-full-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }

    .treatment-service-card:nth-child(5),
    .treatment-service-card:nth-child(6),
    .treatment-service-card:nth-child(7) {
        transform: none;
    }

    .treatment-service-card:nth-child(5):hover,
    .treatment-service-card:nth-child(6):hover,
    .treatment-service-card:nth-child(7):hover {
        transform: translateY(-4px);
    }
}

/* Mobile */

@media (max-width: 640px) {
    .treatments-section {
        padding: 52px 0 58px;
    }

    .treatments-section .container {
        width: min(100% - 30px, 1240px);
    }

    .treatments-heading {
        margin-bottom: 32px;
    }

    .treatments-heading .section-intro {
        max-width: 330px;
        font-size: 14px;
    }

    .treatments-full-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        gap: 22px;
    }

    .treatment-service-card {
        min-height: auto;
    }

    .treatment-service-image {
        height: 180px;
    }

    .treatment-service-body h3,
    .treatment-service-body p {
        min-height: unset;
    }
}

/* Larger phones / small tablets */

@media (min-width: 431px) and (max-width: 760px) {
    .treatments-full-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 720px;
    }

    .treatment-service-image {
        height: 165px;
    }

    .treatment-service-body {
        padding-left: 18px;
        padding-right: 18px;
    }

    .treatment-service-body h3 {
        font-size: 20px;
    }

    .treatment-service-body p {
        font-size: 13px;
    }
}

/* =========================================================
   TRUST BAR
========================================================= */

.trust-bar {
    background: #fffdfc;
    border-top: 1px solid rgba(181, 40, 104, 0.12);
    border-bottom: 1px solid rgba(181, 40, 104, 0.12);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 18px 24px;
    border-left: 1px solid rgba(181, 40, 104, 0.12);
}

.trust-item:last-child {
    border-right: 1px solid rgba(181, 40, 104, 0.12);
}

.trust-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.trust-icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    display: block;
    opacity: 1;
    transform: scale(1.2);
}

.trust-item p {
    margin: 0;
    color: #17131a;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Tablet */

@media (max-width: 980px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item {
        min-height: 88px;
        border-right: 0;
        border-bottom: 1px solid rgba(181, 40, 104, 0.12);
    }

    .trust-item:nth-child(2),
    .trust-item:nth-child(4) {
        border-right: 1px solid rgba(181, 40, 104, 0.12);
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-bottom: 0;
    }
}

/* Mobile premium 2x2 card layout */

@media (max-width: 640px) {
    .trust-bar {
        background: #fff8fb;
        padding: 18px 0;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        border: 0;
    }

    .trust-item,
    .trust-item:last-child,
    .trust-item:nth-child(2),
    .trust-item:nth-child(4) {
        min-height: 118px;
        padding: 18px 10px 16px;
        border: 1px solid rgba(181, 40, 104, 0.13);
        border-radius: 16px;
        background: #ffffff;
        box-shadow: 0 10px 26px rgba(63, 45, 52, 0.05);
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }

    .trust-icon {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
    }

    .trust-icon img {
        width: 56px;
        height: 56px;
        transform: scale(1.25);
    }

    .trust-item p {
        font-size: 10.5px;
        line-height: 1.35;
        max-width: 130px;
    }
}


/* =========================================================
   NHS OFFER BANNER
========================================================= */

.offer-banner {
    background:
        linear-gradient(90deg, #fff4f8 0%, #fff8fb 48%, #fffdfc 100%);
    border-top: 1px solid rgba(181, 40, 104, 0.14);
    border-bottom: 1px solid rgba(181, 40, 104, 0.14);
}

.offer-inner {
    min-height: 116px;
    display: grid;
    grid-template-columns: 1.3fr 0.8fr auto;
    align-items: center;
    gap: 32px;
}

.offer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.offer-icon {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(181, 40, 104, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(181, 40, 104, 0.10);
}

.offer-icon svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.offer-label {
    margin: 0 0 5px;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.offer-left h2 {
    margin: 0;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: clamp(30px, 2.2vw, 39px);
    line-height: 1.12;
}

.offer-text {
    margin: 0;
    color: #5f565b;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

.offer-inner .btn {
    min-width: 170px;
}

/* Tablet */

@media (max-width: 980px) {
    .offer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 0;
        gap: 18px;
    }

    .offer-left {
        justify-content: center;
    }

    .offer-text {
        max-width: 360px;
        margin-inline: auto;
    }

    .offer-inner .btn {
        justify-self: center;
    }
}

/* Mobile */

@media (max-width: 640px) {
    .offer-inner {
        padding: 30px 0 32px;
    }

    .offer-left {
        flex-direction: column;
        gap: 14px;
    }

    .offer-icon {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .offer-icon svg {
        width: 34px;
        height: 34px;
    }

    .offer-left h2 {
        font-size: 28px;
        max-width: 330px;
    }

    .offer-label {
        font-size: 10px;
    }

    .offer-text {
        font-size: 13px;
    }

    .offer-inner .btn {
        width: 100%;
        max-width: 280px;
    }
}
/* =========================================================
   FINAL HOMEPAGE POLISH
   Mobile treatments, stronger icons, Why Choose refinement
========================================================= */

/* ---------------------------------------------------------
   Stronger icon visibility globally
--------------------------------------------------------- */

.trust-icon img,
.treatment-service-icon img,
.why-icon img {
    opacity: 1;
    display: block;
    object-fit: contain;
}

.trust-icon img {
    transform: scale(1.34);
}

.treatment-service-icon {
    background: #fff0f6;
    box-shadow: 0 10px 24px rgba(181, 40, 104, 0.14);
}

.treatment-service-icon img {
    width: 44px;
    height: 44px;
    transform: scale(1.18);
}

.treatment-service-card:hover .treatment-service-icon img {
    transform: scale(1.24);
}

.why-icon {
    background: #fff0f6;
    box-shadow: 0 8px 20px rgba(181, 40, 104, 0.08);
}

.why-icon img {
    width: 40px;
    height: 40px;
    transform: scale(1.2);
}

/* ---------------------------------------------------------
   Desktop treatment cards: cleaner text balance
--------------------------------------------------------- */

.treatment-service-body h3 {
    font-size: 22px;
    line-height: 1.15;
}

.treatment-service-body p {
    max-width: 230px;
    font-size: 13.5px;
    line-height: 1.55;
    color: #5f5960;
}

.treatment-service-link {
    padding-top: 2px;
}

/* ---------------------------------------------------------
   Why Choose section refinement
--------------------------------------------------------- */

.why-choose {
    padding-top: 70px;
    padding-bottom: 72px;
    background: #fffdfc;
}

.why-grid {
    max-width: 1180px;
    margin-inline: auto;
    padding: 26px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #fff8fb 100%);
    border: 1px solid rgba(181, 40, 104, 0.13);
    box-shadow: 0 20px 54px rgba(63, 45, 52, 0.065);
}

.why-card {
    min-height: 190px;
    padding: 28px 24px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(181, 40, 104, 0.14);
    box-shadow: 0 12px 30px rgba(63, 45, 52, 0.045);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.why-card:hover {
    transform: translateY(-3px);
    border-color: rgba(181, 40, 104, 0.24);
    box-shadow: 0 18px 42px rgba(63, 45, 52, 0.075);
}

.why-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card h3 {
    font-size: 20px;
    line-height: 1.18;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #5f5960;
}

/* ---------------------------------------------------------
   Tablet / large mobile treatment card cleanup
--------------------------------------------------------- */

@media (min-width: 431px) and (max-width: 760px) {
    .treatments-full-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 720px;
        gap: 16px;
    }

    .treatment-service-card {
        min-height: auto;
        border-radius: 16px;
    }

    .treatment-service-image {
        height: 148px;
    }

    .treatment-service-icon {
        width: 54px;
        height: 54px;
        margin-top: -27px;
        margin-bottom: 14px;
    }

    .treatment-service-icon img {
        width: 36px;
        height: 36px;
        transform: scale(1.18);
    }

    .treatment-service-body {
        padding: 0 14px 22px;
    }

    .treatment-service-body h3 {
        font-size: 18px;
        line-height: 1.12;
        margin-bottom: 12px;
        min-height: 42px;
    }

    .treatment-service-body p {
        display: none;
    }

    .treatment-service-link {
        font-size: 10.5px;
    }

    .treatment-service-card:nth-child(7) {
        grid-column: 1 / -1;
        width: calc(50% - 8px);
        justify-self: center;
    }
}

/* ---------------------------------------------------------
   Small mobile treatment card cleanup
--------------------------------------------------------- */

@media (max-width: 430px) {
    .treatments-full-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 340px;
        gap: 14px;
    }

    .treatment-service-card {
        min-height: auto;
        border-radius: 15px;
    }

    .treatment-service-image {
        height: 132px;
    }

    .treatment-service-icon {
        width: 50px;
        height: 50px;
        margin-top: -25px;
        margin-bottom: 12px;
        border-width: 5px;
    }

    .treatment-service-icon img {
        width: 34px;
        height: 34px;
        transform: scale(1.18);
    }

    .treatment-service-body {
        padding: 0 12px 20px;
    }

    .treatment-service-body h3 {
        font-size: 17px;
        line-height: 1.12;
        margin-bottom: 11px;
        min-height: 40px;
    }

    .treatment-service-body p {
        display: none;
    }

    .treatment-service-link {
        font-size: 10px;
        letter-spacing: 0.04em;
    }

    .treatment-service-card:nth-child(7) {
        grid-column: 1 / -1;
        width: calc(50% - 7px);
        justify-self: center;
    }
}

/* ---------------------------------------------------------
   Why Choose mobile
--------------------------------------------------------- */

@media (max-width: 640px) {
    .why-choose {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .why-grid {
        padding: 14px;
        gap: 12px;
        border-radius: 18px;
    }

    .why-card {
        min-height: auto;
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        padding: 18px 16px;
        gap: 14px;
    }

    .why-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .why-icon img {
        width: 36px;
        height: 36px;
        transform: scale(1.22);
    }

    .why-card h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .why-card p {
        font-size: 12.5px;
        line-height: 1.55;
    }
}

/* =========================================================
   INNER PAGE / TREATMENT PAGE BASE
========================================================= */

.page-hero {
    background:
        radial-gradient(circle at 82% 24%, rgba(248, 220, 231, 0.45), transparent 34%),
        linear-gradient(100deg, #ffffff 0%, #ffffff 58%, #fff7fa 100%);
    border-bottom: 1px solid rgba(181, 40, 104, 0.12);
}

.page-hero-inner {
    min-height: 420px;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    align-items: center;
    gap: 60px;
    padding-top: 54px;
    padding-bottom: 54px;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.04;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-hero p:not(.eyebrow) {
    max-width: 560px;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 30px;
}

.page-hero-image {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 46px rgba(63, 45, 52, 0.10);
}

.page-hero-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.treatment-content-section {
    background: #ffffff;
}

.treatment-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 70px;
    align-items: start;
}

.treatment-main-content {
    max-width: 760px;
}

.treatment-main-content h2 {
    font-family: var(--font-heading);
    font-size: 34px;
    line-height: 1.18;
    margin: 34px 0 14px;
}

.treatment-main-content h2:first-child {
    margin-top: 0;
}

.treatment-main-content p,
.treatment-main-content li {
    color: #5f5960;
    font-size: 15px;
    line-height: 1.78;
}

.treatment-main-content ul {
    padding-left: 22px;
    margin: 14px 0 24px;
}

.treatment-sidebar {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 18px;
}

.sidebar-card {
    border: 1px solid rgba(181, 40, 104, 0.14);
    border-radius: 18px;
    padding: 24px;
    background: #fffdfc;
    box-shadow: 0 14px 36px rgba(63, 45, 52, 0.06);
}

.sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.sidebar-card p,
.sidebar-card a:not(.btn) {
    color: #5f5960;
    font-size: 14px;
    line-height: 1.65;
}

.sidebar-card .btn {
    width: 100%;
    margin-top: 16px;
}

@media (max-width: 980px) {
    .page-hero-inner {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .page-hero p:not(.eyebrow) {
        margin-left: auto;
        margin-right: auto;
    }

    .treatment-content-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .treatment-main-content {
        max-width: none;
    }

    .treatment-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .page-hero-inner {
        min-height: auto;
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .page-hero h1 {
        font-size: 38px;
    }

    .page-hero p:not(.eyebrow) {
        font-size: 14px;
    }

    .page-hero-image img {
        height: 250px;
    }

    .treatment-main-content h2 {
        font-size: 28px;
    }
}
/* =========================================================
   PRICE TABLE
========================================================= */

.price-table-wrapper {
    margin: 22px 0 34px;
    overflow-x: auto;
    border: 1px solid rgba(181, 40, 104, 0.14);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(63, 45, 52, 0.05);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
}

.price-table th,
.price-table td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(181, 40, 104, 0.10);
    font-size: 14px;
    line-height: 1.5;
}

.price-table th {
    background: #fff7fa;
    color: #2f2f35;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 12px;
}

.price-table td {
    color: #5f5960;
}

.price-table td:nth-child(2) {
    color: var(--color-primary);
    font-weight: 800;
    white-space: nowrap;
}

.price-table tr:last-child td {
    border-bottom: 0;
}

@media (max-width: 640px) {
    .price-table th,
    .price-table td {
        padding: 13px 14px;
        font-size: 13px;
    }
}


/* =========================================================
   NAV DROPDOWN - ELEGANT SERVICE MENU
========================================================= */

.site-header {
    position: relative;
    z-index: 100;
}

.nav-dropdown {
    position: static;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    text-decoration: none;
}

.nav-dropdown-toggle span {
    font-size: 10px;
    line-height: 1;
    transform: translateY(1px);
    opacity: 0.7;
}

.nav-dropdown.active > .nav-dropdown-toggle,
.nav-dropdown:hover > .nav-dropdown-toggle,
.nav-dropdown:focus-within > .nav-dropdown-toggle {
    color: var(--color-primary);
}

.nav-dropdown-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    padding: 0;
    background: rgba(255, 253, 252, 0.98);
    border-top: 1px solid rgba(181, 40, 104, 0.10);
    border-bottom: 1px solid rgba(181, 40, 104, 0.13);
    box-shadow: 0 18px 34px rgba(63, 45, 52, 0.075);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -16px;
    height: 16px;
}

.nav-dropdown-menu {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

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

.nav-dropdown-menu a {
    min-height: 74px;
    padding: 18px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #302b31;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-decoration: none;
    background: transparent;
    border-right: 1px solid rgba(181, 40, 104, 0.10);
    transition: color 0.18s ease, background 0.18s ease;
}

.nav-dropdown-menu a:last-child {
    border-right: 0;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
    color: var(--color-primary);
    background: #fff7fa;
}

/* Mobile dropdown */

@media (max-width: 900px) {
    .nav-dropdown {
        display: block;
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: center;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 10px;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        background: #fffdfc;
        border: 1px solid rgba(181, 40, 104, 0.12);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        transform: none;
    }

    .nav-dropdown-menu a {
        min-height: 42px;
        padding: 11px 14px;
        border-right: 0;
        border-bottom: 1px solid rgba(181, 40, 104, 0.10);
        font-size: 12px;
        background: transparent;
    }

    .nav-dropdown-menu a:last-child {
        border-bottom: 0;
    }
}

/* =========================================================
   NAV DROPDOWN JS OPEN STATE FIX
========================================================= */

@media (min-width: 901px) {
    .nav-dropdown.is-open .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-dropdown-menu {
        z-index: 999;
    }
}

/* =========================================================
   STICKY HEADER FIX
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* Make sure dropdown appears above page content */
.nav-dropdown-menu {
    z-index: 1001;
}

/* Prevent anchor jumps hiding under sticky header */
html {
    scroll-padding-top: 96px;
}

@media (max-width: 900px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    html {
        scroll-padding-top: 76px;
    }
}

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

.contact-section {
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.contact-info h2,
.contact-form-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 500;
    margin-bottom: 16px;
}

.contact-info > p:not(.eyebrow),
.contact-form-card > p {
    color: #5f5960;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 28px;
}

.contact-detail-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contact-detail-card,
.contact-note,
.contact-form-card {
    border: 1px solid rgba(181, 40, 104, 0.14);
    border-radius: 18px;
    background: #fffdfc;
    box-shadow: 0 14px 36px rgba(63, 45, 52, 0.055);
}

.contact-detail-card {
    padding: 20px 22px;
}

.contact-detail-card h3,
.contact-note h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.contact-detail-card p,
.contact-detail-card a,
.contact-note p {
    color: #5f5960;
    font-size: 14px;
    line-height: 1.65;
}

.contact-detail-card a:hover {
    color: var(--color-primary);
}

.contact-note {
    margin-top: 20px;
    padding: 22px;
    background: #fff7fa;
}

.contact-form-card {
    padding: 34px;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field label,
.form-consent {
    color: #302b31;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(181, 40, 104, 0.18);
    border-radius: 12px;
    background: #ffffff;
    color: #302b31;
    font: inherit;
    font-size: 14px;
    padding: 13px 14px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-field textarea {
    resize: vertical;
    min-height: 140px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(181, 40, 104, 0.45);
    box-shadow: 0 0 0 4px rgba(181, 40, 104, 0.08);
}

.form-honeypot {
    display: none;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #5f5960;
    font-weight: 600;
}

.form-consent input {
    margin-top: 3px;
    accent-color: var(--color-primary);
}

.form-message {
    border-radius: 14px;
    padding: 14px 16px;
    margin: 18px 0;
    font-size: 14px;
    line-height: 1.6;
}

.form-message-success {
    background: #f1fbf5;
    border: 1px solid rgba(46, 125, 80, 0.18);
    color: #2f6f46;
}

.form-message-error {
    background: #fff5f5;
    border: 1px solid rgba(181, 40, 60, 0.18);
    color: #7b2634;
}

.form-message ul {
    padding-left: 20px;
    margin-top: 8px;
}

@media (max-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }
}

@media (max-width: 640px) {
    .contact-form-card {
        padding: 24px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

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

.about-intro-section {
    background: #ffffff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.about-intro-image {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 46px rgba(63, 45, 52, 0.10);
}

.about-intro-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.about-intro-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 500;
    margin-bottom: 20px;
}

.about-intro-content p {
    color: #5f5960;
    font-size: 15px;
    line-height: 1.78;
    margin-bottom: 14px;
}

.about-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 24px;
}

.about-contact-links a {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 800;
}

.about-values-section {
    background: #fffdfc;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.about-value-card {
    border: 1px solid rgba(181, 40, 104, 0.14);
    border-radius: 18px;
    background: #ffffff;
    padding: 26px 24px;
    box-shadow: 0 14px 34px rgba(63, 45, 52, 0.055);
}

.about-value-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1.16;
    margin-bottom: 12px;
}

.about-value-card p {
    color: #5f5960;
    font-size: 13.5px;
    line-height: 1.65;
}

.about-location-section {
    background: #ffffff;
}

@media (max-width: 980px) {
    .about-intro-grid,
    .about-values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-intro-grid {
        gap: 42px;
    }

    .about-intro-image img {
        height: 420px;
    }
}

@media (max-width: 640px) {
    .about-intro-grid,
    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-intro-image img {
        height: 340px;
    }

    .about-value-card {
        padding: 22px 20px;
    }
}


/* =========================================================
   GALLERY PAGE
========================================================= */

.gallery-results-section {
    background: #ffffff;
}

.gallery-results-grid {
    columns: 3 280px;
    column-gap: 26px;
}

.gallery-result-card {
    break-inside: avoid;
    margin: 0 0 26px;
    border: 1px solid rgba(181, 40, 104, 0.12);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(63, 45, 52, 0.07);
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gallery-result-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(63, 45, 52, 0.10);
}

.gallery-result-card a {
    display: block;
    background: #fbf8f6;
}

.gallery-result-card img {
    width: 100%;
    height: auto;
    display: block;
    background: #fbf8f6;
}

.gallery-result-card figcaption {
    display: none;
}

.gallery-result-card.is-hidden {
    display: none;
}

.gallery-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.gallery-load-more {
    min-width: 210px;
}

.gallery-disclaimer {
    max-width: 880px;
    margin: 44px auto 0;
    padding: 20px 24px;
    border-radius: 18px;
    background: #fff7fa;
    border: 1px solid rgba(181, 40, 104, 0.12);
    text-align: center;
}

.gallery-disclaimer p,
.gallery-empty p {
    color: #5f5960;
    font-size: 14px;
    line-height: 1.7;
}

.gallery-empty {
    max-width: 720px;
    margin: 0 auto;
    padding: 34px;
    border-radius: 18px;
    background: #fff7fa;
    border: 1px solid rgba(181, 40, 104, 0.12);
    text-align: center;
}

.gallery-empty h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 10px;
}

@media (max-width: 980px) {
    .gallery-results-grid {
        columns: 2 260px;
        column-gap: 22px;
    }
}

@media (max-width: 640px) {
    .gallery-results-grid {
        columns: 1;
    }

    .gallery-result-card {
        margin-bottom: 20px;
    }
}

/* =========================================================
   GALLERY FINAL POLISH
========================================================= */

.gallery-results-grid {
    columns: 3 280px;
    column-gap: 26px;
}

.gallery-result-card {
    break-inside: avoid;
    margin: 0 0 26px;
    border: 1px solid rgba(181, 40, 104, 0.12);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(63, 45, 52, 0.07);
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gallery-result-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(63, 45, 52, 0.10);
}

.gallery-lightbox-trigger {
    width: 100%;
    display: block;
    padding: 0;
    border: 0;
    background: #fbf8f6;
    cursor: zoom-in;
}

.gallery-lightbox-trigger img {
    width: 100%;
    height: auto;
    display: block;
    background: #fbf8f6;
}

.gallery-result-card figcaption {
    display: none;
}

.gallery-result-card.is-hidden {
    display: none;
}

.gallery-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.gallery-load-more {
    min-width: 220px;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(28, 25, 28, 0.74);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.gallery-lightbox-inner {
    position: relative;
    z-index: 2;
    max-width: min(1100px, 94vw);
    max-height: 88vh;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.gallery-lightbox-inner img {
    display: block;
    max-width: 100%;
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.gallery-lightbox-close {
    position: fixed;
    top: 22px;
    right: 24px;
    z-index: 3;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.42);
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #302b31;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.gallery-lightbox-close:hover {
    color: var(--color-primary);
}

@media (max-width: 980px) {
    .gallery-results-grid {
        columns: 2 260px;
        column-gap: 22px;
    }
}

@media (max-width: 640px) {
    .gallery-results-grid {
        columns: 1;
    }

    .gallery-result-card {
        margin-bottom: 20px;
    }

    .gallery-lightbox {
        padding: 16px;
    }

    .gallery-lightbox-close {
        top: 14px;
        right: 14px;
    }
}

/* =========================================================
   LEGAL PAGES
========================================================= */

.legal-content {
    max-width: 860px;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    line-height: 1.2;
    margin: 34px 0 12px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: #5f5960;
    font-size: 15px;
    line-height: 1.78;
    margin-bottom: 16px;
}

.legal-content a {
    color: var(--color-primary);
    font-weight: 700;
}

.legal-content-section {
    background: #ffffff;
}

/* =========================================================
   FOOTER LEGAL LINKS
========================================================= */

.footer-bottom-left {
    display: grid;
    gap: 6px;
}

.footer-legal-links {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
}

.footer-legal-links a {
    color: inherit;
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: var(--color-primary);
}

@media (max-width: 640px) {
    .footer-bottom-left {
        justify-items: center;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

/* =========================================================
   FOOTER LEGAL LINKS
========================================================= */

.footer-bottom-left {
    display: grid;
    gap: 6px;
}

.footer-legal-links {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
}

.footer-legal-links a {
    color: inherit;
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: var(--color-primary);
}

@media (max-width: 640px) {
    .footer-bottom-left {
        justify-items: center;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

/* =========================================================
   HOMEPAGE SEO SUPPORT SECTION
========================================================= */

.homepage-seo-section {
    background: #ffffff;
    padding-top: 36px;
}

.seo-support-card {
    max-width: 960px;
    margin: 0 auto;
    padding: 34px 38px;
    border: 1px solid rgba(181, 40, 104, 0.12);
    border-radius: 22px;
    background: #fffdfc;
    box-shadow: 0 16px 42px rgba(63, 45, 52, 0.06);
    text-align: center;
}

.seo-support-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 500;
    margin-bottom: 16px;
}

.seo-support-card p:not(.eyebrow) {
    max-width: 780px;
    margin: 0 auto;
    color: #5f5960;
    font-size: 15px;
    line-height: 1.75;
}

@media (max-width: 640px) {
    .seo-support-card {
        padding: 26px 20px;
        text-align: left;
    }
}

/* =========================================================
   TEMPORARILY DISABLED CONTACT FORM
========================================================= */

.contact-form-offline p {
    margin-top: 8px;
    margin-bottom: 0;
}

.contact-form-offline a {
    color: inherit;
    font-weight: 800;
    text-decoration: underline;
}

.contact-form-disabled {
    opacity: 0.55;
    pointer-events: none;
}

.contact-form-disabled input,
.contact-form-disabled select,
.contact-form-disabled textarea,
.contact-form-disabled button {
    cursor: not-allowed;
}

.contact-form-disabled button[disabled] {
    opacity: 0.75;
    filter: grayscale(0.25);
}
