:root {
    color-scheme: light;
    --cream: #fbf2df;
    --cream-2: #fff9ef;
    --warm-white: #fffdf8;
    --gold: #d39328;
    --gold-dark: #a66517;
    --amber-soft: #f4d49a;
    --sage: #768b62;
    --sage-dark: #4c6443;
    --rose: #c96f70;
    --rose-soft: #f3d2c8;
    --brown: #3f2d20;
    --text: #5f4b3a;
    --muted: #826f5c;
    --line: rgba(118, 83, 48, 0.16);
    --surface: rgba(255, 253, 248, 0.88);
    --surface-solid: #fffdf8;
    --shadow: 0 30px 80px rgba(83, 57, 31, 0.15);
    --shadow-soft: 0 16px 40px rgba(83, 57, 31, 0.10);
    --radius-xl: 38px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --container: min(1160px, calc(100% - 40px));
    --font-body: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }

html {
    min-width: 320px;
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    background:
        radial-gradient(circle at 12% 4%, rgba(244, 212, 154, 0.45), transparent 34rem),
        radial-gradient(circle at 86% 20%, rgba(243, 210, 200, 0.38), transparent 32rem),
        linear-gradient(180deg, var(--cream) 0%, #fff8eb 46%, #fbf2df 100%);
    overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(120deg, rgba(211, 147, 40, 0.055) 1px, transparent 1px),
        radial-gradient(circle at 1px 1px, rgba(118, 139, 98, 0.10) 1px, transparent 0);
    background-size: 94px 94px, 30px 30px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 78%);
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }
p { margin: 0; color: var(--muted); }

h1, h2, h3 {
    margin: 0;
    color: var(--brown);
    font-family: var(--font-display);
    line-height: 0.98;
    letter-spacing: -0.035em;
}

h1 { font-size: clamp(3.55rem, 8.7vw, 7.6rem); }
h2 { font-size: clamp(2.35rem, 5.3vw, 4.7rem); }
h3 { font-size: clamp(1.45rem, 2.4vw, 2rem); }

.container {
    width: var(--container);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 9999;
    transform: translateY(-160%);
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--brown);
    color: #fff;
    font-weight: 800;
}

.skip-link:focus { transform: none; }

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(211, 147, 40, 0.45);
    outline-offset: 4px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(251, 242, 223, 0.76);
    border-bottom: 1px solid rgba(118, 83, 48, 0.12);
    backdrop-filter: blur(22px);
    transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 253, 248, 0.96);
    border-color: rgba(118, 83, 48, 0.18);
    box-shadow: 0 18px 44px rgba(83, 57, 31, 0.10);
}

.notice-strip {
    background: linear-gradient(90deg, rgba(118, 139, 98, 0.13), rgba(211, 147, 40, 0.16), rgba(201, 111, 112, 0.11));
    border-bottom: 1px solid rgba(118, 83, 48, 0.10);
    font-size: 0.85rem;
}

.notice-strip__inner,
.notice-strip__links,
.main-nav__inner,
.nav-menu,
.hero__actions,
.footer-socials,
.footer-cta,
.hero__note {
    display: flex;
    align-items: center;
}

.notice-strip__inner {
    min-height: 40px;
    justify-content: space-between;
    gap: 1rem;
}

.notice-strip p {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--sage-dark);
    font-weight: 800;
}

.notice-strip i { color: var(--gold-dark); }

.notice-strip__links { gap: 0.85rem; }

.notice-strip__links a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--brown);
    font-weight: 750;
    transition: transform 160ms ease, color 160ms ease;
}

.notice-strip__links a:hover {
    color: var(--gold-dark);
    transform: translateY(-1px);
}

.main-nav__inner {
    min-height: 82px;
    justify-content: space-between;
    gap: 1.3rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: fit-content;
}

.brand__mark {
    position: relative;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50% 48% 44% 56%;
    background:
        radial-gradient(circle at 32% 22%, rgba(255,255,255,.9), transparent 26%),
        linear-gradient(140deg, var(--gold) 0%, #bd7b2d 45%, var(--sage) 100%);
    color: #fff;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 17px 32px rgba(128, 82, 28, 0.24);
}

.brand__mark::after {
    content: "";
    position: absolute;
    right: -2px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 20px 20px 20px 3px;
    background: var(--rose);
    transform: rotate(26deg);
    box-shadow: 0 8px 18px rgba(201, 111, 112, 0.24);
}

.brand__text { display: grid; line-height: 1.05; }
.brand__text strong {
    color: var(--brown);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}
.brand__text span {
    color: var(--sage-dark);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.nav-menu {
    list-style: none;
    gap: 0.28rem;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 0.95rem;
    border-radius: 999px;
    color: var(--brown);
    font-size: 0.94rem;
    font-weight: 850;
    transition: background 170ms ease, color 170ms ease, transform 170ms ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
    background: rgba(211, 147, 40, 0.15);
    color: var(--gold-dark);
}

.nav-menu a:hover { transform: translateY(-1px); }

.nav-menu__cta {
    margin-left: 0.25rem;
    background: var(--brown) !important;
    color: #fff !important;
    box-shadow: 0 16px 34px rgba(63, 45, 32, 0.18);
}

.nav-menu__cta:hover { background: var(--gold-dark) !important; }

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface-solid);
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 99px;
    background: var(--brown);
    transition: transform 180ms ease, opacity 180ms ease;
}

.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); }

.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.section--pull-up { padding-top: 0; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
    opacity: .65;
}

.lead {
    max-width: 720px;
    color: var(--text);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    line-height: 1.65;
}

.hero {
    position: relative;
    padding: clamp(4rem, 7vw, 6.6rem) 0 clamp(5.2rem, 8vw, 8rem);
    overflow: hidden;
}

.hero::before,
.hero::after,
.page-hero::before {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(2px);
}

.hero::before {
    width: 46vw;
    height: 46vw;
    left: -22vw;
    bottom: 5rem;
    background: rgba(118, 139, 98, 0.15);
}

.hero::after {
    width: 30vw;
    height: 30vw;
    right: -12vw;
    top: 4rem;
    background: rgba(211, 147, 40, 0.18);
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .96fr) minmax(390px, .82fr);
    align-items: center;
    gap: clamp(2.4rem, 5vw, 5.5rem);
}

.hero__copy h1 {
    max-width: 760px;
    margin-bottom: 1.4rem;
}

.hero__actions {
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 1.25rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.94rem;
    font-weight: 900;
    transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, color 170ms ease;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
    background: linear-gradient(135deg, var(--gold) 0%, #bc7426 100%);
    color: #fff;
    box-shadow: 0 18px 38px rgba(166, 101, 23, 0.25);
}

.btn--primary:hover { box-shadow: 0 22px 44px rgba(166, 101, 23, 0.32); }

.btn--secondary {
    background: var(--surface-solid);
    color: var(--brown);
    border-color: var(--line);
    box-shadow: 0 12px 28px rgba(83, 57, 31, 0.08);
}

.btn--secondary:hover { background: #fff8ec; }

.hero__note {
    gap: 0.8rem;
    margin-top: 2rem;
}

.hero__note span {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: url('/images/lasting-change.jpg') center/cover;
    box-shadow: 0 12px 26px rgba(83, 57, 31, 0.16);
}

.hero__note p {
    max-width: 470px;
    color: var(--sage-dark);
    font-weight: 800;
}

.image-collage {
    position: relative;
    min-height: 600px;
}

.image-collage figure { margin: 0; }

.image-collage__main {
    position: absolute;
    top: 0;
    right: 1rem;
    width: min(74%, 390px);
    aspect-ratio: 1 / 1;
    border-radius: 48% 52% 42% 58%;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: rotate(3deg);
}

.image-collage__main img,
.image-collage__wide img,
.story-image img,
.page-hero__image img,
.service-tile img,
.service-detail__media img,
.image-led__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-collage__wide {
    position: absolute;
    left: 0;
    bottom: 2.6rem;
    width: min(84%, 460px);
    aspect-ratio: 1.56 / 1;
    border: 10px solid rgba(255, 253, 248, 0.78);
    border-radius: 46px 46px 46px 7rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.collage-card {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(72%, 300px);
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 28px 28px 28px 6px;
    background: rgba(255, 253, 248, 0.88);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.collage-card strong {
    display: block;
    color: var(--brown);
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1;
}

.collage-card span {
    display: block;
    margin-top: 0.45rem;
    color: var(--muted);
    font-size: .92rem;
    font-weight: 700;
}

.promise-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(118, 83, 48, 0.13);
    border-radius: 38px;
    background: rgba(255, 253, 248, 0.76);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.promise-band > div {
    padding: clamp(1.6rem, 3vw, 2.35rem);
    background:
        linear-gradient(145deg, rgba(255,253,248,.9), rgba(255,248,236,.76));
}

.promise-band > div + div { border-left: 1px solid var(--line); }
.promise-band h2 { margin: 0.55rem 0 0.75rem; font-size: clamp(1.65rem, 3vw, 2.45rem); }
.promise-band__number { color: var(--gold-dark); font-weight: 900; letter-spacing: .15em; }

.story-grid,
.page-hero__grid,
.editorial-grid,
.image-led__grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(2.3rem, 5.5vw, 5rem);
}

.story-image {
    position: relative;
    margin: 0;
    aspect-ratio: 0.86 / 1;
    border-radius: 999px 999px 42px 42px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.story-image::after,
.page-hero__image::after,
.image-led__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(63,45,32,.18));
    pointer-events: none;
}

.story-panel {
    position: relative;
    padding: clamp(2rem, 4vw, 3.2rem);
    border-radius: var(--radius-xl) var(--radius-xl) 8rem var(--radius-xl);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
}

.story-panel p + p,
.content-flow p + p,
.image-led__copy p + p { margin-top: 1rem; }
.story-panel h2,
.content-flow h2,
.image-led__copy h2 { margin-bottom: 1.2rem; }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.5rem;
    color: var(--gold-dark);
    font-weight: 900;
}

.text-link i { transition: transform 160ms ease; }
.text-link:hover i { transform: translateX(4px); }

.section-heading {
    max-width: 820px;
    margin-bottom: 2.5rem;
}

.service-river {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    grid-template-areas: "large small1" "large small2";
    gap: 1.15rem;
}

.service-tile {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 1.15rem;
    align-items: stretch;
    min-height: 210px;
    padding: 0.75rem;
    border-radius: 34px;
    background: var(--surface-solid);
    border: 1px solid rgba(118, 83, 48, 0.12);
    box-shadow: var(--shadow-soft);
}

.service-tile:nth-child(2) { grid-area: small1; }
.service-tile:nth-child(3) { grid-area: small2; }
.service-tile--large {
    grid-area: large;
    grid-template-columns: 1fr;
    min-height: 520px;
}

.service-tile img {
    border-radius: 26px;
    min-height: 180px;
}

.service-tile--large img { min-height: 310px; }
.service-tile div { padding: 0.7rem 0.55rem 0.75rem; }
.service-tile span,
.service-detail__content span,
.involvement-card span {
    color: var(--sage-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.service-tile h3 { margin: 0.55rem 0 0.55rem; }
.center-action { display: flex; justify-content: center; margin-top: 2rem; }

.support-strip__inner,
.calm-cta__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.25fr .75fr auto;
    align-items: center;
    gap: 2rem;
    padding: clamp(2rem, 5vw, 3.2rem);
    border-radius: 44px;
    background:
        linear-gradient(120deg, rgba(118,139,98,.88), rgba(166,101,23,.9)),
        url('/images/lasting-change.jpg') center/cover;
    color: #fff;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.support-strip__inner::after,
.calm-cta__inner::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -80px;
    top: -100px;
    border-radius: 999px;
    background: rgba(255,255,255,.15);
}

.support-strip h2,
.support-strip p,
.support-strip .eyebrow,
.calm-cta h2,
.calm-cta p { color: #fff; }
.support-strip .eyebrow::before { background: #fff; }
.support-strip .btn,
.calm-cta .btn { background: #fff; color: var(--brown); box-shadow: none; }

.page-hero {
    position: relative;
    padding: clamp(3.8rem, 7vw, 6.5rem) 0;
    overflow: hidden;
}

.page-hero::before {
    width: 48vw;
    height: 48vw;
    right: -26vw;
    top: -25vw;
    background: rgba(211, 147, 40, 0.18);
}

.page-hero__image,
.image-led__image,
.service-detail__media {
    position: relative;
    margin: 0;
    aspect-ratio: 1.28 / 1;
    border-radius: 42px 42px 42px 8rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.editorial-grid { grid-template-columns: minmax(260px, .55fr) minmax(0, 1fr); }

.quote-card {
    padding: clamp(1.8rem, 4vw, 2.7rem);
    border-radius: 40px 40px 10px 40px;
    background: var(--brown);
    color: #fff;
    box-shadow: var(--shadow);
}

.quote-card span {
    display: block;
    height: 48px;
    color: var(--amber-soft);
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: .7;
}

.quote-card p {
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.05;
}

.content-flow {
    padding: clamp(1.8rem, 4vw, 3rem);
    border-radius: 42px;
    background: rgba(255, 253, 248, 0.72);
    border: 1px solid rgba(255,255,255,.8);
}

.values-section { background: rgba(255, 253, 248, 0.42); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.value-card,
.involvement-card,
.contact-card {
    padding: clamp(1.45rem, 3vw, 2rem);
    border: 1px solid rgba(118, 83, 48, 0.12);
    border-radius: 32px;
    background: var(--surface-solid);
    box-shadow: var(--shadow-soft);
}

.value-card i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 1.15rem;
    border-radius: 50%;
    background: rgba(211, 147, 40, 0.13);
    color: var(--gold-dark);
}

.value-card h3,
.involvement-card h3 { margin-bottom: .7rem; }

.image-led-section--alt .image-led__grid,
.service-detail--reverse {
    direction: rtl;
}
.image-led-section--alt .image-led__copy,
.service-detail--reverse .service-detail__content,
.service-detail--reverse .service-detail__media { direction: ltr; }

.image-led__copy {
    padding: clamp(1.5rem, 4vw, 2.8rem);
}

.service-detail-list {
    display: grid;
    gap: clamp(3rem, 7vw, 5.5rem);
}

.service-detail {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
}

.service-detail__content {
    padding: clamp(1rem, 3vw, 2rem);
}

.service-detail__content h2 { margin: 0.7rem 0 1rem; }

.check-list {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.25rem;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 1.8rem;
    color: var(--text);
    font-weight: 750;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: .02rem;
    color: var(--sage-dark);
    font-weight: 900;
}

.calm-cta__inner {
    grid-template-columns: 1fr .75fr auto;
}

.involvement-board {
    display: grid;
    grid-template-columns: 1.1fr .9fr .9fr;
    gap: 1rem;
}

.involvement-card--featured {
    grid-row: span 2;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(180deg, rgba(63,45,32,0.08), rgba(63,45,32,.82)),
        url('/images/community-women.jpg') center/cover;
}

.involvement-card--featured h2,
.involvement-card--featured p,
.involvement-card--featured span,
.involvement-card--featured .text-link {
    color: #fff;
}

.contact-grid { align-items: stretch; }
.contact-card--main { background: linear-gradient(145deg, #fffdf8, #fff6e8); }
.contact-card--safety { background: var(--brown); }
.contact-card--safety h2,
.contact-card--safety p { color: #fff; }
.contact-card--safety strong { color: var(--amber-soft); }
.contact-card h2 { margin-bottom: 1rem; }

.contact-methods {
    display: grid;
    gap: .8rem;
    margin-top: 1.4rem;
}

.contact-methods a {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(211, 147, 40, 0.10);
    color: var(--brown);
    font-weight: 850;
}

.contact-methods i { color: var(--gold-dark); }

.site-footer {
    padding: 4rem 0 2rem;
    background: linear-gradient(180deg, rgba(63,45,32,.96), #2a1d15);
    color: #fff;
}

.footer-shell { display: grid; gap: 2.5rem; }

.footer-cta {
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.35rem;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 28px;
    background: rgba(255,255,255,.07);
}

.footer-cta span { font-family: var(--font-display); font-size: 1.8rem; line-height: 1; }
.footer-cta a { color: var(--amber-soft); font-weight: 900; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .75fr 1fr 1fr;
    gap: 2rem;
}

.brand--footer .brand__text strong,
.site-footer h2,
.site-footer p,
.site-footer a { color: #fff; }
.brand--footer .brand__text span { color: var(--amber-soft); }
.site-footer h2 { margin-bottom: 1rem; font-size: 1.8rem; }
.site-footer ul { display: grid; gap: .55rem; list-style: none; }
.site-footer a { color: rgba(255,255,255,.78); transition: color 160ms ease; }
.site-footer a:hover { color: var(--amber-soft); }
.footer-about p { max-width: 420px; margin-top: 1rem; color: rgba(255,255,255,.74); }
.footer-contact { word-break: break-word; }
.footer-socials { gap: .7rem; margin-top: .4rem; }
.footer-socials a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255,255,255,.13);
}
.footer-bottom p { color: rgba(255,255,255,.66); font-size: .9rem; }

#backToTop {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 999;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--brown);
    color: #fff;
    box-shadow: 0 14px 34px rgba(63,45,32,.2);
    cursor: pointer;
    opacity: 0;
    transform: translateY(1rem);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
}
#backToTop.is-visible { opacity: 1; transform: none; pointer-events: auto; }

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 650ms ease, transform 650ms ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
    .hero__grid,
    .story-grid,
    .page-hero__grid,
    .editorial-grid,
    .image-led__grid,
    .contact-grid,
    .service-detail {
        grid-template-columns: 1fr;
    }

    .image-collage { min-height: 520px; max-width: 620px; margin-inline: auto; width: 100%; }
    .promise-band, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .promise-band > div:nth-child(3) { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line); }
    .service-river { grid-template-columns: 1fr; grid-template-areas: none; }
    .service-tile, .service-tile--large { grid-area: auto; }
    .service-tile--large { min-height: auto; }
    .service-detail--reverse, .image-led-section--alt .image-led__grid { direction: ltr; }
    .involvement-board { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .support-strip__inner, .calm-cta__inner { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
    :root { --container: min(100% - 28px, 1160px); }
    html { scroll-padding-top: 90px; }
    h1 { font-size: clamp(3.1rem, 17vw, 5.2rem); }
    h2 { font-size: clamp(2.2rem, 11vw, 3.5rem); }

    .notice-strip__inner { justify-content: center; }
    .notice-strip__links a span,
    .notice-strip p span { display: none; }
    .notice-strip p { font-size: 0; }
    .notice-strip p i { font-size: 1rem; }

    .main-nav__inner { min-height: 72px; }
    .brand__mark { width: 48px; height: 48px; }
    .brand__text strong { font-size: 1.08rem; }

    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed;
        inset: 113px 14px auto;
        display: grid;
        gap: .45rem;
        padding: 1rem;
        border: 1px solid var(--line);
        border-radius: 28px;
        background: rgba(255, 253, 248, 0.98);
        box-shadow: var(--shadow);
        transform: translateY(-18px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .nav-toggle[aria-expanded="true"] + .nav-menu {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .nav-menu a { justify-content: center; width: 100%; min-height: 50px; }
    .nav-menu__cta { margin-left: 0; }

    .hero { padding-top: 3.2rem; }
    .hero__grid { gap: 2.8rem; }
    .image-collage { min-height: 440px; }
    .image-collage__main { width: 70%; right: 0; }
    .image-collage__wide { width: 84%; bottom: 4rem; border-width: 7px; border-radius: 34px 34px 34px 5rem; }
    .collage-card { width: 82%; }

    .promise-band, .values-grid, .involvement-board { grid-template-columns: 1fr; }
    .promise-band > div + div { border-left: 0; border-top: 1px solid var(--line); }
    .promise-band > div:nth-child(3) { grid-column: auto; }
    .story-panel { border-radius: 32px 32px 70px 32px; }
    .service-tile { grid-template-columns: 1fr; }
    .service-tile img { min-height: 230px; }
    .involvement-card--featured { min-height: 340px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-cta, .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
    :root { --container: min(100% - 22px, 1160px); }
    .section { padding: 3.8rem 0; }
    .notice-strip__links { gap: .7rem; }
    .brand__text strong { max-width: 170px; }
    .hero__actions { align-items: stretch; flex-direction: column; }
    .btn { width: 100%; }
    .image-collage { min-height: 360px; }
    .image-collage__main { width: 72%; }
    .image-collage__wide { width: 89%; bottom: 3.3rem; }
    .collage-card { width: 91%; padding: 1rem; }
    .page-hero__image, .image-led__image, .service-detail__media { border-radius: 30px 30px 30px 5rem; }
    .story-image { aspect-ratio: 1 / 1.18; }
    .contact-methods a { align-items: flex-start; overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
