/**
 * Amity Conflict Specialists — Independent Ombuds Advisory
 *
 * Editorial boutique advisory. Warm ivory grounds, deep plum contrast
 * panels, watercolour botanicals, generous negative space.
 * Palette is locked by the V2 Website Handoff.
 */

/* ── Tokens ───────────────────────────────────────────────────────────── */
:root {
    /* Core palette — V2 handoff */
    --plum:        #4B173E;   /* primary authority: hero, footer, dark panels */
    --plum-deep:   #380F2D;   /* depth within plum sections */
    --plum-lift:   #5E2450;   /* hover / raised plum */
    --burgundy:    #7C314A;   /* buttons, rules, emphasis */
    --burgundy-lift:#8F3C57;
    --rose:        #B9778A;   /* small accents only — never body text */
    --rose-soft:   #D8AFBB;
    --ivory:       #F5F0E8;   /* primary light background */
    --stone:       #E5DED4;   /* secondary neutral / texture */
    --olive:       #6D7040;   /* very sparing botanical accent */

    /* Derived neutrals */
    --paper:       #FBF8F3;
    --ink:         #2A2124;   /* warm charcoal, never pure black */
    --ink-soft:    #6A585C;
    --ink-faint:   #6F5E5D;
    --on-plum:     #F6EDE8;
    --on-plum-soft:#D9BFCC;

    /* Type */
    --serif:  'Cormorant Garamond', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
    --sans:   'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --script: 'Caveat', 'Segoe Script', cursive;

    /* Measure */
    --wrap:        1220px;
    --wrap-narrow: 700px;
    --gutter:      clamp(20px, 5vw, 48px);
    --section-y:   clamp(72px, 9vw, 120px);

    /* Paper grain — barely perceptible warmth, not a filter effect */
    --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

/* ── Reset & base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.72;
    color: var(--ink);
    background: var(--ivory);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

a { color: var(--burgundy); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--plum); }

:focus-visible {
    outline: 2px solid var(--burgundy);
    outline-offset: 3px;
    border-radius: 1px;
}

::selection { background: var(--rose-soft); color: var(--plum-deep); }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 2000;
    background: var(--plum); color: var(--on-plum);
    padding: 12px 20px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
}
.skip-link:focus { left: 0; color: var(--on-plum); }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ── Typography ───────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.16;
    letter-spacing: -0.005em;
    color: var(--plum);
    text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.15rem); }
h2 { font-size: clamp(2.05rem, 4.1vw, 3.05rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.25rem; }

p { text-wrap: pretty; }
p + p { margin-top: 1.1em; }

em { font-style: italic; }

.script {
    font-family: var(--script);
    font-weight: 600;
    color: var(--burgundy);
    font-size: 1.22em;
    line-height: 1;
}

.eyebrow {
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1.15rem;
}
/* Retained as an explicit alias; the default is already the ink tone. */
.eyebrow--ink { color: var(--burgundy); }

.lede {
    font-size: clamp(1.06rem, 1.6vw, 1.19rem);
    line-height: 1.72;
    color: var(--ink-soft);
}

.measure { max-width: 62ch; }

/* Thin rose rule used as an editorial separator */
.rule {
    width: 64px; height: 1px; border: 0;
    background: var(--rose);
    margin: 1.6rem 0;
}
.rule--center { margin-left: auto; margin-right: auto; }

/* ── Layout ───────────────────────────────────────────────────────────── */
.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--gutter);
}
.wrap--narrow { max-width: calc(var(--wrap-narrow) + var(--gutter) * 2); }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(52px, 6vw, 80px); }

.section--ivory { background: var(--ivory); }
.section--paper { background: var(--paper); }
.section--stone { background: var(--stone); }

.section--plum {
    background: var(--plum);
    color: var(--on-plum-soft);
}
.section--plum h1, .section--plum h2,
.section--plum h3, .section--plum h4 { color: var(--on-plum); }
.section--plum .eyebrow { color: var(--rose-soft); }
.section--plum .lede { color: var(--on-plum-soft); }
.section--plum a:not(.btn) { color: var(--rose-soft); }
.section--plum a:not(.btn):hover { color: #fff; }
.section--plum .rule { background: var(--rose); }
.section--plum .script { color: var(--rose-soft); }

/* Grain sits above the ground colour, below the content */
.section--ivory::before, .section--paper::before,
.section--stone::before, .section--plum::before {
    content: ''; position: absolute; inset: 0;
    background-image: var(--grain);
    opacity: .035;
    pointer-events: none;
}
.section--plum::before { opacity: .06; }
.section > .wrap { position: relative; z-index: 1; }

/* Organic section transitions — used sparingly, not between every band */
.wave { display: block; width: 100%; height: clamp(38px, 5vw, 74px); }
.wave svg { display: block; width: 100%; height: 100%; }
.wave--flip svg { transform: scaleY(-1); }

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: .7em;
    font-family: var(--sans);
    font-size: 12.5px; font-weight: 600;
    letter-spacing: .17em; text-transform: uppercase;
    padding: 17px 30px;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color .28s ease, border-color .28s ease, color .28s ease;
    min-height: 48px;
}
.btn .arw { transition: transform .28s ease; display: inline-block; }
.btn:hover .arw { transform: translateX(4px); }

.btn--primary { background: var(--burgundy); color: #fff; }
.btn--primary:hover { background: var(--plum); color: #fff; }

.btn--ghost { background: transparent; color: var(--burgundy); border-color: var(--burgundy); }
.btn--ghost:hover { background: var(--burgundy); color: #fff; }

.btn--on-plum { background: transparent; color: var(--on-plum); border-color: var(--rose); }
.btn--on-plum:hover { background: var(--on-plum); color: var(--plum); border-color: var(--on-plum); }

.btn--solid-light { background: var(--ivory); color: var(--plum); }
.btn--solid-light:hover { background: #fff; color: var(--plum-deep); }

/* Quiet inline link with an animated underline */
.link-underline {
    font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: .6em;
    padding-bottom: 4px;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 100% 1px; background-repeat: no-repeat; background-position: 0 100%;
    transition: background-size .3s ease, color .25s ease;
}
.link-underline:hover { background-size: 40% 1px; }
.link-underline .arw { transition: transform .28s ease; }
.link-underline:hover .arw { transform: translateX(4px); }

/* ── Header / navigation ──────────────────────────────────────────────── */
/*
 * One state flag drives the chrome. `.is-transparent` means "floating over
 * the hero artwork": light logo, light nav, no bar. Everything else — interior
 * pages, the scrolled state, and the open mobile menu — is the solid ivory bar.
 */
.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 900;
    padding-block: 20px;
    background: var(--ivory);
    box-shadow: 0 1px 0 rgba(75, 23, 62, .1);
    transition: background-color .35s ease, box-shadow .35s ease, padding .35s ease;
}
.site-header .wrap {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.site-header.is-transparent {
    background: transparent;
    box-shadow: none;
}
.site-header.is-stuck {
    padding-block: 12px;
    background: rgba(245, 240, 232, .97);
    backdrop-filter: saturate(140%) blur(6px);
}

/* Brand and toggle stay above the mobile menu panel */
.brand, .nav-toggle { position: relative; z-index: 3; }

.brand { display: inline-flex; flex-direction: column; gap: 6px; line-height: 1; }
.brand img { height: clamp(52px, 5.4vw, 70px); width: auto; }
.brand__tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(11.5px, 1.05vw, 13.5px);
    letter-spacing: .015em;
    color: var(--burgundy);
    padding-left: 2px;
    transition: color .35s ease;
}
/* Over the hero the mark is rendered for a dark ground */
.brand__logo--light { display: none; }
.site-header.is-transparent .brand__logo--light { display: block; }
.site-header.is-transparent .brand__logo--dark  { display: none; }
.site-header.is-transparent .brand__tagline { color: var(--rose-soft); }

.nav ul { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 38px); }
.nav a {
    font-size: 12px; font-weight: 500;
    letter-spacing: .19em; text-transform: uppercase;
    color: var(--ink);
    padding-bottom: 6px;
    position: relative;
}
.nav a::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0;
    height: 1px; background: var(--rose);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--burgundy); }

.site-header.is-transparent .nav a { color: rgba(246, 237, 232, .9); }
.site-header.is-transparent .nav a:hover,
.site-header.is-transparent .nav a[aria-current="page"] { color: #fff; }

.nav-toggle {
    display: none;
    background: none; border: 0; cursor: pointer;
    width: 46px; height: 46px; padding: 11px;
    align-items: center; justify-content: center;
}
.nav-toggle span {
    display: block; width: 100%; height: 1.5px; background: var(--ink);
    position: relative; transition: background-color .2s ease, transform .3s ease;
}
.nav-toggle span::before, .nav-toggle span::after {
    content: ''; position: absolute; left: 0; width: 100%; height: 1.5px;
    background: inherit; transition: transform .3s ease;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }
.site-header.is-transparent .nav-toggle span { background: var(--ivory); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); background: var(--ink); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); background: var(--ink); }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: clamp(620px, 92vh, 900px);
    display: flex; align-items: center;
    padding-top: clamp(132px, 15vh, 176px);
    padding-bottom: clamp(96px, 12vh, 148px);
    background: var(--plum-deep);
    overflow: hidden;
}
.hero__media {
    position: absolute; inset: 0;
    background-image: url('../images/hero-blossom.jpg');
    background-size: cover;
    background-position: 68% 60%;
}
/* Dark to the left so the copy always clears contrast, light to the right
   so the blossoms and sun keep their luminosity */
.hero__scrim {
    position: absolute; inset: 0;
    background:
        linear-gradient(94deg, rgba(26,8,21,.96) 0%, rgba(32,10,26,.93) 38%, rgba(40,13,32,.72) 56%, rgba(45,15,36,.24) 78%, rgba(45,15,36,0) 96%),
        linear-gradient(180deg, rgba(22,7,18,.78) 0%, rgba(22,7,18,.1) 30%, rgba(22,7,18,0) 50%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero__inner { max-width: 660px; }

.hero h1 {
    color: #fff;
    font-size: clamp(2.35rem, 4.35vw, 3.55rem);
    line-height: 1.14;
    letter-spacing: -0.012em;
}
.hero h1 .accent { color: var(--rose-soft); font-style: italic; }

.hero__lede {
    margin-top: 1.5rem;
    max-width: 47ch;
    color: rgba(246, 237, 232, .93);
    font-size: clamp(1.02rem, 1.5vw, 1.15rem);
    line-height: 1.76;
}
.hero__cta { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 14px; }

/* Organic transition out of the hero into the ivory band below */
.hero__wave {
    position: absolute; left: 0; right: 0; bottom: -1px; z-index: 3;
    height: clamp(34px, 5vw, 76px); pointer-events: none;
}
.hero__wave svg { display: block; width: 100%; height: 100%; }

/* ── Reflection band ──────────────────────────────────────────────────── */
/*
 * The still life carries its own composition: subject left, a wide fall of
 * soft light on the right. The copy sits in that light rather than fighting
 * it, so no scrim is needed — plum on the pale right third clears 10:1.
 */
.reflection {
    position: relative;
    min-height: clamp(320px, 38vw, 560px);
    display: flex; align-items: center;
    background: var(--stone);
    overflow: hidden;
}
.reflection__media {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 52%;
}
.reflection .wrap {
    position: relative; z-index: 2; width: 100%;
    display: flex; justify-content: flex-end;
}
.reflection__line {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.5rem, 3.2vw, 2.4rem);
    line-height: 1.34;
    color: var(--plum);
    max-width: 15ch;
    text-align: right;
}

/* Without the photograph the band stays a quiet stone panel */
.photo-slot--band { position: absolute; inset: 0; align-items: center; justify-content: flex-start; padding-left: 6%; }
.photo-slot--band svg { display: none; }

@media (max-width: 820px) {
    /* Stacked: the photograph keeps its own 2:1 crop, copy sits beneath it */
    .reflection {
        display: block; min-height: 0;
        background: var(--ivory);
        padding-bottom: clamp(36px, 7vw, 52px);
    }
    .reflection__media {
        position: static; height: auto; aspect-ratio: 2 / 1;
        object-position: center 55%;
        margin-bottom: clamp(26px, 5vw, 38px);
    }
    .reflection .wrap { justify-content: flex-start; }
    .reflection__line { text-align: left; max-width: 18ch; }
    .photo-slot--band { position: relative; aspect-ratio: 2 / 1; padding-left: 0; justify-content: center; }
}

/* ── Trio: portrait | editorial copy | plum panel ─────────────────────── */
.trio {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.22fr) minmax(0, .9fr);
    align-items: stretch;
    background: var(--paper);
}
.trio__media {
    position: relative; min-height: 460px;
    background: var(--stone);
    box-shadow: inset -1px 0 0 rgba(124, 49, 74, .12);
}
.trio__media img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 16%;   /* keep her eyes near the upper third */
}
.trio__body {
    padding: clamp(48px, 5.5vw, 88px) clamp(28px, 4vw, 62px);
    display: flex; flex-direction: column; justify-content: center;
}
.trio__body p { color: var(--ink-soft); max-width: 46ch; }
.trio__body p + p { margin-top: 1.05rem; }
.trio__script { margin-top: 1.9rem; }
.trio__script .script { font-size: 1.85rem; line-height: 1.35; display: inline-block; }
.trio__panel { display: flex; flex-direction: column; justify-content: center; }

@media (max-width: 1000px) {
    .trio { grid-template-columns: 1fr 1fr; }
    .trio__media {
        grid-column: 1 / -1;
        min-height: 0;
        aspect-ratio: 3 / 2;
        max-height: 62vh;
    }
    .trio__media img { object-position: center 24%; }
}
@media (max-width: 820px) {
    .trio { grid-template-columns: 1fr; }
    .trio__media { aspect-ratio: 4 / 5; max-height: 76vh; }
    .trio__media img { object-position: center 22%; }
}

/* ── Closing call to action ───────────────────────────────────────────── */
.cta-close .statement { max-width: 42ch; }
.cta-close h2 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); }

/* ── Pull quote ───────────────────────────────────────────────────────── */
.quote { text-align: center; }
.quote__body {
    font-family: var(--serif);
    font-size: clamp(1.55rem, 3.1vw, 2.35rem);
    line-height: 1.42;
    color: var(--plum);
    max-width: 22ch;
    margin-inline: auto;
    position: relative;
    text-wrap: balance;
}
.quote--wide .quote__body { max-width: 30ch; }
.quote__mark {
    font-family: var(--serif);
    font-size: clamp(3.6rem, 7vw, 5.6rem);
    line-height: .5;
    color: var(--rose);
    display: block;
}
.quote__mark--open  { margin-bottom: .3rem; }
.quote__mark--close { margin-top: 1.7rem; }
.quote__attr {
    margin-top: 1.6rem;
    font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase;
    color: var(--ink-faint);
}

/* ── Lifecycle: one continuous process, not five cards ────────────────── */
.lifecycle {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: clamp(38px, 5vw, 62px);
}
.stage {
    padding: 4px clamp(12px, 1.8vw, 26px);
    text-align: center;
    border-left: 1px solid rgba(124, 49, 74, .2);
}
.stage:first-child { border-left: 0; }
.stage__icon { width: clamp(50px, 5.2vw, 66px); margin: 0 auto clamp(16px, 2vw, 22px); }
.stage__name {
    font-family: var(--sans);
    font-size: clamp(12px, 1.15vw, 13.5px);
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: .8rem;
}
.stage__text {
    font-size: 14.5px;
    line-height: 1.62;
    color: var(--ink-soft);
    max-width: 22ch;
    margin-inline: auto;
}
.section--plum .stage { border-left-color: rgba(216, 175, 187, .24); }
.section--plum .stage__name { color: var(--on-plum); }
.section--plum .stage__text { color: var(--on-plum-soft); }

.lifecycle-note {
    margin-top: clamp(38px, 5vw, 58px);
    text-align: center;
}
.lifecycle-note .script { font-size: 2rem; display: block; margin-bottom: .35rem; }

/* Expanded lifecycle, used on the Approach page */
.stage-detail {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: clamp(24px, 4vw, 52px);
    align-items: start;
    padding-block: clamp(40px, 5vw, 62px);
    border-top: 1px solid rgba(124, 49, 74, .16);
}
.stage-detail:first-of-type { border-top: 0; padding-top: 0; }
.stage-detail__icon { width: 96px; }
.stage-detail__num {
    font-family: var(--serif);
    font-size: 15px; letter-spacing: .2em;
    color: var(--burgundy);
    margin-bottom: .5rem;
}
.stage-detail h3 {
    font-family: var(--sans);
    font-size: clamp(15px, 1.5vw, 17px); font-weight: 600;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 1rem;
}
.stage-detail p { max-width: 64ch; color: var(--ink-soft); }
.stage-detail__note {
    margin-top: 1.3rem; padding: 18px 22px;
    background: var(--stone);
    border-left: 2px solid var(--rose);
    font-size: 15px; line-height: 1.66; color: var(--ink-soft);
}

/* ── Two pillars ──────────────────────────────────────────────────────── */
.pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(34px, 5vw, 76px);
    margin-top: clamp(34px, 4vw, 56px);
}
.pillar { position: relative; padding-top: 30px; border-top: 2px solid var(--rose); }
.pillar h3 {
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    margin-bottom: 1rem;
}
.pillar__points { margin-top: 1.6rem; }
.pillar__points li {
    position: relative;
    padding-left: 26px;
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--ink-soft);
}
.pillar__points li + li { margin-top: .78rem; }
.pillar__points li::before {
    content: ''; position: absolute; left: 0; top: .62em;
    width: 12px; height: 1px; background: var(--rose);
}
.section--plum .pillar__points li { color: var(--on-plum-soft); }

.pillar-bridge {
    margin-top: clamp(46px, 6vw, 72px);
    text-align: center;
    font-family: var(--serif);
    font-size: clamp(1.45rem, 2.7vw, 2.05rem);
    color: var(--plum);
}
.section--plum .pillar-bridge { color: var(--on-plum); }

/* ── Editorial split: image beside copy ───────────────────────────────── */
.split {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: stretch;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; min-height: 420px; background: var(--stone); }
.split__media img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0;
    object-position: center 18%;
}
.split__body {
    padding: clamp(48px, 6vw, 92px) clamp(28px, 5vw, 76px);
    display: flex; flex-direction: column; justify-content: center;
}
.split__body .measure { max-width: 54ch; }

/* Placeholder shown until the real photograph is dropped in */
.photo-slot {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 14px; text-align: center; padding: 32px;
    background: linear-gradient(150deg, var(--stone) 0%, #DCD2C6 100%);
    color: var(--ink-faint);
}
.photo-slot svg { width: 46px; opacity: .5; }
.photo-slot span { font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; }
.photo-slot code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 12px; color: var(--burgundy); letter-spacing: 0;
}

/* Plum sidebar panel (the "Who I work with" block) */
.panel-plum {
    background: var(--plum);
    color: var(--on-plum-soft);
    padding: clamp(40px, 5vw, 62px) clamp(28px, 4vw, 52px);
    position: relative; overflow: hidden;
}
.panel-plum::before {
    content: ''; position: absolute; inset: 0;
    background-image: var(--grain); opacity: .07; pointer-events: none;
}
.panel-plum > * { position: relative; z-index: 1; }
.panel-plum h3 { color: var(--on-plum); margin-bottom: 1.4rem; }
.panel-plum ul li {
    position: relative; padding-left: 28px; font-size: 15.5px; line-height: 1.58;
}
.panel-plum ul li + li { margin-top: .95rem; }
.panel-plum ul li::before {
    content: '✓'; position: absolute; left: 0; top: 0;
    color: var(--rose-soft); font-size: 13px;
}

/* ── Typography-first practitioner section ────────────────────────────── */
.statement { text-align: center; max-width: 46ch; margin-inline: auto; }
.statement h2 {
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    line-height: 1.14;
}
.statement__lede {
    margin-top: 1.8rem;
    font-size: clamp(1.06rem, 1.7vw, 1.22rem);
    line-height: 1.76;
    color: var(--ink-soft);
}
.section--plum .statement__lede { color: var(--on-plum-soft); }

.statement-aside {
    margin-top: clamp(46px, 6vw, 70px);
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: clamp(28px, 4vw, 56px);
    max-width: 940px; margin-inline: auto;
    text-align: left;
}
.statement-aside h4 {
    font-family: var(--sans);
    font-size: 11.5px; font-weight: 600;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: .9rem;
}
.section--plum .statement-aside h4 { color: var(--rose-soft); }
.statement-aside p { font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); }
.section--plum .statement-aside p { color: var(--on-plum-soft); }

/* ── Ways to work together ────────────────────────────────────────────── */
.ways { columns: 2; column-gap: clamp(34px, 5vw, 72px); margin-top: clamp(30px, 4vw, 48px); }
.ways li {
    break-inside: avoid;
    padding: 20px 0 20px 0;
    border-bottom: 1px solid rgba(124, 49, 74, .14);
}
.ways h4 {
    font-family: var(--sans);
    font-size: 15.5px; font-weight: 600; letter-spacing: .01em;
    color: var(--plum); margin-bottom: .35rem; line-height: 1.45;
}
.ways p { font-size: 14.5px; line-height: 1.62; color: var(--ink-soft); }

/* ── Page header for interior pages ───────────────────────────────────── */
.page-head {
    background: var(--plum);
    color: var(--on-plum-soft);
    padding-block: clamp(150px, 17vw, 210px) clamp(60px, 7vw, 92px);
    position: relative; overflow: hidden;
}
.page-head::before {
    content: ''; position: absolute; inset: 0;
    background-image: var(--grain); opacity: .06; pointer-events: none;
}
.page-head .wrap { position: relative; z-index: 1; }
.page-head h1 { color: #fff; max-width: 18ch; }
.page-head .eyebrow { color: var(--rose-soft); }
.page-head__lede {
    margin-top: 1.4rem; max-width: 56ch;
    color: rgba(246, 237, 232, .88);
    font-size: clamp(1.02rem, 1.5vw, 1.14rem);
}

/* ── Forms ────────────────────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
/* A submit button in a full-width field should not stretch to the grid */
.field > .btn { align-self: flex-start; }

.field label {
    font-size: 11.5px; font-weight: 600;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--burgundy);
}
.field .hint { font-size: 13.5px; color: var(--ink-faint); letter-spacing: 0; text-transform: none; font-weight: 400; }

.field input, .field select, .field textarea {
    font-family: var(--sans); font-size: 16px; color: var(--ink);
    background: var(--paper);
    border: 1px solid rgba(124, 49, 74, .26);
    border-radius: 2px;
    padding: 14px 16px;
    width: 100%;
    min-height: 50px;
    transition: border-color .25s ease, background-color .25s ease;
}
.field textarea { min-height: 168px; resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--burgundy); background: #fff; outline: none;
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
    outline: 2px solid var(--burgundy); outline-offset: 2px;
}
.field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%237C314A' stroke-width='1.4'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; background-size: 12px;
    padding-right: 44px;
}
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.notice {
    padding: 18px 22px; border-radius: 2px; font-size: 15px; margin-bottom: 28px;
    border-left: 2px solid var(--rose); background: var(--stone); color: var(--ink);
}
.notice--ok { border-left-color: var(--olive); }
.notice--error { border-left-color: var(--burgundy); }

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, .8fr);
    gap: clamp(40px, 6vw, 84px);
    align-items: start;
}
.contact-aside h4 {
    font-family: var(--sans); font-size: 11.5px; font-weight: 600;
    letter-spacing: .22em; text-transform: uppercase; color: var(--burgundy); margin-bottom: .7rem;
}
.contact-aside .block + .block { margin-top: 2.2rem; }
.contact-aside p { font-size: 15.5px; line-height: 1.68; color: var(--ink-soft); }

/* ── Resources & writing ──────────────────────────────────────────────── */
.entries { border-top: 1px solid rgba(124, 49, 74, .16); }
.entry {
    display: grid; grid-template-columns: 172px 1fr; gap: clamp(20px, 3vw, 44px);
    padding-block: clamp(30px, 3.6vw, 44px);
    border-bottom: 1px solid rgba(124, 49, 74, .16);
    align-items: baseline;
}
.entry__meta { font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); }
.entry h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); margin-bottom: .55rem; }
.entry h3 a { color: var(--plum); }
.entry h3 a:hover { color: var(--burgundy); }
.entry p { font-size: 15.5px; color: var(--ink-soft); max-width: 62ch; }
.entry__more { margin-top: 1rem; }

.empty-state {
    padding: clamp(44px, 6vw, 72px);
    text-align: center; background: var(--stone);
    color: var(--ink-soft);
}

/* Long-form article body */
.article { max-width: 68ch; margin-inline: auto; }
.article h2 { font-size: clamp(1.7rem, 2.8vw, 2.15rem); margin: 2.4rem 0 1rem; }
.article h3 { font-size: 1.4rem; margin: 2rem 0 .8rem; }
.article p, .article li { font-size: 17px; line-height: 1.8; color: var(--ink); }
.article p + p { margin-top: 1.3rem; }
.article ul, .article ol { margin: 1.3rem 0 1.3rem 1.3rem; }
.article ul li { list-style: disc; margin-bottom: .55rem; }
.article ol li { list-style: decimal; margin-bottom: .55rem; }
.article blockquote {
    margin: 2rem 0; padding-left: 26px;
    border-left: 2px solid var(--rose);
    font-family: var(--serif); font-size: 1.35rem; line-height: 1.5; color: var(--plum);
}
.article img { margin: 2rem 0; border-radius: 2px; }
.article a { text-decoration: underline; text-underline-offset: 3px; }

/* ── Footer ───────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--plum-deep);
    color: var(--on-plum-soft);
    padding-block: clamp(58px, 7vw, 86px) 34px;
    position: relative; overflow: hidden;
    font-size: 15px;
}
.site-footer::before {
    content: ''; position: absolute; inset: 0;
    background-image: var(--grain); opacity: .06; pointer-events: none;
}
.site-footer .wrap { position: relative; z-index: 1; }
.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
    gap: clamp(32px, 5vw, 72px);
}
.site-footer h4 {
    font-family: var(--sans); font-size: 11.5px; font-weight: 600;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--rose-soft); margin-bottom: 1.2rem;
}
.site-footer a { color: var(--on-plum-soft); }
.site-footer a:hover { color: #fff; }
.site-footer li + li { margin-top: .7rem; }
.footer-brand img { width: 200px; margin-bottom: 18px; }
.footer-brand p { max-width: 40ch; line-height: 1.72; }
.footer-bottom {
    margin-top: clamp(42px, 5vw, 62px); padding-top: 26px;
    border-top: 1px solid rgba(216, 175, 187, .18);
    display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between;
    font-size: 13px; color: rgba(216, 175, 187, .86);
}

/* ── Motion ───────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in {
    opacity: 1; transform: none;
    transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal.is-in { opacity: 1; transform: none; transition: none; }
    .btn, .btn .arw, .link-underline, .nav a::after { transition: none !important; }
}

/* ── Admin / auth chrome ──────────────────────────────────────────────── */
.admin-shell { padding-block: clamp(140px, 16vw, 190px) var(--section-y); }
.admin-card {
    background: var(--paper);
    border: 1px solid rgba(124, 49, 74, .16);
    border-radius: 2px;
    padding: clamp(28px, 4vw, 44px);
}
.admin-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.admin-table th, .admin-table td {
    text-align: left; padding: 14px 12px;
    border-bottom: 1px solid rgba(124, 49, 74, .14);
}
.admin-table th {
    font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--burgundy);
}
.admin-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ── Admin / auth: legacy class names mapped onto the new palette ─────── */
.auth-page {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    padding: 40px var(--gutter); background: var(--plum);
    position: relative;
}
.auth-page::before {
    content: ''; position: absolute; inset: 0;
    background-image: var(--grain); opacity: .06; pointer-events: none;
}
.auth-container {
    position: relative; z-index: 1;
    width: 100%; max-width: 440px;
    background: var(--paper);
    border-radius: 2px;
    padding: clamp(30px, 5vw, 46px);
    box-shadow: 0 24px 60px rgba(24, 8, 20, .3);
}
.auth-container h2 { font-size: 1.9rem; text-align: center; margin-bottom: 1.8rem; }

.dashboard { padding-block: clamp(130px, 15vw, 180px) var(--section-y); }
.dashboard > *, .dashboard-header, .dashboard-stats {
    max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter);
}
.dashboard-header { margin-bottom: 2.6rem; }
.dashboard-header h1 { font-size: clamp(2rem, 3.6vw, 2.8rem); }
.dashboard-stats {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px; margin-bottom: 3rem;
}
.stat-card {
    background: var(--paper); border: 1px solid rgba(124, 49, 74, .16);
    border-radius: 2px; padding: 28px; text-align: center;
}
.stat-card h3 { font-size: 2.6rem; color: var(--burgundy); margin-bottom: .2rem; }
.stat-card p {
    font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint);
}

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
    font-size: 11.5px; font-weight: 600; letter-spacing: .18em;
    text-transform: uppercase; color: var(--burgundy);
}
.form-group input, .form-group select, .form-group textarea {
    font-family: var(--sans); font-size: 16px; color: var(--ink);
    background: #fff; border: 1px solid rgba(124, 49, 74, .26);
    border-radius: 2px; padding: 13px 15px; width: 100%; min-height: 48px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--burgundy); outline: none;
}
.form-group textarea { min-height: 240px; resize: vertical; }
.checkbox-wrapper { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.checkbox-wrapper input { width: auto; min-height: 0; }
.checkbox-wrapper label { text-transform: none; letter-spacing: 0; font-size: 15px; font-weight: 400; }

/* Legacy button names share the editorial button shape */
.btn-primary, .btn-secondary {
    display: inline-flex; align-items: center; gap: .6em;
    font-family: var(--sans); font-size: 12.5px; font-weight: 600;
    letter-spacing: .16em; text-transform: uppercase;
    padding: 15px 26px; border: 1px solid transparent; border-radius: 2px;
    cursor: pointer; min-height: 46px;
    transition: background-color .28s ease, color .28s ease, border-color .28s ease;
}
.btn-primary { background: var(--burgundy); color: #fff; }
.btn-primary:hover { background: var(--plum); color: #fff; }
.btn-secondary { background: transparent; color: var(--burgundy); border-color: var(--burgundy); }
.btn-secondary:hover { background: var(--burgundy); color: #fff; }
.btn-small { padding: 9px 16px; font-size: 11px; min-height: 38px; }

.badge {
    display: inline-block; font-size: 10.5px; font-weight: 600;
    letter-spacing: .16em; text-transform: uppercase;
    padding: 5px 11px; border-radius: 2px;
}
.badge-published { background: rgba(109, 112, 64, .16); color: #4E5030; }
.badge-draft { background: var(--stone); color: var(--ink-soft); }

.actions { display: flex; flex-wrap: wrap; gap: 8px; }

.error-message, .success-message {
    padding: 15px 18px; border-radius: 2px; font-size: 15px; margin-bottom: 22px;
    background: var(--stone); border-left: 2px solid var(--burgundy); color: var(--ink);
}
.success-message { border-left-color: var(--olive); }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
    .lifecycle { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
    .stage { border-left: 0; text-align: left; padding-inline: 0 24px; }
    .stage__icon { margin-inline: 0; }
    .stage__text { margin-inline: 0; max-width: 34ch; }
    .stage:nth-child(even) { padding-left: 24px; border-left: 1px solid rgba(124, 49, 74, .2); }

    .split { grid-template-columns: 1fr; }
    .split--reverse .split__media { order: 0; }
    .split__media {
        min-height: 0;
        aspect-ratio: 4 / 5;
        max-height: 76vh;
    }
    .split__media img { object-position: center 22%; }

    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
    body { font-size: 16.5px; }

    .nav-toggle { display: flex; }
    .nav {
        position: fixed; inset: 0 0 auto 0; z-index: 2;
        background: var(--ivory);
        padding: calc(var(--nav-bar-h, 104px) + 16px) var(--gutter) 36px;
        box-shadow: 0 20px 40px rgba(42, 33, 36, .16);
        transform: translateY(-100%);
        transition: transform .38s cubic-bezier(.22,.61,.36,1);
        visibility: hidden;
        max-height: 100dvh; overflow-y: auto;
    }
    .nav.is-open { transform: translateY(0); visibility: visible; }
    .nav ul { flex-direction: column; align-items: flex-start; gap: 2px; }
    .nav a { font-size: 15px; letter-spacing: .16em; padding: 14px 0; display: block; width: 100%; }
    /* The bar turns solid while the menu is open, so nav text is always ink */
    .site-header.is-transparent .nav a { color: var(--ink); }
    .site-header.is-transparent .nav a:hover,
    .site-header.is-transparent .nav a[aria-current="page"] { color: var(--burgundy); }

    .hero { min-height: 640px; }
    .hero__media { background-position: 72% 62%; }
    .hero__scrim {
        background:
            linear-gradient(180deg, rgba(24,8,19,.93) 0%, rgba(30,10,24,.86) 42%, rgba(36,12,29,.74) 100%);
    }
    .hero__inner { max-width: none; padding-top: 74px; }

    .pillars { grid-template-columns: 1fr; }
    .statement-aside { grid-template-columns: 1fr; }
    .ways { columns: 1; }
    .form-grid { grid-template-columns: 1fr; }

    .stage-detail { grid-template-columns: 1fr; gap: 20px; }
    .stage-detail__icon { width: 72px; }

    .entry { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 560px) {
    .hero h1 { font-size: clamp(2.05rem, 8.6vw, 2.5rem); }
    .hero__cta .btn { font-size: 11.5px; letter-spacing: .13em; padding-inline: 20px; }

    .lifecycle { grid-template-columns: 1fr; }
    .stage, .stage:nth-child(even) { border-left: 0; padding-left: 0; }
    .stage + .stage { padding-top: 34px; border-top: 1px solid rgba(124, 49, 74, .18); }
    .footer-grid { grid-template-columns: 1fr; }
    .btn { width: 100%; justify-content: center; }
    .hero__cta .btn { width: 100%; }
}

@media print {
    .site-header, .site-footer, .hero__media, .btn { display: none !important; }
    body { background: #fff; color: #000; }
}
