:root {
    color-scheme: light;
    --bg: #dfe9dc;
    --bg-top: #eef5ea;
    --bg-deep: #cfdcc8;
    --bg-spot-warm: rgba(122, 143, 108, 0.20);
    --bg-spot-cool: rgba(154, 176, 139, 0.16);
    --surface: rgba(238, 246, 233, 0.95);
    --surface-border: rgba(120, 145, 104, 0.35);
    --surface-soft: rgba(229, 240, 221, 0.95);
    --surface-soft-border: rgba(120, 145, 104, 0.26);
    --surface-teal: rgba(221, 235, 216, 0.95);
    --surface-teal-border: rgba(107, 136, 91, 0.34);
    --surface-indigo: rgba(226, 237, 220, 0.95);
    --surface-indigo-border: rgba(112, 141, 96, 0.34);
    --surface-warm: rgba(233, 242, 227, 0.95);
    --surface-warm-border: rgba(123, 149, 107, 0.34);
    --text: #1f2b1e;
    --text-soft: #4e6249;
    --accent: #5f7f4e;
    --accent-deep: #4a673d;
    --line: rgba(101, 125, 87, 0.30);
    --grid-line: rgba(112, 141, 96, 0.12);
    --nav-bg: rgba(228, 239, 221, 0.96);
    --nav-border: rgba(110, 137, 93, 0.35);
    --menu-bg: rgba(228, 239, 221, 0.98);
    --menu-border: rgba(110, 137, 93, 0.30);
    --field-bg: rgba(244, 249, 240, 0.98);
    --footer-bg: rgba(211, 225, 202, 0.98);
    --footer-text: #1f2b1e;
    --footer-strong: #172114;
    --highlight-start: #ddebd5;
    --highlight-end: #cddfc3;
    --highlight-text: #1f2b1e;
    --highlight-muted: #4e6249;
    --quote-start: #d4e4cb;
    --quote-end: #bfd3b3;
    --button-text: #f5faf2;
    --success: #4a7a3a;
    --error: #d93025;
    --shadow: 0 20px 46px rgba(57, 78, 48, 0.18);
    --radius-lg: 28px;
    --radius-md: 20px;
    --content-width: 1180px;
}
html[data-theme="dark"] {
    color-scheme: light;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, var(--bg-spot-warm), transparent 28%),
        radial-gradient(circle at top right, var(--bg-spot-cool), transparent 22%),
        linear-gradient(180deg, var(--bg-top) 0%, var(--bg) 100%);
    transition: background-color 0.3s ease, color 0.3s ease;
}
body.nav-open {
    overflow: hidden;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    pointer-events: none;
    opacity: 0.4;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
.site-shell {
    position: relative;
    z-index: 1;
}
.nav-links-home-minimal {
    margin-left: auto;
    margin-right: 0;
}
.home-nav-label {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    color: var(--text-soft);
    font-weight: 700;
}
.home-two-links {
    display: grid;
}
.home-two-links-card {
    padding: clamp(1.8rem, 4vw, 2.8rem);
}
.home-two-links-card h1 {
    max-width: 14ch;
    margin-bottom: 1.3rem;
}
.home-two-link-list {
    display: grid;
    gap: 1rem;
}
.home-two-link-item {
    display: grid;
    grid-template-columns: minmax(180px, 220px) 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--surface-soft) 60%, #0c1411 40%);
    border: 1px solid color-mix(in srgb, var(--surface-soft-border) 50%, #0c1411 50%);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.home-two-link-item:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--accent) 55%, #17241f);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}
.home-two-link-item a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    font-family: "Fraunces", serif;
    font-size: clamp(1.2rem, 1.9vw, 1.45rem);
    font-weight: 600;
    color: #f6fbf3;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-deep) 76%, #172114 24%), color-mix(in srgb, var(--accent) 84%, #223224 16%));
    border: 1px solid color-mix(in srgb, var(--accent) 84%, #1d2a1f 16%);
    box-shadow: 0 8px 18px rgba(34, 59, 40, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.home-two-link-item a::after {
    content: "→";
    font-size: 0.85em;
    transform: translateY(-1px);
}
.home-two-link-item a:hover,
.home-two-link-item a:focus-visible {
    transform: translateY(-2px);
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 84%, #1e2f20 16%), color-mix(in srgb, var(--accent) 92%, #283a2a 8%));
    border-color: color-mix(in srgb, var(--accent) 94%, #233426 6%);
    box-shadow: 0 12px 24px rgba(34, 59, 40, 0.3), 0 0 0 2px rgba(95, 127, 78, 0.2);
}
.home-two-link-item p {
    margin: 0;
}
.site-header,
main,
.site-footer {
    width: min(calc(100% - 2rem), var(--content-width));
    margin: 0 auto;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 1.5rem 0 0;
    transition: padding 0.25s ease;
}
.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--nav-bg);
    border: 1px solid var(--nav-border);
    border-radius: 999px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    transition: background-color 0.3s ease, border-color 0.3s ease, padding 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.site-header.is-stuck {
    padding-top: 0.7rem;
}
.site-header.is-stuck .site-nav {
    padding: 0.82rem 1.1rem;
    box-shadow: 0 18px 40px rgba(23, 45, 39, 0.2);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}
.brand-mark {
    display: block;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 24px rgba(20, 52, 43, 0.18);
    flex-shrink: 0;
}
.nav-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}
.nav-linkedin-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #2d8cff, #0a66c2);
    border: 2px solid #69aefc;
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.nav-linkedin-icon svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: currentColor;
}
.nav-linkedin-icon:hover,
.nav-linkedin-icon:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, #43a2ff, #0a66c2);
    border-color: #9ac9ff;
    box-shadow: 0 12px 28px rgba(10, 102, 194, 0.48), 0 0 0 2px rgba(105, 174, 252, 0.25);
    transform: translateY(-1px) scale(1.03);
}
.brand-copy {
    display: grid;
    gap: 0.3rem;
}
.brand-copy strong {
    font-size: 0.98rem;
}
.brand-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.45rem;
    color: var(--text-soft);
    font-size: 0.76rem;
    line-height: 1.1;
}
.brand-roles span {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: var(--surface-soft);
    border: 2.5px solid var(--accent);
    box-shadow: 0 0 0 2px rgba(46, 139, 87, 0.12);
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: auto;
    margin-right: 0.2rem;
}
.nav-links a {
    padding: 0.85rem 1rem;
    border-radius: 999px;
    color: var(--text-soft);
    font-weight: 700;
    white-space: nowrap;
    border: 2px solid transparent;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.nav-links a.button:not(.button-secondary) {
    color: #fff;
}
.nav-links a:hover:not(.button) {
    color: var(--text);
    background: rgba(95, 127, 78, 0.12);
}
.nav-links a.active:not(.button) {
    color: var(--text);
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    position: relative;
}
.nav-links a.active:not(.button)::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(34, 168, 90, 0.7);
}
.home-why-card {
    position: relative;
    overflow: hidden;
}
.home-why-card::after {
    content: "";
    position: absolute;
    right: -22px;
    top: -22px;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(216, 132, 46, 0.35), rgba(216, 132, 46, 0.08));
}
.home-pathway-card {
    display: grid;
    gap: 0.9rem;
    align-content: start;
}
.home-pathway-card .button {
    justify-self: start;
}
.home-choice-section {
    display: grid;
    gap: 1.2rem;
    margin-top: 2.2rem;
}
.home-choice-intro {
    padding: clamp(1.8rem, 4vw, 2.8rem);
    display: grid;
    gap: 0.95rem;
    background: linear-gradient(165deg, color-mix(in srgb, var(--surface) 92%, #ffffff 8%), color-mix(in srgb, var(--surface-soft) 90%, #ffffff 10%));
}
.home-choice-intro h1 {
    max-width: 17ch;
    letter-spacing: -0.01em;
}
.home-choice-intro .lead {
    margin-top: 0;
    max-width: 70ch;
}
.home-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    align-items: stretch;
}
.home-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.25rem;
}
.home-trust-list span {
    display: inline-flex;
    align-items: center;
    padding: 0.46rem 0.82rem;
    border-radius: 999px;
    border: 1px solid var(--surface-soft-border);
    background: color-mix(in srgb, var(--surface-soft) 84%, #ffffff 16%);
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.home-choice-card {
    display: grid;
    gap: 0.9rem;
    align-content: start;
    padding: clamp(1.5rem, 3vw, 2rem);
    position: relative;
    overflow: hidden;
}
.home-choice-card::after {
    content: "";
    position: absolute;
    right: -26px;
    top: -26px;
    width: 106px;
    height: 106px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(95, 127, 78, 0.22), rgba(95, 127, 78, 0.04));
    pointer-events: none;
}
.home-choice-card h2 {
    max-width: 14ch;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
}
.home-choice-card .button {
    justify-self: start;
}
.home-pathway-card p {
    margin: 0;
}
.home-path-points {
    list-style: none;
    margin: 0.25rem 0 0.35rem;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}
.home-path-points li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--text-soft);
    line-height: 1.5;
}
.home-path-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--accent);
}
.home-path-button {
    margin-top: 0.15rem;
    border: 1px solid color-mix(in srgb, var(--accent) 82%, #17321d 18%);
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-deep) 82%, #1b2d1f 18%), color-mix(in srgb, var(--accent) 90%, #2e4634 10%));
    box-shadow: 0 10px 22px rgba(34, 59, 40, 0.24);
}
.home-path-button:hover,
.home-path-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(34, 59, 40, 0.3);
}
.home-path-button.is-secondary {
    border-color: #466a98;
    background: linear-gradient(135deg, #315f93, #254e81);
    box-shadow: 0 10px 22px rgba(37, 78, 129, 0.24);
}
.home-path-button.is-secondary:hover,
.home-path-button.is-secondary:focus-visible {
    box-shadow: 0 16px 30px rgba(37, 78, 129, 0.32);
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.35rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: var(--button-text);
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 18px 32px rgba(23, 100, 58, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.button-contact {
    background: linear-gradient(135deg, #c8860a, #a06208);
    color: #fff;
    border: 2px solid #c8860a;
    box-shadow: 0 8px 24px rgba(200, 134, 10, 0.28);
}
.button-contact:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 36px rgba(200, 134, 10, 0.45);
    filter: brightness(1.1);
}
.button-about {
    background: linear-gradient(135deg, #3a3ab8, #24247a);
    color: #fff;
    border: 2px solid #4a4acc;
    box-shadow: 0 8px 24px rgba(74, 74, 204, 0.28);
}
.button-about:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 36px rgba(74, 74, 204, 0.45);
    filter: brightness(1.12);
}
.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 38px rgba(23, 100, 58, 0.3);
    filter: saturate(1.05);
}
.button-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    box-shadow: none;
    font-weight: 700;
}
.button-small {
    padding: 0.8rem 1.05rem;
}
.nav-links a.button-small:not(.button-secondary):not(.nav-linkedin) {
    background: linear-gradient(135deg, #c8860a, #a06208);
    border-color: #c8860a;
    color: #fff;
    box-shadow: 0 4px 18px rgba(200, 134, 10, 0.30);
}
.nav-links a.button-small:not(.button-secondary):not(.nav-linkedin):hover {
    filter: brightness(1.1);
    box-shadow: 0 6px 22px rgba(200, 134, 10, 0.45);
}
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 2px solid rgba(105, 174, 252, 0.42);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(31, 75, 134, 0.95), rgba(18, 52, 95, 0.95));
    box-shadow: 0 8px 20px rgba(10, 33, 72, 0.34);
    cursor: pointer;
    position: relative;
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.nav-toggle > span:not(.sr-only) {
    position: absolute;
    width: 1.25rem;
    height: 2.2px;
    background: #f4f9ff;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle > span:nth-child(1) {
    transform: translateY(-0.35rem);
}
.nav-toggle > span:nth-child(3) {
    transform: translateY(0.35rem);
}
.nav-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}
.nav-toggle[aria-expanded="true"] {
    background: linear-gradient(135deg, rgba(53, 122, 208, 0.96), rgba(24, 86, 167, 0.96));
    border-color: rgba(154, 201, 255, 0.85);
    box-shadow: 0 12px 26px rgba(10, 102, 194, 0.38);
}
.nav-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(154, 201, 255, 0.78);
    box-shadow: 0 12px 24px rgba(10, 102, 194, 0.32);
}
.nav-toggle:focus-visible {
    outline: 0;
    border-color: rgba(154, 201, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(105, 174, 252, 0.22), 0 12px 24px rgba(10, 102, 194, 0.32);
}
.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;
}
main {
    padding: 2rem 0 3rem;
}
.section {
    margin-top: 2rem;
}
.hero,
.page-hero,
.split-section,
.story-band,
.two-column-layout,
.contact-layout {
    display: grid;
    gap: 1.5rem;
}
.hero {
    grid-template-columns: 1.5fr 1fr;
    align-items: stretch;
}
.hero-copy,
.content-card,
.contact-card,
.panel-card,
.feed-placeholder {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.resource-card,
.timeline-card {
    background: var(--surface-indigo);
    border: 1px solid var(--surface-indigo-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.service-card,
.feed-card {
    background: var(--surface-teal);
    border: 1px solid var(--surface-teal-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.testimonial-card,
.story-card,
.story-quote {
    background: var(--surface-warm);
    border: 1px solid var(--surface-warm-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.hero-copy {
    padding: clamp(2rem, 5vw, 4rem);
}
.hero-panel {
    display: grid;
    gap: 1rem;
}
.panel-card,
.service-card,
.resource-card,
.testimonial-card,
.timeline-card,
.story-card,
.story-quote,
.content-card,
.contact-card,
.feed-card,
.feed-placeholder {
    padding: 1.6rem;
}
.panel-card-highlight {
    background: linear-gradient(180deg, var(--highlight-start), var(--highlight-end));
    color: var(--highlight-text);
}
.panel-card-highlight .eyebrow,
.panel-card-highlight p,
.panel-card-highlight li {
    color: var(--highlight-muted);
}
.eyebrow {
    margin: 0 0 0.8rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}
h1,
h2,
h3,
blockquote {
    font-family: "Fraunces", serif;
    font-weight: 600;
    line-height: 1.05;
    margin: 0;
}
h1 {
    font-size: clamp(3rem, 7vw, 5.4rem);
    max-width: 12ch;
}
h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    max-width: 18ch;
}
h3 {
    font-size: 1.45rem;
}
p,
li,
label span,
.form-status {
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 1rem;
}
.lead {
    max-width: 62ch;
    margin-top: 1.25rem;
    font-size: 1.1rem;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 2rem;
}
.hero-metrics article,
.results-list article {
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--surface-soft);
    border: 1px solid var(--surface-soft-border);
}
.hero-metrics strong,
.results-list strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text);
    font-size: 1.05rem;
}
.check-list,
.footer-links,
.results-list,
.compact-list {
    display: grid;
    gap: 0.8rem;
}
.check-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.check-list li {
    position: relative;
    padding-left: 1.5rem;
}
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--accent);
}
.service-grid,
.resource-grid,
.testimonial-grid,
.timeline-grid,
.feed-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.split-section,
.two-column-layout,
.contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}
.story-band {
    grid-template-columns: 1.1fr 0.9fr;
}
.emdr-article-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    padding: clamp(1.6rem, 3vw, 2.4rem);
}
.emdr-article-card h2 {
    max-width: 22ch;
}
.emdr-article-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.2rem;
}
.emdr-article-grid article {
    background: var(--surface-soft);
    border: 1px solid var(--surface-soft-border);
    border-radius: var(--radius-md);
    padding: 1.15rem;
}
.emdr-article-grid h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}
.emdr-article-note {
    margin: 1.2rem 0 1.4rem;
    font-size: 0.95rem;
}
.story-card,
.story-quote {
    min-height: 100%;
}
.story-quote {
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, var(--quote-start), var(--quote-end));
    color: var(--button-text);
}
.story-quote blockquote {
    max-width: 15ch;
    font-size: clamp(2rem, 4vw, 3rem);
}
.stacked-panels {
    display: grid;
    gap: 1rem;
}
.timeline-card span {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--accent);
    font-weight: 800;
}
.section-heading {
    margin-bottom: 1.5rem;
}
.business-coaching-section .section-heading h2 {
    max-width: 20ch;
}
.business-coaching-section .section-heading p {
    max-width: 76ch;
}
.business-coaching-featured {
    display: grid;
    gap: 1rem;
    align-content: start;
}
.business-coaching-featured h3 {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}
.business-coaching-featured .results-list {
    margin-top: 0.25rem;
}
.business-coaching-featured .hero-actions {
    margin-top: 0.75rem;
}
.update-badge {
    display: inline-flex;
    align-items: center;
    margin: 0 0 0.65rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(95, 127, 78, 0.12);
    border: 1px solid rgba(95, 127, 78, 0.28);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.rotation-note {
    margin-top: 0.45rem;
    font-size: 0.92rem;
}
.feed-card {
    display: grid;
    gap: 0.8rem;
}
.feed-card time {
    color: var(--accent-deep);
    font-size: 0.9rem;
    font-weight: 700;
}
.feed-card a {
    font-family: "Fraunces", serif;
    font-size: 1.35rem;
    color: var(--text);
}
.feed-card p {
    margin: 0;
}
.resource-link-card h3 {
    margin-bottom: 0.85rem;
}
.resource-link-card a {
    color: var(--accent-deep);
    text-decoration: underline;
    text-underline-offset: 0.12em;
    text-decoration-thickness: 1.5px;
    font-weight: 700;
}
.resource-link-card a:hover,
.resource-link-card a:focus-visible {
    color: var(--accent);
}
.business-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.video-card {
    background: var(--surface-indigo);
    border: 1px solid var(--surface-indigo-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 1.2rem;
    display: grid;
    gap: 0.85rem;
}
.video-card h3 {
    font-size: 1.22rem;
}
.video-card p {
    margin: 0;
}
.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: #0f1613;
    border: 1px solid var(--surface-border);
}
.video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.contact-form {
    display: grid;
    gap: 1rem;
}
.contact-form label {
    display: grid;
    gap: 0.5rem;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid var(--line);
    border-radius: 1.1rem;
    background: var(--field-bg);
    font: inherit;
    color: var(--text);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(23, 100, 58, 0.7);
    box-shadow: 0 0 0 4px rgba(23, 100, 58, 0.12);
}
.contact-form textarea {
    min-height: 10rem;
    resize: none;
}
.honeypot {
    position: absolute;
    left: -9999px;
}
.form-status {
    min-height: 1.5rem;
    margin: 0;
}
.form-status.is-success {
    color: var(--success);
}
.form-status.is-error {
    color: var(--error);
}
.footer-button {
    justify-self: start;
    padding-inline: 1.1rem;
    background: linear-gradient(135deg, #1976d2, #0f4ea8);
    border: 2px solid #1976d2;
    box-shadow: 0 8px 24px rgba(25, 118, 210, 0.28);
}
.footer-button:hover {
    box-shadow: 0 16px 36px rgba(25, 118, 210, 0.45);
    filter: brightness(1.08);
}
.site-footer {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 1rem;
    margin: 3rem auto 2rem;
    padding: 1.4rem 1.6rem;
    background: var(--footer-bg);
    color: var(--footer-text);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.site-footer strong,
.site-footer a,
.site-footer p {
    color: inherit;
}
.site-footer strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--footer-strong);
}
@media (max-width: 1180px) {
    .site-nav {
        padding: 0.95rem 1rem;
    }
    .nav-links {
        gap: 0.15rem;
    }
    .nav-links a {
        padding: 0.75rem 0.85rem;
        font-size: 0.95rem;
    }
    .brand-copy strong {
        font-size: 0.92rem;
    }
    .brand-roles {
        font-size: 0.7rem;
        gap: 0.3rem;
    }
    .brand-roles span {
        padding: 0.18rem 0.42rem;
    }
}
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 960px) {
    .site-nav {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        border-radius: 2rem;
        align-items: center;
        row-gap: 0;
    }
    .nav-controls {
        grid-column: 2;
        grid-row: 1;
        display: inline-flex;
        align-items: center;
        justify-content: flex-end;
        justify-self: end;
        align-self: center;
        margin-right: 0;
    }
    .nav-linkedin-icon {
        width: 2.85rem;
        height: 2.85rem;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .brand {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
        max-width: 100%;
        align-self: center;
    }
    .brand-copy {
        min-width: 0;
    }
    .brand-copy strong {
        overflow-wrap: anywhere;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .nav-links {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 40;
        width: 100vw;
        height: 100dvh;
        margin: 0;
        padding: 6.25rem 1.25rem 1.5rem;
        opacity: 0;
        overflow: auto;
        pointer-events: none;
        transform: translateY(-1rem);
        visibility: hidden;
        border-radius: 0;
        background:
            linear-gradient(180deg, rgba(241, 247, 237, 0.985) 0%, rgba(223, 233, 220, 0.985) 100%);
        border: 0;
        box-shadow: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.65rem;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }
    .nav-links.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }
    .nav-links a,
    .nav-links .button-small {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        justify-content: center;
        border-radius: 1.25rem;
        min-height: 3.9rem;
        padding: 1rem 1.2rem;
        font-size: 1.08rem;
    }
    .nav-links .button-small {
        padding: 1rem 1.2rem;
    }
    .nav-links a.active:not(.button) {
        color: var(--text);
        background: linear-gradient(135deg, rgba(95, 127, 78, 0.26), rgba(95, 127, 78, 0.12));
        border-color: rgba(95, 127, 78, 0.58);
        box-shadow: 0 8px 18px rgba(57, 78, 48, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    }
    .nav-controls {
        position: relative;
        z-index: 41;
    }
    .site-nav {
        position: relative;
        z-index: 41;
    }
    body.nav-open .site-header {
        width: 100%;
        padding-top: 0;
    }
    body.nav-open .site-nav {
        width: min(calc(100% - 2rem), var(--content-width));
        margin: 0 auto;
        padding: 1rem 0 0;
        background: transparent;
        border-color: transparent;
        box-shadow: none;
        backdrop-filter: none;
        border-radius: 0;
    }
    body.nav-open .brand {
        padding: 0.45rem 0;
    }
    body.nav-open .nav-linkedin-icon {
        opacity: 0;
        pointer-events: none;
        transform: scale(0.92);
    }
    body.nav-open .nav-toggle {
        box-shadow: 0 10px 22px rgba(10, 102, 194, 0.24);
    }
    .nav-links a.active:not(.button)::after {
        display: none;
    }
    .hero,
    .split-section,
    .story-band,
    .emdr-article-grid,
    .two-column-layout,
    .contact-layout,
    .site-footer {
        grid-template-columns: 1fr;
    }
    .footer-button {
        justify-self: stretch;
    }
    .hero-metrics,
    .service-grid,
    .home-choice-grid,
    .business-video-grid,
    .resource-grid,
    .testimonial-grid,
    .timeline-grid,
    .feed-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .site-header,
    main,
    .site-footer {
        width: min(calc(100% - 1rem), var(--content-width));
    }
    .site-header {
        padding-top: 0.9rem;
    }
    .site-nav {
        padding: 0.85rem;
        border-radius: 1.5rem;
    }
    .site-header.is-stuck {
        padding-top: 0.45rem;
    }
    .site-header.is-stuck .site-nav {
        padding: 0.72rem;
    }
    .nav-controls {
        gap: 0.45rem;
    }
    .nav-linkedin-icon {
        width: 2.8rem;
        height: 2.8rem;
    }
    .brand {
        gap: 0.75rem;
    }
    .brand-mark {
        width: 2.7rem;
        height: 2.7rem;
    }
    .brand-copy {
        gap: 0.15rem;
    }
    .brand-copy strong {
        font-size: 0.92rem;
    }
    .brand-roles {
        display: none;
    }
    .nav-toggle {
        width: 2.8rem;
        height: 2.8rem;
    }
    body.nav-open .site-nav {
        width: min(calc(100% - 1rem), var(--content-width));
        padding-top: 0.8rem;
    }
    .site-nav,
    .hero-copy,
    .panel-card,
    .service-card,
    .resource-card,
    .testimonial-card,
    .timeline-card,
    .story-card,
    .story-quote,
    .content-card,
    .contact-card,
    .feed-card,
    .feed-placeholder,
    .site-footer {
        border-radius: 1.4rem;
    }
    h1 {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
    }
    h2 {
        font-size: clamp(1.8rem, 9vw, 2.4rem);
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .footer-button {
        width: 100%;
    }
}
@media (max-width: 430px) {
    .site-nav {
        grid-template-columns: minmax(0, 1fr) auto;
    }
    .brand-mark {
        width: 2.4rem;
        height: 2.4rem;
    }
    .brand-copy strong {
        font-size: 0.86rem;
    }
    .nav-toggle {
        width: 2.7rem;
        height: 2.7rem;
    }
    .nav-linkedin-icon {
        width: 2.7rem;
        height: 2.7rem;
    }
}
