/* ============================================
   PROCEDURES PAGE STYLES
   ============================================ */

/* ---- Procedure Hero - Doctor-style two-column layout ---- */
.proc-hero {
    position: relative;
    padding: var(--sp-5xl) 0 var(--sp-2xl);
    overflow: hidden;
    color: var(--white);
    border-bottom: 1px solid rgba(196, 170, 114, 0.15);
}

/* Tighten gap between hero and the content section below */
.proc-hero+.section {
    padding-top: var(--sp-xl);
}

/* Subtle mesh overlay */
.proc-hero__bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(196, 170, 114, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(61, 80, 64, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(196, 170, 114, 0.05) 0%, transparent 50%);
    opacity: 0.8;
    z-index: 0;
}

/* Animated pearl sweep */
.proc-hero__bg-pattern::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 60%;
    height: 200%;
    background: linear-gradient(105deg,
            transparent 30%,
            rgba(255, 255, 255, 0.02) 38%,
            rgba(255, 255, 255, 0.05) 44%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.05) 56%,
            rgba(255, 255, 255, 0.02) 62%,
            transparent 70%);
    animation: procPearlSweep 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes procPearlSweep {
    0% {
        transform: translateX(-100%) rotate(25deg);
    }

    100% {
        transform: translateX(250%) rotate(25deg);
    }
}

/* Decorative orbs */
.proc-hero::before,
.proc-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: procBreathe 6s ease-in-out infinite;
}

.proc-hero::before {
    width: 400px;
    height: 400px;
    background: rgba(196, 170, 114, 0.06);
    top: -10%;
    right: -5%;
}

.proc-hero::after {
    width: 300px;
    height: 300px;
    background: rgba(61, 80, 64, 0.12);
    bottom: -15%;
    left: -5%;
    animation-delay: 3s;
}

@keyframes procBreathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Two-column grid */
.proc-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left: Content */
.proc-hero__content {
    position: relative;
    z-index: 1;
    max-width: 580px;
}

.proc-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--sp-md);
}

.proc-hero__divider {
    width: 60px;
    height: 3px;
    background: var(--gold-light);
    margin-bottom: var(--sp-xl);
    border-radius: 2px;
}

.proc-hero__desc {
    font-size: var(--fs-lg);
    color: rgba(253, 250, 245, 0.85);
    line-height: 1.6;
    margin-bottom: var(--sp-sm);
}

.proc-hero__desc:last-child {
    margin-bottom: 0;
}

/* Right: Image */
.proc-hero__image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.proc-hero__image-wrapper img {
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(196, 170, 114, 0.15));
}

/* Bordered variant - for photorealistic images (face procedures) */
.proc-hero__image-wrapper--bordered img {
    border: 2px solid rgba(196, 170, 114, 0.5);
    border-radius: 16px;
    filter: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(196, 170, 114, 0.1);
    object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
    .proc-hero__inner {
        grid-template-columns: 1fr;
        gap: var(--sp-2xl);
        text-align: center;
    }

    .proc-hero__content {
        max-width: 100%;
    }

    .proc-hero__divider {
        margin-left: auto;
        margin-right: auto;
    }

    .proc-hero__image-wrapper img {
        max-width: 320px;
        margin: 0 auto;
    }

    .proc-hero {
        padding: 8rem 0 var(--sp-3xl);
    }
}

@media (max-width: 768px) {
    .proc-hero {
        padding: 6rem 0 var(--sp-2xl);
    }

    .proc-hero__title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .proc-hero__desc {
        font-size: var(--fs-base);
    }

    .proc-hero__image-wrapper img {
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .proc-hero {
        padding: 5rem 0 var(--sp-xl);
    }

    .proc-hero__image-wrapper img {
        max-width: 200px;
    }
}

/* Overview Cards (top grid) */
.procedures-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-2xl);
}

.proc-category-card {
    background: transparent;
    border-radius: var(--radius-xl);
    overflow: visible;
    border: none;
    box-shadow: none;
    transition: transform var(--ease-smooth);
    cursor: pointer;
    position: relative;
}

.proc-category-card:hover {
    transform: translateY(-8px);
}

.proc-category-card__image {
    height: 240px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--color-pale-champagne);
    border: 1px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background-color 0.3s ease;
}

.proc-category-card:hover .proc-category-card__image {
    background-color: var(--color-pale-champagne);
}

.proc-category-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: rgba(61, 80, 64, 0.08); Very light green (forest) mask */
    pointer-events: none;
    transition: background var(--ease-base);
}

.proc-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    transition: transform var(--ease-smooth), filter var(--ease-base);
    filter: saturate(0.95);
}

.proc-category-card:hover .proc-category-card__image::after {
    background: rgba(61, 80, 64, 0.03);
    /* Lightens on hover */
}

.proc-category-card:hover .proc-category-card__image img {
    transform: scale(1.03);
    filter: saturate(1.05) brightness(1.02);
}

.proc-category-card__body {
    padding: var(--sp-lg) var(--sp-sm) 0;
    text-align: center;
}

.proc-category-card__title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    color: var(--navy);
    margin-bottom: var(--sp-xs);
    font-weight: 600;
    letter-spacing: 0.2px;
}

.proc-category-card__desc {
    font-size: var(--fs-sm);
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: var(--sp-md);
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.proc-category-card__link {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
    transition: all var(--ease-base);
}

.proc-category-card__link:hover {
    color: var(--gold-dark);
    border-bottom-color: var(--gold-dark);
}

/* Gynae hub: title-only cards (no images) */
.gynae-title-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-lg);
    text-align: center;
}

.gynae-title-card h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.2px;
    line-height: 1.3;
    margin: 0;
}

/* Procedure Sections (alternating image/text) */
.proc-section__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3xl);
    align-items: center;
    margin-bottom: var(--sp-3xl);
}

.proc-section__header>div:only-child {
    grid-column: 1 / -1;
}

.proc-section__header h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    color: var(--navy);
    margin-bottom: var(--sp-lg);
}

.proc-section__header p {
    font-size: var(--fs-base);
    color: var(--slate);
    line-height: 1.9;
}

.proc-section__image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Sub-procedure Grid */
.sub-proc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-md);
}

.sub-proc-item {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
    padding: var(--sp-lg) var(--sp-xl);
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    transition: all var(--ease-base);
}

.proc-section.section--ivory .sub-proc-item {
    background: var(--ivory-warm);
}

.sub-proc-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.sub-proc-item__icon {
    color: var(--gold);
    font-size: var(--fs-lg);
    flex-shrink: 0;
}

.sub-proc-item__name {
    font-weight: 500;
    font-size: var(--fs-sm);
    color: var(--navy);
}

/* Responsive */
@media (max-width: 1024px) {
    .procedures-overview {
        grid-template-columns: repeat(2, 1fr);
    }

    .sub-proc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .procedures-overview {
        grid-template-columns: 1fr;
        gap: var(--sp-xl);
    }

    .proc-section__header {
        grid-template-columns: 1fr;
    }

    .proc-section__image img {
        height: 240px;
    }

    .sub-proc-grid {
        grid-template-columns: 1fr;
    }

    .proc-category-card__image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .procedures-overview {
        gap: var(--sp-lg);
    }

    .proc-category-card__image {
        height: 170px;
    }

    .proc-category-card__title {
        font-size: var(--fs-base);
    }

    .proc-category-card__desc {
        font-size: var(--fs-xs);
    }
}

/* ---- Side Pane (Drawer) ---- */
.proc-pane-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 40, 32, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.proc-pane-overlay.open {
    opacity: 1;
    visibility: visible;
}

.proc-pane {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.proc-pane.open {
    right: 0;
}

.proc-pane__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-xl);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--navy);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 10;
}

.proc-pane__title {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 400;
    color: var(--white);
    margin: 0;
}

.proc-pane__close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: opacity var(--ease-fast);
    padding: 0;
    line-height: 1;
}

.proc-pane__close:hover {
    opacity: 0.7;
}

.proc-pane__body {
    padding: var(--sp-xl);
}

.proc-pane__intro {
    font-size: var(--fs-sm);
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: var(--sp-2xl);
}

.proc-pane__intro p {
    margin-bottom: var(--sp-md);
}

.proc-pane__qa-title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    color: var(--gold-dark);
    margin-bottom: var(--sp-lg);
    padding-bottom: var(--sp-xs);
    border-bottom: 1px solid var(--border);
}

.sub-proc-item.proc-trigger {
    cursor: pointer;
}

/* Accordion in Pane */
.pane-accordion-item {
    border-bottom: 1px solid var(--border-subtle);
}

.pane-accordion-item:last-child {
    border-bottom: none;
}

.pane-accordion-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--sp-md);
    cursor: pointer;
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    transition: color var(--ease-fast);
}

.pane-accordion-question:hover {
    color: var(--gold-dark);
}

.pane-accordion-question .toggle-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    line-height: 1;
    transition: all 0.25s ease;
}

.pane-accordion-item.open .pane-accordion-question .toggle-icon {
    background: var(--gold);
    color: var(--white);
    transform: rotate(45deg);
}

.pane-accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.pane-accordion-answer__inner {
    padding: 0 0 16px 0;
    color: var(--slate);
    font-size: 13px;
    line-height: 1.6;
}

/* ============================================
   PROCEDURE DETAIL PAGE - REDESIGNED LAYOUT
   ============================================ */

/* Intro section - full width, no image */
.proc-detail-intro {
    width: 100%;
}

.proc-detail-intro h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    color: var(--navy);
    margin-bottom: var(--sp-lg);
}

.proc-detail-intro p {
    font-size: var(--fs-base);
    color: var(--slate);
    line-height: 1.9;
    margin-bottom: var(--sp-md);
}

/* Candidate Section - stacked vertical layout */
.proc-candidate {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: var(--sp-3xl);
    padding: var(--sp-3xl);
    background: var(--color-deep-green);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
}



.proc-candidate__title {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    color: var(--white);
    margin-bottom: var(--sp-xl);
}

.proc-candidate__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.proc-candidate__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: var(--sp-sm);
    font-size: var(--fs-md);
    color: var(--white);
    line-height: 1.7;
}

.proc-candidate__list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold-light);
    font-size: 0.75rem;
    top: 2px;
}

/* Flat FAQ - two-column layout with recovery card */
.proc-faq-flat {
    margin-top: var(--sp-2xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3xl);
    align-items: start;
}

/* Recovery timeline card - right column */
.proc-recovery-card {
    background: var(--color-deep-green);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
    padding: var(--sp-3xl);
    position: sticky;
    top: 120px;
}

/* CTA card spans full width below both columns */
.proc-faq-flat>.proc-faq-cta {
    grid-column: 1 / -1;
    max-width: 100%;
    margin: 0 auto;
}

.proc-faq-item {
    margin-bottom: var(--sp-lg);
    padding-left: 3rem;
}

.proc-faq-questions {
    counter-reset: faq-counter;
}

.proc-faq-item h4 {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    color: var(--navy);
    margin-bottom: var(--sp-md);
    margin-left: -3rem;
}

.proc-faq-item h4::before {
    counter-increment: faq-counter;
    content: "Q" counter(faq-counter) ".  ";
    color: var(--gold-dark);
    display: inline-block;
    width: 3rem;
}

.proc-faq-item p {
    font-size: var(--fs-base);
    color: var(--slate);
    line-height: 1.8;
}

.proc-faq-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.proc-faq-item ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: var(--sp-sm);
    font-size: var(--fs-base);
    color: var(--slate);
    line-height: 1.8;
}

.proc-faq-item ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.75rem;
    top: 4px;
}

/* FAQ Section - redesigned with two-column layout */
.proc-faq-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--sp-3xl);
    margin-top: var(--sp-3xl);
    align-items: start;
}

.proc-faq-questions {
    /* FAQ questions column */
}

/* Dark green question boxes */
.proc-faq-questions .pane-accordion-item {
    border-bottom: none;
    margin-bottom: var(--sp-sm);
}

.proc-faq-questions .pane-accordion-question {
    background: var(--navy);
    color: var(--white);
    padding: var(--sp-lg) var(--sp-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--fs-sm);
    transition: all var(--ease-base);
}

.proc-faq-questions .pane-accordion-question:hover {
    background: var(--color-green-hover);
    color: var(--color-deep-gold);
}

.proc-faq-questions .pane-accordion-question .toggle-icon {
    border-color: var(--gold);
    color: var(--gold);
}

.proc-faq-questions .pane-accordion-item.active .pane-accordion-question .toggle-icon {
    background: var(--gold);
    color: var(--white);
    transform: rotate(45deg);
}

.proc-faq-questions .pane-accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.proc-faq-questions .pane-accordion-answer__inner {
    padding: var(--sp-lg) var(--sp-xl);
    color: var(--slate);
    font-size: var(--fs-sm);
    line-height: 1.8;
    background: var(--ivory-warm);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    margin-top: -4px;
}

.proc-faq-questions .pane-accordion-answer__inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.proc-faq-questions .pane-accordion-answer__inner ul li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: var(--sp-xs);
}

.proc-faq-questions .pane-accordion-answer__inner ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* CTA card - below FAQ */
.proc-faq-cta {
    position: static;
    text-align: center;
    padding: var(--sp-xl) var(--sp-2xl);
    background: var(--navy);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gold);
    max-width: 100%;
    margin: 0 auto;
}

.proc-faq-cta__title {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    color: var(--white);
    margin-bottom: var(--sp-sm);
    line-height: 1.3;
}

.proc-faq-cta__subtitle {
    font-size: var(--fs-sm);
    color: var(--white);
    margin-bottom: var(--sp-xl);
}

.proc-faq-cta .btn {
    display: inline-block;
}

/* Responsive for procedure detail */
@media (max-width: 1024px) {
    .proc-faq-layout {
        grid-template-columns: 1fr;
    }

    .proc-faq-flat {
        grid-template-columns: 1fr;
    }

    .proc-recovery-card {
        position: static;
    }

    .proc-faq-flat>.proc-faq-cta {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .proc-faq-item {
        padding-left: 2.2rem;
    }

    .proc-faq-item h4 {
        margin-left: -2.2rem;
        font-size: var(--fs-lg);
    }

    .proc-faq-item h4::before {
        width: 2.2rem;
    }

    .proc-faq-cta {
        padding: var(--sp-2xl) var(--sp-xl);
    }

    .proc-faq-cta__title {
        font-size: var(--fs-xl);
    }

    .proc-faq-questions .pane-accordion-question {
        padding: var(--sp-md) var(--sp-lg);
        font-size: var(--fs-xs);
    }

    .proc-faq-questions .pane-accordion-answer__inner {
        padding: var(--sp-md) var(--sp-lg);
    }
}

@media (max-width: 480px) {
    .proc-faq-item {
        padding-left: 0;
    }

    .proc-faq-item h4 {
        margin-left: 0;
    }

    .proc-faq-item h4::before {
        width: auto;
        display: block;
        margin-bottom: 0.25rem;
    }
}

@media (max-width: 768px) {
    .proc-candidate {
        padding: var(--sp-xl);
    }

    .proc-recovery-card {
        padding: var(--sp-xl);
    }

    .proc-detail-intro h3 {
        font-size: var(--fs-2xl);
    }

    .proc-faq-item {
        padding-left: 2.2rem;
    }

    .proc-faq-item h4 {
        margin-left: -2.2rem;
        font-size: var(--fs-lg);
    }

    .proc-faq-item h4::before {
        width: 2.2rem;
    }

    .proc-faq-questions .pane-accordion-question {
        padding: var(--sp-md) var(--sp-lg);
        font-size: var(--fs-xs);
    }

    .proc-faq-questions .pane-accordion-answer__inner {
        padding: var(--sp-md) var(--sp-lg);
    }
}

@media (max-width: 480px) {
    .proc-faq-item {
        padding-left: 0;
    }

    .proc-faq-item h4 {
        margin-left: 0;
        font-size: var(--fs-base);
    }

    .proc-faq-item h4::before {
        width: auto;
        display: block;
        margin-bottom: 0.25rem;
    }
}

/* ============================================
   CATEGORY HUB PAGE BANNERS
   Shared mobile/tablet layout (see breast-procedures)
   ============================================ */
.page-banner--hub {
    position: relative;
    overflow: hidden;
    background-image: none !important;
    background-color: var(--color-warm-white, #faf8f5);
}

.page-banner--hub::before {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.page-banner--hub > .container {
    position: relative;
    z-index: 2;
}

.page-banner--face::before {
    background-image: url('../images/face/face_hub_hero_bg.webp');
    background-position: center 25%;
}

.page-banner--body::before {
    background-image: url('../images/heroes/body_hero_bg.webp');
    background-position: center 30%;
}

.page-banner--breast::before {
    background-image: image-set(url('../images/heroes/tile_breast-procedures.webp') type('image/webp'), url('../images/heroes/tile_breast-procedures.webp') type('image/png'));
    background-position: center 30%;
    transform: scaleX(-1);
}

.page-banner--male::before {
    background-image: image-set(url('../images/heroes/male_hero_bg.webp') type('image/webp'), url('../images/heroes/male_hero_bg.webp') type('image/png'));
    background-position: center 20%;
    transform: scaleX(-1);
}

.page-banner--mummy::before {
    background-image: url('../images/heroes/tile_mummy-makeover.webp');
    background-position: center 30%;
}

.page-banner--gynaecology::before {
    background-image: url('../images/heroes/hub_cosmetic-gynaecology.webp');
    background-position: center center;
}

.page-banner--other::before {
    background-image: url('../images/other-services/other_hub.webp');
    background-position: center center;
}

.page-banner--medical::before {
    background-image: url('../images/heroes/tile_medical-aesthetics.webp');
    background-position: center 30%;
    transform: scaleX(-1);
}

.page-banner--skin::before {
    background-image: url('../images/heroes/skin_hero_bg.webp');
    background-position: center center;
}

.page-banner--hair::before {
    background-image: url('../images/heroes/hair_hero_bg.webp');
    background-position: center center;
}

.page-banner__subtitle-break {
    display: none;
}

@media (max-width: 1024px) {
    .page-banner.page-banner--hub {
        padding: 0 !important;
        min-height: 0 !important;
        height: clamp(210px, 52vw, 270px);
        align-items: stretch;
        justify-content: center;
    }

    .page-banner--hub > .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        padding: 0 var(--sp-md) !important;
    }

    .page-banner--hub .page-banner__title {
        font-size: clamp(1.55rem, 5vw, 2.1rem);
        margin-bottom: 0.25rem;
    }

    .page-banner--hub .page-banner__subtitle-break {
        display: block;
    }

    .page-banner--hub .page-banner__subtitle {
        max-width: min(22rem, 68%);
        margin-top: 0.35rem;
        font-size: clamp(0.85rem, 3.2vw, 1rem);
        line-height: 1.45;
        letter-spacing: 0.4px;
    }

    /* Breast only — image sizing/position tuned separately */
    .page-banner--breast::before {
        background-size: auto 100%;
        background-position: 24% center;
    }

    .page-banner--breast .page-banner__subtitle {
        max-width: min(11.5rem, 44%);
    }
}

@media (max-width: 768px) {
    .page-banner.page-banner--hub {
        height: clamp(200px, 50vw, 255px);
    }

    .page-banner--breast::before {
        background-position: calc(28% - 0.75rem) center;
    }

    .page-banner--hub .page-banner__subtitle {
        max-width: min(21rem, 65%);
    }

    .page-banner--breast .page-banner__subtitle {
        max-width: min(11rem, 42%);
    }
}

@media (max-width: 480px) {
    .page-banner.page-banner--hub {
        height: clamp(190px, 48vw, 240px);
    }

    .page-banner--breast::before {
        background-position: calc(30% - 1.25rem) center;
    }

    .page-banner--hub > .container {
        padding: 0 var(--sp-sm) !important;
    }

    .page-banner--hub .page-banner__subtitle {
        max-width: min(20rem, 62%);
        font-size: clamp(0.8rem, 3.6vw, 0.92rem);
    }

    .page-banner--breast .page-banner__subtitle {
        max-width: min(10.5rem, 40%);
    }
}