/* ==========================================================================
   The Healing Design — shared styles
   ========================================================================== */

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

:root {
    --cream: #F5E6D3;
    --cream-light: #FBF6EE;
    --peachy-tan: #E8C4B4;
    --soft-pink: #F4C4C4;
    --deep-pink: #DFA3A3;
    --light-sage: #B8C4BC;
    --medium-sage: #A8B89C;
    --dark-olive: #6B6F4C;
    --deep-olive: #54573B;
    --ink: #4E5140;
    --white: #FFFFFF;
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-lift: 0 10px 30px rgba(0, 0, 0, 0.12);
    --radius: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', 'Trebuchet MS', sans-serif;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.7;
    background-color: var(--white);
    font-size: 1.05rem;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 600;
    color: var(--dark-olive);
    line-height: 1.25;
}

img {
    max-width: 100%;
}

[id] {
    scroll-margin-top: 110px;
}

/* --------------------------------------------------------------------------
   Referral ribbon (site-wide)
   -------------------------------------------------------------------------- */

.promo-banner {
    background: linear-gradient(90deg, var(--peachy-tan), var(--soft-pink));
    padding: 0.55rem 1rem;
    text-align: center;
    color: var(--deep-olive);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.promo-banner a {
    color: var(--deep-olive);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
}

.promo-banner a:hover {
    color: var(--white);
}

/* --------------------------------------------------------------------------
   Header & navigation
   -------------------------------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(168, 184, 156, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 2rem;
    transition: box-shadow 0.3s;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark-olive);
}

.brand img {
    height: 46px;
    width: auto;
}

.brand-name {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
}

.brand-tag {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--medium-sage);
    font-weight: 500;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.site-nav a {
    color: var(--ink);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0.2rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-color 0.3s;
}

.site-nav a:hover {
    color: var(--deep-pink);
}

.site-nav a.active {
    color: var(--dark-olive);
    border-bottom-color: var(--soft-pink);
    font-weight: 500;
}

.site-nav .btn-nav {
    background-color: var(--soft-pink);
    color: var(--deep-olive);
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    border-bottom: none;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.3s;
}

.site-nav .btn-nav:hover {
    background-color: var(--peachy-tan);
    color: var(--deep-olive);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--dark-olive);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Buttons & shared elements
   -------------------------------------------------------------------------- */

.btn-book {
    display: inline-block;
    background-color: var(--soft-pink);
    color: var(--deep-olive);
    padding: 0.9rem 2.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    box-shadow: var(--shadow-soft);
}

.btn-book:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
    background-color: var(--peachy-tan);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 0.9rem 2.4rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark-olive);
    transform: translateY(-3px);
}

.btn-outline.olive {
    color: var(--dark-olive);
    border-color: var(--dark-olive);
}

.btn-outline.olive:hover {
    background-color: var(--dark-olive);
    color: var(--white);
}

.divider {
    width: 64px;
    height: 3px;
    background-color: var(--soft-pink);
    margin: 1.2rem auto 2rem;
    border-radius: 2px;
}

.divider.left {
    margin-left: 0;
}

.eyebrow-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--deep-pink);
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.section {
    padding: 4.5rem 2rem;
}

.section-inner {
    max-width: 1150px;
    margin: 0 auto;
}

.section h2 {
    font-size: 2.7rem;
    text-align: center;
}

.section-lead {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.15rem;
}

.bg-cream {
    background-color: var(--cream-light);
}

.bg-sage {
    background-color: var(--light-sage);
}

.text-center {
    text-align: center;
}

/* --------------------------------------------------------------------------
   Reveal-on-scroll animation
   -------------------------------------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* --------------------------------------------------------------------------
   Home hero
   -------------------------------------------------------------------------- */

.hero {
    background: linear-gradient(rgba(140, 158, 128, 0.88), rgba(168, 184, 156, 0.82)),
        url('../assets/background/eyebrow-mapping.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem 6.5rem;
    text-align: center;
    color: var(--white);
}

.hero .eyebrow-label {
    color: var(--cream);
}

.hero h1 {
    font-size: 4.2rem;
    color: var(--white);
    letter-spacing: 2px;
    font-weight: 500;
}

.hero h1 img {
    height: 0.75em;
    width: auto;
    vertical-align: baseline;
    margin-left: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.6rem;
    max-width: 620px;
    margin: 0.8rem auto 0;
}

.hero .services-list {
    font-size: 1.05rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 1.6rem 0 2.2rem;
    font-weight: 500;
}

.hero .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .divider {
    background-color: var(--cream);
    margin: 1.4rem auto;
}

/* --------------------------------------------------------------------------
   Sub-page hero band
   -------------------------------------------------------------------------- */

.page-hero {
    background: linear-gradient(rgba(140, 158, 128, 0.9), rgba(168, 184, 156, 0.85)),
        url('../assets/background/eyebrow-mapping.jpg');
    background-size: cover;
    background-position: center 30%;
    text-align: center;
    color: var(--white);
    padding: 3.8rem 2rem;
}

.page-hero h1 {
    font-size: 3.2rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 1px;
}

.page-hero p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.35rem;
    max-width: 640px;
    margin: 0.4rem auto 0;
}

.page-hero .eyebrow-label {
    color: var(--cream);
}

/* --------------------------------------------------------------------------
   Service cards (home preview)
   -------------------------------------------------------------------------- */

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

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    text-decoration: none;
    color: var(--ink);
    display: block;
}

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

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

.service-content {
    padding: 1.8rem 1.6rem 2rem;
}

.service-card h3 {
    font-size: 1.7rem;
    margin-bottom: 0.6rem;
}

.service-card .more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--deep-pink);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   Services page — alternating rows
   -------------------------------------------------------------------------- */

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    max-width: 1050px;
    margin: 0 auto 4.5rem;
}

.service-row:last-of-type {
    margin-bottom: 0;
}

.service-row img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lift);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.service-row.reverse .service-row-img {
    order: 2;
}

.service-row h2 {
    font-size: 2.3rem;
    text-align: left;
    margin-bottom: 0.4rem;
}

.service-row p {
    margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   Comparison blocks (Why Powder Brows)
   -------------------------------------------------------------------------- */

.comparison-block {
    background: var(--white);
    padding: 2.2rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

.comparison-block h3 {
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    margin-bottom: 1rem;
    padding-left: 1.6rem;
    position: relative;
}

.comparison-list li::before {
    content: "•";
    color: var(--deep-pink);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.25rem;
}

/* --------------------------------------------------------------------------
   Portfolio carousels
   -------------------------------------------------------------------------- */

.portfolio-category {
    margin-bottom: 3.5rem;
}

.portfolio-category h3 {
    font-size: 2rem;
    margin-bottom: 0.6rem;
    text-align: center;
}

.carousel {
    position: relative;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    overflow: hidden;
    transform-style: preserve-3d;
}

.carousel img {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    height: 250px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
        height 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
        opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
        box-shadow 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    will-change: transform, opacity, height;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: flat;
    transform-style: flat;
}

.carousel img.hidden {
    opacity: 0 !important;
    pointer-events: none;
}

.carousel-wrapper {
    position: relative;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--medium-sage);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    font-size: 1.5rem;
    color: var(--dark-olive);
    user-select: none;
}

.carousel-nav:hover {
    background-color: var(--light-sage);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

.carousel-hint {
    text-align: center;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--medium-sage);
    margin-bottom: 2rem;
}

/* Results teaser (home) */

.results-teaser {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin: 2.5rem 0;
}

.results-teaser img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s;
}

.results-teaser a:hover img {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lift);
}

/* --------------------------------------------------------------------------
   FAQ accordions
   -------------------------------------------------------------------------- */

.faq-container {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1.1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.4rem 3.4rem 1.4rem 1.8rem;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-olive);
    position: relative;
    transition: background-color 0.3s;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1.6rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.7rem;
    color: var(--deep-pink);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item summary:hover {
    background-color: var(--cream-light);
}

.faq-answer {
    padding: 0 1.8rem 1.6rem;
    color: var(--ink);
}

.faq-answer ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   Aftercare
   -------------------------------------------------------------------------- */

.aftercare-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    max-width: 820px;
    margin: 0 auto 2rem;
}

.aftercare-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.aftercare-card ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.aftercare-card li {
    margin-bottom: 0.6rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--soft-pink);
    color: var(--deep-olive);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1050px;
    margin: 0 auto;
}

.about-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 18px 18px 0 var(--peachy-tan);
}

.about-text p {
    margin-bottom: 1.4rem;
}

.about-text h2 {
    text-align: left;
    font-size: 2.5rem;
}

/* Highlights (pillars) */

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.pillar {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.pillar .pillar-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.8rem;
}

.pillar h3 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

/* --------------------------------------------------------------------------
   Referral
   -------------------------------------------------------------------------- */

.referral {
    background-color: var(--light-sage);
    text-align: center;
}

.referral-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--deep-olive);
}

.referral-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 2.5rem auto 0;
}

.referral-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.referral-card .amount {
    font-size: 3rem;
    font-weight: 600;
    color: var(--deep-pink);
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    line-height: 1.2;
}

.referral-card h3 {
    font-size: 1.4rem;
    margin: 0.5rem 0 1rem;
}

.referral-fineprint {
    margin-top: 2rem;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--deep-olive);
}

.referral .btn-book {
    margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 2.5rem auto 0;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.contact-card a {
    color: var(--dark-olive);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--deep-pink);
}

.contact-card .contact-lines a,
.contact-card .contact-lines span {
    display: block;
    margin-bottom: 0.35rem;
}

/* --------------------------------------------------------------------------
   Link pills (obviously-clickable contact & social links)
   -------------------------------------------------------------------------- */

.link-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background-color: var(--cream-light);
    border: 1px solid var(--peachy-tan);
    border-radius: 50px;
    padding: 0.6rem 1.3rem;
    margin: 0.3rem 0.2rem;
    color: var(--dark-olive);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: var(--shadow-soft);
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.link-pill:hover {
    background-color: var(--soft-pink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lift);
    color: var(--deep-olive);
}

.link-pill svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Location & map
   -------------------------------------------------------------------------- */

.address-lines {
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.55;
    margin: 0 auto 1.5rem;
    max-width: 640px;
}

.address-lines .street {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-olive);
    display: block;
}

.address-lines .landmark {
    font-style: italic;
    color: var(--deep-pink);
    display: block;
    font-size: 1.1rem;
}

.map-embed {
    display: block;
    width: 100%;
    max-width: 900px;
    height: 340px;
    margin: 2rem auto 0;
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lift);
}

/* --------------------------------------------------------------------------
   Client forms callout
   -------------------------------------------------------------------------- */

.forms-callout {
    max-width: 820px;
    margin: 3.5rem auto 0;
    background: var(--cream-light);
    border: 2px dashed var(--peachy-tan);
    border-radius: var(--radius);
    padding: 2.2rem 2rem;
    text-align: center;
}

.forms-callout h3 {
    font-size: 1.7rem;
    margin-bottom: 0.6rem;
}

.forms-callout p {
    max-width: 620px;
    margin: 0 auto 1.4rem;
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
    background: linear-gradient(rgba(232, 196, 180, 0.55), rgba(244, 196, 196, 0.55)), var(--cream);
    text-align: center;
    padding: 4rem 2rem;
}

.cta-band h2 {
    font-size: 2.5rem;
    margin-bottom: 0.6rem;
}

.cta-band p {
    max-width: 620px;
    margin: 0 auto 1.8rem;
    font-size: 1.15rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
    background-color: var(--deep-olive);
    color: var(--cream-light);
    padding: 3.5rem 2rem 0;
    font-size: 0.95rem;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
}

.site-footer h4 {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.site-footer p {
    margin-bottom: 0.5rem;
    color: rgba(251, 246, 238, 0.85);
}

.site-footer a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
}

/* Contact & social links in footer paragraphs read as clickable */
.site-footer p a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-footer a:hover {
    color: var(--soft-pink);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(251, 246, 238, 0.2);
    text-align: center;
    padding: 1.4rem 0;
    font-size: 0.85rem;
    color: rgba(251, 246, 238, 0.7);
}

.footer-bottom a {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Privacy / long-form text pages
   -------------------------------------------------------------------------- */

.prose {
    max-width: 800px;
    margin: 0 auto;
}

.prose h2 {
    font-size: 1.7rem;
    text-align: left;
    margin: 2rem 0 0.8rem;
}

.prose p,
.prose ul {
    margin-bottom: 1rem;
}

.prose ul {
    padding-left: 1.5rem;
}

.prose a {
    color: var(--dark-olive);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {
    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream-light);
        flex-direction: column;
        align-items: center;
        gap: 1.4rem;
        padding: 1.8rem 2rem 2.2rem;
        border-bottom: 3px solid var(--medium-sage);
        box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
        z-index: 999;
    }

    .site-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav a {
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .brand-name {
        font-size: 1.15rem;
    }

    .service-row,
    .service-row.reverse {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .service-row.reverse .service-row-img {
        order: 0;
    }

    .service-row h2 {
        text-align: center;
    }

    .service-row .divider.left {
        margin-left: auto;
    }

    .service-row-text {
        text-align: center;
    }

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

    .about-img {
        max-width: 320px;
        margin: 0 auto;
        display: block;
        box-shadow: 12px 12px 0 var(--peachy-tan);
    }

    .about-text h2 {
        text-align: center;
    }

    .about-text .divider.left {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 1.5rem 4.5rem;
    }

    .hero h1 {
        font-size: 2.7rem;
    }

    .hero .tagline {
        font-size: 1.3rem;
    }

    .hero .services-list {
        letter-spacing: 3px;
        font-size: 0.95rem;
    }

    .page-hero h1 {
        font-size: 2.4rem;
    }

    .section {
        padding: 3.2rem 1.4rem;
    }

    .section h2 {
        font-size: 2.1rem;
    }

    .carousel {
        height: 350px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .results-teaser {
        grid-template-columns: repeat(2, 1fr);
    }

    .referral-cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .aftercare-card {
        padding: 1.6rem;
    }

    .promo-banner {
        font-size: 0.85rem;
    }
}
