/* ------------------------------
   ROOT / RESET
------------------------------ */

:root {
    --black: #080808;
    --black-soft: #111111;
    --ivory: #eee8df;
    --muted: #9e958b;
    --accent: #6d1d2b;
    --border: rgba(238, 232, 223, 0.16);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--ivory);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

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


/* ------------------------------
   SHARED
------------------------------ */

.eyebrow {
    margin-bottom: 25px;
    color: var(--accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

.section-heading {
    display: block;
    margin-bottom: 45px;
}

.section-number {
    color: var(--muted);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin-bottom: 18px;
}

.section-heading h2,
.booking-cta h2,
.contact h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.section-intro {
    max-width: 700px;
    margin-bottom: 40px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.button {
    display: inline-block;
    padding: 16px 24px;
    border: 1px solid var(--ivory);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: all 0.25s ease;
}

.button-primary {
    background: var(--ivory);
    color: var(--black);
}

.button-primary:hover {
    background: transparent;
    color: var(--ivory);
}

.button-secondary:hover {
    background: var(--ivory);
    color: var(--black);
}

.text-link {
    display: inline-block;
    margin-top: 28px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--accent);
    color: var(--ivory);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}


/* ------------------------------
   HEADER
------------------------------ */

.site-header {
    width: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0 5vw;
    border-bottom: 1px solid var(--border);
}

.logo {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.logo span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.3em;
}

.nav {
    display: flex;
    gap: 26px;
}

.nav a {
    color: #c7c2bb;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    transition: color 0.25s ease;
}

.nav a:hover {
    color: var(--ivory);
}

.header-button {
    flex-shrink: 0;
    padding: 13px 20px;
    border: 1px solid var(--ivory);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: 0.25s ease;
}

.header-button:hover {
    background: var(--ivory);
    color: var(--black);
}


/* ------------------------------
   HERO
------------------------------ */

.hero {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    padding: 8vh 5vw 6vh;
}

.hero-content {
    max-width: 1100px;
}

.hero h1 {
    max-width: 1200px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4rem, 8vw, 9rem);
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: -0.055em;
}

.hero-text {
    max-width: 580px;
    margin-top: 40px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 35px;
}


/* ------------------------------
   01 — APPROACH
------------------------------ */

.approach {
    padding: 120px 5vw;
    border-top: 1px solid var(--border);
}

.approach-content {
    max-width: 760px;
}

.approach-content p {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.approach-content .approach-lead {
    color: var(--ivory);
    font-size: 1.1rem;
}

.approach-content .approach-closing {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    color: var(--ivory);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    line-height: 1.5;
}


/* ------------------------------
   02 — TREATMENTS
------------------------------ */

.treatments {
    padding: 120px 5vw;
    border-top: 1px solid var(--border);
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.treatment-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease, transform 0.3s ease;
}

.treatment-card:hover {
    background: var(--black-soft);
    transform: translateY(-6px);
}

.treatment-number {
    margin-bottom: 38px;
    color: var(--accent);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
}

.treatment-card h3 {
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 400;
}

.treatment-card p {
    max-width: 520px;
    color: var(--muted);
    line-height: 1.7;
}

.treatment-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.treatment-card-full {
    min-height: 560px;
}

.treatment-subheading {
    margin-top: 24px;
    color: var(--ivory) !important;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.treatment-list {
    list-style: none;
    margin: 16px 0 24px;
    padding: 0;
    border-top: 1px solid var(--border);
}

.treatment-list li {
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    color: var(--ivory);
    font-size: 0.92rem;
}

.treatment-note {
    margin-top: auto;
    padding-top: 24px;
}

.consultation-lines {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.consultation-lines p {
    margin-bottom: 9px;
    color: var(--ivory);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
}


/* ------------------------------
   03 — CONSULTATION
------------------------------ */

.consultation {
    padding: 120px 5vw;
    border-top: 1px solid var(--border);
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    max-width: 1200px;
}

.consultation-intro p {
    max-width: 520px;
    color: var(--ivory);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.5vw, 4rem);
    line-height: 1.05;
}

.consultation-details {
    max-width: 700px;
}

.consultation-details > p {
    margin-bottom: 24px;
    color: var(--muted);
    line-height: 1.7;
}

.consultation-details ul {
    list-style: none;
    margin: 0 0 35px;
    padding: 0;
    border-top: 1px solid var(--border);
}

.consultation-details li {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    color: var(--ivory);
    cursor: default;
}

.consultation-label {
    display: block;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.consultation-more {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
    transition:
        max-height 0.35s ease,
        opacity 0.3s ease,
        margin-top 0.3s ease;
}

.consultation-details li:hover .consultation-more {
    max-height: 110px;
    margin-top: 12px;
    opacity: 1;
}

.consultation-details li:hover .consultation-label {
    color: var(--accent);
}

.consultation-closing {
    margin-top: 35px;
    color: var(--ivory) !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
}


/* ------------------------------
   04 — PHILOSOPHY
------------------------------ */

.philosophy {
    padding: 120px 5vw;
    border-top: 1px solid var(--border);
}

.philosophy-content {
    max-width: 1100px;
}

.philosophy-content > p {
    max-width: 720px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.philosophy-content > p:first-child {
    color: var(--ivory);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
}

.philosophy-statements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 55px 0;
    padding: 35px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.philosophy-statements span {
    color: var(--ivory);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.6rem, 3vw, 3rem);
    line-height: 1.2;
}

.philosophy-closing {
    margin-top: 30px;
    color: var(--accent) !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem !important;
}


/* ------------------------------
   05 — RESPONSIBLE AESTHETICS
------------------------------ */

.responsible {
    padding: 120px 5vw;
    border-top: 1px solid var(--border);
}

.split-copy {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    max-width: 1200px;
}

.split-copy-lead p {
    max-width: 470px;
    color: var(--ivory);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    line-height: 1.15;
}

.split-copy-body {
    max-width: 680px;
}

.split-copy-body p {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    line-height: 1.75;
}


/* ------------------------------
   06 — CORRECTIVE CARE
------------------------------ */

.corrective {
    padding: 120px 5vw;
    border-top: 1px solid var(--border);
}

.corrective-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    max-width: 1250px;
}

.corrective-copy {
    max-width: 720px;
}

.corrective-copy p {
    margin-bottom: 22px;
    color: var(--muted);
    line-height: 1.75;
}

.corrective-copy .corrective-emphasis {
    margin-top: 34px;
    color: var(--ivory);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    line-height: 1.45;
}

.corrective-copy .corrective-final {
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
}

.corrective-panel {
    border-top: 1px solid var(--border);
}

.corrective-panel span {
    display: block;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    color: var(--ivory);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
}


/* ------------------------------
   07 — SAFETY
------------------------------ */

.safety {
    padding: 120px 5vw;
    border-top: 1px solid var(--border);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1200px;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.safety-grid p {
    min-height: 170px;
    padding: 30px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    line-height: 1.75;
}

.safety-grid .safety-wide {
    grid-column: 1 / -1;
    min-height: 0;
    color: var(--ivory);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.4rem, 2.5vw, 2.4rem);
    line-height: 1.35;
}


/* ------------------------------
   08 — FAQ
------------------------------ */

.faq {
    padding: 120px 5vw;
    border-top: 1px solid var(--border);
}

.faq-list {
    max-width: 980px;
    border-top: 1px solid var(--border);
}

.faq details {
    border-bottom: 1px solid var(--border);
}

.faq summary {
    position: relative;
    padding: 24px 48px 24px 0;
    color: var(--ivory);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    cursor: pointer;
    list-style: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 20px;
    color: var(--accent);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
}

.faq details[open] summary::after {
    content: "−";
}

.faq details p {
    max-width: 760px;
    padding: 0 0 18px;
    color: var(--muted);
    line-height: 1.75;
}


/* ------------------------------
   MORE INFORMATION / ACCORDION
------------------------------ */

.more-info {
    padding: 120px 5vw;
    border-top: 1px solid var(--border);
}

.more-info-heading {
    max-width: 820px;
    margin-bottom: 60px;
}

.more-info-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
font-size: clamp(3rem, 5.5vw, 5.5rem);
      font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.more-info-heading > p:last-child {
    max-width: 650px;
    margin-top: 24px;
    color: var(--muted);
    line-height: 1.75;
}

.info-accordion-list {
    border-top: 1px solid var(--border);
}

.info-accordion {
    border-bottom: 1px solid var(--border);
}

.info-accordion > summary {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 28px 0;
    list-style: none;
    cursor: pointer;
}

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

.accordion-number {
    color: var(--accent);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
}

.accordion-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.3vw, 2.25rem);
    line-height: 1.1;
}

.accordion-toggle {
    color: var(--accent);
    font-size: 1.6rem;
    font-weight: 300;
    transition: transform 0.25s ease;
}

.info-accordion[open] > summary .accordion-toggle {
    transform: rotate(45deg);
}

.info-accordion > summary:hover .accordion-title {
    color: var(--accent);
}

.accordion-content {
    padding: 30px 0 90px;
}

.accordion-content.responsible,
.accordion-content.corrective,
.accordion-content.safety,
.accordion-content.faq {
    padding-left: 0;
    padding-right: 0;
    border-top: 0;
}

.accordion-content .section-heading {
    margin-bottom: 45px;
}


/* ------------------------------
   MOBILE ACCORDION
------------------------------ */

@media (max-width: 600px) {

    .more-info {
        padding: 85px 24px;
    }

    .info-accordion > summary {
        grid-template-columns: 48px 1fr auto;
        gap: 14px;
        padding: 22px 0;
    }

    .accordion-title {
        font-size: 1.35rem;
    }

    .accordion-content {
        padding: 20px 0 70px;
    }
}


/* ------------------------------
   09 — BOOKING CTA
------------------------------ */

.booking-cta {
    padding: 140px 5vw;
    border-top: 1px solid var(--border);
}

.booking-cta h2 {
    max-width: 950px;
    font-size: clamp(4rem, 7vw, 8rem);
}

.booking-cta > p:not(.section-number):not(.eyebrow) {
    max-width: 680px;
    margin-top: 24px;
    color: var(--muted);
    line-height: 1.8;
}

.booking-cta .booking-note {
    color: var(--ivory) !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
}


/* ------------------------------
   CONTACT
------------------------------ */

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 120px 5vw;
    border-top: 1px solid var(--border);
}

.contact h2 {
    font-size: clamp(3.5rem, 6vw, 7rem);
}

.contact-copy {
    align-self: end;
    max-width: 620px;
}

.contact-copy p {
    margin-bottom: 22px;
    color: var(--muted);
    line-height: 1.75;
}

.contact-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 35px;
}


/* ------------------------------
   FOOTER
------------------------------ */

.site-footer {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
    padding: 50px 5vw 35px;
    border-top: 1px solid var(--border);
}

.site-footer > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer strong {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0.14em;
}

.site-footer span,
.site-footer a,
.footer-line,
.footer-disclaimer {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.6;
}

.site-footer nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-disclaimer {
    grid-column: 1 / -1;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}


/* ------------------------------
   TABLET
------------------------------ */

@media (max-width: 1050px) {

    .nav {
        display: none;
    }

    .consultation-content,
    .split-copy,
    .corrective-layout,
    .contact {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .consultation-details,
    .corrective-copy,
    .contact-copy {
        max-width: 760px;
    }
}


/* ------------------------------
   MOBILE
------------------------------ */

@media (max-width: 900px) {

    .site-header {
        min-height: 75px;
    }

    .header-button {
        display: none;
    }

    .hero {
        min-height: calc(100vh - 75px);
        padding-top: 12vh;
    }

    .hero h1 {
        font-size: clamp(3.6rem, 16vw, 6rem);
    }

    .hero-text {
        max-width: 100%;
    }

    .treatment-grid,
    .philosophy-statements,
    .safety-grid {
        grid-template-columns: 1fr;
    }

    .safety-grid .safety-wide {
        grid-column: auto;
    }

    .treatment-card:hover {
        transform: none;
    }

    .treatment-card-full {
        min-height: 0;
    }

    .consultation-more {
        max-height: none;
        margin-top: 10px;
        opacity: 1;
    }

    .philosophy-statements {
        gap: 0;
    }

    .philosophy-statements span {
        padding: 24px 0;
    }

    .philosophy-statements span + span {
        border-top: 1px solid var(--border);
    }

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

    .footer-disclaimer {
        grid-column: auto;
    }
}


@media (max-width: 600px) {

    .site-header,
    .hero,
    .approach,
    .treatments,
    .consultation,
    .philosophy,
    .responsible,
    .corrective,
    .safety,
    .faq,
    .booking-cta,
    .contact,
    .site-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero,
    .approach,
    .treatments,
    .consultation,
    .philosophy,
    .responsible,
    .corrective,
    .safety,
    .faq,
    .contact {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .booking-cta {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .hero h1 {
        font-size: clamp(3.25rem, 15vw, 5rem);
    }

    .section-heading h2,
    .contact h2 {
        font-size: clamp(2.6rem, 12vw, 4.2rem);
    }

    .booking-cta h2 {
        font-size: clamp(3.4rem, 15vw, 5rem);
    }

    .hero-actions,
    .contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        text-align: center;
    }

    .treatment-card {
        min-height: 0;
    }

    .consultation-intro p,
    .split-copy-lead p {
        font-size: 2rem;
    }

    .corrective-panel span,
    .faq summary {
        font-size: 1.1rem;
    }
}


/* Accordion-contained sections use the parent spacing */
.info-accordion .responsible,
.info-accordion .corrective,
.info-accordion .safety,
.info-accordion .faq {
    padding-top: 0;
    padding-bottom: 0;
}



/* ------------------------------
   INTERACTION POLISH — SECTIONS 05–07
------------------------------ */

/* 05 — Responsible Aesthetics: right-side information */
.split-copy-body p {
    padding: 18px 20px 22px;
    margin: 0;
    transition: background 0.28s ease, transform 0.28s ease, color 0.28s ease;
}

.split-copy-body p:hover {
    background: var(--black-soft);
    transform: translateY(-4px);
    color: var(--ivory);
}

/* 06 — Corrective Care: left-side information */
.corrective-copy > p {
    padding: 16px 18px;
    margin: 0 0 8px;
    transition: background 0.28s ease, transform 0.28s ease, color 0.28s ease;
}

.corrective-copy > p:hover {
    background: var(--black-soft);
    transform: translateY(-4px);
    color: var(--ivory);
}

.corrective-copy .corrective-emphasis:hover,
.corrective-copy .corrective-final:hover {
    color: var(--ivory);
}

/* 06 — Corrective Care: hover-reveal service rows */
.corrective-panel {
    border-top: 1px solid var(--border);
}

.corrective-service-hover {
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    outline: none;
    transition:
        background 0.28s ease,
        transform 0.28s ease;
}

.corrective-service-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
}

.corrective-service-title {
    display: block;
    color: var(--ivory);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    line-height: 1.25;
    transition: color 0.28s ease;
}

.corrective-service-hover p {
    max-height: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
    transition:
        max-height 0.35s ease,
        opacity 0.28s ease,
        margin-top 0.28s ease;
}

.corrective-service-hover:hover,
.corrective-service-hover:focus-visible {
    background: var(--black-soft);
    transform: translateY(-4px);
}

.corrective-service-hover:hover .corrective-service-title,
.corrective-service-hover:focus-visible .corrective-service-title {
    color: var(--accent);
}

.corrective-service-hover:hover p,
.corrective-service-hover:focus-visible p {
    max-height: 160px;
    margin-top: 12px;
    opacity: 1;
}

.corrective-service-hover:hover .service-toggle,
.corrective-service-hover:focus-visible .service-toggle {
    transform: rotate(45deg);
}

.service-toggle {
    color: var(--accent);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.35rem;
    font-weight: 300;
    transition: transform 0.25s ease;
}

@media (max-width: 900px) {
    .corrective-service-hover {
        transform: none;
    }

    .corrective-service-hover p {
        max-height: none;
        margin-top: 10px;
        opacity: 1;
    }

    .corrective-service-hover .service-toggle {
        display: none;
    }
}

/* 07 — Safety: each panel highlights and lifts */
.safety-grid p {
    transition: background 0.28s ease, transform 0.28s ease, color 0.28s ease;
}

.safety-grid p:hover {
    background: var(--black-soft);
    transform: translateY(-4px);
    color: var(--ivory);
}

@media (max-width: 900px) {
    .split-copy-body p:hover,
    .corrective-copy > p:hover,
    .safety-grid p:hover {
        transform: none;
    }
}


/* =========================================================
   POLISH PASS — SECTIONS 01–08 + FOOTER
   ========================================================= */

/* 01 — clearer opening statement with rule beneath */
.approach-content .approach-lead {
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
    color: var(--ivory);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    line-height: 1.5;
}

/* 02 — keep box 3 footer treatment visually balanced */
.treatment-card-full .text-link {
    margin-top: auto;
}

.treatment-fineprint {
    margin-top: 14px !important;
    color: var(--muted) !important;
    font-size: 0.78rem !important;
    line-height: 1.55 !important;
}

/* 03 — clearer hierarchy */
.consultation-subheading {
    margin-bottom: 18px !important;
    color: var(--ivory) !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem !important;
    line-height: 1.35 !important;
}

.consultation-quote {
    align-self: start;
    max-width: 520px;
    padding-left: 24px;
    border-left: 2px solid var(--accent);
}

.consultation-quote p {
    font-size: clamp(1.8rem, 3vw, 3.2rem) !important;
    line-height: 1.08 !important;
}

/* 04 — tighter philosophy section so it reads in one desktop view */
.philosophy {
    padding-top: 80px;
    padding-bottom: 80px;
}

.philosophy .section-heading {
    margin-bottom: 32px;
}

.philosophy-content > p {
    margin-bottom: 16px;
    line-height: 1.65;
}

.philosophy-content > p:first-child {
    font-size: 1.45rem;
}

.philosophy-statements {
    margin: 32px 0 24px;
    padding: 24px 0;
    gap: 24px;
}

.philosophy-statements span {
    font-size: clamp(1.45rem, 2.6vw, 2.6rem);
}

.philosophy-closing {
    margin-top: 20px !important;
}

/* More Information — make the red plus explicit */
.info-accordion > summary .accordion-toggle,
.service-toggle {
    color: var(--accent) !important;
}

/* Footer links — highlight + slight right shift */
.site-footer nav a {
    display: inline-block;
    width: fit-content;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.site-footer nav a:hover {
    color: var(--ivory);
    transform: translateX(4px);
}

/* 05 — right-side rows lift/highlight */
.split-copy-body p {
    transition:
        background 0.28s ease,
        transform 0.28s ease,
        color 0.28s ease;
}

.split-copy-body p:hover {
    background: var(--black-soft);
    transform: translateY(-4px);
    color: var(--ivory);
}

/* 06 — left-side copy lift/highlight */
.corrective-copy > p {
    transition:
        background 0.28s ease,
        transform 0.28s ease,
        color 0.28s ease;
}

.corrective-copy > p:hover {
    background: var(--black-soft);
    transform: translateY(-4px);
    color: var(--ivory);
}

/* 07 — every safety cell lift/highlight */
.safety-grid p {
    transition:
        background 0.28s ease,
        transform 0.28s ease,
        color 0.28s ease;
}

.safety-grid p:hover {
    background: var(--black-soft);
    transform: translateY(-4px);
    color: var(--ivory);
}

@media (max-width: 900px) {
    .philosophy {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .consultation-quote {
        padding-left: 18px;
    }

    .split-copy-body p:hover,
    .corrective-copy > p:hover,
    .safety-grid p:hover {
        transform: none;
    }
}


/* =========================================================
   TREATMENT CARD FOOTER ALIGNMENT FIX
   ========================================================= */

.treatment-card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.treatment-card-footer {
    margin-top: auto;
    padding-top: 24px;
}

.treatment-card-footer .text-link {
    margin-top: 0;
    width: 100%;
}

.treatment-fineprint {
    margin-top: 14px !important;
    margin-bottom: 0 !important;
    color: var(--muted) !important;
    font-size: 0.78rem !important;
    line-height: 1.55 !important;
}



/* Exact alignment for treatment cards 03 and 04 */
.treatment-card-footer {
    min-height: 74px;
}

.treatment-fineprint {
    min-height: 19px;
}

.treatment-fineprint-spacer {
    visibility: hidden;
}



/* Prevent hidden accordion collapse from nudging the viewport */
.more-info,
.info-accordion,
#booking-cta {
    overflow-anchor: none;
}


/* =========================================================
   LEGAL PAGES + CLIENT FORMS
   ========================================================= */

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

.contact-legal-links a {
    color: var(--muted);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.25s ease;
}

.contact-legal-links a:hover {
    color: var(--ivory);
}

.legal-hero,
.form-hero {
    padding: 110px 5vw 90px;
    border-bottom: 1px solid var(--border);
}

.legal-hero h1,
.form-hero h1 {
    max-width: 1050px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.055em;
}

.legal-hero > p:last-child,
.form-hero > p:last-child {
    max-width: 720px;
    margin-top: 32px;
    color: var(--muted);
    line-height: 1.8;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
    gap: 90px;
    padding: 90px 5vw 120px;
}

.legal-aside {
    align-self: start;
    position: sticky;
    top: 35px;
    max-width: 360px;
}

.legal-aside p:not(.section-number) {
    margin-bottom: 20px;
    color: var(--muted);
    line-height: 1.75;
}

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

.legal-section {
    padding: 34px 0 42px;
    border-top: 1px solid var(--border);
}

.legal-section > span {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
}

.legal-section h2 {
    margin-bottom: 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 400;
    line-height: 1.05;
}

.legal-section p {
    margin-bottom: 15px;
    color: var(--muted);
    line-height: 1.78;
}

.legal-section strong {
    color: var(--ivory);
}

.legal-section a {
    color: var(--ivory);
    border-bottom: 1px solid var(--accent);
}

.legal-callout {
    margin-top: 50px;
    padding: 45px;
    border: 1px solid var(--border);
    background: var(--black-soft);
}

.legal-callout h2 {
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.5vw, 4rem);
    font-weight: 400;
}

.legal-callout > p:not(.eyebrow) {
    max-width: 650px;
    margin-bottom: 26px;
    color: var(--muted);
    line-height: 1.75;
}

.forms-hub {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 5vw 110px;
    border-left: 1px solid var(--border);
}

.form-card {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    padding: 34px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background 0.28s ease, transform 0.28s ease;
}

.form-card:hover {
    background: var(--black-soft);
    transform: translateY(-4px);
}

.form-card > span {
    margin-bottom: 50px;
    color: var(--accent);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
}

.form-card h2 {
    max-width: 520px;
    margin-bottom: 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 400;
}

.form-card p {
    max-width: 520px;
    margin-bottom: 34px;
    color: var(--muted);
    line-height: 1.7;
}

.form-card strong {
    margin-top: auto;
    color: var(--ivory);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.form-security-note {
    padding: 80px 5vw 110px;
    border-top: 1px solid var(--border);
}

.form-security-note h2 {
    max-width: 800px;
    margin-bottom: 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 400;
}

.form-security-note > p:last-child {
    max-width: 700px;
    color: var(--muted);
    line-height: 1.8;
}

.client-form-wrap {
    padding: 70px 5vw 120px;
}

.client-form {
    max-width: 1000px;
}

.form-section {
    margin: 0 0 28px;
    padding: 34px;
    border: 1px solid var(--border);
}

.form-section legend {
    padding: 0 14px 0 0;
    color: var(--ivory);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.client-form label,
.choice-group p,
.form-help {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.client-form label {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.client-form input[type="text"],
.client-form input[type="email"],
.client-form input[type="tel"],
.client-form input[type="date"],
.client-form select,
.client-form textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--border);
    outline: none;
    background: #0c0c0c;
    color: var(--ivory);
}

.client-form input:focus,
.client-form select:focus,
.client-form textarea:focus {
    border-color: var(--accent);
}

.full-field {
    margin-top: 20px;
}

.choice-group {
    margin-top: 22px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.choice-group label {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 9px;
    margin: 12px 22px 0 0;
    color: var(--ivory);
}

.stacked-choice label {
    display: flex;
    margin-right: 0;
}

.check-row {
    display: grid !important;
    grid-template-columns: 20px 1fr;
    gap: 12px !important;
    align-items: start;
    margin: 16px 0;
    color: var(--ivory) !important;
}

.check-row input {
    margin-top: 4px;
}

.check-row a {
    color: var(--ivory);
    border-bottom: 1px solid var(--accent);
}

.form-help {
    margin: 14px 0 18px;
}

.urgent-warning {
    margin-top: 22px;
    padding: 18px 20px;
    border-left: 2px solid var(--accent);
    color: var(--ivory);
    line-height: 1.65;
}

.form-submit-panel {
    padding: 30px 0;
}

.form-submit-panel > p:last-child {
    max-width: 620px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.6;
}

.form-status {
    margin-bottom: 14px;
    color: var(--accent);
    min-height: 1.2em;
}

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

    .legal-aside {
        position: static;
        max-width: 720px;
    }

    .forms-hub,
    .field-grid {
        grid-template-columns: 1fr;
    }

    .form-card:hover {
        transform: none;
    }
}

@media (max-width: 600px) {
    .legal-hero,
    .form-hero,
    .legal-layout,
    .forms-hub,
    .form-security-note,
    .client-form-wrap {
        padding-left: 24px;
        padding-right: 24px;
    }

    .legal-hero,
    .form-hero {
        padding-top: 80px;
        padding-bottom: 70px;
    }

    .legal-layout {
        padding-top: 55px;
        padding-bottom: 85px;
    }

    .form-section {
        padding: 24px 18px;
    }

    .legal-callout {
        padding: 30px 24px;
    }

    .choice-group label {
        display: flex;
        margin-right: 0;
    }
}


/* =========================================================
   NAV / HERO / FOOTER CLEANUP
   ========================================================= */

/* Top "Client Info" dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > summary {
    list-style: none;
    cursor: pointer;
    color: #c7c2bb;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    transition: color 0.25s ease;
}

.nav-dropdown > summary::-webkit-details-marker {
    display: none;
}

.nav-dropdown > summary::after {
    content: " +";
    color: var(--accent);
}

.nav-dropdown[open] > summary,
.nav-dropdown > summary:hover {
    color: var(--ivory);
}

.nav-dropdown[open] > summary::after {
    content: " −";
}

.nav-dropdown-menu {
    position: absolute;
    z-index: 20;
    top: calc(100% + 18px);
    right: 0;
    width: 230px;
    padding: 10px 0;
    border: 1px solid var(--border);
    background: var(--black-soft);
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--muted);
    white-space: nowrap;
    transition:
        color 0.22s ease,
        background 0.22s ease,
        padding-left 0.22s ease;
}

.nav-dropdown-menu a:hover {
    padding-left: 20px;
    background: rgba(238, 232, 223, 0.04);
    color: var(--ivory);
}

/* Keep the three hero contact actions neat */
.hero-actions {
    align-items: center;
}

/* Footer: 2 columns x 4 rows rather than one long vertical stack */
.site-footer {
    grid-template-columns: 1.15fr 0.75fr 1.25fr;
    align-items: start;
}

.site-footer .footer-link-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    column-gap: 36px;
    row-gap: 16px;
}

.site-footer .footer-link-grid a {
    margin: 0;
}

/* Give the legal links enough visual presence without shouting */
.site-footer .footer-link-grid a:nth-child(5),
.site-footer .footer-link-grid a:nth-child(6),
.site-footer .footer-link-grid a:nth-child(7) {
    color: var(--ivory);
}

.site-footer .footer-link-grid a:nth-child(5):hover,
.site-footer .footer-link-grid a:nth-child(6):hover,
.site-footer .footer-link-grid a:nth-child(7):hover {
    color: var(--accent);
}

@media (max-width: 1050px) {
    .nav-dropdown {
        display: none;
    }

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

    .site-footer .footer-link-grid {
        grid-column: 1 / -1;
        grid-template-columns: repeat(4, minmax(120px, 1fr));
        margin-top: 10px;
    }

    .footer-disclaimer {
        grid-column: 1 / -1;
    }
}

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

    .site-footer .footer-link-grid {
        grid-column: auto;
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }

    .footer-disclaimer {
        grid-column: auto;
    }
}



/* =========================================================
   FOOTER GRID — 4 COLUMNS x 2 ROWS
   ========================================================= */

.site-footer {
    grid-template-columns: 1.15fr 0.75fr 1.8fr;
}

.site-footer .footer-link-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    grid-template-rows: repeat(2, auto);
    column-gap: 34px;
    row-gap: 18px;
    align-items: start;
}

/* Every footer link uses the same lighter colour */
.site-footer .footer-link-grid a,
.site-footer .footer-link-grid a:nth-child(5),
.site-footer .footer-link-grid a:nth-child(6),
.site-footer .footer-link-grid a:nth-child(7) {
    color: #c7c2bb;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

/* Same hover treatment for all of them */
.site-footer .footer-link-grid a:hover,
.site-footer .footer-link-grid a:nth-child(5):hover,
.site-footer .footer-link-grid a:nth-child(6):hover,
.site-footer .footer-link-grid a:nth-child(7):hover {
    color: var(--ivory);
    transform: translateX(4px);
}

@media (max-width: 1050px) {
    .site-footer .footer-link-grid {
        grid-template-columns: repeat(4, minmax(110px, 1fr));
    }
}

@media (max-width: 700px) {
    .site-footer .footer-link-grid {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }
}


/* =========================================================
   SIMPLIFIED FOOTER LINKS
   ========================================================= */

.site-footer .footer-link-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    gap: 18px 30px;
}

.site-footer .footer-link-grid a {
    color: #c7c2bb;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.site-footer .footer-link-grid a:hover {
    color: var(--ivory);
    transform: translateX(4px);
}

@media (max-width: 700px) {
    .site-footer .footer-link-grid {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }
}


/* =========================================================
   ABOUT / PHILOSOPHY RESTRUCTURE
   ========================================================= */

.approach-philosophy-button {
    margin-top: 24px;
}

.philosophy-page-content {
    max-width: 1100px;
    padding: 90px 5vw 120px;
}

.philosophy-page-content > p {
    max-width: 720px;
    margin-bottom: 22px;
    color: var(--muted);
    line-height: 1.8;
}

.philosophy-page-lead {
    color: var(--ivory) !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
}

.philosophy-page-content .philosophy-statements {
    margin: 50px 0 30px;
}

.philosophy-page-content .philosophy-closing {
    margin-bottom: 30px;
}

@media (max-width: 600px) {
    .philosophy-page-content {
        padding: 70px 24px 90px;
    }
}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.mobile-menu {
    display: none;
    position: relative;
    margin-left: auto;
}

.mobile-menu > summary {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    list-style: none;
    cursor: pointer;
    border: 1px solid var(--border);
    background: transparent;
}

.mobile-menu > summary::-webkit-details-marker {
    display: none;
}

.mobile-menu > summary span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--ivory);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu[open] > summary span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu[open] > summary span:nth-child(2) {
    opacity: 0;
}

.mobile-menu[open] > summary span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 100;
    width: min(300px, calc(100vw - 32px));
    padding: 12px;
    border: 1px solid var(--border);
    background: #0b0b0b;
}

.mobile-menu-panel a {
    display: block;
    padding: 13px 12px;
    color: #c7c2bb;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(238,232,223,0.08);
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus {
    color: var(--ivory);
    background: rgba(238,232,223,0.04);
}

.mobile-menu-divider {
    height: 1px;
    margin: 9px 0;
    background: var(--accent);
    opacity: 0.7;
}

@media (max-width: 700px) {
    .site-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .site-header .nav,
    .site-header .header-button {
        display: none !important;
    }

    .mobile-menu {
        display: block;
    }

    /* Mobile More Information is manual only:
       no forced alignment and no automatic closing. */
    .info-accordion {
        scroll-margin-top: 0;
    }
}


/* =========================================================
   MOBILE HORIZONTAL OVERFLOW FIX
   ========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

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

img,
video,
svg,
canvas {
    max-width: 100%;
    height: auto;
}

@media (max-width: 700px) {
    body {
        position: relative;
        overflow-x: hidden !important;
    }

    main,
    section,
    header,
    footer,
    .site-header,
    .site-footer,
    .hero,
    .contact,
    .legal-hero,
    .form-hero,
    .legal-layout,
    .forms-hub,
    .client-form-wrap {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    /* Force the footer into a true vertical mobile layout.
       The previous desktop grid was what was pushing the page sideways. */
    .site-footer {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 34px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
        overflow: hidden;
    }

    .site-footer > * {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        grid-column: 1 !important;
    }

    .site-footer .footer-link-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        column-gap: 20px !important;
        row-gap: 18px !important;
    }

    .site-footer .footer-link-grid a {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .footer-disclaimer {
        max-width: 32rem !important;
    }

    /* Contact area stays inside viewport */
    .contact-actions,
    .hero-actions {
        width: 100%;
        max-width: 100%;
    }

    .contact-actions .button,
    .hero-actions .button {
        width: 100%;
        max-width: 100%;
    }

    .contact-legal-links {
        width: 100%;
        max-width: 100%;
        gap: 16px 22px;
    }

    /* Prevent long headings / labels from forcing width */
    h1, h2, h3, p, a, span {
        max-width: 100%;
    }

    .mobile-menu-panel {
        max-width: calc(100vw - 32px);
    }
}


/* =========================================================
   MOBILE — HARD FIX FOR VIEWPORT / HEADER / GRID OVERFLOW
   ========================================================= */

@media (max-width: 700px) {

    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow-x: clip !important;
    }

    body {
        margin: 0 !important;
    }

    /* Keep a real navigation bar visible while scrolling */
    .site-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 9999 !important;
        width: 100% !important;
        min-height: 68px !important;
        padding: 0 20px !important;
        background: rgba(8, 8, 8, 0.97) !important;
        border-bottom: 1px solid var(--border) !important;
        overflow: visible !important;
    }

    .site-header .logo {
        min-width: 0 !important;
        max-width: calc(100% - 60px) !important;
        font-size: 0.82rem !important;
        line-height: 1.15 !important;
        letter-spacing: 0.12em !important;
        overflow-wrap: normal !important;
        white-space: nowrap !important;
    }

    .site-header .logo span {
        display: none !important;
    }

    .site-header .nav,
    .site-header .header-button {
        display: none !important;
    }

    .mobile-menu {
        display: block !important;
        flex: 0 0 auto !important;
    }

    .mobile-menu-panel {
        position: fixed !important;
        top: 68px !important;
        right: 16px !important;
        left: auto !important;
        width: min(310px, calc(100vw - 32px)) !important;
        max-width: calc(100vw - 32px) !important;
        box-sizing: border-box !important;
    }

    /* Kill any desktop two-column layouts on mobile */
    .contact,
    .consultation-content,
    .split-copy,
    .corrective-layout,
    .legal-layout,
    .field-grid,
    .forms-hub {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 36px !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .contact > *,
    .consultation-content > *,
    .split-copy > *,
    .corrective-layout > *,
    .legal-layout > *,
    .forms-hub > * {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    /* One-column treatment / safety grids */
    .treatment-grid,
    .safety-grid,
    .philosophy-statements {
        grid-template-columns: minmax(0, 1fr) !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    /* Prevent any child from establishing a wider layout */
    main,
    main > *,
    section,
    .hero-content,
    .approach-content,
    .consultation-details,
    .contact-copy,
    .accordion-content,
    .accordion-content > *,
    .legal-content,
    .client-form,
    .form-section {
        min-width: 0 !important;
        max-width: 100% !important;
    }

    /* Mobile spacing */
    .contact,
    .hero,
    .approach,
    .treatments,
    .consultation,
    .more-info,
    .booking-cta,
    .site-footer {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Buttons must never force width */
    .button,
    .hero-actions,
    .contact-actions,
    .hero-actions .button,
    .contact-actions .button {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    /* Footer: true mobile layout */
    .site-footer {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 28px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .site-footer .footer-link-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px 20px !important;
        width: 100% !important;
    }

    .site-footer .footer-link-grid a {
        min-width: 0 !important;
        max-width: 100% !important;
        overflow-wrap: anywhere !important;
        transform: none !important;
    }

    /* No sideways animation on mobile */
    .site-footer a:hover,
    .form-card:hover,
    .treatment-card:hover,
    .split-copy-body p:hover,
    .corrective-copy > p:hover,
    .safety-grid p:hover {
        transform: none !important;
    }
}
/* =========================
   BOOKING PAGE
========================= */

.booking-page-hero {
    padding: 110px 5vw 82px;
    border-bottom: 1px solid var(--border);
}

.booking-page-hero h1 {
    max-width: 1050px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem, 5.8vw, 6rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
}

.booking-page-hero > p:last-child {
    max-width: 680px;
    margin-top: 32px;
    color: var(--muted);
    line-height: 1.8;
}

.booking-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 70px;
    padding: 75px 5vw 120px;
}

.booking-flow {
    min-width: 0;
}

.booking-step {
    padding: 0 0 55px;
    margin-bottom: 55px;
    border-bottom: 1px solid var(--border);
}

.booking-step:last-child {
    margin-bottom: 0;
}

.booking-step-head {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 30px;
}

.booking-step-number {
    color: var(--accent);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    padding-top: 8px;
}

.booking-step h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.7rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.035em;
}

.booking-step-copy {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.7;
}

.calendar-card {
    border: 1px solid var(--border);
    background: #0c0c0c;
}

.calendar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--border);
}

.calendar-month {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: 400;
}

.calendar-nav {
    display: flex;
    gap: 8px;
}

.calendar-nav button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--ivory);
    cursor: pointer;
    font-size: 1rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.calendar-nav button:hover:not(:disabled) {
    border-color: var(--ivory);
}

.calendar-nav button:disabled {
    opacity: 0.25;
    cursor: default;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-weekday {
    padding: 14px 6px;
    color: var(--muted);
    font-size: 0.65rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-bottom: 1px solid var(--border);
}

.calendar-day {
    min-height: 62px;
    border: 0;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: transparent;
    color: var(--ivory);
    cursor: pointer;
    font: inherit;
    transition: background 0.2s ease, color 0.2s ease;
}

.calendar-day:nth-child(7n) {
    border-right: 0;
}

.calendar-day:hover:not(:disabled),
.calendar-day.is-selected {
    background: var(--ivory);
    color: var(--black);
}

.calendar-day.is-today:not(.is-selected) {
    box-shadow: inset 0 0 0 1px var(--accent);
}

.calendar-day:disabled,
.calendar-day.is-empty {
    color: #4c4945;
    cursor: default;
    background: #090909;
}

.calendar-day.is-empty {
    pointer-events: none;
}

.slot-status {
    min-height: 1.5em;
    margin-bottom: 18px;
    color: var(--muted);
    line-height: 1.6;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.time-slot {
    padding: 15px 10px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--ivory);
    cursor: pointer;
    font: inherit;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.time-slot:hover,
.time-slot.is-selected {
    background: var(--ivory);
    color: var(--black);
    border-color: var(--ivory);
}

.booking-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.booking-fields label {
    display: flex;
    flex-direction: column;
    gap: 9px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.booking-fields label:first-child {
    grid-column: 1 / -1;
}

.booking-fields input {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--border);
    outline: none;
    background: #0c0c0c;
    color: var(--ivory);
    font: inherit;
}

.booking-fields input:focus {
    border-color: var(--accent);
}

.booking-summary {
    align-self: start;
    position: sticky;
    top: 110px;
    padding: 32px;
    border: 1px solid var(--border);
    background: var(--black-soft);
    max-height: calc(100vh - 140px);
}

.booking-shell {
    align-items: start;
}

.booking-summary h2 {
    margin-bottom: 28px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 400;
}

.summary-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 18px;
    padding: 17px 0;
    border-top: 1px solid var(--border);
}

.summary-row span:first-child {
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.summary-row strong {
    font-weight: 400;
    line-height: 1.5;
}

.booking-submit {
    width: 100%;
    margin-top: 28px;
    cursor: pointer;
}

.booking-submit:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.booking-message {
    min-height: 1.5em;
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.6;
}

.booking-message.is-error {
    color: var(--accent);
}

.booking-success {
    display: none;
    padding: 75px 5vw 120px;
}

.booking-success.is-visible {
    display: block;
}

.booking-success-inner {
    max-width: 900px;
    padding-top: 55px;
    border-top: 1px solid var(--border);
}

.booking-success h2 {
    max-width: 800px;
    margin-bottom: 26px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.045em;
}

.booking-success p:not(.eyebrow) {
    max-width: 620px;
    margin-bottom: 14px;
    color: var(--muted);
    line-height: 1.75;
}

.booking-success strong {
    color: var(--ivory);
    font-weight: 400;
}

@media (max-width: 900px) {
    .booking-shell {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .booking-summary {
        position: static;
    }
}

@media (max-width: 650px) {
    .booking-page-hero,
    .booking-shell,
    .booking-success {
        padding-left: 24px;
        padding-right: 24px;
    }

    .booking-page-hero {
        padding-top: 80px;
        padding-bottom: 65px;
    }

    .booking-shell {
        padding-top: 55px;
        padding-bottom: 85px;
    }

    .booking-step-head {
        grid-template-columns: 34px 1fr;
        gap: 10px;
    }

    .calendar-head {
        padding: 16px;
    }

    .calendar-day {
        min-height: 52px;
    }

    .calendar-weekday {
        font-size: 0.58rem;
    }

    .time-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .booking-fields {
        grid-template-columns: 1fr;
    }

    .booking-fields label:first-child {
        grid-column: auto;
    }

    .booking-summary {
        padding: 24px 20px;
    }
}

@media (max-width: 390px) {
    .time-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* Booking page — allow sticky summary to work */
@media (min-width: 901px) {
    html,
    body {
        overflow-x: clip;
    }
}

/* =========================================================
   SUBPAGE HOME + FOOTER CONSISTENCY
   ========================================================= */

.subpage-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Home must stay visible on subpages, including mobile. */
.site-header .subpage-home-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* Footer uses the same Fallen logo treatment as the main header. */
.site-footer {
    grid-template-columns: 1.15fr 1.8fr;
}

.site-footer .footer-logo {
    color: var(--ivory);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.18em;
}

.site-footer .footer-logo span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.55rem;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.3em;
}

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

@media (max-width: 700px) {
    .subpage-header-actions {
        gap: 8px;
    }

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