@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    /* 1. GLOBAL COLORS (UNIFIED SYSTEM) */
    --bg-grey: #F5F2ED;
    /* Soft Warm Beige */
    --bg-greige: #FFFFFF;
    /* Pure White for CTA bands */
    --hero-internal-bg: #F2F4F1;
    /* Coordinating light beige for internal hero sections */
    --card-white: #FFFFFF;
    --hero-card-white: #FAFAF8;
    --text-dark: #2A654C;
    /* Deep Forest Green for headings */
    --text-body: #3D3D3D;
    /* Soft charcoal for body - deepened by approx 8% */
    --text-secondary: #3F6F5A;
    /* Slightly lighter green for subheadings */
    --logo-beige: #D8CFC4;
    --warm-beige: #D7C0A5;
    --muted-sage: #B1C6AC;
    --border-light: #ECE7E2;
    --btn-color: #2A654C;
    /* Deep Forest Green - Matches --text-dark */
    --btn-color-hover: #1F4D39;
    /* Slightly darker for interaction */

    /* 2. TYPOGRAPHY (HIERARCHY REFINED) */
    --font-heading: 'Libre Baskerville', serif;
    --font-body: 'Inter', sans-serif;

    /* 3. LAYOUT & SPACING (8px base) */
    --max-content-width: 1120px;
    --section-v-rhythm-desktop: 100px;
    --section-v-rhythm-tablet: 80px;
    --section-v-rhythm-mobile: 64px;
    --corner-radius: 32px;

    /* 4. SHADOWS/BORDERS */
    --card-border: 1px solid rgba(255, 255, 255, 0.4);
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-blur: blur(12px);
}

/* Utility Classes */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.shadow-card {
    box-shadow: var(--card-shadow);
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-grey);
    color: var(--text-body);
    line-height: 1.75;
    font-size: 18px;
    /* Locked base size */
    letter-spacing: 0.01em;
    /* Subtle spacing for Inter */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
}

.container-narrow {
    max-width: 860px !important;
    margin: 0 auto;
    text-align: center;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 400;
    /* Default heading weight */
    line-height: 1.2;
    letter-spacing: 0;
    /* Let serif breathe */
}

h2,
h3 {
    line-height: 1.3;
}

/* Standardized Typography Sizes */
h1 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 24px;
}

h2 {
    font-size: 34px;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 64px;
}

h3 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 400;
    /* Default serif weight */
}

h4 {
    font-family: var(--font-body);
    /* Inter for labels */
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
        /* Scaled down for mobile */
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    body {
        font-size: 16px;
    }
}

.kicker {
    font-size: 12px;
    letter-spacing: 0.12em;
    color: #8A8A8A;
    display: block;
    margin-bottom: 12px;
}

.container {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: var(--section-v-rhythm-desktop) 0;
}

@media (max-width: 1024px) {
    section {
        padding: var(--section-v-rhythm-tablet) 0;
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--section-v-rhythm-mobile) 0;
    }
}

/* ── First section after fixed header ── */
.page-section--first {
    padding-top: 168px;
    /* 72px header + 96px spacing */
}

@media (max-width: 1024px) {
    .page-section--first {
        padding-top: 152px;
        /* 72px header + 80px spacing */
    }
}

@media (max-width: 768px) {
    .page-section--first {
        padding-top: 136px;
        /* 72px header + 64px spacing */
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

p {
    margin-bottom: 24px;
    line-height: 1.75;
    max-width: 760px;
}

/* Subtext below H1 */
.section-subtext {
    margin-bottom: 40px;
}

/* Header & Navigation */
header {
    background-color: #FFFFFF;
    /* Pure White */
    border-bottom: 1px solid rgba(215, 192, 165, 0.15);
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.header-inner {
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-content-width);
    margin: 0 auto;
    height: 80px;
    /* Thinner fixed height */
}

.brand-logo-img {
    height: 150px;
    /* Increased size */
    margin-top: -25px;
    /* Shifted up slightly (was -20px) */
    margin-bottom: -35px;
    /* Shifted up slightly (was -40px) */
    display: block;
}

nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    /* Reduced from 16px */
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--muted-sage);
}

nav a.active {
    color: var(--text-dark);
    position: relative;
}

nav a.active:not(.brand-link):not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--text-dark);
    opacity: 0.6;
}

.nav-cta {
    background-color: var(--btn-color);
    color: var(--card-white) !important;
    padding: 10px 20px;
    border-radius: 99px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.burger {
    display: none;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px;
    transition: all 0.3s ease;
}

/* ————————————————————————————————————————————
   PAGE HERO — UNIFIED COMPONENT
   ———————————————————————————————————————————— */

/* Base Layout */
.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 160px 24px 112px;
}

/* Content Block */
.page-hero__content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* H1 — Consistent everywhere */
.page-hero__title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.1;
    max-width: 672px;
    margin: 0 auto;
    text-rendering: optimizeLegibility;
}

/* Subtitle — 1-2 lines */
.page-hero__subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-body);
    line-height: 1.65;
    max-width: 576px;
    margin: 20px auto 0;
}

/* Supporting text — 2-3 lines */
.page-hero__supporting {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 576px;
    margin: 16px auto 0;
}

/* Button Group */
.page-hero__buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}

/* ── STANDARD VARIANT ── */
.page-hero--standard {
    background-color: var(--sage-light);
    min-height: auto;
}

/* Override secondary button for standard (dark text on light bg) */
.page-hero--standard .btn-hero-secondary {
    color: #1F3A34;
    border-color: #1F3A34;
    background-color: transparent;
}

.page-hero--standard .btn-hero-secondary:hover {
    background-color: rgba(31, 58, 52, 0.08);
}

/* ── IMAGE VARIANT ── */
.page-hero--image {
    min-height: 85vh;
    background-color: var(--bg-grey);
}

/* Background Image Layer */
.page-hero--image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-image, url('/rhh-banner.webp'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: heroZoom 3s ease-out forwards;
}

/* Dark Overlay */
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.20) 0%,
            rgba(0, 0, 0, 0.10) 40%,
            rgba(0, 0, 0, 0.30) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Image variant overrides: white text, larger title */
.page-hero--image .page-hero__title {
    color: #FFFFFF;
    font-size: 64px;
}

.page-hero--image .page-hero__subtitle {
    color: rgba(255, 255, 255, 0.92);
}

.page-hero--image .page-hero__supporting {
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
}

/* .page-hero--method custom base styles */
.page-hero--method {
    min-height: 85vh;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .page-hero__title {
        font-size: 44px;
    }

    .page-hero--image .page-hero__title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 128px 24px 80px;
    }

    .page-hero__title {
        font-size: 34px;
    }

    .page-hero--image .page-hero__title {
        font-size: 34px;
    }

    .page-hero__subtitle {
        font-size: 17px;
    }

    .page-hero__supporting {
        font-size: 16px;
    }

    .page-hero__buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .page-hero__buttons .btn {
        width: 100%;
    }
}


.hero-botanical {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0 24px;
    background-color: var(--bg-grey);
}

/* Layer 1: The Image */
.hero-botanical::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/rhh-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Layer 2: Dark Overlay */
.hero-botanical::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.25) 40%,
            rgba(0, 0, 0, 0.45) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title-main {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    max-width: 820px;
    line-height: 1.1;
}

.hero-supporting {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
    max-width: 640px;
    margin-top: 18px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}

@media (max-width: 1024px) {
    .hero-title-main {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .hero-title-main {
        font-size: 34px;
    }

    .hero-supporting {
        font-size: 17px;
    }
}

.btn-hero-primary {
    background-color: var(--btn-color);
    color: #FFFFFF;
}

.btn-hero-primary:hover {
    background-color: var(--btn-color-hover);
}

.btn-hero-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 1.5px solid #FFFFFF !important;
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .hero-redesign {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image-vertical {
        height: 60vh;
        width: 100%;
        flex: none;
    }

    .hero-text-middle {
        padding: 60px 40px;
    }

    .hero-title-main {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .hero-image-vertical {
        height: 40vh;
    }
}

/* ── Unified CTA Section & Band ── */
.cta-section {
    padding: 120px 24px;
    background-color: #FFFFFF;
    text-align: center;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: #2E3A34 !important;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-body {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto 24px;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
}

/* Base button refinements */
.btn {
    height: 44px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    line-height: 44px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-family: var(--font-body);
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background-color: var(--btn-color);
    color: var(--card-white) !important;
}

.btn-primary:hover {
    background-color: var(--btn-color-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--btn-color);
    border: 1.5px solid var(--btn-color);
    line-height: 41px;
    /* Adjust for 1.5px border */
}

@media (max-width: 1024px) {
    .cta-section {
        padding: 80px 24px;
    }

    .cta-title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 64px 24px;
    }

    .cta-title {
        font-size: 22px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 12px;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

.highlight-cta {
    background-color: var(--muted-sage);
    padding: 100px 24px;
}

.highlight-cta .cta-title {
    color: var(--text-dark) !important;
}

.highlight-cta .cta-body {
    color: var(--text-dark);
    opacity: 0.9;
}

.highlight-cta .btn-primary {
    background-color: var(--text-dark);
}

.highlight-cta .btn-primary:hover {
    background-color: #1F4D39;
}

/* SECTION B & C - CONTENT CARDS */
.content-card-centered {
    background-color: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 80px 100px;
    border-radius: var(--corner-radius);
    border: var(--card-border);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--card-shadow);
}

.dual-column-card {
    background-color: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 80px 80px 42px;
    border-radius: var(--corner-radius);
    border: var(--card-border);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    box-shadow: var(--card-shadow);
}

.title-with-underline {
    display: block;
    /* Allows auto margins */
    width: fit-content;
    margin: 0 auto 64px auto;
    /* Centers the block itself */
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.title-with-underline-left {
    display: block;
    width: fit-content;
    margin: 0 0 64px 0;
    /* Keeps it left-aligned */
    position: relative;
    padding-bottom: 15px;
}

.title-with-underline::after,
.title-with-underline-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right,
            transparent 0%,
            var(--warm-beige) 50%,
            transparent 100%);
    border-radius: 50%;
}

.centered-content-text {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.custom-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.custom-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.5;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7A8E77;
    /* Darker sage for better visibility */
    font-weight: bold;
}

.cross-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #A39689;
    /* Darker beige for better contrast */
    font-size: 20px;
    line-height: 1;
}

/* ── METHOD STEPS — Icon + Text rows ── */
.method-steps {
    list-style: none;
    padding: 0;
    margin: 24px auto 0;
    max-width: 600px;
    text-align: left;
}

.method-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 10px;
    margin-bottom: 12px;
    border-radius: 10px;
    transition: background-color 0.25s ease;
    cursor: default;
}

.method-step:hover {
    background: rgba(143, 175, 155, 0.08);
}

.method-step__icon {
    flex-shrink: 0;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    color: var(--btn-color);
    transition: color 0.25s ease;
}

.method-step:hover .method-step__icon {
    color: rgba(30, 55, 45, 0.85);
}

.method-step__icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.method-step__text {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    color: #2E2E2E;
    transition: color 0.25s ease;
}

.method-step:hover .method-step__text {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .method-step__icon svg {
        width: 17px;
        height: 17px;
    }

    .method-step__text {
        font-size: 15px;
    }
}

.approach-note {
    margin-top: 32px;
    font-style: italic;
    opacity: 0.8;
}

.section-note {
    text-align: center;
    margin: 4px auto 0;
    grid-column: 1 / -1;
    width: 100%;
}

.sage-band {
    background-color: var(--bg-grey);
    /* Set to match rest of sections like Ways to Work Together */
    width: 100%;
}

.benefit-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 40px;
    list-style: none;
    text-align: left;
    padding: 0;
    margin-top: 40px;
}

.benefit-bullets li {
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    color: var(--text-dark);
}

.benefit-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--logo-beige);
    border-radius: 50%;
}

/* SECTION D — WAYS TO WORK TOGETHER */
.section-d {
    padding-bottom: 120px;
    /* padding-top managed by .page-section--first when first section */
}

/* Work With Me — top section uses .page-section--first for spacing */


/* Work With Me — Redesign 2024 */

.work-hero {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    background-size: cover;
    background-position: center;
    padding: 120px 24px;
}

.work-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.work-hero__content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    width: 100%;
}

.work-hero__title {
    font-family: var(--font-heading);
    font-size: 56px;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.work-hero__subtitle {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 300;
}

.work-hero__text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.work-hero__sub-line {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.8;
}

/* Alternating Program Sections */
.work-section {
    padding: 100px 0;
}

.work-section--featured {
    padding: 120px 0;
    background-color: var(--bg-grey);
    /* Subtle distinction for Restore Balance */
}

.work-program-row {
    display: flex;
    gap: 80px;
    align-items: stretch;
    /* Match height of columns */
    max-width: 1000px;
    /* narrowed for centered feel */
    margin: 0 auto;
    /* center row in container */
}

.work-program-row--reverse {
    flex-direction: row-reverse;
}

.work-text-col {
    flex: 1;
}

.work-text-col h2 {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.work-text-col h2.featured-heading {
    font-size: 40px;
}

.work-tagline {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-style: italic;
}

.work-sub-section {
    margin-bottom: 32px;
}

.work-sub-section h4 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 600;
}

.work-sub-section ul {
    list-style: none;
    padding: 0;
}

.work-sub-section li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 4px;
    line-height: 1.6;
}

.work-sub-section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--btn-color);
    font-weight: bold;
}

.work-image-col {
    flex: 0 0 320px;
    height: auto;
    min-height: 340px;
    position: relative;
    clip-path: inset(0 round 20px);
    -webkit-clip-path: inset(0 round 20px);
}

.work-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}






/* Specific button styles for Work With Me */
.btn-work-primary {
    display: inline-block;
    background-color: var(--btn-color);
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--btn-color);
}

.btn-work-primary:hover {
    background-color: var(--btn-hover);
    border-color: var(--btn-hover);
}

.btn-work-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--btn-color);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--btn-color);
    transition: all 0.3s ease;
}

.btn-work-secondary:hover {
    background-color: var(--btn-color);
    color: #FFFFFF;
}

@media (max-width: 992px) {
    .work-program-row {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .work-program-row--reverse {
        direction: ltr;
    }

    /* Mobile: Text first, image below */
    .work-program-row {
        display: flex;
        flex-direction: column;
    }

    .work-image-col {
        order: 2;
        flex: 0 0 auto;
        width: 100%;
        height: 320px;
        margin-top: 32px !important;
    }

    .work-text-col {
        order: 1;
        max-width: 100%;
    }

    .work-hero {
        min-height: 450px;
        padding: 80px 24px;
    }

    .work-hero__title {
        font-size: 36px;
    }
}

/* Discovery Call section — extra spacing */
.work-clarity-call {
    padding: 140px 0;
}

/* Discovery Call specifics inherited from global standards */
.work-clarity-call .work-program-row {
    margin-bottom: 0;
    align-items: flex-end;
}

.work-clarity-call .work-image-col {
    min-height: unset;
}

@media (max-width: 1024px) {
    .work-clarity-call {
        padding: 100px 0;
    }
}

@media (max-width: 992px) {
    .work-clarity-call .work-program-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .work-clarity-call {
        padding: 80px 0;
    }

    .work-clarity-call .work-program-row {
        display: flex;
        flex-direction: column;
    }

    .work-clarity-call .work-image-col {
        order: -1;
        /* Image above text on mobile */
        width: 100%;
        max-width: 100%;
        max-height: 380px;
    }

    .work-clarity-call .work-image-col img {
        max-height: 380px;
    }
}

/* Service Page Process Steps */
.service-process-step {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border-light);
}

.service-process-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-process-step h4 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-process-step p {
    margin-bottom: 0;
}

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

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-body);
    max-width: 700px;
    margin: 0 auto 80px;
    line-height: 1.6;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.service-card-tagline {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card {
    background-color: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 48px;
    border-radius: var(--corner-radius);
    border: var(--card-border);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--card-shadow);
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.service-card-header .icon-circle {
    margin-bottom: 0;
    flex-shrink: 0;
}

.service-card h3 {
    margin-bottom: 0;
    font-size: 22px;
    /* Standardized H3 size */
    color: var(--text-dark);
}

.service-card .card-subtitle {
    margin-top: -16px;
    margin-bottom: 16px;
    padding-left: 64px;
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
}

.icon-circle {
    width: 48px;
    height: 48px;
    background-color: #FFFFFF;
    border: 1.5px solid var(--btn-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-circle i {
    font-size: 20px;
    color: var(--btn-color);
}

.service-card p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 8px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.card-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.card-link:hover {
    text-decoration: underline;
}

/* SECTION E — THE RESTORE APPROACH */
.section-e {
    background-color: var(--bg-grey);
}

.approach-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 20px;
    line-height: 1.5;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.approach-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .approach-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .approach-grid-4 {
        grid-template-columns: 1fr;
    }
}

.approach-card {
    background-color: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 48px 32px;
    border-radius: var(--corner-radius);
    border: var(--card-border);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.approach-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* TESTIMONIALS SECTION */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

/* WORK PAGE SPECIFIC TESTIMONIALS */
.work-testimonials {
    padding: 120px 0;
}

.container--testimonials {
    max-width: 1100px !important;
    margin: 0 auto;
    padding: 0 40px !important;
}

.work-testimonials-title {
    text-align: center;
}

.work-testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.work-testimonial-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: var(--card-border);
}

.work-testimonial-quote {
    font-size: 16px;
    line-height: 1.75;
    color: #4A4A4A;
    margin-bottom: 0 !important;
    font-style: normal !important;
    /* spec says keep calm and editorial, no bold, unedited wording */
}

.work-testimonial-divider {
    height: 1px;
    width: 40px;
    background-color: #E7E3DC;
    margin-top: 20px;
    margin-bottom: 12px;
}

.work-testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #2E3A34;
    margin-top: 0;
}

@media (max-width: 1024px) {
    .work-testimonial-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .work-testimonials {
        padding: 80px 0;
    }

    .work-testimonial-grid {
        gap: 32px;
    }

    .container--testimonials {
        padding: 0 24px !important;
    }

    .work-testimonials-title {
        font-size: 30px !important;
        margin-bottom: 48px !important;
    }
}

.testimonial-card {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    /* Very subtle shadow */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    margin-top: auto;
}

.minimal-icon-container {
    width: 64px;
    height: 64px;
    background-color: #FFFFFF;
    border: 1.5px solid var(--btn-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.minimal-icon-container i {
    font-size: 24px;
    color: var(--btn-color);
}

.approach-card h4 {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.approach-card p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 0;
    color: var(--text-secondary);
}

.approach-card:hover {
    border-color: var(--muted-sage);
}

.approach-cta {
    display: flex;
    justify-content: center;
    margin-top: 64px;
}

@media (max-width: 1024px) {
    .approach-grid {
        gap: 24px;
    }
}

/* SECTION F — FINAL CTA */
.section-f {
    margin-top: 80px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.beige-band {
    background-color: var(--bg-grey);
    width: 100%;
}

.white-band {
    background-color: #FFFFFF;
    width: 100%;
}

.cta-centered-content {
    text-align: center;
}

.cta-heading {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* SECTION: ABOUT THE FOUNDER */
.section-founder {
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: var(--bg-grey);
    border-bottom: none;
}

.founder-layout {
    display: flex;
    align-items: stretch;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.founder-image {
    flex-shrink: 0;
    width: 420px;
    position: relative;
}

.founder-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.founder-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 900px) {
    .founder-layout {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        text-align: center;
    }

    .founder-image {
        width: 100%;
        max-width: 420px;
        height: auto;
    }

    .founder-image img {
        position: static;
        width: 100%;
        height: auto;
    }

    .founder-title {
        margin-left: auto;
        margin-right: auto;
    }
}

.founder-title {
    font-family: var(--font-heading);
    font-size: 38px;
    color: #2A654C;
    margin-bottom: 24px;
    line-height: 1.2;
    position: relative;
    width: fit-content;
    padding-bottom: 15px;
}

.founder-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right,
            transparent 0%,
            var(--warm-beige) 50%,
            transparent 100%);
    border-radius: 50%;
}

.founder-text p {
    font-size: 17px;
    color: #4A4A4A;
    line-height: 1.7;
    margin-bottom: 16px;
}



/* SECTION: PROFESSIONAL CREDENTIALS */
.section-credentials {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #F5F8F4;
    /* Subtle sage tint */
}

.credentials-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 28px;
    color: #2A654C;
    margin-bottom: 20px;
    font-weight: 500;
}

.credentials-supporting {
    text-align: center;
    font-size: 18px;
    color: #5F6B63;
    /* Muted text */
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.credentials-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.credential-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.credential-badge {
    height: 120px;
    width: auto;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.credential-badge:hover {
    transform: translateY(-5px);
}

.credential-acronym {
    font-size: 18px;
    font-weight: 600;
    color: #2A654C;
    margin-bottom: 8px;
    display: block;
}

.credential-name {
    font-size: 16px;
    color: #5F6B63;
    line-height: 1.5;
    margin-bottom: 4px;
    display: block;
}

.credential-org {
    font-size: 14px;
    color: #7A8C80;
    font-style: italic;
    line-height: 1.4;
    display: block;
}

@media (max-width: 768px) {
    .founder-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .founder-image img {
        max-width: 260px;
    }

    .founder-title {
        font-size: 32px;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* Footer */
/* FOOTER REDESIGN - CENTERED LAYOUT */
#main-footer {
    background-color: #DED8D0;
    /* Darker neutral background */
    color: var(--text-body);
    padding: 64px 0 48px;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.footer-container-centered {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-social-centered {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-social-centered a {
    color: #444444;
    /* Darker color for better contrast */
    font-size: 22px;
    /* Increased size */
    transition: color 150ms ease;
}

.footer-social-centered a:hover {
    color: #2A654C;
}

.footer-nav-links,
.footer-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-legal-links {
    gap: 24px;
    margin-bottom: 32px;
}

.footer-nav-links a,
.footer-legal-links a {
    color: #444444;
    /* Darker color for better contrast */
    text-decoration: none;
    font-weight: 500;
    transition: all 150ms ease;
}

.footer-nav-links a:hover,
.footer-legal-links a:hover {
    color: #2A654C;
    text-decoration: underline;
}

.footer-bottom-centered {
    margin-top: 16px;
    padding-top: 24px;
    border-top: 1px solid #ECE7E2;
    width: 100%;
    max-width: 600px;
}

.footer-bottom-centered p {
    color: #444444;
    /* Darker color for better contrast */
    font-size: 13px;
    letter-spacing: 0.01em;
}

/* ————————————————————————————————————————————
   CONTACT PAGE (Redesign)
   ———————————————————————————————————————————— */

/* Top section with H1 */
.contact-top {
    text-align: center;
    padding-bottom: 0 !important;
}

.contact-top .section-subtext {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

/* Content section with grid */
.contact-content-section {
    padding-top: 56px;
    padding-bottom: var(--section-v-rhythm-desktop);
}


/* Two-column flexbox for equal height */
.contact-grid {
    display: flex;
    gap: 48px;
    /* Condensed gap */
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}

/* ── LEFT COLUMN ── */
.contact-left {
    flex: 0 0 360px;
    /* Fixed smaller width for image/text column */
    display: flex;
    flex-direction: column;
}

.contact-profile-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
    flex: 1;
    /* Stretch image wrapper to match form height */
    display: flex;
}

.contact-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.contact-social-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    /* Bottom margin for spacing above text */
}

.contact-social-row a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--text-dark);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-social-row a:hover {
    background: var(--bg-greige);
    border-color: var(--brand-green);
    color: var(--brand-green);
    transform: translateY(-2px);
}

.contact-enquiries-left {
    padding: 24px;
    background-color: var(--card-white);
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.contact-enquiries-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-align: left;
}

.contact-left-text {
    text-align: left;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

/* ── RIGHT COLUMN — Form ── */
.contact-right {
    flex: 1;
    /* Form column takes remaining width, making it wider */
    display: flex;
    flex-direction: column;
}

.contact-right form,
.contact-success {
    background-color: var(--card-white);
    padding: 32px;
    /* Reduced from 56px to shorten form */
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--card-shadow);
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Form rows (2-col grid) */
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

/* Individual field */
.contact-field {
    margin-bottom: 16px;
}

.contact-form-row .contact-field {
    margin-bottom: 0;
}

.contact-field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #2F2F2F;
    margin-bottom: 8px;
}

.contact-optional {
    font-weight: 400;
    color: #999;
}

/* Text inputs */
.contact-field input,
.contact-field select {
    width: 100%;
    height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background-color: #FFFFFF;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field input::placeholder {
    color: #999;
}

/* Textarea */
.contact-field textarea {
    width: 100%;
    min-height: 160px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background-color: #FFFFFF;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 15px;
    resize: vertical;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field textarea::placeholder {
    color: #999;
}

/* Select dropdown */
.contact-field select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%232F2F2F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
}

.contact-field select option {
    background: #FFFFFF;
    color: var(--text-dark);
}

/* Focus states */
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: #1F4F3E;
    box-shadow: 0 0 0 3px rgba(31, 79, 62, 0.12);
}

/* Error states */
.contact-field--error {
    border-color: #D32F2F !important;
}

.contact-field-error {
    display: block;
    font-size: 12px;
    color: #D32F2F;
    margin-top: 4px;
    min-height: 0;
}

/* Submit button */
.contact-form-actions {
    margin-top: 24px;
}

.contact-submit-btn {
    /* Inherits from .btn */
    background-color: var(--btn-color);
    color: #FFFFFF;
    font-weight: 600;
    min-width: 200px;
}

.contact-submit-btn:hover {
    background-color: var(--btn-color-hover);
    transform: translateY(-1px);
}

/* Direct contact line */
.contact-direct-line {
    font-size: 13px;
    color: #777;
    margin-top: 16px;
    margin-bottom: 0;
}

.contact-direct-line a {
    color: #555;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-direct-line a:hover {
    color: var(--text-dark);
}

/* Success state */
.contact-success {
    text-align: center;
    padding: 60px 20px;
}

.contact-success__icon {
    color: #1F4F3E;
    margin-bottom: 20px;
}

.contact-success__title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-success__text {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 0;
}



/* FORMS */
.form-group {
    margin-bottom: 24px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--corner-radius);
    border: var(--card-border);
    background: var(--card-white);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-dark);
}

.success-message {
    background: var(--sage-tint);
    color: var(--text-dark);
    padding: 32px;
    border-radius: var(--corner-radius);
    text-align: center;
    border: 1px solid var(--muted-sage);
}

.hp-field {
    display: none !important;
}

/* INTERNAL PAGE TEMPLATE (WEBSITE TEMPLATE) */
.internal-header-section {
    padding: 180px 0 100px 0;
    background-color: var(--bg-grey);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.internal-header-section.sage-bg,
.internal-header-section.beige-bg {
    background-color: var(--hero-internal-bg);
}

.internal-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.internal-header-section .page-title {
    font-size: 46px;
    /* Standardized H1 size */
    color: #1F3A34;
    font-weight: 500;
    margin: 0 auto 24px auto;
    width: fit-content;
}

.internal-header-section .page-intro {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0 auto;
    max-width: 650px;
}

/* Responsive & Mobile Menu */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content-card {
        max-width: 100%;
    }

    .approach-grid {
        gap: 24px;
    }

    .content-card-centered {
        padding: 60px 40px;
    }


    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .contact-profile-img {
        height: 340px;
    }
}

@media (max-width: 768px) {

    .container,
    .container-narrow {
        padding: 0 24px;
    }


    .contact-grid {
        flex-direction: column;
        gap: 32px;
    }

    .contact-profile-img {
        height: 280px;
    }

    .contact-right form {
        padding: 24px 16px;
    }

    .contact-left-text {
        text-align: center;
        max-width: 100%;
    }

    .section-v-rhythm-mobile {
        padding: 80px 0;
    }

    .hero-section {
        padding-top: 120px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .benefit-bullets,
    .service-grid,
    .service-grid-2x2,
    .approach-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .burger {
        display: block;
    }

    nav {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        background-color: var(--card-white);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1001;
    }

    nav.nav-active {
        transform: translateX(0%);
    }

    nav ul {
        flex-direction: column;
        gap: 32px;
    }

    nav a {
        font-size: 24px;
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* ABOUT PAGE CREDENTIALS OVERRIDES */
.credentials-about {
    padding-top: 60px;
    padding-bottom: 60px;
}

.credentials-about .credential-badge {
    height: 150px;
}

@media (max-width: 1024px) {
    .credentials-about .credential-badge {
        height: 120px;
    }
}

/* METHOD PAGE UPDATES */
.medical-care-section {
    background-color: #F5F8F4;
    padding: 100px 0;
}

/* final-cta-section — now powered by .cta-section */
.final-cta-section {
    background-color: #FFFFFF;
}

.btn-primary-dark {
    background-color: #1F3F34;
    color: #FFFFFF;
    border-radius: 4px;
    padding: 14px 28px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-dark:hover {
    background-color: #162e26;
    color: #FFFFFF;
}

.explore-section {
    background-color: var(--bg-grey);
    padding: 120px 0;
}

.explore-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 40px;
    /* Slight offset to right as requested */
}

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

@keyframes heroZoom {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    100% {
        transform: scale(1.01);
        opacity: 1;
    }
}

.method-hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0 24px;
}

/* Background Layer with Animation */
.method-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        /* The Image (Original) */
        url('/method banner - lighter.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;

    /* Animation: Slow radial fade-in (2–3 seconds) + Very soft zoom (1% scale) */
    animation: heroZoom 3s ease-out forwards;
}

.method-hero-section .internal-header-content {
    position: relative;
    z-index: 2;
    /* Ensure text is above background */
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    text-align: center;
}

.method-hero-section .page-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 500;
    color: #1F3A34;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-rendering: optimizeLegibility;
    text-shadow: none;
    margin-bottom: 32px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-bottom: 0;
}

.method-hero-section .page-intro {
    font-size: 20px;
    color: #1F3A34;
    opacity: 0.9;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.65;
}

.hero-disclaimer {
    font-size: 15px;
    color: #6E756F;
    font-style: italic;
    opacity: 0.9;
    margin-top: 24px;
    max-width: 640px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .method-hero-section .page-title {
        font-size: 30px;
        letter-spacing: -0.02em;
    }

}

.method-hero-section {
    min-height: 500px;
    padding-top: 140px;
}


/* ————————————————————————————————————————————
   ABOUT PAGE STYLES
   ———————————————————————————————————————————— */

/* 1. Top-section spacing — uses .page-section--first */
.about-top-section {
    padding: 120px 0;
    background-color: transparent;
}

/* Card-free philosophy block */
.about-philosophy-block {
    text-align: left;
    /* Text left-aligned by default */
}

/* Micro typography for About body text */
.about-body-text p {
    line-height: 1.75;
    margin-bottom: 24px;
    color: var(--text-body);
    font-size: 1.1rem;
    /* Slightly larger for editorial feel */
}

.about-body-text p:last-child {
    margin-bottom: 0;
}

/* No-card modifier */
.about-no-card {
    background-color: transparent;
}

/* About page H1 — darker */
.about-top-section h2 {
    color: var(--text-dark);
    font-weight: 600;
}

/* About-page sub-headings — reduced green intensity */
.about-top-section~section h2 {
    color: #2B3D35;
}

/* 2. Founder Section (About Page) — no card */
.section-founder-about {
    padding: 120px 0;
    background-color: transparent;
}

.founder-about-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.founder-about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
    border-radius: 12px;
}

.founder-about-text {
    max-width: none;
    /* Let it use the full wider column */
}

/* removed two-column layout */
.section-founder-about .about-body-text {
    column-count: 1;
}

/* removed tablet column count override */

/* heading moved to template root container */

.founder-about-text p {
    margin-bottom: 1.6rem;
    line-height: 1.75;
    color: var(--text-body);
}

.founder-about-text p:last-child {
    margin-bottom: 0;
}

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

    .founder-about-image {
        max-width: 500px;
        margin: 0 auto;
        order: 1;
        /* Image first on mobile */
    }

    .founder-about-text {
        order: 2;
    }
}

/* Editorial layout for "Why Restore" */
.editorial-block {
    max-width: 900px;
    margin: 0 auto;
}

.editorial-block h2 {
    margin-bottom: 40px;
}

/* 3. Certifications Grid — transparent bg */
.section-certifications {
    padding: 80px 0 100px;
    background-color: transparent;
}

.section-certifications .title-with-underline {
    margin-bottom: 24px;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    /* Slightly increased gap */
    max-width: 800px;
    /* Slightly increased max-width */
    margin: 32px auto 0;
    align-items: center;
    justify-items: center;
}

.badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    /* Reduced container height */
    width: 100%;
}

.badge-item:first-child {
    margin-top: 8px;
    /* Lowered to align with circular badges */
}

.badge-item img {
    height: 90px !important;
    width: 90px !important;
    /* Reduced size for more refined look */
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.badge-item:hover img {
    transform: translateY(-8px);
}

.certifications-text {
    max-width: 800px;
    margin: 24px auto 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .badges-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .badge-item {
        height: auto;
    }

    .badge-item img {
        height: 80px !important;
        /* Reduced from 110px for mobile balance */
    }
}

/* 4. Soft Closing CTA — uses normal site background */
/* about-closing-cta — now powered by .cta-section + .cta-band */
.about-closing-cta {
    background-color: var(--bg-grey);
}

/* About page — beige background (default) */
/* 
.about-page-white {
    background-color: #FFFFFF;
}
*/

/* ————————————————————————————————————————————
   FAQ PAGE STYLES
   ———————————————————————————————————————————— */

/* White background for FAQ page */
.faq-page-white {
    background-color: #FFFFFF;
}

/* Top section — replaces hero, uses .page-section--first */
.faq-top-section {
    padding-bottom: 40px;
    text-align: center;
}

.faq-top-content {
    max-width: 720px;
    margin: 0 auto;
}

.faq-subtext {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .faq-top-section {
        padding-bottom: 32px;
    }

    .faq-subtext {
        font-size: 16px;
    }
}

/* Accordion section — no card, directly on page */
.faq-accordion-section {
    padding: 0 0 60px;
}

.faq-accordion-wrap {
    max-width: 720px;
    margin: 0 auto;
}

/* Individual FAQ item */
.faq-item {
    border-bottom: 1px solid #E8E5E1;
}

.faq-item:first-child {
    border-top: 1px solid #E8E5E1;
}

/* Question button */
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: #3A3A3A;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #2A2A2A;
}

.faq-question-text {
    flex: 1;
}

/* Chevron icon */
.faq-chevron {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: #999;
    transition: transform 0.3s ease, color 0.2s ease;
}

.faq-question.active .faq-chevron {
    transform: rotate(180deg);
    color: #666;
}

/* Answer panel */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0;
}

.faq-answer.open {
    max-height: 600px;
    padding: 0 0 24px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: #5A5A5A;
    max-width: 100%;
}

/* Scope note */
.faq-scope-note {
    margin-top: 56px;
    padding-top: 32px;
}

.faq-scope-note__title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888;
    margin-bottom: 10px;
}

.faq-scope-note__text {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    max-width: 100%;
}

/* Bottom CTA — keeps normal site bg */
/* faq-bottom-cta — now powered by .cta-section + .cta-band */
.faq-bottom-cta {
    background-color: var(--bg-grey);
}

/* SECTION: EDITORIAL TESTIMONIAL */
.editorial-testimonial {
    margin-top: 72px;
    margin-bottom: 72px;
    text-align: center;
}

.testimonial-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding: 0 24px;
}

.testimonial-label {
    display: block;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6B6B6B;
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.editorial-testimonial blockquote {
    position: relative;
    margin: 0;
}

/* Decorative quote mark removed */

.editorial-testimonial blockquote p {
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.editorial-testimonial cite {
    display: block;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    color: #2F2F2F;
    margin-top: 6px;
    font-style: normal;
}

@media (max-width: 768px) {
    .editorial-testimonial blockquote p {
        font-size: 20px;
    }

    /* Mobile quote mark rule removed */
}

/* SECTION: HOW CHANGE OFTEN HAPPENS (HORIZONTAL RAIL & DOTS) */
#change-unfolds {
    background: var(--bg-grey);
    padding: 100px 20px;
}

#change-unfolds .inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

#change-unfolds h2 {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 64px;
}

.timeline-section .intro {
    max-width: 760px;
    margin: 0 auto 80px;
    color: var(--text-body);
    line-height: 1.75;
    font-size: 18px;
    text-align: center;
}

.timeline-section .timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    position: relative;
    text-align: left;
}

/* Horizontal Rail */
.timeline-section .timeline::before {
    content: "";
    position: absolute;
    top: 6px;
    /* Align with dots */
    left: 15px;
    /* Center of first dot */
    right: 0;
    /* Extend to the edge of the container */
    height: 2px;
    background: #D7E2DB;
    z-index: 1;
}

.timeline-section .step {
    position: relative;
    padding-top: 40px;
    /* Space for the rail/dot above content */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.timeline-section .dot {
    position: absolute;
    top: 0;
    left: 15px;
    width: 12px;
    height: 12px;
    background: var(--btn-color);
    border-radius: 999px;
    box-shadow: 0 0 0 7px rgba(177, 198, 172, 0.35);
    z-index: 2;
}

.timeline-section h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 20px;
    text-align: left;
}

.timeline-section ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.timeline-section li {
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
}

@media (max-width: 1024px) {
    .timeline-section .timeline {
        gap: 40px;
    }
}

@media (max-width: 820px) {
    .timeline-section .timeline {
        grid-template-columns: 1fr;
        gap: 60px;
        max-width: 500px;
        margin: 0 auto;
        padding-left: 40px;
        /* Align with dot-rail on left */
        text-align: left;
    }

    .timeline-section .timeline::before {
        left: 15px;
        top: 6px;
        bottom: 6px;
        width: 2px;
        height: auto;
        right: auto;
    }

    .timeline-section .step {
        padding-top: 0;
        align-items: flex-start;
        text-align: left;
    }

    .timeline-section .dot {
        left: -40px;
        top: 6px;
        transform: none;
    }

    .timeline-section h3 {
        text-align: left;
    }
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

/* Subtle button pulse on hover */
.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Premium Navigation Hover */
nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-dark);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}