:root {
    --eh-red: #A6333E;
    --eh-red-dark: #8F2633;
    --eh-green: #7C9939;
    --eh-green-dark: #24582A;
    --eh-green-light: #D1E6CA;
    --eh-beige: #E0C387;
    --eh-teal: #1699A8;

    --bg: #FAF8F4;
    --surface: #FFFFFF;
    --surface-soft: #F3F0EA;
    --text: #222222;
    --muted: #666666;
    --border: #E4DDD2;

    --font-base: "Raleway", "Inter", system-ui, sans-serif;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-soft: 0 8px 24px rgba(34, 34, 34, 0.07);
    --shadow-card: 0 3px 12px rgba(34, 34, 34, 0.06);
    --container: 1120px;
    --section-space: 72px;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-base);
    font-size: 17px;
    line-height: 1.68;
}

a {
    color: var(--eh-green-dark);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--eh-red-dark);
}

img,
svg {
    max-width: 100%;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--text);
    font-weight: 800;
    letter-spacing: 0;
}

h1 {
    max-width: 840px;
    margin-bottom: 20px;
    font-size: clamp(2.35rem, 5vw, 4.25rem);
    line-height: 1.05;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(1.45rem, 2.6vw, 2.1rem);
    line-height: 1.18;
}

h3 {
    margin-bottom: 8px;
    font-size: 1.12rem;
    line-height: 1.25;
}

p {
    margin-bottom: 1rem;
}

/* Layout primitives */
.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: var(--section-space) 0;
}

.section-muted {
    background:
        linear-gradient(90deg, transparent 0 22%, rgba(224, 195, 135, 0.22) 22% 24%, transparent 24% 100%),
        var(--surface-soft);
    border-block: 1px solid var(--border);
}

.section-heading {
    max-width: 740px;
    margin-bottom: 30px;
}

.content-narrow {
    max-width: 790px;
}

.content-narrow section + section {
    margin-top: 42px;
    padding-top: 34px;
    border-top: 1px solid var(--border);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 48px;
    align-items: start;
}

/* Cards and surfaces */
.card,
.info-box,
.status-list,
.feedback-form,
.resource-list article,
.topic-grid article,
.news-item,
.accordion {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.card,
.resource-list article,
.topic-grid article,
.news-item {
    padding: 24px;
}

.info-box,
.status-list,
.feedback-form {
    padding: 26px;
    box-shadow: var(--shadow-soft);
}

.card {
    position: relative;
    overflow: hidden;
}

.card::before,
.topic-grid article::before {
    display: block;
    width: 48px;
    height: 6px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: var(--eh-green);
    content: "";
}

.card a {
    font-weight: 800;
}

.card-grid,
.topic-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.topic-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Homepage status area */
.status-section {
    background: var(--surface);
}

.phase-line {
    display: grid;
    grid-template-columns: repeat(6, minmax(132px, 1fr));
    gap: 0;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
    overflow-x: auto;
}

.phase-line li {
    position: relative;
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 126px;
    padding: 0 14px 0 0;
    color: var(--muted);
}

.phase-line li::before {
    position: absolute;
    top: 19px;
    left: 34px;
    right: 0;
    height: 5px;
    background: var(--border);
    content: "";
}

.phase-line li:not(:last-child)::after {
    position: absolute;
    top: 19px;
    right: 0;
    width: 100%;
    height: 5px;
    background: rgba(224, 195, 135, 0.62);
    content: "";
    transform: translateX(50%);
    z-index: 0;
}

.phase-line li.is-current::after {
    background: rgba(124, 153, 57, 0.46);
}

.phase-line span {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 2px solid var(--border);
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 900;
}

.phase-line strong {
    max-width: 145px;
    font-size: 0.95rem;
    line-height: 1.25;
}

.phase-line .is-current span {
    border-color: var(--eh-green);
    background: var(--eh-green);
    color: #fff;
}

.phase-line .is-current strong {
    color: var(--eh-green-dark);
}

.process-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.process-card {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    padding: 26px;
    background:
        linear-gradient(90deg, transparent 0 26px, rgba(224, 195, 135, 0.28) 26px 32px, transparent 32px),
        var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.process-card::before {
    display: block;
    width: 54px;
    height: 8px;
    margin-bottom: 28px;
    border-radius: 999px;
    background: var(--eh-green);
    content: "";
}

.process-card::after {
    position: absolute;
    right: -30px;
    bottom: -34px;
    width: 124px;
    height: 124px;
    border: 13px solid rgba(224, 195, 135, 0.32);
    border-radius: 50%;
    content: "";
}

.process-card h2,
.process-card p {
    position: relative;
    z-index: 1;
}

.statement-heading {
    max-width: 880px;
}

.statement-heading p {
    color: var(--text);
    font-size: clamp(1.08rem, 2vw, 1.32rem);
    line-height: 1.56;
}

.mini-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mini-info-card,
.compact-card,
.download-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.mini-info-card {
    padding: 22px;
    border-top: 6px solid var(--eh-green);
}

.mini-info-card:nth-child(2) {
    border-top-color: var(--eh-beige);
}

.mini-info-card:nth-child(3) {
    border-top-color: var(--eh-red);
}

.perspective-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
}

.perspective-band p {
    max-width: 800px;
    margin-bottom: 0;
}

.home-bottom-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.compact-card-list {
    display: grid;
    gap: 14px;
}

.compact-card,
.download-card {
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.compact-card {
    border-left: 5px solid var(--eh-green);
}

.compact-card:nth-child(2) {
    border-left-color: var(--eh-beige);
}

.compact-card:nth-child(3) {
    border-left-color: var(--eh-red);
}

.compact-card time {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--eh-red-dark);
    font-size: 0.86rem;
    font-weight: 800;
}

.compact-card h3,
.download-card h3 {
    margin-bottom: 8px;
}

.compact-card p,
.download-card p {
    margin-bottom: 0;
}

.download-card::after {
    position: absolute;
    right: -28px;
    bottom: -42px;
    width: 118px;
    height: 118px;
    border: 12px solid rgba(224, 195, 135, 0.28);
    border-radius: 50%;
    content: "";
}

.download-card > * {
    position: relative;
    z-index: 1;
}

.material-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 13px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text);
    font: inherit;
    font-size: 0.92rem;
    font-weight: 800;
    cursor: pointer;
}

.filter-chip:hover,
.filter-chip:focus-visible,
.filter-chip.is-active {
    border-color: var(--eh-green);
    background: var(--eh-green-light);
    color: var(--eh-green-dark);
}

.material-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.material-card {
    display: grid;
    grid-template-rows: 1fr auto auto;
    gap: 18px;
    min-height: 310px;
    padding: 22px;
    background:
        linear-gradient(90deg, transparent 0 22px, rgba(224, 195, 135, 0.24) 22px 28px, transparent 28px),
        var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.material-card[hidden] {
    display: none;
}

.material-card h2 {
    margin-top: 14px;
    font-size: 1.28rem;
}

.material-card dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.material-card dt {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.material-card dd {
    margin: 0;
    color: var(--text);
    font-weight: 800;
}

.project-log {
    max-width: 860px;
}

.log-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 24px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 6px solid var(--eh-green);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.log-card + .log-card {
    margin-top: 14px;
}

.log-card:nth-of-type(3) {
    border-left-color: var(--eh-beige);
}

.log-card:nth-of-type(4) {
    border-left-color: var(--eh-red);
}

.log-card time {
    color: var(--eh-red-dark);
    font-size: 0.92rem;
    font-weight: 900;
}

.log-card h2 {
    margin-bottom: 8px;
    font-size: 1.32rem;
}

.log-card p {
    margin-bottom: 0;
}

.work-structure-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.work-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.work-card::before {
    display: block;
    width: 56px;
    height: 8px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: var(--eh-green);
    content: "";
}

.work-card:nth-child(2)::before {
    background: var(--eh-teal);
}

.work-card:nth-child(3)::before {
    background: var(--eh-beige);
}

.work-card:nth-child(4)::before {
    background: var(--eh-red);
}

.work-card dl {
    display: grid;
    gap: 14px;
    margin: 0;
}

.work-card div {
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.work-card div:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.work-card dt {
    color: var(--eh-green-dark);
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
}

.work-card dd {
    margin: 4px 0 0;
    color: var(--text);
}

.stakeholder-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.stakeholder-grid article {
    min-height: 94px;
    padding: 18px;
    background:
        linear-gradient(90deg, transparent 0 18px, rgba(224, 195, 135, 0.28) 18px 23px, transparent 23px),
        var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    color: var(--eh-green-dark);
    font-weight: 800;
}

/* Buttons */
.button,
.button-primary,
.button-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font: inherit;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button,
.button-primary {
    background: var(--eh-red);
    color: #fff;
}

.button:hover,
.button-primary:hover {
    background: var(--eh-red-dark);
    color: #fff;
}

.button-secondary {
    background: var(--surface);
    border-color: var(--eh-green-dark);
    color: var(--eh-green-dark);
}

.button-secondary:hover {
    background: var(--eh-green-light);
    color: var(--eh-green-dark);
}

/* Pills and status labels */
.pill,
.tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--eh-green-light);
    color: var(--eh-green-dark);
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.25;
}

.pill-red {
    background: rgba(166, 51, 62, 0.12);
    color: var(--eh-red-dark);
}

.pill-beige {
    background: rgba(224, 195, 135, 0.36);
    color: #5b481f;
}

/* Accordions */
.accordion-list,
.faq-list {
    display: grid;
    gap: 12px;
}

.accordion,
.faq-list details {
    padding: 18px 20px;
}

.accordion summary,
.faq-list summary {
    cursor: pointer;
    font-weight: 800;
}

.accordion summary::marker,
.faq-list summary::marker {
    color: var(--eh-red);
}

.accordion p,
.faq-list p {
    margin: 12px 0 0;
}

/* Process bar */
.process-bar,
.timeline {
    display: grid;
    gap: 16px;
    padding: 0;
    list-style: none;
    counter-reset: steps;
}

.process-bar li,
.timeline li {
    position: relative;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 16px;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.process-bar li::before,
.timeline li::before {
    counter-increment: steps;
    content: counter(steps);
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--eh-green);
    color: #fff;
    font-weight: 900;
}

.process-bar li::after,
.timeline li::after {
    position: absolute;
    left: 39px;
    top: 58px;
    bottom: -17px;
    width: 4px;
    background: var(--eh-beige);
    content: "";
}

.process-bar li:last-child::after,
.timeline li:last-child::after {
    display: none;
}

.process-bar span,
.process-bar strong,
.timeline span,
.timeline strong {
    grid-column: 2;
}

.process-bar strong,
.timeline strong {
    color: var(--eh-green-dark);
}

/* Forms */
.feedback-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.feedback-choice {
    position: relative;
    display: grid;
    gap: 18px;
    min-height: 170px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background:
        linear-gradient(90deg, transparent 0 24px, rgba(224, 195, 135, 0.26) 24px 30px, transparent 30px),
        var(--surface);
    box-shadow: var(--shadow-card);
    color: var(--text);
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.feedback-choice span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--eh-green-light);
    color: var(--eh-green-dark);
    font-weight: 900;
}

.feedback-choice strong {
    max-width: 260px;
    font-size: 1.08rem;
    line-height: 1.25;
}

.feedback-choice:hover,
.feedback-choice:focus-visible,
.feedback-choice.is-active {
    border-color: var(--eh-green);
    outline: 0;
}

.feedback-choice.is-active span {
    background: var(--eh-green);
    color: #fff;
}

.feedback-panels {
    max-width: 860px;
}

.feedback-panel[hidden],
.thanks-view[hidden] {
    display: none;
}

.feedback-form {
    display: grid;
    gap: 16px;
}

.form-field,
.feedback-form label {
    display: grid;
    gap: 6px;
    font-weight: 800;
}

.form-field span,
.feedback-form label span {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 13px;
    background: #fff;
    color: var(--text);
    font: inherit;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--eh-teal);
    outline: 3px solid rgba(22, 153, 168, 0.18);
}

textarea {
    resize: vertical;
}

.radio-field {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin: 0;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.radio-field legend {
    padding: 0 6px;
    color: var(--eh-green-dark);
    font-weight: 800;
}

.radio-field label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.radio-field input {
    width: auto;
}

.checkbox {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    font-weight: 500;
}

.checkbox input {
    width: auto;
    margin-top: 6px;
}

.form-note {
    min-height: 1.4em;
    margin: 0;
    color: var(--eh-green-dark);
    font-weight: 700;
}

.thanks-view {
    display: grid;
    gap: 16px;
    padding: 30px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 7px solid var(--eh-green);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.thanks-view p {
    max-width: 680px;
}

/* Site chrome */
.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 10;
    background: var(--eh-green-dark);
    color: #fff;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
}

.skip-link:focus {
    top: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--text);
    text-decoration: none;
}

.brand:hover {
    color: var(--text);
}

.brand small,
.brand strong {
    display: block;
}

.brand strong {
    font-size: 1.08rem;
    line-height: 1.2;
}

.brand small {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.25;
}

.brand small:first-child {
    color: var(--eh-red-dark);
    font-weight: 800;
    text-transform: uppercase;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    min-width: 0;
}

.site-nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 2px;
}

.nav-group {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 42px;
    padding: 9px 10px;
    border: 0;
    border-bottom: 3px solid transparent;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.1;
    text-decoration: none;
    cursor: pointer;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active,
.nav-group.is-active > .nav-link {
    background: rgba(209, 230, 202, 0.55);
    border-bottom-color: var(--eh-green);
    color: var(--eh-green-dark);
}

.nav-link:focus-visible,
.header-cta:focus-visible,
.nav-toggle:focus-visible,
.nav-dropdown a:focus-visible {
    outline: 3px solid rgba(22, 153, 168, 0.22);
    outline-offset: 2px;
}

.nav-caret {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 25;
    display: grid;
    min-width: 230px;
    padding: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 140ms ease, transform 140ms ease;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group.is-open .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown a {
    padding: 10px 11px;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
    background: var(--surface-soft);
    color: var(--eh-green-dark);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 15px;
    border-radius: var(--radius-sm);
    background: var(--eh-red);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    white-space: nowrap;
}

.header-cta:hover {
    background: var(--eh-red-dark);
    color: #fff;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--text);
    content: "";
}

.nav-toggle-bar::before {
    transform: translateY(-7px);
}

.nav-toggle-bar::after {
    transform: translateY(5px);
}

.sr-only {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0, 0, 0, 0);
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 78px;
    background:
        linear-gradient(90deg, transparent 0 16%, rgba(224, 195, 135, 0.36) 16% 17.8%, transparent 17.8% 100%),
        linear-gradient(135deg, rgba(209, 230, 202, 0.5), rgba(255, 255, 255, 0.86) 58%),
        var(--surface);
    border-bottom: 1px solid var(--border);
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
    align-items: center;
    gap: 58px;
}

.home-hero-copy {
    max-width: 720px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 18px;
}

.hero-status {
    margin-top: 0;
}

.hero-map {
    position: relative;
    min-height: 420px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 76% 23%, rgba(22, 153, 168, 0.11), transparent 27%),
        radial-gradient(circle at 18% 78%, rgba(166, 51, 62, 0.1), transparent 31%),
        rgba(255, 255, 255, 0.58);
}

.hero-paths {
    position: absolute;
    inset: 16px 0 0;
    width: 100%;
    height: calc(100% - 32px);
}

.hero-paths path {
    fill: none;
    stroke: var(--eh-beige);
    stroke-linecap: round;
    stroke-width: 16;
    opacity: 0.82;
}

.hero-paths path:nth-child(2) {
    stroke-width: 10;
    opacity: 0.58;
}

.hero-paths path:nth-child(3) {
    stroke: var(--eh-green-light);
    stroke-width: 12;
    opacity: 0.78;
}

.map-card {
    position: absolute;
    display: grid;
    place-items: end start;
    width: 142px;
    aspect-ratio: 1;
    padding: 16px;
    border: 1px solid rgba(36, 88, 42, 0.22);
    border-radius: var(--radius-md);
    background: var(--eh-green);
    color: #fff;
    box-shadow: 0 10px 24px rgba(34, 34, 34, 0.12);
    transform-origin: center;
}

.map-card span {
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
}

.map-card::before {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 38px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    content: "";
}

.map-card-a {
    top: 28px;
    left: 34px;
    background: var(--eh-green-dark);
    transform: rotate(-8deg);
}

.map-card-b {
    top: 112px;
    right: 58px;
    transform: rotate(7deg);
}

.map-card-c {
    left: 132px;
    bottom: 48px;
    background: #6f8f34;
    transform: rotate(4deg);
}

.map-card-d {
    right: 104px;
    bottom: 112px;
    background: #8ca946;
    transform: rotate(-6deg);
}

.map-marker {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 4px solid var(--surface);
    border-radius: 50%;
    box-shadow: 0 3px 9px rgba(34, 34, 34, 0.16);
}

.marker-red {
    top: 92px;
    right: 146px;
    background: var(--eh-red);
}

.marker-teal {
    left: 92px;
    bottom: 122px;
    background: var(--eh-teal);
}

.marker-dark {
    right: 54px;
    bottom: 56px;
    background: var(--eh-green-dark);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 68px;
    background:
        linear-gradient(90deg, transparent 0 17%, rgba(224, 195, 135, 0.34) 17% 19%, transparent 19% 100%),
        linear-gradient(135deg, rgba(209, 230, 202, 0.72), rgba(255, 255, 255, 0.72)),
        var(--surface);
    border-bottom: 1px solid var(--border);
}

.page-hero-small {
    padding: 56px 0 48px;
}

.page-hero-small .hero-grid {
    grid-template-columns: minmax(0, 760px);
}

.page-hero-small .hero-panel {
    display: none;
}

.page-hero::after {
    position: absolute;
    right: max(20px, calc((100vw - var(--container)) / 2));
    bottom: -26px;
    width: 148px;
    height: 148px;
    border: 18px solid rgba(166, 51, 62, 0.12);
    border-radius: 50%;
    content: "";
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: end;
    gap: 44px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--eh-red-dark);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.lead {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.22rem;
    line-height: 1.55;
}

.hero-panel {
    display: grid;
    gap: 10px;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.hero-panel span {
    padding: 12px 14px;
    border-left: 5px solid var(--eh-green);
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
    font-weight: 800;
}

.hero-panel span:nth-child(2) {
    border-left-color: var(--eh-beige);
}

.hero-panel span:nth-child(3) {
    border-left-color: var(--eh-red);
}

.orientation-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.orientation-tile {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.orientation-tile::after {
    position: absolute;
    right: -34px;
    bottom: -42px;
    width: 118px;
    height: 118px;
    border: 12px solid rgba(224, 195, 135, 0.24);
    border-radius: 50%;
    content: "";
}

.orientation-tile span {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: var(--eh-green);
    color: #fff;
    font-weight: 900;
}

.orientation-tile h3,
.orientation-tile p {
    position: relative;
    z-index: 1;
}

.orientation-tile h3 {
    color: var(--eh-green-dark);
}

.project-two-column {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: 42px;
    align-items: start;
}

.check-list {
    padding-left: 1.1rem;
}

.check-list li + li {
    margin-top: 8px;
}

.status-list dl {
    display: grid;
    gap: 14px;
    margin: 0;
}

.status-list div {
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.status-list div:first-child {
    padding-top: 0;
    border-top: 0;
}

.status-list dt {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 800;
}

.status-list dd {
    margin: 2px 0 0;
}

.resource-list {
    display: grid;
    gap: 14px;
}

.resource-list article {
    border-left: 6px solid var(--eh-green);
}

.resource-list article:nth-child(2) {
    border-left-color: var(--eh-beige);
}

.resource-list article:nth-child(3) {
    border-left-color: var(--eh-red);
}

.news-item + .news-item {
    margin-top: 16px;
}

.news-item time {
    color: var(--eh-red-dark);
    font-size: 0.9rem;
    font-weight: 800;
}

address {
    font-style: normal;
}

.site-footer {
    padding: 42px 0;
    background: var(--eh-green-dark);
    color: #f7fbf6;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 28px;
}

.site-footer p {
    color: rgba(247, 251, 246, 0.82);
}

.site-footer a {
    display: block;
    width: fit-content;
    color: #f7fbf6;
}

@media (max-width: 900px) {
    :root {
        --section-space: 56px;
    }

    .header-inner {
        flex-wrap: wrap;
        padding: 12px 0;
        gap: 12px;
    }

    .nav-toggle {
        display: inline-grid;
        place-items: center;
    }

    .header-actions {
        display: none;
        width: 100%;
        padding: 14px 0 4px;
        border-top: 1px solid var(--border);
    }

    .header-actions.is-open {
        display: grid;
        gap: 14px;
        align-items: stretch;
        justify-content: stretch;
    }

    .site-nav {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
        gap: 4px;
        justify-content: stretch;
        justify-items: stretch;
    }

    .site-nav > * {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
        min-height: 46px;
        padding: 11px 12px;
        border-bottom-width: 0;
    }

    .nav-link:hover,
    .nav-link:focus-visible,
    .nav-link.is-active,
    .nav-group.is-active > .nav-link {
        border-bottom-color: transparent;
    }

    .nav-dropdown {
        position: static;
        display: none;
        min-width: 0;
        margin: 0 0 8px 12px;
        padding: 4px 0 4px 12px;
        background: transparent;
        border: 0;
        border-left: 3px solid var(--eh-beige);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        transition: none;
    }

    .nav-group:hover .nav-dropdown,
    .nav-group:focus-within .nav-dropdown,
    .nav-group.is-open .nav-dropdown {
        display: grid;
    }

    .nav-dropdown a {
        padding: 9px 10px;
    }

    .header-cta {
        width: 100%;
        min-height: 48px;
    }

    .hero-grid,
    .home-hero-grid,
    .split,
    .project-two-column,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .home-hero {
        padding: 62px 0;
    }

    .home-hero-grid {
        gap: 34px;
    }

    .hero-map {
        min-height: 380px;
        max-width: 560px;
    }

    .hero-panel {
        max-width: 420px;
    }

    .card-grid,
    .topic-grid,
    .process-card-grid,
    .mini-info-grid,
    .material-grid,
    .work-structure-grid,
    .stakeholder-grid,
    .feedback-choice-grid,
    .orientation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .perspective-band,
    .home-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    body {
        font-size: 16px;
        line-height: 1.64;
    }

    .container {
        width: min(100% - 24px, var(--container));
    }

    .page-hero {
        padding: 50px 0;
    }

    .page-hero-small {
        padding: 42px 0;
    }

    .home-hero {
        padding: 48px 0;
    }

    .home-hero-grid {
        gap: 28px;
    }

    .hero-actions {
        display: grid;
    }

    .hero-status {
        width: 100%;
    }

    .hero-map {
        min-height: 330px;
    }

    .map-card {
        width: 118px;
        padding: 14px;
    }

    .map-card-a {
        left: 12px;
    }

    .map-card-b {
        top: 88px;
        right: 14px;
    }

    .map-card-c {
        left: 58px;
        bottom: 34px;
    }

    .map-card-d {
        right: 62px;
        bottom: 102px;
    }

    .brand {
        max-width: calc(100% - 58px);
    }

    .brand strong {
        font-size: 0.98rem;
    }

    .card-grid,
    .topic-grid,
    .process-card-grid,
    .mini-info-grid,
    .material-grid,
    .work-structure-grid,
    .stakeholder-grid,
    .feedback-choice-grid,
    .orientation-grid {
        grid-template-columns: 1fr;
    }

    .perspective-band .button-primary {
        width: 100%;
    }

    .phase-line {
        grid-template-columns: 1fr;
        gap: 12px;
        overflow-x: visible;
    }

    .phase-line li {
        grid-template-columns: 42px minmax(0, 1fr);
        align-items: center;
        min-height: 0;
        padding: 0;
    }

    .phase-line li::before,
    .phase-line li::after {
        display: none;
    }

    .phase-line strong {
        max-width: none;
    }

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

    .process-bar li,
    .timeline li {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
        padding: 18px;
    }

    .process-bar li::after,
    .timeline li::after {
        left: 35px;
    }

    .feedback-form {
        padding: 20px;
    }
}
