:root {
  --emerald-950: #07372a;
  --emerald-900: #0a4433;
  --emerald-800: #0d563f;
  --emerald-700: #176d52;
  --emerald-100: #deeee7;
  --emerald-50: #f1f8f5;
  --rose: #bb3158;
  --rose-gold: #b97867;
  --rose-dark: #955d50;
  --rose-soft: #f4e5df;
  --navy: #0a315d;
  --cream: #fbf8f2;
  --paper: #fff;
  --ink: #18302a;
  --muted: #60726d;
  --line: #dce6e1;
  --shadow: 0 24px 70px rgba(7, 55, 42, .14);
  --soft-shadow: 0 12px 34px rgba(13, 86, 63, .09);
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: "DM Sans", system-ui, sans-serif; line-height: 1.6; }
body::before { content: ""; display: block; height: 4px; background: linear-gradient(90deg, var(--emerald-800), var(--rose-gold), var(--rose)); }
a { color: inherit; }
button { font: inherit; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: -70px; padding: 10px 14px; border-radius: 8px; background: white; color: var(--emerald-900); }
.skip-link:focus { top: 12px; }

.site-header { position: sticky; z-index: 50; top: 0; border-bottom: 1px solid rgba(220, 230, 225, .85); background: rgba(251, 248, 242, .93); backdrop-filter: blur(16px); }
.header-inner { display: flex; width: min(1180px, calc(100% - 40px)); min-height: 84px; margin: 0 auto; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--emerald-900); text-decoration: none; }
.brand img { width: 58px; height: 58px; border: 2px solid rgba(185,120,103,.28); border-radius: 50%; background: white; object-fit: cover; box-shadow: 0 4px 14px rgba(13,86,63,.1); }
.brand strong { display: block; font-family: "Playfair Display", Georgia, serif; font-size: 21px; line-height: 1.1; }
.brand small { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 23px; }
.main-nav > a, .nav-group > summary { color: var(--emerald-900); font-size: 13px; font-weight: 700; text-decoration: none; cursor: pointer; }
.main-nav > a.button-primary { color: white; }
.main-nav > a:hover, .nav-group > summary:hover { color: var(--rose-dark); }
.nav-group { position: relative; }
.nav-group summary { list-style: none; }
.nav-group summary::-webkit-details-marker { display: none; }
.nav-group summary::after { content: "⌄"; margin-left: 5px; color: var(--rose-gold); }
.nav-dropdown { position: absolute; top: calc(100% + 16px); left: -20px; display: grid; min-width: 265px; gap: 2px; padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow); }
.nav-dropdown a { padding: 10px 12px; border-radius: 9px; color: var(--ink); font-size: 12px; font-weight: 650; text-decoration: none; }
.nav-dropdown a:hover { background: var(--emerald-50); color: var(--emerald-800); }
.menu-toggle { display: none; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--emerald-900); cursor: pointer; font-size: 21px; }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 12px; border: 1px solid transparent; border-radius: 999px; padding: 13px 22px; cursor: pointer; font-weight: 800; text-decoration: none; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--emerald-800); color: white; box-shadow: 0 10px 25px rgba(13,86,63,.2); }
.button-primary:hover { background: var(--emerald-950); }
.button-light { background: white; color: var(--emerald-900); }
.button-outline { border-color: var(--emerald-700); color: var(--emerald-800); background: transparent; }
.button-small { min-height: 42px; padding: 10px 16px; font-size: 12px; }

.hero { position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; z-index: -1; top: -230px; right: -160px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(185,120,103,.18), rgba(185,120,103,0) 68%); }
.hero-inner { display: grid; width: min(1180px, calc(100% - 40px)); min-height: 650px; margin: 0 auto; padding: 76px 0 100px; grid-template-columns: minmax(0,1.2fr) minmax(330px,.8fr); align-items: center; gap: clamp(48px,8vw,110px); }
.eyebrow { margin: 0 0 18px; color: var(--rose-dark); font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
h1,h2 { margin-top: 0; color: var(--emerald-950); font-family: "Playfair Display", Georgia, serif; letter-spacing: -.025em; line-height: 1.08; }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(48px,6.2vw,78px); }
h2 { font-size: clamp(36px,4.2vw,54px); }
h3 { margin-top: 0; color: var(--emerald-900); line-height: 1.3; }
.hero-copy > p:not(.eyebrow) { max-width: 670px; margin: 0; color: var(--muted); font-size: clamp(17px,2vw,20px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-visual { position: relative; display: grid; place-items: center; }
.hero-logo { position: relative; z-index: 2; width: min(100%, 390px); aspect-ratio: 1; border: 9px solid white; border-radius: 50%; background: white; object-fit: cover; box-shadow: var(--shadow); }
.hero-orbit { position: absolute; width: 112%; aspect-ratio: 1; border: 1px solid rgba(185,120,103,.35); border-radius: 50%; box-shadow: 0 0 0 28px rgba(185,120,103,.05), 0 0 0 60px rgba(13,86,63,.025); }
.hero-note { position: absolute; z-index: 3; right: -16px; bottom: 8%; max-width: 210px; padding: 15px 17px; border-radius: 14px; background: var(--emerald-900); color: white; box-shadow: var(--soft-shadow); font-size: 12px; }
.hero-note strong { display: block; color: #e6b5a8; font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }

.page-hero .hero-inner { min-height: 500px; padding-block: 64px 82px; }
.page-hero h1 { font-size: clamp(45px,5.7vw,70px); }
.page-hero .hero-visual { min-height: 340px; border-radius: var(--radius-xl); background: linear-gradient(145deg,var(--emerald-800),var(--emerald-950)); box-shadow: var(--shadow); }
.page-hero .hero-visual::after { content: ""; position: absolute; width: 160px; height: 160px; border: 1px solid rgba(230,181,168,.3); border-radius: 50%; box-shadow: 0 0 0 35px rgba(230,181,168,.06),0 0 0 70px rgba(230,181,168,.03); }
.page-hero .hero-visual img { position: relative; z-index: 2; width: 190px; height: 190px; border: 5px solid rgba(255,255,255,.8); border-radius: 50%; background: white; object-fit: cover; }
.page-hero .video-visual { min-height: 0; aspect-ratio: 16 / 9; overflow: hidden; background: #081f18; }
.page-hero .video-visual::after { display: none; }
.page-hero .video-visual iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.page-hero .video-visual video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #071f18; object-fit: contain; }
.hero .photo-visual, .page-hero .photo-visual { min-height: 0; overflow: visible; border-radius: var(--radius-xl); background: transparent; box-shadow: none; }
.hero .photo-visual::after, .page-hero .photo-visual::after { display: none; }
.hero .photo-visual .hero-photo, .page-hero .photo-visual .hero-photo { width: 100%; height: clamp(350px, 38vw, 500px); border: 7px solid white; border-radius: var(--radius-xl); background: white; object-fit: cover; box-shadow: var(--shadow); }
.hero:not(.page-hero) .photo-visual .hero-photo { height: auto; aspect-ratio: 4 / 3; object-position: center; }
.page-hero .photo-visual .hero-photo { height: auto; aspect-ratio: 8 / 5; object-fit: contain; }
.page-hero .photo-visual .hero-photo[src="/assets/consulting-presenter.png"] { width: min(140%,560px); max-width: none; height: auto; aspect-ratio: auto; object-fit: contain; }
.section-photo { display: block; width: 100%; min-height: 360px; max-height: 510px; border: 7px solid white; border-radius: var(--radius-xl); object-fit: cover; box-shadow: var(--shadow); }

.section { padding: 100px max(20px,calc((100vw - 1180px)/2)); }
.section-white { background: white; }
.section-green { background: var(--emerald-50); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.section-heading h2 { max-width: 670px; margin-bottom: 0; }
.section-heading > p { max-width: 430px; margin: 0 0 8px; color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.card-grid.three { grid-template-columns: repeat(3,1fr); }
.service-card, .info-card { display: flex; min-height: 300px; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--cream); text-decoration: none; transition: transform .2s ease, border .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-5px); border-color: var(--rose-gold); box-shadow: var(--soft-shadow); }
.card-number { display: block; margin-bottom: 40px; color: var(--rose-gold); font-family: "Playfair Display",Georgia,serif; font-size: 15px; font-weight: 700; }
.service-card h3 { margin-bottom: 12px; font-size: 21px; }
.service-card p, .info-card p { margin: 0 0 25px; color: var(--muted); font-size: 14px; }
.card-link { margin-top: auto; color: var(--emerald-700); font-size: 12px; font-weight: 800; }
.info-card { min-height: 230px; background: white; }
.info-card .icon { display: grid; width: 44px; height: 44px; place-items: center; margin-bottom: 24px; border-radius: 14px; background: var(--rose-soft); color: var(--rose-dark); font-weight: 900; }

.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(45px,8vw,105px); align-items: start; }
.split-copy p { color: var(--muted); }
.feature-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.feature-column > .eyebrow { margin-bottom: 13px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; padding: 15px 17px; border: 1px solid var(--line); border-radius: 13px; background: white; }
.feature-list li::before { content: "✓"; display: grid; width: 25px; height: 25px; flex: 0 0 25px; place-items: center; border-radius: 50%; background: var(--emerald-800); color: white; font-size: 12px; font-weight: 900; }
.feature-list strong { display: block; color: var(--emerald-900); }
.feature-list span { display: block; color: var(--muted); font-size: 13px; }

.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; counter-reset: process; }
.process-card { padding: 27px; border-radius: 18px; background: var(--emerald-900); color: white; counter-increment: process; }
.process-card::before { content: "0" counter(process); display: block; margin-bottom: 32px; color: #e6b5a8; font-family: "Playfair Display",serif; font-size: 15px; }
.process-card h3 { color: white; }
.process-card p { margin-bottom: 0; color: rgba(255,255,255,.72); font-size: 13px; }

.callout { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 70px max(20px,calc((100vw - 1180px)/2)); background: var(--emerald-800); color: white; }
.callout h2 { margin-bottom: 9px; color: white; }
.callout p { max-width: 690px; margin: 0; color: rgba(255,255,255,.74); }
.status-pill { display: inline-flex; margin-bottom: 16px; padding: 7px 10px; border-radius: 999px; background: var(--rose-soft); color: var(--rose-dark); font-size: 10px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.service-status { display: inline-flex; width: fit-content; margin-bottom: 16px; padding: 7px 10px; border-radius: 999px; background: var(--rose-soft); color: var(--rose-dark); font-size: 10px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.service-status.available { background: var(--emerald-100); color: var(--emerald-800); }
.service-card .service-status { margin-bottom: 20px; }
.service-card .card-number { margin-bottom: 20px; }
.service-card-available { border-color: rgba(13,86,63,.35); background: var(--emerald-50); }
.availability-notice { padding: 0 max(20px,calc((100vw - 1180px)/2)); background: white; }
.availability-notice > div { display: grid; grid-template-columns: auto minmax(220px,.75fr) minmax(280px,1.25fr); align-items: center; gap: 20px 28px; margin: 0 auto; padding: 24px 28px; border: 1px solid rgba(13,86,63,.22); border-radius: 18px; background: var(--emerald-50); box-shadow: var(--soft-shadow); }
.availability-notice .service-status { margin: 0; }
.availability-notice strong { color: var(--emerald-900); font-size: 16px; }
.availability-notice p { margin: 0; color: var(--muted); font-size: 13px; }
.detail-availability { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 20px max(20px,calc((100vw - 1180px)/2)); background: var(--rose-soft); color: var(--rose-dark); text-align: center; }
.detail-availability.available { background: var(--emerald-100); color: var(--emerald-900); }
.detail-availability .service-status { margin: 0; background: white; }
.detail-availability strong { font-size: 14px; }
.quote-card { padding: 32px; border-left: 4px solid var(--rose-gold); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; background: white; color: var(--emerald-900); font-family: "Playfair Display",serif; font-size: 25px; line-height: 1.4; box-shadow: var(--soft-shadow); }
.family-impact { background: var(--cream); }
.impact-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.impact-card { position: relative; min-height: 250px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: var(--soft-shadow); }
.impact-card > span { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 26px; border-radius: 50%; background: var(--emerald-900); color: #fff; font-family: "Playfair Display",serif; font-size: 13px; font-weight: 700; }
.impact-card h3 { margin-bottom: 10px; font-size: 23px; }
.impact-card p { margin: 0; color: var(--muted); font-size: 15px; }
.service-area { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(35px,7vw,90px); margin-top: 70px; padding: 48px; border-radius: var(--radius-xl); background: var(--emerald-950); color: white; box-shadow: var(--shadow); }
.service-area h2 { margin-bottom: 14px; color: white; font-size: clamp(32px,4vw,46px); }
.service-area p:not(.eyebrow) { margin: 0; color: rgba(255,255,255,.73); }
.service-area .eyebrow { color: #e6b5a8; }
.city-list { display: flex; flex-wrap: wrap; gap: 10px; }
.city-list span { padding: 11px 16px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.08); color: white; font-size: 14px; font-weight: 700; }
.contact-card { padding: 34px; border-radius: var(--radius-xl); background: var(--emerald-900); color: white; box-shadow: var(--shadow); }
.contact-card h3 { color: white; font-size: 25px; }
.contact-card p { color: rgba(255,255,255,.74); }
.contact-card .button { margin-top: 10px; }
.educational-graphic { display: grid; grid-template-columns: minmax(300px, 620px) minmax(260px, 1fr); gap: clamp(30px,6vw,80px); align-items: center; margin: 70px 0 0; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--cream); }
.educational-graphic img { display: block; width: 100%; border-radius: 18px; background: white; box-shadow: var(--soft-shadow); }
.educational-graphic figcaption { color: var(--emerald-900); font-family: "Playfair Display",serif; font-size: clamp(23px,3vw,34px); line-height: 1.35; }
.team-hero { padding: 82px 20px 52px; text-align: center; }
.team-hero-inner { width: min(760px, 100%); margin: 0 auto; }
.team-hero h1 { margin-bottom: 18px; font-size: clamp(44px, 6vw, 68px); }
.team-hero-inner > p:last-child { margin: 0 auto; color: var(--muted); font-size: 18px; }
.team-section { padding-top: 30px; }
.leadership-grid { display: grid; width: min(820px, 100%); margin: 0 auto; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.leadership-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--cream); box-shadow: var(--shadow); text-align: center; }
.leadership-photo { width: min(280px, 100%); height: 342px; margin: 0 auto; border-radius: var(--radius-md); background-image: url('/assets/healing-path-team.png'); background-repeat: no-repeat; background-size: 1090px 672px; }
.michele-photo { background-position: -195px -196px; }
.richard-photo { background-image: url('/assets/healing-path-team-richard-brown-jacket-olive-tie.png'); background-position: -598px -196px; }
.leadership-card > div:last-child { padding: 22px 4px 4px; }
.leadership-card h2 { margin: 0 0 7px; font-size: 28px; }
.leadership-card p { margin: 0 0 13px; color: var(--muted); }
.leadership-card a { color: var(--emerald-700); font-weight: 800; overflow-wrap: anywhere; }
.team-member-grid { display: grid; width: min(730px, 100%); margin: 46px auto 0; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; align-items: start; }
.team-member-feature { width: 100%; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--cream); box-shadow: var(--soft-shadow); text-align: center; }
.team-member-feature img { display: block; width: 250px; height: 310px; margin: 22px auto 0; border-radius: var(--radius-md); object-fit: cover; object-position: center 28%; }
.team-member-feature div { padding: 20px 22px 24px; }
.team-member-feature h2 { margin: 0 0 7px; font-size: 26px; }
.team-member-feature div > p:last-child { margin: 0; color: var(--muted); }
[aria-disabled="true"] { cursor: default; opacity: .82; }

.job-open-pill { display: inline-flex; padding: 9px 14px; border-radius: 999px; background: var(--emerald-100); color: var(--emerald-800); font-size: 12px; font-weight: 800; }
.job-opening { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(280px,.65fr); gap: 34px; align-items: start; }
.job-main { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--cream); }
.job-main > p, .job-main li { color: var(--muted); }
.job-main h3 { margin: 28px 0 10px; }
.job-main ul { margin: 0; padding-left: 22px; }
.job-main li { margin-bottom: 9px; }
.job-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.job-facts span { padding: 7px 10px; border-radius: 999px; background: white; color: var(--emerald-800); font-size: 12px; font-weight: 700; }
.job-apply-card { position: sticky; top: 110px; padding: 30px; border-radius: var(--radius-xl); background: var(--emerald-900); color: white; box-shadow: var(--shadow); }
.job-apply-card h3 { color: white; font-size: 27px; }
.job-apply-card p { color: rgba(255,255,255,.76); }
.job-apply-card small { display: block; margin-top: 16px; color: rgba(255,255,255,.65); }
.application-hero { padding: 78px 20px 70px; background: linear-gradient(135deg,var(--emerald-950),var(--emerald-800)); color: white; }
.application-hero > div { width: min(900px,100%); margin: 0 auto; }
.application-hero h1 { margin-bottom: 18px; color: white; font-size: clamp(45px,7vw,68px); }
.application-hero > div > p:last-child { max-width: 760px; margin: 0; color: rgba(255,255,255,.78); font-size: 18px; }
.application-hero .eyebrow { color: #e6b5a8; }
.application-section { padding-top: 62px; }
.job-application { width: min(900px,100%); margin: 0 auto; }
.application-note { margin-bottom: 28px; padding: 20px 22px; border-left: 4px solid var(--rose-gold); background: var(--emerald-50); }
.application-note p { margin: 3px 0 0; color: var(--muted); }
.job-application fieldset { margin: 0 0 24px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--cream); }
.job-application legend { padding: 0 10px; color: var(--emerald-900); font-family: "Playfair Display",serif; font-size: 24px; font-weight: 700; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.job-application label { display: grid; gap: 7px; color: var(--emerald-900); font-size: 14px; font-weight: 700; }
.job-application input:not([type="checkbox"]), .job-application select, .job-application textarea { width: 100%; min-height: 48px; border: 1px solid #cbd9d2; border-radius: 10px; padding: 11px 12px; background: white; color: var(--ink); font: inherit; }
.job-application textarea { resize: vertical; }
.job-application input:focus, .job-application select:focus, .job-application textarea:focus { outline: 3px solid rgba(185,120,103,.22); border-color: var(--rose-gold); }
.full-field, .check-field { grid-column: 1 / -1; }
.check-field { display: grid !important; grid-template-columns: 20px 1fr; align-items: start; gap: 10px !important; color: var(--ink) !important; font-weight: 500 !important; }
.check-field input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--emerald-800); }
.signature-grid { margin-top: 22px; }
.application-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.form-status { min-height: 28px; margin-top: 14px; color: var(--emerald-800); font-weight: 700; }

.staff-portal-hero { padding: 86px 20px 76px; background: linear-gradient(135deg,var(--emerald-950),var(--emerald-800)); color: white; text-align: center; }
.staff-portal-intro { width: min(760px,100%); margin: 0 auto; }
.staff-portal-intro h1 { margin: 8px auto 20px; color: white; font-size: clamp(46px,7vw,72px); }
.staff-portal-intro > p:not(.eyebrow) { max-width: 650px; margin: 0 auto 28px; color: rgba(255,255,255,.78); font-size: 18px; }
.staff-portal-intro .eyebrow { color: #e6b5a8; }
.staff-portal-intro small { display: block; margin-top: 15px; color: rgba(255,255,255,.65); font-size: 13px; }
.portal-lock { display: grid; width: 58px; height: 58px; place-items: center; margin: 0 auto 18px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(255,255,255,.1); color: #e6b5a8; font-size: 18px; }
.portal-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.portal-card { display: flex; min-height: 260px; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--cream); text-decoration: none; transition: transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.portal-card:hover { transform: translateY(-5px); border-color: var(--rose-gold); box-shadow: var(--soft-shadow); }
.portal-card > span { color: var(--rose-gold); font-family: "Playfair Display",serif; font-weight: 700; }
.portal-card h3 { margin: 28px 0 10px; font-size: 22px; }
.portal-card p { margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.portal-card b { margin-top: auto; color: var(--emerald-700); font-size: 13px; }
.portal-card-featured { border-color: color-mix(in srgb,var(--rose-gold) 55%,var(--line)); }
.portal-card-actions { display: grid; gap: 10px; margin-top: auto; }
.portal-resource-link,.portal-folder-link { display: block; padding: 11px 13px; border-radius: 999px; font-size: 13px; font-weight: 800; line-height: 1.25; text-align: center; text-decoration: none; }
.portal-resource-link { background: var(--emerald-700); color: #fff; }
.portal-folder-link { border: 1px solid var(--emerald-700); color: var(--emerald-700); }
.portal-resource-link:hover,.portal-folder-link:hover { box-shadow: 0 8px 18px rgba(13,86,63,.12); }
.portal-help { display: flex; margin-top: 26px; padding: 20px 24px; border-left: 4px solid var(--rose-gold); border-radius: 0 14px 14px 0; background: var(--emerald-50); align-items: center; gap: 18px; }
.portal-help strong { color: var(--emerald-900); white-space: nowrap; }
.portal-help span { color: var(--muted); font-size: 14px; }

.dashboard-shell { min-height: 100vh; padding: 48px max(20px,calc((100vw - 1320px)/2)) 90px; background: #f3f7f5; }
.dashboard-topbar { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.dashboard-topbar > div:first-child { max-width: 760px; }
.dashboard-back { display: inline-block; margin-bottom: 25px; color: var(--emerald-700); font-size: 14px; font-weight: 800; text-decoration: none; }
.dashboard-topbar h1 { margin-bottom: 12px; font-size: clamp(40px,5vw,62px); }
.dashboard-topbar p:last-child { max-width: 700px; margin: 0; color: var(--muted); font-size: 17px; }
.dashboard-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.dashboard-actions .button { min-height: 46px; padding: 11px 17px; font-size: 13px; }
.dashboard-kpis { display: grid; grid-template-columns: 1.35fr repeat(3,1fr); gap: 14px; margin-bottom: 26px; }
.kpi-card { position: relative; min-height: 150px; overflow: hidden; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 8px 24px rgba(7,55,42,.05); }
.kpi-card > span { display: block; margin-bottom: 13px; color: var(--muted); font-size: 13px; font-weight: 700; }
.kpi-card > strong { display: block; color: var(--emerald-950); font-family: "Playfair Display",serif; font-size: 38px; line-height: 1; }
.kpi-card small { display: block; max-width: 190px; margin-top: 18px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.kpi-primary { padding-right: 100px; background: var(--emerald-950); }
.kpi-primary > span,.kpi-primary small { color: rgba(255,255,255,.7); }
.kpi-primary > strong { color: white; }
.kpi-ring { position: absolute; top: 24px; right: 22px; display: grid; width: 66px; height: 66px; place-items: center; border-radius: 50%; background: conic-gradient(var(--rose-gold) 0deg,#315f50 0deg); }
.kpi-ring::after { content: ""; width: 48px; height: 48px; border-radius: 50%; background: var(--emerald-950); }
.dashboard-layout { display: grid; grid-template-columns: minmax(0,1fr) 330px; align-items: start; gap: 24px; }
.dashboard-main { min-width: 0; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: white; }
.dashboard-section-heading { display: flex; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.dashboard-section-heading h2 { margin-bottom: 0; font-size: clamp(28px,3vw,38px); }
.dashboard-section-heading > p { max-width: 410px; margin: 0; color: var(--muted); font-size: 13px; }
.launch-phases { display: grid; gap: 13px; }
.launch-phase { padding: 20px; border: 1px solid var(--line); border-radius: 17px; background: var(--cream); }
.phase-top { display: grid; grid-template-columns: 40px 1fr 50px; align-items: start; gap: 14px; }
.phase-top > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 11px; background: var(--emerald-900); color: white; font-family: "Playfair Display",serif; font-size: 13px; font-weight: 800; }
.phase-top h3 { margin: 0 0 5px; font-size: 18px; }
.phase-top p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.phase-top > strong { color: var(--rose-dark); font-size: 14px; text-align: right; }
.phase-meter { height: 7px; margin: 16px 0; overflow: hidden; border-radius: 999px; background: #dfe9e4; }
.phase-meter i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--emerald-700),var(--rose-gold)); transition: width .25s ease; }
.phase-tasks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; }
.phase-tasks label { display: flex; align-items: flex-start; gap: 9px; color: var(--ink); font-size: 13px; line-height: 1.4; cursor: pointer; }
.phase-tasks input { width: 17px; height: 17px; flex: 0 0 17px; margin: 1px 0 0; accent-color: var(--emerald-700); }
.phase-tasks input:checked + span { color: var(--muted); text-decoration: line-through; }
.dashboard-sidebar { display: grid; gap: 16px; }
.dashboard-panel { padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 8px 24px rgba(7,55,42,.05); }
.dashboard-panel h2 { margin-bottom: 17px; font-size: 26px; }
.dashboard-panel > a { display: flex; justify-content: space-between; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line); color: var(--ink); font-size: 13px; text-decoration: none; }
.dashboard-panel > a:hover span { color: var(--emerald-700); }
.dashboard-panel > a b { color: var(--emerald-700); font-size: 11px; white-space: nowrap; }
.readiness-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); font-size: 13px; }
.readiness-row b { color: var(--rose-dark); font-size: 11px; white-space: nowrap; }
.dashboard-note { display: grid; gap: 5px; padding: 20px; border-left: 4px solid var(--rose-gold); border-radius: 0 16px 16px 0; background: #fff9f6; }
.dashboard-note strong { color: var(--emerald-950); font-size: 13px; }
.dashboard-note span { color: var(--muted); font-size: 12px; line-height: 1.5; }

footer { background: var(--emerald-950); color: white; }
.footer-inner { display: grid; width: min(1180px,calc(100% - 40px)); margin: 0 auto; padding: 56px 0 34px; grid-template-columns: 1.2fr .8fr .8fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand img { width: 74px; height: 74px; border: 2px solid rgba(255,255,255,.35); border-radius: 50%; background: white; object-fit: cover; }
.footer-brand strong { display: block; font-family: "Playfair Display",serif; font-size: 21px; }
.footer-brand span { color: rgba(255,255,255,.62); font-size: 11px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: white; }
.footer-social a:hover, .footer-social a:focus-visible { background: rgba(255,255,255,.16); border-color: white; }
.footer-social svg { width: 21px; height: 21px; fill: currentColor; }
.footer-column h3 { margin-bottom: 14px; color: #e6b5a8; font-size: 12px; letter-spacing: .09em; text-transform: uppercase; }
.footer-column a { display: block; width: fit-content; margin: 7px 0; color: rgba(255,255,255,.72); font-size: 13px; text-decoration: none; }
.footer-bottom { display: flex; width: min(1180px,calc(100% - 40px)); margin: 0 auto; padding: 22px 0 30px; border-top: 1px solid rgba(255,255,255,.12); justify-content: space-between; gap: 25px; color: rgba(255,255,255,.5); font-size: 10px; }
.crisis-note { max-width: 630px; text-align: right; }

[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .45s ease,transform .45s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .header-inner { min-height: 74px; }
  .menu-toggle { display: grid; }
  .main-nav { position: absolute; top: 74px; left: 20px; right: 20px; display: none; align-items: stretch; flex-direction: column; gap: 4px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav > a, .nav-group > summary { padding: 10px 12px; }
  .nav-dropdown { position: static; min-width: 0; margin-top: 6px; border: 0; background: var(--emerald-50); box-shadow: none; }
  .main-nav .button { margin-top: 6px; }
  .hero-inner { grid-template-columns: 1fr 340px; gap: 40px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .card-grid.three { grid-template-columns: 1fr 1fr; }
  .portal-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-kpis { grid-template-columns: 1fr 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { grid-template-columns: 1fr 1fr; }
  .dashboard-note { grid-column: 1 / -1; }
  .job-opening { grid-template-columns: 1fr; }
  .job-apply-card { position: static; }
  .availability-notice > div { grid-template-columns: auto 1fr; }
  .availability-notice p { grid-column: 1 / -1; }
}

@media (max-width: 740px) {
  .header-inner { width: min(100% - 28px,1180px); }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: 18px; }
  .brand small { display: none; }
  .main-nav { left: 14px; right: 14px; }
  .hero-inner, .page-hero .hero-inner { grid-template-columns: 1fr; min-height: 0; width: min(100% - 32px,1180px); padding: 58px 0 70px; }
  h1 { font-size: clamp(44px,13vw,62px); }
  .hero-visual { max-width: 340px; margin: 10px auto 0; }
  .hero-note { right: -4px; }
  .page-hero .hero-visual { width: 100%; min-height: 280px; max-width: none; }
  .hero .photo-visual, .page-hero .photo-visual { min-height: 0; }
  .hero .photo-visual .hero-photo { height: auto; aspect-ratio: 4 / 3; }
  .page-hero .photo-visual .hero-photo { height: auto; aspect-ratio: 8 / 5; }
  .page-hero .photo-visual .hero-photo[src="/assets/consulting-presenter.png"] { width: min(100%,440px); aspect-ratio: auto; }
  .section { padding-top: 75px; padding-bottom: 75px; }
  .section-heading { align-items: start; flex-direction: column; gap: 18px; }
  .card-grid, .card-grid.three, .process-grid, .split { grid-template-columns: 1fr; }
  .impact-grid,.service-area { grid-template-columns: 1fr; }
  .service-area { padding: 30px; }
  .portal-grid { grid-template-columns: 1fr; }
  .dashboard-shell { padding-top: 32px; }
  .dashboard-topbar,.dashboard-section-heading { align-items: stretch; flex-direction: column; }
  .dashboard-actions { justify-content: flex-start; }
  .dashboard-kpis,.dashboard-sidebar { grid-template-columns: 1fr; }
  .dashboard-main { padding: 20px; }
  .phase-tasks { grid-template-columns: 1fr; }
  .dashboard-note { grid-column: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .full-field, .check-field { grid-column: auto; }
  .portal-help { align-items: flex-start; flex-direction: column; gap: 4px; }
  .portal-help strong { white-space: normal; }
  .educational-graphic { grid-template-columns: 1fr; margin-top: 50px; padding: 18px; }
  .team-hero { padding-top: 60px; }
  .leadership-grid { grid-template-columns: 1fr; width: min(390px, 100%); }
  .team-member-grid { grid-template-columns: 1fr; width: min(340px, 100%); }
  .team-member-feature img { width: min(210px, 100%); height: auto; max-height: 300px; margin: 24px auto 0; object-fit: contain; background: #edf1ee; }
  .service-card { min-height: 250px; }
  .availability-notice { padding-inline: 16px; }
  .availability-notice > div { grid-template-columns: 1fr; gap: 10px; padding: 22px; }
  .availability-notice p { grid-column: auto; }
  .detail-availability { align-items: center; flex-direction: column; gap: 8px; }
  .callout { align-items: stretch; flex-direction: column; padding-top: 58px; padding-bottom: 58px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .crisis-note { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
