@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/assets/fonts/open-sans-400.ttf") format("truetype");
}

/* Public polish 2026-06-04 */
.site-header {
    background: rgba(255, 255, 255, 0.985);
}

.header-inner {
    min-height: 72px;
    margin-top: 3px;
}

.brand,
.brand:hover {
    color: var(--eh-green-dark);
    text-decoration: none;
}

.brand-program {
    color: var(--eh-red);
    font-size: 0.67rem;
    letter-spacing: 0.08em;
}

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

.brand small {
    font-size: 0.76rem;
}

.nav-link {
    min-height: 40px;
    font-size: 0.9rem;
    font-weight: 700;
}

.nav-link:hover {
    background: transparent;
}

.nav-link.is-active {
    background: transparent;
    box-shadow: inset 0 -3px 0 var(--eh-beige);
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(58px, 8vw, 92px) 0 clamp(64px, 8vw, 88px);
    background:
        linear-gradient(90deg, transparent 0 16%, rgba(224, 195, 135, 0.34) 16% 17.6%, transparent 17.6% 100%),
        radial-gradient(circle at 82% 18%, rgba(209, 230, 202, 0.65), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 240, 234, 0.72)),
        var(--surface);
    border-bottom: 1px solid var(--border);
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
    gap: clamp(36px, 5vw, 70px);
    align-items: center;
}

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

.home-hero h1 {
    font-size: clamp(2.35rem, 4.7vw, 4rem);
}

.home-hero .lead {
    max-width: 680px;
}

.home-hero .lead p {
    margin-bottom: 0;
}

.page-hero {
    padding: clamp(44px, 6vw, 70px) 0 clamp(42px, 6vw, 64px);
    background:
        linear-gradient(90deg, transparent 0 17%, rgba(224, 195, 135, 0.18) 17% 18.3%, transparent 18.3%),
        var(--surface);
    border-bottom: 0;
}

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

.page-hero h1 {
    font-size: clamp(2rem, 3.3vw, 3rem);
}

.page-hero .hero-map {
    min-height: 230px;
}

.hero-map {
    position: relative;
    min-height: 400px;
    border-radius: 12px;
    background:
        radial-gradient(circle at 75% 22%, rgba(22, 153, 168, 0.12), transparent 28%),
        radial-gradient(circle at 20% 82%, rgba(166, 51, 62, 0.10), transparent 32%),
        rgba(255, 255, 255, 0.58);
}

.hero-image-panel {
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 8px;
}

.hero-image {
    width: min(100%, 500px);
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 16px 26px rgba(34, 34, 34, 0.08));
}

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

.status-pill {
    background: rgba(224, 195, 135, 0.45);
}

.rich-text > :last-child {
    margin-bottom: 0;
}

.text-block-copy {
    max-width: 960px;
}

.text-block-copy p {
    max-width: 920px;
}

.accent-text-section {
    background: var(--bg);
}

.accent-text-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(160px, 260px);
}

.accent-text-copy h2 {
    font-size: clamp(1.75rem, 3.4vw, 2.8rem);
}

.cards-section {
    background:
        linear-gradient(90deg, transparent 0 18%, rgba(224, 195, 135, 0.23) 18% 20%, transparent 20%),
        var(--surface-soft);
}

.cards-section::before {
    display: none;
}

.process-card,
.update-card,
.material-card {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(34, 34, 34, 0.055);
}

.process-card h3,
.update-card h3,
.material-card h3 {
    color: var(--text);
}

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

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

.phase-line li::before {
    position: absolute;
    top: 19px;
    left: 34px;
    right: 0;
    height: 5px;
    border-radius: 999px;
    background: rgba(224, 195, 135, 0.62);
    content: "";
}

.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);
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
}

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

.phase-line .is-past span {
    border-color: var(--eh-green);
    background: var(--eh-green-light);
    color: var(--eh-green-dark);
}

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

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

.vertical-timeline-section {
    background: var(--bg);
}

.vertical-timeline {
    gap: 28px;
    max-width: 980px;
}

.vertical-timeline-item {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 30px;
}

.vertical-timeline-marker {
    width: 66px;
    height: 66px;
    border-width: 4px;
    font-size: 1.1rem;
}

.vertical-timeline-content {
    min-height: 118px;
    padding: 2px 0 24px 30px;
}

.vertical-timeline-content::after,
.vertical-timeline-content::before {
    border-radius: 999px;
}

.vertical-timeline-kicker {
    min-height: 28px;
    margin-bottom: 14px;
    padding: 3px 13px;
    font-size: 0.82rem;
}

.vertical-timeline h3 {
    margin-bottom: 8px;
    color: var(--eh-green-dark);
    font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.vertical-timeline .rich-text {
    max-width: 760px;
}

.choice-grid {
    gap: 18px;
}

.choice-card {
    position: relative;
    display: grid;
    align-content: end;
    min-height: 156px;
    padding: 22px;
    border-radius: 8px;
    background:
        linear-gradient(90deg, transparent 0 24px, rgba(224, 195, 135, 0.28) 24px 30px, transparent 30px),
        var(--surface);
}

.choice-card::before {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: var(--eh-green-light);
    color: var(--eh-green-dark);
    content: attr(data-step);
    font-weight: 800;
}

.choice-card.is-active {
    border-color: var(--eh-green);
    background:
        linear-gradient(90deg, transparent 0 24px, rgba(224, 195, 135, 0.28) 24px 30px, transparent 30px),
        var(--surface);
    color: var(--text);
}

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

.material-grid {
    align-items: stretch;
}

.material-card {
    min-height: 0;
}

.material-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 800;
}

.material-card-meta span:not(.pill),
.material-card-meta time {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--surface-soft);
}

.download-button::before {
    content: "↓";
    margin-right: 8px;
    font-weight: 800;
}

.button.is-disabled {
    opacity: 0.72;
    cursor: not-allowed;
}

@media (max-width: 1024px) {
    .home-hero-grid,
    .page-hero-grid {
        grid-template-columns: 1fr;
    }

    .home-hero {
        padding-top: 54px;
    }

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

@media (max-width: 640px) {
    .home-hero,
    .page-hero {
        padding: 42px 0 52px;
    }

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

    .phase-line li {
        min-height: 0;
        grid-template-columns: 48px 1fr;
        align-items: center;
    }

    .phase-line li::before {
        top: 42px;
        left: 20px;
        bottom: -18px;
        width: 5px;
        height: auto;
        right: auto;
    }

    .vertical-timeline-item {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 18px;
    }

    .vertical-timeline-marker {
        width: 48px;
        height: 48px;
        font-size: 0.95rem;
    }
}

@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("/assets/fonts/open-sans-600.ttf") format("truetype");
}

@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/assets/fonts/open-sans-700.ttf") format("truetype");
}

@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("/assets/fonts/open-sans-800.ttf") format("truetype");
}

: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: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --container: 1160px;
    --section-space: 68px;
    --radius-sm: 6px;
    --radius-md: 8px;
    --shadow-soft: 0 14px 36px rgba(34, 34, 34, 0.075);
    --shadow-card: 0 7px 20px rgba(34, 34, 34, 0.055);
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

.skip-link {
    position: fixed;
    z-index: 10000;
    top: 8px;
    left: 8px;
    padding: 10px 14px;
    border-radius: 6px;
    background: var(--eh-green-dark);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform .18s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

a {
    color: var(--eh-green-dark);
    text-underline-offset: .18em;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

input:not([type="checkbox"]):not([type="radio"]),
textarea,
[contenteditable="true"] {
    caret-color: var(--eh-red);
}

input::selection,
textarea::selection,
[contenteditable="true"]::selection {
    background: rgba(166, 51, 62, .2);
    color: var(--text);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(22, 153, 168, .22);
    outline-offset: 3px;
}

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: 18px;
    font-size: clamp(2.1rem, 4.2vw, 3.45rem);
    line-height: 1.08;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(1.45rem, 2.25vw, 2rem);
    line-height: 1.2;
}

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

main p,
.site-footer p {
    white-space: pre-line;
}

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

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

.section + .section {
    margin-top: -1px;
}

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

.section-heading {
    max-width: 900px;
    margin-bottom: 32px;
}

.lead {
    max-width: 740px;
    color: var(--text);
    font-size: clamp(1.03rem, 1.35vw, 1.16rem);
}

.eyebrow {
    margin-bottom: 10px;
    color: var(--eh-green-dark);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.button,
button.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

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

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

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

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

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0 18px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
    transform: translateY(0);
    transition:
        transform .34s cubic-bezier(.2, .7, .2, 1),
        box-shadow .28s ease,
        background-color .28s ease;
    will-change: transform;
}

.site-header.is-hidden {
    transform: translateY(calc(-100% - 14px));
}

.has-scroll-ribbon-effect .site-header {
    top: 3px;
    margin-top: 3px;
}

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

.brand {
    display: grid;
    color: var(--eh-green-dark);
    text-decoration: none;
    line-height: 1.08;
}

.brand:hover {
    color: var(--eh-green-dark);
}

.brand-program {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
}

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

.brand small {
    margin-top: 2px;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 700;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 14px;
}

.primary-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 7px 9px;
    border-radius: 6px;
    color: var(--text);
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--eh-green-dark);
    background: transparent;
}

.nav-link.is-active {
    box-shadow: inset 0 -3px 0 var(--eh-beige);
}

.dropdown-toggle {
    display: none;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    display: grid;
    min-width: 230px;
    padding: 8px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(5px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.dropdown-menu a {
    padding: 9px 10px;
    border-radius: 6px;
    color: var(--text);
    font-weight: 800;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: var(--surface-soft);
    color: var(--eh-green-dark);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.menu-toggle {
    display: none;
    min-height: 44px;
    width: 46px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--surface);
    color: var(--eh-green-dark);
    font-weight: 800;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.hero-section {
    padding: 56px 0 68px;
    background:
        radial-gradient(circle at 82% 16%, rgba(209, 230, 202, .58), transparent 30%),
        linear-gradient(90deg, transparent 0 18%, rgba(224, 195, 135, .16) 18% 20%, transparent 20% 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, .86fr);
    gap: clamp(34px, 5vw, 76px);
    align-items: center;
}

.hero-visual {
    min-height: 300px;
    display: grid;
    place-items: center;
}

.hero-visual img {
    display: block;
    width: min(100%, 500px);
    filter: drop-shadow(0 16px 26px rgba(34, 34, 34, .08));
}

.map-illustration {
    position: relative;
    min-height: 390px;
}

.map-illustration::before {
    position: absolute;
    inset: 18% 10% auto 12%;
    height: 52%;
    border: 18px solid rgba(224, 195, 135, .72);
    border-left-color: transparent;
    border-radius: 999px;
    content: "";
    transform: rotate(-12deg);
}

.map-illustration span {
    position: absolute;
    display: block;
    width: 148px;
    aspect-ratio: 1;
    border-radius: 8px;
    background: var(--eh-green);
    box-shadow: var(--shadow-soft);
}

.map-illustration span:nth-child(1) {
    top: 24px;
    left: 34px;
    transform: rotate(-7deg);
}

.map-illustration span:nth-child(2) {
    top: 116px;
    right: 46px;
    background: var(--eh-green-dark);
    transform: rotate(8deg);
}

.map-illustration span:nth-child(3) {
    right: 120px;
    bottom: 44px;
    background: var(--eh-beige);
    transform: rotate(-12deg);
}

.map-illustration span:nth-child(4) {
    left: 96px;
    bottom: 72px;
    width: 72px;
    background: var(--eh-red);
    transform: rotate(10deg);
}

.status-pill,
.pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--eh-green-light);
    color: var(--eh-green-dark);
    font-weight: 800;
}

.text-section {
    background: var(--bg);
}

.text-block-shell {
    position: relative;
}

.text-block-copy {
    position: relative;
    max-width: 930px;
    padding-left: 26px;
}

.text-block-copy::before {
    position: absolute;
    top: 6px;
    bottom: 7px;
    left: 0;
    width: 5px;
    min-height: 70px;
    border-radius: 999px;
    background: linear-gradient(var(--eh-green), var(--eh-green) 42%, var(--eh-red) 42%, var(--eh-red) 58%, var(--eh-green) 58%);
    content: "";
}

.text-block-copy h2 {
    max-width: 820px;
}

.text-block-copy p {
    max-width: 920px;
}

.cards-section {
    position: relative;
    overflow: hidden;
    background: var(--surface-soft);
    border-block: 1px solid var(--border);
}

.cards-section::before {
    position: absolute;
    inset: 0 auto 0 18%;
    width: 28px;
    background: rgba(224, 195, 135, .24);
    content: "";
}

.cards-section > .container {
    position: relative;
}

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

.card-grid-cols-1 {
    grid-template-columns: 1fr;
}

.card-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.process-card,
.update-card,
.material-card {
    position: relative;
    min-height: 176px;
    overflow: hidden;
    padding: 24px 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-card);
}

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

.process-card::after {
    position: absolute;
    right: -38px;
    bottom: -40px;
    width: 128px;
    height: 128px;
    border: 13px solid rgba(224, 195, 135, .34);
    border-radius: 999px;
    content: "";
}

.card-grid-outro {
    position: relative;
    max-width: 840px;
    margin: 42px 0 0;
    padding: 0 0 0 22px;
    font-size: clamp(1rem, 1.3vw, 1.08rem);
}

.card-grid-outro::before {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: 5px;
    border-radius: 999px;
    background: var(--eh-beige);
    content: "";
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    padding: 0;
    list-style: none;
}

.process-steps li {
    padding: 14px;
    border-radius: 8px;
    background: var(--surface-soft);
    color: var(--muted);
    font-weight: 800;
}

.process-steps .is-current {
    background: var(--eh-red);
    color: #fff;
}

.process-steps .is-past {
    background: var(--eh-green-light);
    color: var(--eh-green-dark);
}

.vertical-timeline {
    display: grid;
    gap: 30px;
    max-width: 980px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.vertical-timeline-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.vertical-timeline-marker {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    border: 4px solid var(--eh-green);
    border-radius: 999px;
    background: var(--eh-green-light);
    color: var(--eh-green-dark);
    font-size: 1.28rem;
    font-weight: 800;
}

.vertical-timeline-item.is-current .vertical-timeline-marker {
    border-color: var(--eh-red);
    background: var(--eh-red);
    color: #fff;
}

.vertical-timeline-item.is-future .vertical-timeline-marker {
    border-color: var(--border);
    background: var(--surface);
    color: var(--muted);
}

.vertical-timeline-content {
    position: relative;
    min-height: 128px;
    padding: 4px 0 22px 30px;
}

.vertical-timeline-content::after {
    position: absolute;
    top: 0;
    bottom: 18px;
    left: 0;
    width: 4px;
    border-radius: 999px;
    background: rgba(224, 195, 135, .62);
    content: "";
}

.vertical-timeline-content::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 4px;
    height: 42px;
    border-radius: 999px;
    background: var(--eh-green);
    content: "";
}

.vertical-timeline-item.is-current .vertical-timeline-content::after {
    background: rgba(166, 51, 62, .34);
}

.vertical-timeline-item.is-current .vertical-timeline-content::before {
    background: var(--eh-red);
}

.vertical-timeline-kicker {
    display: inline-flex;
    min-height: 29px;
    margin: 0 0 14px;
    padding: 3px 14px;
    border-radius: 999px;
    background: var(--eh-green-light);
    color: var(--eh-green-dark);
    font-weight: 800;
    font-size: .84rem;
}

.vertical-timeline-item.is-current .vertical-timeline-kicker {
    background: var(--eh-red);
    color: #fff;
}

.vertical-timeline h3 {
    color: var(--eh-green-dark);
    margin-bottom: 10px;
    font-size: clamp(1.35rem, 2.35vw, 2.1rem);
}

.vertical-timeline p {
    max-width: 760px;
}

.timeline-heading {
    max-width: 920px;
}

.accordion {
    display: grid;
    gap: 12px;
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    overflow: hidden;
}

.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 58px;
    padding: 16px 20px;
    border: 0;
    background: transparent;
    color: var(--text);
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.accordion-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .2s ease;
}

.accordion-panel p {
    overflow: hidden;
    padding: 0 20px;
    margin: 0;
}

.accordion-button[aria-expanded="true"] + .accordion-panel {
    grid-template-rows: 1fr;
}

.accordion-button[aria-expanded="true"] + .accordion-panel p {
    padding-bottom: 18px;
}

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

.updates-section {
    background: var(--bg);
}

.update-card {
    min-height: 0;
}

.update-card time {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(166, 51, 62, .08);
    color: var(--eh-red);
    font-size: .9rem;
    font-weight: 800;
}

.update-card-link {
    position: relative;
    grid-template-rows: auto auto 1fr auto;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.update-card-link h3,
.update-card-link .rich-text {
    color: inherit;
}

.update-card-link:hover {
    border-color: var(--border);
    background-color: inherit;
    color: inherit;
    box-shadow: inherit;
}

.update-card-action {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 8px;
    margin-top: 8px;
    color: var(--eh-green-dark);
    font-size: .92rem;
    font-weight: 800;
}

.update-card-action::after {
    content: "→";
    transition: transform .28s ease;
}

.update-card-link:hover .update-card-action::after,
.update-card-link:focus-visible .update-card-action::after {
    transform: translateX(4px);
}

.update-card-link:focus-visible {
    outline: 3px solid rgba(22, 153, 168, .34);
    outline-offset: 3px;
}

.material-card {
    display: grid;
    gap: 10px;
}

.material-card .button {
    justify-self: start;
    margin-top: 6px;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.filter-chip,
.choice-card {
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--eh-green-dark);
    font-weight: 800;
    cursor: pointer;
}

.filter-chip.is-active,
.choice-card.is-active {
    background: var(--eh-green-dark);
    color: #fff;
}

.filter-empty {
    margin: 0 0 18px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, .72);
    color: var(--muted);
    font-weight: 700;
}

.filter-empty[hidden] {
    display: none !important;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 26px;
}

.choice-card {
    min-height: 110px;
    border-radius: 8px;
    text-align: left;
    box-shadow: var(--shadow-card);
}

.feedback-form {
    display: none;
    max-width: 820px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow-card);
}

.feedback-form.is-active {
    display: grid;
    gap: 14px;
}

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

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #fff;
}

.feedback-form textarea {
    min-height: 130px;
    resize: vertical;
}

.thanks-view {
    max-width: 820px;
    padding: 22px;
    border-radius: 8px;
    background: var(--eh-green-light);
    color: var(--eh-green-dark);
    font-weight: 800;
}

.accent-text-section {
    padding-block: calc(var(--section-space) * .9);
}

.accent-text-wrap {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 36px;
    align-items: center;
}

.accent-text-copy {
    position: relative;
    max-width: 860px;
    padding-left: 36px;
}

.accent-text-copy::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    border-radius: 999px;
    background: var(--eh-green);
    content: "";
}

.accent-text-copy::before {
    position: absolute;
    top: 44px;
    left: 0;
    z-index: 1;
    width: 5px;
    height: 70px;
    border-radius: 999px;
    background: var(--eh-red);
    content: "";
}

.accent-text-copy h2 {
    color: var(--eh-green-dark);
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.accent-text-ornament {
    height: 150px;
    border: 18px solid rgba(224, 195, 135, .45);
    border-left-color: transparent;
    border-radius: 999px;
    transform: rotate(-12deg);
}

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

.site-footer a {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-weight: 700;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 34px;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    font-size: .92rem;
    opacity: .88;
}

@media (max-width: 1024px) {
    .primary-nav {
        position: fixed;
        inset: 84px 0 auto 0;
        display: none;
        max-height: calc(100vh - 84px);
        overflow: auto;
        padding: 20px;
        border-bottom: 1px solid var(--border);
        background: var(--surface);
    }

    .primary-nav.is-open {
        display: grid;
    }

    .primary-nav ul,
    .primary-nav {
        align-items: stretch;
    }

    .primary-nav ul {
        display: grid;
        gap: 6px;
    }

    .dropdown-toggle {
        position: absolute;
        top: 0;
        right: 0;
        display: inline-flex;
        min-width: 44px;
        min-height: 44px;
        border: 0;
        background: transparent;
        color: var(--eh-green-dark);
        font-weight: 800;
    }

    .dropdown-menu {
        position: static;
        display: none;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
    }

    .has-dropdown.is-open .dropdown-menu {
        display: grid;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .header-cta {
        width: 100%;
    }

    .hero-grid,
    .accent-text-wrap {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .update-list,
    .material-grid,
    .choice-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    :root {
        --section-space: 52px;
    }

    body {
        font-size: 16px;
    }

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

    .header-inner {
        min-height: 76px;
    }

    .primary-nav {
        inset-top: 76px;
    }

    .hero-section {
        padding: 46px 0 58px;
    }

    .hero-grid,
    .card-grid,
    .update-list,
    .material-grid,
    .choice-grid,
    .footer-grid,
    .card-grid-cols-1,
    .card-grid-cols-2,
    .card-grid-cols-4 {
        grid-template-columns: 1fr;
    }

    .vertical-timeline-item {
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 18px;
    }

    .vertical-timeline-marker {
        width: 58px;
        height: 58px;
        font-size: 1.2rem;
    }

    .vertical-timeline-content {
        padding-left: 20px;
    }

    .map-illustration {
        min-height: 260px;
    }

    .map-illustration span {
        width: 112px;
    }
}

/* Final public design pass 2026-06-04 */
.site-header {
    background: rgba(255, 255, 255, .98);
    box-shadow: none;
}

.header-inner {
    min-height: 72px;
}

.brand,
.brand:hover {
    color: var(--eh-green-dark);
    text-decoration: none;
}

.brand-program {
    color: var(--eh-red);
    font-size: .67rem;
    letter-spacing: .08em;
}

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

.brand small {
    font-size: .76rem;
}

.nav-link {
    min-height: 40px;
    font-size: .9rem;
}

.nav-link:hover {
    background: rgba(209, 230, 202, .24);
}

.nav-link.is-active {
    background: transparent;
    box-shadow: inset 0 -3px 0 var(--eh-beige);
}

.section {
    padding-block: clamp(48px, 6vw, 78px);
}

.section-heading {
    max-width: 900px;
    margin: 0 0 28px;
}

.section-heading h2 {
    margin-bottom: 10px;
}

.section-heading p,
.rich-text p {
    margin: 0 0 .85em;
}

.section-heading p:last-child,
.rich-text p:last-child {
    margin-bottom: 0;
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(58px, 8vw, 94px) 0 clamp(64px, 8vw, 90px);
    background:
        linear-gradient(90deg, transparent 0 16%, rgba(224, 195, 135, .32) 16% 17.45%, transparent 17.45% 100%),
        radial-gradient(circle at 83% 18%, rgba(209, 230, 202, .7), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(243, 240, 234, .72)),
        var(--surface);
    border-bottom: 1px solid var(--border);
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
    gap: clamp(36px, 5vw, 70px);
    align-items: center;
}

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

.home-hero h1 {
    max-width: 740px;
    font-size: clamp(2.35rem, 4.6vw, 3.95rem);
    line-height: 1.06;
}

.home-hero .lead {
    max-width: 680px;
}

.page-hero {
    padding: clamp(44px, 6vw, 70px) 0 clamp(42px, 6vw, 62px);
    background:
        linear-gradient(90deg, transparent 0 17%, rgba(224, 195, 135, .18) 17% 18.25%, transparent 18.25%),
        var(--surface);
    border-bottom: 0;
}

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

.page-hero h1 {
    font-size: clamp(2rem, 3.2vw, 3rem);
}

.page-hero .hero-map {
    min-height: 230px;
}

.hero-map {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 395px;
    border-radius: 14px;
    background:
        radial-gradient(circle at 76% 20%, rgba(22, 153, 168, .11), transparent 28%),
        radial-gradient(circle at 20% 82%, rgba(166, 51, 62, .09), transparent 32%),
        rgba(255, 255, 255, .58);
}

.hero-image {
    width: min(100%, 500px);
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 16px 26px rgba(34, 34, 34, .08));
}

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

.status-pill {
    display: inline-flex;
    max-width: 100%;
    padding: 8px 14px;
    border: 1px solid rgba(124, 153, 57, .28);
    border-radius: 999px;
    background: rgba(209, 230, 202, .72);
    color: var(--eh-green-dark);
    font-size: .93rem;
    font-weight: 800;
}

.text-block-shell {
    max-width: var(--container);
}

.text-block-copy {
    max-width: 900px;
}

.accent-text-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(130px, 240px);
    gap: clamp(24px, 4vw, 44px);
    align-items: center;
}

.accent-text-copy {
    position: relative;
    max-width: 880px;
    padding-left: 34px;
}

.accent-text-copy::after,
.accent-text-copy::before {
    border-radius: 999px;
}

.accent-text-copy h2 {
    color: var(--eh-green-dark);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.09;
}

.card-grid {
    display: grid;
    gap: 20px;
}

.card-grid-cols-1 {
    grid-template-columns: minmax(0, 1fr);
}

.card-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid-cols-3,
.card-grid:not(.card-grid-cols-1):not(.card-grid-cols-2):not(.card-grid-cols-4) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.process-card,
.update-card,
.material-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(228, 221, 210, .95);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 10px 28px rgba(34, 34, 34, .055);
}

.process-card {
    min-height: 190px;
    padding: 34px 26px 26px;
}

.process-card::before {
    position: absolute;
    top: 26px;
    left: 26px;
    width: 52px;
    height: 7px;
    border-radius: 999px;
    background: var(--eh-green);
    content: "";
}

.process-card::after {
    position: absolute;
    right: -38px;
    bottom: -48px;
    width: 150px;
    height: 150px;
    border: 14px solid rgba(224, 195, 135, .36);
    border-radius: 999px;
    content: "";
}

.process-card h3 {
    margin-top: 42px;
}

.card-grid-outro {
    max-width: 860px;
    margin-top: 32px;
    padding-left: 26px;
}

.card-grid-outro::before {
    border-radius: 999px;
}

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

.phase-line li {
    position: relative;
    min-height: 86px;
    padding: 44px 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--muted);
    font-size: .9rem;
    font-weight: 800;
    text-align: center;
}

.phase-line li::before {
    position: absolute;
    top: 14px;
    left: 50%;
    width: 18px;
    height: 18px;
    border: 4px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    transform: translateX(-50%);
    content: "";
}

.phase-line .is-past {
    background: rgba(209, 230, 202, .46);
    color: var(--eh-green-dark);
}

.phase-line .is-past::before {
    border-color: var(--eh-green);
}

.phase-line .is-current {
    border-color: rgba(166, 51, 62, .3);
    background: var(--eh-red);
    color: #fff;
}

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

.vertical-timeline {
    position: relative;
    display: grid;
    gap: 26px;
    max-width: 980px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vertical-timeline::before {
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 32px;
    width: 8px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(124, 153, 57, .65), rgba(224, 195, 135, .7));
    content: "";
}

.vertical-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.vertical-timeline-marker {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border: 4px solid var(--eh-green);
    border-radius: 999px;
    background: var(--eh-green-light);
    color: var(--eh-green-dark);
    font-size: 1.12rem;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(34, 34, 34, .06);
}

.vertical-timeline-item.is-current .vertical-timeline-marker {
    border-color: var(--eh-red);
    background: var(--eh-red);
    color: #fff;
}

.vertical-timeline-item.is-future .vertical-timeline-marker {
    border-color: var(--border);
    background: var(--surface);
    color: var(--muted);
}

.vertical-timeline-content {
    position: relative;
    min-height: auto;
    padding: 2px 0 22px 24px;
}

.vertical-timeline-content::after {
    position: absolute;
    top: 2px;
    bottom: 18px;
    left: 0;
    width: 5px;
    border-radius: 999px;
    background: rgba(224, 195, 135, .62);
    content: "";
}

.vertical-timeline-content::before {
    position: absolute;
    top: 2px;
    left: 0;
    z-index: 1;
    width: 5px;
    height: 44px;
    border-radius: 999px;
    background: var(--eh-green);
    content: "";
}

.vertical-timeline-item.is-current .vertical-timeline-content::after {
    background: rgba(166, 51, 62, .27);
}

.vertical-timeline-item.is-current .vertical-timeline-content::before {
    background: var(--eh-red);
}

.vertical-timeline-kicker {
    display: inline-flex;
    min-height: 28px;
    margin: 0 0 16px;
    padding: 3px 13px;
    border-radius: 999px;
    background: rgba(209, 230, 202, .78);
    color: var(--eh-green-dark);
    font-size: .8rem;
    font-weight: 800;
}

.vertical-timeline-item.is-current .vertical-timeline-kicker {
    background: var(--eh-red);
    color: #fff;
}

.vertical-timeline h3 {
    margin-bottom: 8px;
    color: var(--eh-green-dark);
    font-size: clamp(1.38rem, 2.2vw, 2rem);
    line-height: 1.12;
}

.vertical-timeline .rich-text {
    max-width: 760px;
}

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

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

.choice-card,
.feedback-choice {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-content: center;
    align-items: center;
    column-gap: 18px;
    min-height: 128px;
    padding: 24px 24px 24px 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--eh-green-dark);
    text-align: left;
    box-shadow: 0 10px 24px rgba(34, 34, 34, .055);
    overflow: hidden;
    transition:
        border-color .62s ease,
        background-color .62s ease,
        box-shadow .62s ease,
        color .62s ease,
        transform .62s cubic-bezier(.2, .72, .22, 1);
}

.choice-card::after,
.feedback-choice::after {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(110deg, rgba(255, 255, 255, .12), transparent 42%),
        linear-gradient(90deg, rgba(224, 195, 135, .12), transparent 62%);
    opacity: 0;
    transform: translateX(-10%);
    transition:
        opacity .62s ease,
        transform .72s cubic-bezier(.2, .72, .22, 1);
    content: "";
    pointer-events: none;
}

.choice-card::before,
.feedback-choice::before {
    position: static;
    z-index: 1;
    grid-row: 1 / span 2;
    grid-column: 1;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: var(--eh-green-light);
    color: var(--eh-green-dark);
    font-weight: 800;
    content: attr(data-step);
    transition:
        background-color .62s ease,
        color .62s ease,
        transform .62s cubic-bezier(.2, .72, .22, 1);
}

.choice-card strong,
.feedback-choice strong {
    display: block;
    position: relative;
    z-index: 1;
    grid-column: 2;
    align-self: end;
    max-width: 19ch;
    font-size: 1.05rem;
    line-height: 1.3;
}

.feedback-choice span {
    display: block;
    position: relative;
    z-index: 1;
    grid-column: 2;
    align-self: start;
    margin-top: 8px;
    color: var(--muted);
    font-size: .92rem;
    font-weight: 600;
    line-height: 1.45;
}

.choice-card.is-active,
.feedback-choice.is-active {
    border-color: rgba(166, 51, 62, .4);
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .08), transparent 42%),
        var(--eh-red);
    color: #fff;
    transform: translateY(-2px);
}

.choice-card.is-active::after,
.feedback-choice.is-active::after {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.choice-card.is-active::before,
.feedback-choice.is-active::before {
    background: #fff;
    color: var(--eh-red);
}

.feedback-choice.is-active span {
    color: rgba(255, 255, 255, .86);
}

.has-card-lift-effect .feedback-choice:hover {
    border-color: rgba(166, 51, 62, .16);
    box-shadow: 0 12px 28px rgba(34, 34, 34, .065);
}

.has-card-lift-effect .feedback-choice:hover::before {
    transform: scale(1.035);
}

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

.feedback-form span {
    color: var(--muted);
    font-size: .9rem;
    font-weight: 600;
}

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

.update-card,
.material-card {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.update-card time {
    justify-self: start;
    margin-bottom: 2px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(166, 51, 62, .08);
    color: var(--eh-red);
    font-size: .88rem;
    font-weight: 800;
}

.material-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    font-size: .84rem;
    font-weight: 800;
    color: var(--muted);
}

.material-card-meta span:not(.pill),
.material-card-meta time {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--surface-soft);
}

.material-card .button {
    justify-self: start;
    margin-top: 6px;
}

.button.is-disabled {
    pointer-events: none;
    border-color: var(--border);
    background: var(--surface-soft);
    color: var(--muted);
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 24px;
}

.filter-chip {
    min-height: 42px;
    padding: 8px 13px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--eh-green-dark);
    font-weight: 800;
}

.filter-chip.is-active {
    border-color: var(--eh-green-dark);
    background: var(--eh-green-dark);
    color: #fff;
}

@media (max-width: 1024px) {
    .home-hero-grid,
    .page-hero-grid,
    .accent-text-wrap {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .card-grid-cols-3,
    .card-grid-cols-4,
    .update-list,
    .material-grid,
    .choice-grid,
    .feedback-choice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .phase-line {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .section {
        padding-block: 48px;
    }

    .home-hero {
        padding: 44px 0 56px;
    }

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

    .card-grid,
    .card-grid-cols-1,
    .card-grid-cols-2,
    .card-grid-cols-3,
    .card-grid-cols-4,
    .update-list,
    .material-grid,
    .choice-grid,
    .feedback-choice-grid,
    .phase-line {
        grid-template-columns: 1fr;
    }

    .phase-line li {
        min-height: 68px;
        padding: 18px 18px 18px 56px;
        text-align: left;
    }

    .phase-line li::before {
        top: 50%;
        left: 22px;
        transform: translateY(-50%);
    }

    .vertical-timeline::before {
        left: 23px;
        width: 6px;
    }

    .vertical-timeline-item {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 16px;
    }

    .vertical-timeline-marker {
        width: 48px;
        height: 48px;
        font-size: .98rem;
    }

    .vertical-timeline-content {
        padding-left: 18px;
    }

    .choice-card,
    .feedback-choice {
        grid-template-columns: 46px minmax(0, 1fr);
        column-gap: 14px;
        min-height: 98px;
        padding: 22px 18px;
    }

    .choice-card::before,
    .feedback-choice::before {
        width: 46px;
        height: 46px;
        font-size: .95rem;
    }

    .choice-card strong,
    .feedback-choice strong {
        max-width: none;
        font-size: 1rem;
    }

    .feedback-choice span {
        margin-top: 6px;
        font-size: .9rem;
    }
}

/* Visual refinement pass 2026-06-04 */
.nav-link {
    gap: 6px;
    border: 1px solid transparent;
    background: transparent;
}

button.nav-link {
    cursor: pointer;
    /*font: inherit;*/ /* Damit nix Fett, was nicht fett soll sein... */
}

.nav-link:hover,
.has-dropdown:focus-within > .nav-link {
    border-color: rgba(124, 153, 57, .18);
    background: rgba(209, 230, 202, .28);
    color: var(--eh-green-dark);
}

.nav-link.is-active {
    border-color: rgba(36, 88, 42, .18);
    background: rgba(209, 230, 202, .46);
    color: var(--eh-green-dark);
    box-shadow: none;
}

.dropdown-toggle {
    display: inline-flex;
}

.dropdown-toggle span {
    display: none;
}

.has-dropdown.is-open .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.hero-image-panel {
    min-height: 390px;
    border-radius: 0;
    background: transparent;
}

.hero-map.hero-image-panel {
    background: transparent;
}

.hero-image {
    width: min(112%, 560px);
    max-height: 430px;
    image-rendering: auto;
    filter: drop-shadow(0 18px 22px rgba(34, 34, 34, .07));
}

.page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(160px, 280px);
}

.page-hero-mark {
    position: relative;
    min-height: 190px;
}

.page-hero-mark::before {
    position: absolute;
    inset: 22px 22px 18px 44px;
    border: 18px solid rgba(224, 195, 135, .38);
    border-left-color: transparent;
    border-radius: 999px;
    transform: rotate(-13deg);
    content: "";
}

.page-hero-mark::after {
    position: absolute;
    right: 18px;
    bottom: 34px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--eh-red);
    box-shadow: -108px -78px 0 var(--eh-teal), -58px 16px 0 var(--eh-green);
    content: "";
}

.page-hero-mark i {
    position: absolute;
    display: block;
    width: 108px;
    height: 84px;
    border-radius: 8px;
    background: var(--eh-green);
    transform: rotate(-8deg);
}

.page-hero-mark i:nth-child(1) {
    top: 18px;
    left: 6px;
    background: var(--eh-green-dark);
}

.page-hero-mark i:nth-child(2) {
    top: 78px;
    right: 16px;
    background: var(--eh-green);
    transform: rotate(8deg);
}

.page-hero-mark i:nth-child(3) {
    bottom: 8px;
    left: 54px;
    background: var(--eh-beige);
    transform: rotate(-5deg);
}

.text-section {
    padding-block: clamp(34px, 4.5vw, 58px);
}

.text-block-shell,
.text-block-copy {
    max-width: var(--container);
}

.text-block-copy h2 {
    max-width: 860px;
    margin-bottom: 12px;
    color: var(--text);
    font-size: clamp(1.45rem, 2.1vw, 2.05rem);
    line-height: 1.18;
}

.text-block-copy .rich-text {
    max-width: 930px;
}

.plain-code-content {
    color: var(--text);
    font: inherit;
}

.plain-code-section {
    padding-block: clamp(22px, 3vw, 40px);
}

.plain-code-content > :first-child {
    margin-top: 0;
}

.plain-code-content > :last-child {
    margin-bottom: 0;
}

.plain-code-content img {
    display: block;
    max-width: 100%;
    height: auto;
}

.plain-code-content .plain-stack {
    display: grid;
    gap: clamp(14px, 2vw, 24px);
}

.plain-code-content .plain-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 24px);
}

.plain-code-content .plain-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.plain-code-content .plain-card {
    padding: clamp(18px, 2.6vw, 30px);
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 10px 28px rgba(34, 34, 34, .06);
}

.plain-code-content .plain-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.plain-code-content .text-center {
    text-align: center;
}

@media (max-width: 760px) {
    .plain-code-section {
        padding-block: 18px;
    }

    .plain-code-content .plain-grid,
    .plain-code-content .plain-grid-2,
    .plain-code-content .plain-grid-4 {
        grid-template-columns: 1fr;
    }
}

.accent-text-section {
    padding-block: clamp(44px, 5vw, 66px);
}

.accent-text-copy h2 {
    font-size: clamp(1.95rem, 3.1vw, 2.75rem);
}

.accordion-panel {
    display: grid;
    grid-template-rows: 0fr;
}

.accordion-panel > .rich-text {
    min-height: 0;
    overflow: hidden;
    padding: 0 20px;
}

.accordion-panel > .rich-text p {
    padding: 0;
}

.accordion-button[aria-expanded="true"] + .accordion-panel > .rich-text {
    padding-bottom: 18px;
}

.accordion-link {
    margin-top: 12px;
}

.accordion-link a {
    color: var(--eh-green-dark);
    font-weight: 700;
    text-decoration-color: var(--eh-beige);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    transition: color .2s ease, text-decoration-color .2s ease;
}

.accordion-link a:hover,
.accordion-link a:focus-visible {
    color: var(--eh-red);
    text-decoration-color: currentColor;
}

.accordion-button[aria-expanded="true"] + .accordion-panel {
    grid-template-rows: 1fr;
}

.materials-section {
    background:
        linear-gradient(90deg, transparent 0 18%, rgba(224, 195, 135, .18) 18% 19.2%, transparent 19.2%),
        rgba(243, 240, 234, .7);
}

.materials-section .container {
    position: relative;
}

.material-grid {
    align-items: stretch;
}

.material-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-content: flex-start;
    gap: 14px;
    padding: 24px;
    border-color: rgba(224, 195, 135, .85);
    background:
        radial-gradient(circle at 100% 100%, rgba(224, 195, 135, .22), transparent 34%),
        var(--surface);
}

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

.material-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--eh-green), var(--eh-beige));
    content: "";
}

.material-card-meta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 10px;
    align-items: start;
}

.material-card-meta .pill {
    justify-self: start;
    border-radius: 0;
    background: transparent;
    color: var(--eh-green-dark);
    padding: 0;
    font-size: .78rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.material-card-meta span:not(.pill) {
    border: 1px solid rgba(36, 88, 42, .12);
    background: rgba(209, 230, 202, .42);
    color: var(--eh-green-dark);
}

.material-card-meta time {
    grid-column: 1 / -1;
    justify-self: start;
    padding: 0;
    background: transparent;
    color: var(--muted);
}

.material-card h3 {
    margin-top: 2px;
}

.download-button,
.material-card .button {
    width: min(100%, 190px);
    min-height: 38px;
    margin-top: auto;
    padding: 7px 12px;
    justify-content: center;
    border-color: rgba(36, 88, 42, .18);
    background: rgba(209, 230, 202, .46);
    color: var(--eh-green-dark);
}

.updates-section {
    background: var(--bg);
}

.update-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.update-card {
    padding: 0 0 22px 28px;
    border: 0;
    border-left: 5px solid var(--eh-beige);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition:
        box-shadow .42s ease,
        transform .42s ease;
}

.update-card time {
    margin-bottom: 8px;
    padding: 0;
    background: transparent;
    color: var(--eh-red);
}

.update-card h3 {
    font-size: clamp(1.25rem, 2vw, 1.7rem);
}

@media (max-width: 1024px) {
    .page-hero-grid {
        grid-template-columns: 1fr;
    }

    .page-hero-mark {
        display: none;
    }

    .dropdown-toggle {
        position: static;
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 640px) {
    .hero-image-panel {
        min-height: 260px;
    }

    .hero-image {
        width: min(100%, 430px);
    }

    .update-list {
        grid-template-columns: 1fr;
    }
}

/* Requested formatting pass 2026-06-04 */
:root {
    --bg-warm: #FAF8F4;
    --bg-soft: #F3F0EA;
    --bg-white: #FFFFFF;
    --accent-fill: #24582A;
    --type-hero-home: clamp(2.55rem, 5vw, 4.25rem);
    --type-hero-page: clamp(2.05rem, 3.6vw, 3.25rem);
    --type-accent: clamp(2rem, 3.3vw, 2.95rem);
    --type-section: clamp(1.75rem, 2.7vw, 2.45rem);
    --type-text: clamp(1.35rem, 2vw, 1.9rem);
    --type-card: clamp(1.05rem, 1.35vw, 1.28rem);
}

.site-header {
    background: rgba(255, 255, 255, .98);
}

.header-inner {
    min-height: 78px;
}

.primary-nav {
    gap: 16px;
}

.primary-nav ul {
    gap: 6px;
}

.nav-link {
    min-height: 42px;
    padding: 8px 11px;
    border-radius: 6px;
    border-color: transparent;
    background: transparent;
    color: var(--text);
    font-size: .92rem;
    font-weight: 800;
}

.nav-link:hover,
.has-dropdown:focus-within > .nav-link {
    background: var(--surface-soft);
    border-color: transparent;
}

.nav-link.is-active {
    background: var(--eh-green-light);
    border-color: transparent;
    color: var(--eh-green-dark);
    box-shadow: none;
}

.dropdown-menu {
    top: calc(100% + 10px);
    padding: 10px;
    border-radius: 8px;
}

.dropdown-menu a {
    padding: 10px 12px;
}

.home-hero {
    padding: clamp(48px, 6.8vw, 78px) 0 clamp(52px, 6.8vw, 78px);
}

.home-hero h1 {
    font-size: var(--type-hero-home);
}

.home-hero-grid {
    grid-template-columns: minmax(0, .95fr) minmax(390px, 570px);
    gap: clamp(28px, 4vw, 56px);
}

.hero-image-panel {
    min-height: 430px;
    margin-right: clamp(-24px, -3vw, -8px);
}

.hero-image {
    width: min(118%, 620px);
    max-height: 470px;
}

.page-hero h1 {
    font-size: var(--type-hero-page);
}

.page-hero-mark {
    min-height: 230px;
    margin-right: -18px;
}

.page-hero-mark::before {
    inset: 24px 12px 16px 30px;
    border-width: 22px;
}

.page-hero-mark i {
    box-shadow: 0 10px 22px rgba(34, 34, 34, .08);
}

.page-hero-mark i:nth-child(1) {
    width: 132px;
    height: 98px;
}

.page-hero-mark i:nth-child(2) {
    width: 126px;
    height: 94px;
}

.page-hero-mark i:nth-child(3) {
    width: 116px;
    height: 86px;
}

.home-hero::before,
.page-hero::before,
.text-card::before {
    width: 10px;
    border-radius: 999px;
}

.home-hero::before,
.page-hero::before {
    content: none;
    display: none;
}

.home-hero > *,
.page-hero > * {
    position: relative;
    z-index: 1;
}

.section-heading h2 {
    font-size: var(--type-section);
}

.accent-text-copy h2 {
    font-size: var(--type-accent);
}

.accent-text-copy > .button {
    margin-top: 1.35rem;
}

.vertical-timeline h3 {
    font-size: clamp(1.3rem, 2vw, 1.9rem);
}

.process-card h3,
.update-card h3,
.material-card h3 {
    font-size: var(--type-card);
}

.text-section {
    background: var(--bg-warm);
}

.text-block-copy {
    position: static;
    padding-left: 0;
}

.text-block-copy::before,
.text-block-copy::after {
    display: none !important;
    content: none !important;
}

.text-block-copy h2 {
    font-size: var(--type-text);
}

.accent-text-section.accent-green {
    --accent-local: var(--eh-green-dark);
    --accent-local-soft: var(--eh-green-light);
}

.accent-text-section.accent-red {
    --accent-local: var(--eh-red);
    --accent-local-soft: rgba(166, 51, 62, .12);
}

.accent-text-section.accent-teal {
    --accent-local: var(--eh-teal);
    --accent-local-soft: rgba(22, 153, 168, .14);
}

.accent-text-section.accent-beige {
    --accent-local: #B8892F;
    --accent-local-soft: rgba(224, 195, 135, .38);
}

.accent-text-copy::after,
.accent-text-copy::before {
    width: 10px;
    background: var(--accent-local, var(--eh-green));
}

.accent-text-copy::before {
    background: var(--eh-red);
}

.accent-text-ornament {
    height: 205px;
    margin-right: -34px;
    border-width: 24px;
    border-color: var(--accent-local-soft, rgba(224, 195, 135, .45));
    border-left-color: transparent;
}

.accent-text-ornament::before,
.accent-text-ornament::after {
    position: absolute;
    border-radius: 8px;
    content: "";
}

.accent-text-ornament::before {
    right: 22px;
    top: -24px;
    width: 96px;
    height: 74px;
    background: var(--accent-local, var(--eh-green));
    transform: rotate(8deg);
}

.accent-text-ornament::after {
    left: 16px;
    bottom: -20px;
    width: 72px;
    height: 56px;
    background: var(--eh-beige);
    transform: rotate(-10deg);
}

.accent-text-section.has-accent-background {
    background: var(--accent-local, var(--eh-green-dark));
    color: #fff;
}

.accent-text-section.has-accent-background .eyebrow,
.accent-text-section.has-accent-background h2,
.accent-text-section.has-accent-background .rich-text,
.accent-text-section.has-accent-background p {
    color: #fff;
}

.accent-text-section.has-accent-background .button.secondary {
    border-color: rgba(255,255,255,.72);
    background: #fff;
    color: var(--accent-local, var(--eh-green-dark));
}

.accent-text-section.has-accent-background .accent-text-copy::after {
    background: rgba(255,255,255,.8);
}

.accent-text-section.has-accent-background .accent-text-copy::before {
    background: var(--eh-beige);
}

.process-ornament {
    --ornament-a: var(--eh-green);
    --ornament-b: var(--eh-beige);
    --ornament-c: var(--eh-red);
    --ornament-d: var(--eh-teal);
    position: relative;
    isolation: isolate;
    overflow: visible;
}

.process-ornament.has-image {
    display: grid;
    place-items: center;
}

.process-ornament.has-image .hero-image {
    position: relative;
    z-index: 2;
}

.process-ornament span {
    position: absolute;
    display: block;
    border-radius: 8px;
}

.process-ornament span:nth-of-type(1) {
    width: 52%;
    height: 58%;
    right: 8%;
    top: 12%;
    border: 20px solid var(--ornament-b);
    border-left-color: transparent;
    border-radius: 999px;
    opacity: .78;
    transform: rotate(-13deg);
}

.process-ornament span:nth-of-type(2) {
    width: 42%;
    height: 32%;
    left: 8%;
    top: 2%;
    background: var(--ornament-a);
    box-shadow: 0 16px 30px rgba(36, 88, 42, .1);
    transform: rotate(7deg);
}

.process-ornament span:nth-of-type(3) {
    width: 28%;
    height: 24%;
    right: -2%;
    bottom: 10%;
    background: var(--ornament-c);
    transform: rotate(-8deg);
}

.process-ornament span:nth-of-type(4) {
    width: 16%;
    height: 72%;
    left: 42%;
    top: 11%;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--ornament-a), var(--ornament-b));
    opacity: .7;
}

.process-ornament span:nth-of-type(5) {
    width: 24%;
    height: 18%;
    left: 24%;
    bottom: 2%;
    background: var(--ornament-d);
    transform: rotate(13deg);
}

.ornament-v2 {
    --ornament-a: var(--eh-red);
    --ornament-b: rgba(224, 195, 135, .64);
    --ornament-c: var(--eh-green-dark);
    --ornament-d: var(--eh-green);
}

.ornament-v2 span:nth-of-type(1) {
    right: 18%;
    top: 8%;
    width: 46%;
    height: 70%;
    transform: rotate(16deg);
}

.ornament-v2 span:nth-of-type(2) {
    left: 2%;
    top: 22%;
    width: 36%;
    height: 30%;
}

.ornament-v3 {
    --ornament-a: var(--eh-teal);
    --ornament-b: rgba(209, 230, 202, .82);
    --ornament-c: var(--eh-red);
    --ornament-d: #B8892F;
}

.ornament-v3 span:nth-of-type(1) {
    width: 62%;
    height: 42%;
    right: 4%;
    top: 28%;
    transform: rotate(-5deg);
}

.ornament-v3 span:nth-of-type(4) {
    left: 16%;
    top: 0;
    height: 86%;
}

.ornament-v4 {
    --ornament-a: var(--eh-green-dark);
    --ornament-b: rgba(224, 195, 135, .72);
    --ornament-c: var(--eh-teal);
    --ornament-d: var(--eh-red);
}

.ornament-v4 span:nth-of-type(2) {
    left: 18%;
    top: 12%;
    width: 44%;
    height: 44%;
    border-radius: 999px;
}

.ornament-v4 span:nth-of-type(3) {
    right: 10%;
    bottom: 2%;
    border-radius: 999px 999px 8px 999px;
}

.ornament-v5 {
    --ornament-a: #B8892F;
    --ornament-b: rgba(209, 230, 202, .76);
    --ornament-c: var(--eh-green-dark);
    --ornament-d: var(--eh-red);
}

.ornament-v5 span:nth-of-type(1) {
    width: 44%;
    height: 44%;
    left: 20%;
    top: 10%;
    border-left-color: var(--ornament-b);
}

.ornament-v5 span:nth-of-type(5) {
    left: 52%;
    bottom: 8%;
    width: 30%;
}

.ornament-v6 {
    --ornament-a: var(--eh-green);
    --ornament-b: rgba(224, 195, 135, .68);
    --ornament-c: var(--eh-teal);
    --ornament-d: var(--eh-red);
}

.ornament-v6 span:nth-of-type(1) {
    width: 58%;
    height: 58%;
    right: 16%;
    top: 18%;
    transform: rotate(35deg);
}

.ornament-v6 span:nth-of-type(2) {
    left: 0;
    top: 4%;
    width: 34%;
    height: 58%;
}

.hero-image-panel.process-ornament {
    min-height: 340px;
}

.home-start-illustration {
    display: grid;
    place-items: center;
    min-height: 430px;
    margin-right: clamp(-84px, -5vw, -28px);
    overflow: visible;
}

.home-start-illustration .hero-image {
    width: min(122%, 620px);
    max-height: none;
    filter: drop-shadow(0 22px 34px rgba(36, 88, 42, .12));
    transform: rotate(-1.5deg);
}

.hero-image-panel.process-ornament.has-image span {
    z-index: 1;
}

.page-hero-mark.process-ornament,
.accent-text-ornament.process-ornament {
    min-height: 220px;
    border: 0;
    transform: none;
}

.page-hero-mark.process-ornament i,
.accent-text-ornament.process-ornament::before,
.accent-text-ornament.process-ornament::after {
    display: none;
}

.home-hero .process-ornament span:nth-of-type(2),
.home-hero .process-ornament span:nth-of-type(3),
.home-hero .process-ornament span:nth-of-type(5) {
    border-radius: 10px;
}

.home-hero .process-ornament span:nth-of-type(1) {
    border-width: 24px;
}

.accent-text-section.has-accent-background .process-ornament {
    --ornament-a: #FFFFFF;
    --ornament-b: rgba(255,255,255,.28);
    --ornament-c: var(--eh-beige);
    --ornament-d: var(--eh-green-light);
}

.accent-text-section.has-accent-background.accent-beige .process-ornament {
    --ornament-a: var(--eh-green-dark);
    --ornament-b: rgba(36, 88, 42, .2);
    --ornament-c: var(--eh-red);
    --ornament-d: var(--eh-teal);
}

.scroll-path-effect {
    position: fixed;
    top: -6500px;
    right: clamp(6px, 1.4vw, 22px);
    z-index: 90;
    width: clamp(72px, 7.4vw, 108px);
    height: 44000px;
    pointer-events: none;
    opacity: .64;
    transform: translate3d(0, var(--scroll-path-offset, 0), 0);
    will-change: transform;
}

.scroll-path-effect svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.scroll-path-line {
    fill: none;
    stroke: #b32738;
    stroke-width: 5.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.scroll-path-shadow {
    fill: none;
    stroke: rgba(179, 39, 56, .13);
    stroke-width: 16;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.scroll-path-point {
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 999px;
    background: #b32738;
    box-shadow: 0 0 0 4px rgba(179, 39, 56, .11), 0 8px 20px rgba(143, 38, 51, .18);
    transform: translate(50%, -50%);
}

.scroll-path-point::after {
    position: absolute;
    inset: -9px;
    border: 2.5px solid #b32738;
    border-radius: 999px;
    opacity: .62;
    content: "";
    transform: rotate(var(--point-tilt, -12deg)) scaleX(1.08);
}

.scroll-path-point.point-one {
    top: 5.4%;
    right: 71%;
    --point-tilt: 18deg;
}

.scroll-path-point.point-two {
    top: 14.2%;
    right: 49%;
    --point-tilt: -20deg;
}

.scroll-path-point.point-three {
    top: 25.2%;
    right: 14%;
    --point-tilt: 8deg;
}

.scroll-path-point.point-four {
    top: 36.5%;
    right: 76%;
    --point-tilt: -16deg;
}

.scroll-path-point.point-five {
    top: 48.8%;
    right: 26%;
    --point-tilt: 22deg;
}

.scroll-path-point.point-six {
    top: 61.2%;
    right: 67%;
    --point-tilt: -8deg;
}

.scroll-path-point.point-seven {
    top: 73.8%;
    right: 19%;
    --point-tilt: 14deg;
}

.scroll-path-point.point-eight {
    top: 87%;
    right: 72%;
    --point-tilt: -24deg;
}

.scroll-path-point.point-nine {
    top: 94%;
    right: 15%;
    --point-tilt: 10deg;
}

.scroll-path-point.point-ten {
    top: 9.8%;
    right: 18%;
    --point-tilt: -18deg;
}

.scroll-path-point.point-eleven {
    top: 67.4%;
    right: 96%;
    --point-tilt: 20deg;
}

.scroll-path-point.point-twelve {
    top: 79.8%;
    right: 2%;
    --point-tilt: -10deg;
}

.has-reveal-effect.effects-ready .home-hero,
.has-reveal-effect.effects-ready .page-hero,
.has-reveal-effect.effects-ready .section,
.has-reveal-effect.effects-ready .process-card,
.has-reveal-effect.effects-ready .update-card,
.has-reveal-effect.effects-ready .material-card,
.has-reveal-effect.effects-ready .feedback-choice {
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(.985);
    transition:
        opacity .72s ease,
        transform .72s cubic-bezier(.2, .74, .2, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.has-reveal-effect.effects-ready .home-hero.is-visible,
.has-reveal-effect.effects-ready .page-hero.is-visible,
.has-reveal-effect.effects-ready .section.is-visible,
.has-reveal-effect.effects-ready .process-card.is-visible,
.has-reveal-effect.effects-ready .update-card.is-visible,
.has-reveal-effect.effects-ready .material-card.is-visible,
.has-reveal-effect.effects-ready .feedback-choice.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.has-card-lift-effect .process-card,
.has-card-lift-effect .material-card,
.has-card-lift-effect .update-card,
.has-card-lift-effect .feedback-choice {
    position: relative;
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
    transform-style: preserve-3d;
    transition:
        box-shadow .68s ease,
        border-color .68s ease,
        transform .62s cubic-bezier(.2, .72, .22, 1),
        background-color .68s ease;
    will-change: transform;
}

.has-card-lift-effect .material-card::after {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
    background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 28%), rgba(255, 255, 255, .16), transparent 38%);
    opacity: 0;
    transition: opacity .72s ease;
    content: "";
}

.has-card-lift-effect .process-card:hover,
.has-card-lift-effect .material-card:hover,
.has-card-lift-effect .update-card:hover,
.has-card-lift-effect .feedback-choice:hover {
    border-color: rgba(166, 51, 62, .1);
    box-shadow: 0 12px 32px rgba(34, 34, 34, .075);
}

.has-card-lift-effect .material-card:hover::after {
    opacity: .16;
}

.has-card-lift-effect .process-card > *,
.has-card-lift-effect .material-card > *,
.has-card-lift-effect .update-card > *,
.has-card-lift-effect .feedback-choice > * {
    position: relative;
    z-index: 1;
}

.has-magnetic-buttons-effect .button,
.has-magnetic-buttons-effect button.primary,
.has-magnetic-buttons-effect button.secondary,
.has-magnetic-buttons-effect .header-cta {
    transform:
        translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0)
        rotate(var(--magnet-rot, 0deg))
        scale(var(--magnet-scale, 1));
    transition:
        transform .42s cubic-bezier(.2, 1.25, .24, 1),
        box-shadow .34s ease,
        background-color .34s ease,
        color .34s ease;
    will-change: transform;
}

.has-magnetic-buttons-effect .button:hover,
.has-magnetic-buttons-effect button.primary:hover,
.has-magnetic-buttons-effect button.secondary:hover,
.has-magnetic-buttons-effect .header-cta:hover {
    box-shadow: 0 12px 28px rgba(143, 38, 51, .13);
}

.has-hero-motion-effect .home-hero .hero-map,
.has-hero-motion-effect .home-hero .process-ornament,
.has-hero-motion-effect .page-hero .process-ornament,
.has-hero-motion-effect .accent-text-ornament {
    animation: ornament-float 7.5s ease-in-out infinite;
    transform: translate3d(0, var(--hero-drift, 0), 0) rotate(var(--hero-spin, 0deg));
    transform-origin: center;
    will-change: transform;
}

.has-hero-motion-effect .home-hero .process-ornament span,
.has-hero-motion-effect .accent-text-ornament span {
    animation: ornament-card-pulse 4.8s ease-in-out infinite;
    animation-delay: calc(var(--i, 1) * -.32s);
}

.has-hero-motion-effect .home-hero .hero-map {
    animation-duration: 8.8s;
    animation-delay: -.6s;
}

.has-hero-motion-effect .page-hero .process-ornament {
    animation-duration: 9.4s;
    animation-delay: -1.7s;
}

.has-hero-motion-effect .accent-text-section:nth-of-type(odd) .accent-text-ornament {
    animation-duration: 7.1s;
    animation-delay: -2.2s;
}

.has-hero-motion-effect .accent-text-section:nth-of-type(even) .accent-text-ornament {
    animation-duration: 8.2s;
    animation-delay: -.9s;
    animation-direction: alternate-reverse;
}

.has-lively-accent-effect .home-hero,
.has-lively-accent-effect .page-hero,
.has-lively-accent-effect .accent-text-section,
.has-lively-accent-effect .cards-section,
.has-lively-accent-effect .form-section {
    position: relative;
    overflow: hidden;
}

.has-lively-accent-effect .home-hero::after,
.has-lively-accent-effect .page-hero::after,
.has-lively-accent-effect .accent-text-section::after,
.has-lively-accent-effect .cards-section::after,
.has-lively-accent-effect .form-section::after {
    position: absolute;
    inset: auto -18% -38% auto;
    z-index: 0;
    width: min(460px, 55vw);
    aspect-ratio: 1;
    pointer-events: none;
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(22, 153, 168, .16), transparent 58%),
        radial-gradient(circle at 70% 30%, rgba(166, 51, 62, .12), transparent 42%),
        radial-gradient(circle at 30% 70%, rgba(124, 153, 57, .16), transparent 48%);
    filter: blur(10px);
    opacity: .7;
    animation: accent-light-drift 11s ease-in-out infinite alternate;
    content: "";
}

.has-lively-accent-effect .home-hero > *,
.has-lively-accent-effect .page-hero > *,
.has-lively-accent-effect .accent-text-section > *,
.has-lively-accent-effect .cards-section > *,
.has-lively-accent-effect .form-section > * {
    position: relative;
    z-index: 1;
}

.has-hero-blast-effect .home-hero-grid,
.has-hero-blast-effect .page-hero-grid {
    position: relative;
}

.has-hero-blast-effect .home-hero-grid::before,
.has-hero-blast-effect .page-hero-grid::before {
    position: absolute;
    inset: -12% -8% -16% auto;
    z-index: 0;
    width: min(420px, 36vw);
    pointer-events: none;
    border-right: 7px solid rgba(166, 51, 62, .76);
    border-radius: 58% 42% 64% 36% / 42% 62% 38% 58%;
    filter: drop-shadow(0 0 18px rgba(166, 51, 62, .24));
    opacity: .74;
    transform: rotate(6deg);
    animation: hero-red-arc 5.8s ease-in-out infinite alternate;
    content: "";
    display: none; /*Häslichen strich will ich nicht atmenden kreis aber schon...*/
}

.has-hero-blast-effect .home-hero-grid::after,
.has-hero-blast-effect .page-hero-grid::after {
    position: absolute;
    right: -8%;
    bottom: 10%;
    rotate: -20deg;
    z-index: 0;
    width: 120px;
    height: 15px;
    pointer-events: none;
    border-radius: 999px;
    background: var(--eh-red);
    box-shadow:
        0 0 0 10px rgba(166, 51, 62, .12),
        0 0 0 22px rgba(166, 51, 62, .055),
        0 0 36px rgba(166, 51, 62, .38);
    animation: hero-node-pop 3.4s ease-in-out infinite;
    content: "";
}

.has-hero-blast-effect .home-hero-grid > *,
.has-hero-blast-effect .page-hero-grid > * {
    position: relative;
    z-index: 1;
}

.spectacle-tiles {
    position: fixed;
    inset: 0;
    z-index: 80;
    pointer-events: none;
    overflow: hidden;
}

.spectacle-tiles span {
    position: absolute;
    width: clamp(58px, 7vw, 112px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .44), rgba(255, 255, 255, .08)),
        var(--tile-color, rgba(124, 153, 57, .5));
    box-shadow: 0 24px 70px rgba(34, 34, 34, .13);
    opacity: .38;
    transform: translate3d(0, 110vh, 0) rotate(var(--tile-rot, -12deg));
    animation: spectacle-tile-rise var(--tile-speed, 20s) linear infinite;
}

.spectacle-tiles span:nth-child(1) { left: 6vw; --tile-color: rgba(124, 153, 57, .52); --tile-rot: -13deg; --tile-speed: 22s; animation-delay: -18s; }
.spectacle-tiles span:nth-child(2) { left: 21vw; --tile-color: rgba(224, 195, 135, .55); --tile-rot: 9deg; --tile-speed: 27s; animation-delay: -8s; }
.spectacle-tiles span:nth-child(3) { left: 42vw; --tile-color: rgba(22, 153, 168, .42); --tile-rot: -6deg; --tile-speed: 24s; animation-delay: -15s; }
.spectacle-tiles span:nth-child(4) { left: 61vw; --tile-color: rgba(166, 51, 62, .42); --tile-rot: 14deg; --tile-speed: 29s; animation-delay: -4s; }
.spectacle-tiles span:nth-child(5) { left: 78vw; --tile-color: rgba(36, 88, 42, .46); --tile-rot: -18deg; --tile-speed: 25s; animation-delay: -22s; }
.spectacle-tiles span:nth-child(6) { left: 88vw; --tile-color: rgba(224, 195, 135, .46); --tile-rot: 7deg; --tile-speed: 31s; animation-delay: -12s; }
.spectacle-tiles span:nth-child(7) { left: 33vw; --tile-color: rgba(209, 230, 202, .54); --tile-rot: 18deg; --tile-speed: 34s; animation-delay: -27s; }

.has-section-wave-effect .section {
    position: relative;
    overflow: hidden;
}

.has-section-wave-effect .section > .container::after {
    position: absolute;
    top: 8%;
    right: -22%;
    left: -22%;
    z-index: 0;
    height: 120px;
    pointer-events: none;
    border-radius: 999px;
    background:
        linear-gradient(90deg, transparent, rgba(22, 153, 168, .16), rgba(166, 51, 62, .1), transparent);
    filter: blur(2px);
    opacity: 0;
    transform: translateX(-22%) rotate(-3deg);
    animation: section-wave-sweep 8.5s ease-in-out infinite;
    content: "";
}

.has-section-wave-effect .section:nth-of-type(2n) > .container::after {
    animation-delay: -3.8s;
    rotate: 4deg;
}

.has-section-wave-effect .section > .container {
    position: relative;
    z-index: 1;
}

.has-section-wave-effect .section > .container > * {
    position: relative;
    z-index: 1;
}

.has-timeline-beacon-effect .vertical-timeline-marker,
.has-timeline-beacon-effect .phase-line span {
    position: relative;
    isolation: isolate;
    animation: beacon-breathe 2.8s ease-in-out infinite;
}

.has-timeline-beacon-effect .vertical-timeline-marker::after,
.has-timeline-beacon-effect .phase-line span::after {
    position: absolute;
    inset: -10px;
    z-index: -1;
    border: 2px solid rgba(166, 51, 62, .36);
    border-radius: inherit;
    opacity: 0;
    animation: beacon-ring 2.8s ease-out infinite;
    content: "";
}

.has-timeline-beacon-effect .vertical-timeline-item.is-current .vertical-timeline-marker::after,
.has-timeline-beacon-effect .phase-line .is-current span::after {
    border-color: rgba(166, 51, 62, .58);
}

.cursor-spark {
    position: fixed;
    z-index: 1200;
    pointer-events: none;
    border-radius: 4px 999px 999px 999px;
    background: var(--spark-color);
    box-shadow: 0 0 18px color-mix(in srgb, var(--spark-color), transparent 52%);
    transform: translate(-50%, -50%);
    animation: cursor-spark-fly .9s cubic-bezier(.16, .84, .28, 1) forwards;
}

.scroll-ribbon {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1500;
    width: 100%;
    height: 6px;
    pointer-events: none;
    background: rgba(224, 195, 135, .18);
}

.scroll-ribbon span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background:
        linear-gradient(90deg, var(--eh-red), var(--eh-teal), var(--eh-green), var(--eh-beige), var(--eh-red));
    background-size: 220% 100%;
    box-shadow: 0 0 18px rgba(166, 51, 62, .24);
    animation: ribbon-color-run 5s linear infinite;
}

.cursor-spotlight {
    position: fixed;
    inset: 0;
    z-index: 70;
    pointer-events: none;
    opacity: .72;
    background:
        radial-gradient(circle 260px at var(--spotlight-x, 72vw) var(--spotlight-y, 24vh), rgba(255, 255, 255, .46), rgba(224, 195, 135, .12) 35%, transparent 68%);
    mix-blend-mode: soft-light;
    transition: opacity .32s ease;
}

.has-headline-marker-effect h1,
.has-headline-marker-effect h2,
.has-headline-marker-effect h3,
.has-headline-marker-effect .section-heading h2 {
    position: relative;
    width: fit-content;
    max-width: 100%;
}

.has-headline-marker-effect h1::after,
.has-headline-marker-effect h2::after,
.has-headline-marker-effect h3::after,
.has-headline-marker-effect .section-heading h2::after {
    position: absolute;
    right: -.14em;
    bottom: .02em;
    left: -.08em;
    z-index: -1;
    height: .28em;
    border-radius: 999px 30% 999px 45%;
    background:
        linear-gradient(90deg, rgba(224, 195, 135, .58), rgba(209, 230, 202, .54), rgba(166, 51, 62, .18));
    opacity: 0;
    transform: scaleX(0) skewX(-12deg);
    transform-origin: left center;
    transition:
        opacity .68s ease,
        transform .9s cubic-bezier(.16, .84, .28, 1);
    content: "";
}

.has-headline-marker-effect .marker-is-drawn::after {
    opacity: .9;
    transform: scaleX(1) skewX(-12deg);
}

.has-form-focus-aura-effect input,
.has-form-focus-aura-effect textarea,
.has-form-focus-aura-effect select {
    transition:
        border-color .28s ease,
        box-shadow .28s ease,
        background-color .28s ease,
        transform .28s ease;
}

.has-form-focus-aura-effect input:focus,
.has-form-focus-aura-effect textarea:focus,
.has-form-focus-aura-effect select:focus {
    border-color: rgba(22, 153, 168, .58);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(209, 230, 202, .24));
    box-shadow:
        0 0 0 4px rgba(22, 153, 168, .12),
        0 16px 38px rgba(22, 153, 168, .13);
    transform: translateY(-1px);
}

.has-card-shuffle-effect .card-grid > *,
.has-card-shuffle-effect .update-list > *,
.has-card-shuffle-effect .material-grid > * {
    transform:
        translate3d(var(--shuffle-x, 0), var(--shuffle-y, 0), 0)
        rotate(var(--shuffle-rot, 0deg));
    transition:
        transform .7s cubic-bezier(.2, .74, .2, 1),
        box-shadow .36s ease;
    will-change: transform;
}

.has-custom-cursor-effect {
    cursor: none !important;
}

.has-custom-cursor-effect *,
.has-custom-cursor-effect *::before,
.has-custom-cursor-effect *::after {
    cursor: none !important;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1800;
    width: 28px;
    height: 28px;
    pointer-events: none;
    border: 2px solid rgba(166, 51, 62, .82);
    border-radius: 999px;
    box-shadow:
        0 0 0 5px rgba(166, 51, 62, .07),
        0 8px 26px rgba(143, 38, 51, .14);
    transform: translate(calc(var(--cursor-x, -100px) - 50%), calc(var(--cursor-y, -100px) - 50%));
    transition:
        width .18s ease,
        height .18s ease,
        border-radius .18s ease,
        border-color .18s ease,
        background-color .18s ease,
        box-shadow .18s ease;
}

.custom-cursor span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--eh-red);
    transform: translate(-50%, -50%);
}

.custom-cursor.is-interactive {
    width: 48px;
    height: 48px;
    border-color: rgba(22, 153, 168, .86);
    background: rgba(22, 153, 168, .08);
    box-shadow:
        0 0 0 7px rgba(22, 153, 168, .08),
        0 14px 34px rgba(22, 153, 168, .16);
}

.custom-cursor.is-input {
    width: 18px;
    height: 44px;
    border-radius: 999px;
    border-color: rgba(36, 88, 42, .86);
    background: rgba(209, 230, 202, .16);
}

.custom-cursor.is-pressed {
    width: 22px;
    height: 22px;
    border-color: rgba(166, 51, 62, .95);
    background: rgba(166, 51, 62, .12);
    box-shadow:
        0 0 0 3px rgba(166, 51, 62, .1),
        0 8px 22px rgba(143, 38, 51, .12);
}

@keyframes ornament-float {
    0%, 100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -14px;
    }
}

@keyframes ornament-card-pulse {
    0%, 100% {
        filter: saturate(1);
    }

    50% {
        filter: saturate(1.18) brightness(1.03);
    }
}

@keyframes ribbon-color-run {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 220% 0;
    }
}

@keyframes hero-red-arc {
    0% {
        clip-path: inset(0 0 36% 0);
        transform: translate3d(0, 8px, 0) rotate(4deg) scaleX(.94);
    }

    100% {
        clip-path: inset(18% 0 0 0);
        transform: translate3d(-16px, -12px, 0) rotate(8deg) scaleX(1.08);
    }
}

@keyframes hero-node-pop {
    0%, 100% {
        transform: scale(.86);
        opacity: .72;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes spectacle-tile-rise {
    0% {
        transform: translate3d(0, 112vh, 0) rotate(var(--tile-rot)) scale(.86);
    }

    45% {
        opacity: .42;
    }

    100% {
        transform: translate3d(0, -28vh, 0) rotate(calc(var(--tile-rot) * -1)) scale(1.12);
        opacity: 0;
    }
}

@keyframes section-wave-sweep {
    0%, 16% {
        opacity: 0;
        transform: translateX(-32%) rotate(-3deg) scaleX(.72);
    }

    40%, 58% {
        opacity: .95;
    }

    100% {
        opacity: 0;
        transform: translateX(34%) rotate(2deg) scaleX(1.15);
    }
}

@keyframes beacon-breathe {
    0%, 100% {
        filter: saturate(1);
    }

    50% {
        filter: saturate(1.22) brightness(1.06);
    }
}

@keyframes beacon-ring {
    0% {
        opacity: .46;
        transform: scale(.72);
    }

    100% {
        opacity: 0;
        transform: scale(1.55);
    }
}

@keyframes cursor-spark-fly {
    0% {
        opacity: .95;
        transform: translate(-50%, -50%) scale(.7) rotate(0deg);
    }

    100% {
        opacity: 0;
        transform: translate(calc(-50% + var(--spark-x)), calc(-50% + var(--spark-y))) scale(.1) rotate(var(--spark-rot));
    }
}

@keyframes accent-light-drift {
    0% {
        transform: translate3d(0, 0, 0) scale(.92);
    }

    100% {
        transform: translate3d(-28%, -16%, 0) scale(1.18);
    }
}

@media (prefers-reduced-motion: reduce) {
    .has-reveal-effect.effects-ready .home-hero,
    .has-reveal-effect.effects-ready .page-hero,
    .has-reveal-effect.effects-ready .section,
    .has-reveal-effect.effects-ready .process-card,
    .has-reveal-effect.effects-ready .update-card,
    .has-reveal-effect.effects-ready .material-card,
    .has-reveal-effect.effects-ready .feedback-choice,
    .has-card-lift-effect .process-card,
    .has-card-lift-effect .material-card,
    .has-card-lift-effect .update-card,
    .has-card-lift-effect .feedback-choice,
    .has-magnetic-buttons-effect .button,
    .has-magnetic-buttons-effect button.primary,
    .has-magnetic-buttons-effect button.secondary,
    .has-magnetic-buttons-effect .header-cta,
    .has-hero-motion-effect .home-hero .hero-map,
    .has-hero-motion-effect .home-hero .process-ornament,
    .has-hero-motion-effect .page-hero .process-ornament,
    .has-hero-motion-effect .accent-text-ornament {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .has-lively-accent-effect .home-hero::after,
    .has-lively-accent-effect .page-hero::after,
    .has-lively-accent-effect .accent-text-section::after,
    .has-lively-accent-effect .cards-section::after,
    .has-lively-accent-effect .form-section::after {
        animation: none;
    }

    .has-hero-blast-effect .home-hero-grid::before,
    .has-hero-blast-effect .page-hero-grid::before,
    .has-hero-blast-effect .home-hero-grid::after,
    .has-hero-blast-effect .page-hero-grid::after,
    .has-section-wave-effect .section > .container::after,
    .has-timeline-beacon-effect .vertical-timeline-marker,
    .has-timeline-beacon-effect .phase-line span,
    .has-timeline-beacon-effect .vertical-timeline-marker::after,
    .has-timeline-beacon-effect .phase-line span::after,
    .has-headline-marker-effect h1::after,
    .has-headline-marker-effect h2::after,
    .has-headline-marker-effect h3::after,
    .has-headline-marker-effect .section-heading h2::after {
        animation: none;
    }

    .spectacle-tiles,
    .cursor-spark,
    .scroll-ribbon,
    .cursor-spotlight,
    .custom-cursor {
        display: none;
    }

    .has-custom-cursor-effect,
    .has-custom-cursor-effect a,
    .has-custom-cursor-effect button,
    .has-custom-cursor-effect input,
    .has-custom-cursor-effect textarea,
    .has-custom-cursor-effect select,
    .has-custom-cursor-effect summary,
    .has-custom-cursor-effect .feedback-choice {
        cursor: auto;
    }
}

@media (max-width: 760px) {
    .spectacle-tiles,
    .has-hero-blast-effect .home-hero-grid::before,
    .has-hero-blast-effect .page-hero-grid::before,
    .has-hero-blast-effect .home-hero-grid::after,
    .has-hero-blast-effect .page-hero-grid::after,
    .has-section-wave-effect .section > .container::after {
        display: none;
    }

    .cursor-spotlight,
    .custom-cursor {
        display: none;
    }

    .has-custom-cursor-effect,
    .has-custom-cursor-effect a,
    .has-custom-cursor-effect button,
    .has-custom-cursor-effect input,
    .has-custom-cursor-effect textarea,
    .has-custom-cursor-effect select,
    .has-custom-cursor-effect summary,
    .has-custom-cursor-effect .feedback-choice {
        cursor: auto;
    }
}

.process-card {
    background:
        linear-gradient(90deg, rgba(224,195,135,.32) 0 10px, transparent 10px),
        radial-gradient(circle at 104% 108%, rgba(224, 195, 135, .22), transparent 38%),
        var(--surface);
}

.process-card::before {
    left: 24px;
    width: 52px;
    height: 8px;
}

.update-card {
    position: relative;
    border-left: 0;
    border-radius: 0;
}

.update-card::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 8px;
    border-radius: 999px;
    background: var(--eh-beige);
    content: "";
    transition:
        background-color .78s ease,
        box-shadow .78s ease,
        opacity .78s ease;
}

.has-card-lift-effect .update-card-link:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-soft);
    transform: none;
}

.has-card-lift-effect .update-card-link:hover::before {
    background: var(--eh-beige);
    box-shadow: none;
}

@media (max-width: 1024px) {
    .home-hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-image-panel {
        margin-right: 0;
    }
}

@media (max-width: 640px) {
    .home-hero {
        padding-block: 42px 54px;
    }

    .hero-image-panel {
        min-height: 310px;
    }

    .hero-image {
        width: min(108%, 460px);
    }
}

/* Mobile experience pass 2026-06-04 */
@media (max-width: 820px) {
    :root {
        --section-space: 46px;
    }

    .scroll-path-effect {
        display: none;
    }

    body {
        font-size: 16px;
        line-height: 1.62;
    }

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

    .site-header {
        backdrop-filter: blur(10px);
    }

    .header-inner {
        min-height: 66px;
        gap: 12px;
    }

    .brand {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 58px);
        overflow-wrap: anywhere;
    }

    .brand-program {
        font-size: .58rem;
        letter-spacing: .07em;
    }

    .brand strong {
        font-size: .92rem;
        line-height: 1.05;
    }

    .brand small {
        font-size: .68rem;
        line-height: 1.12;
    }

    .menu-toggle {
        display: inline-flex;
        flex: 0 0 auto;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 46px;
        min-height: 44px;
        padding: 0;
        border-radius: 8px;
        border-color: var(--border);
        background: var(--surface);
        color: var(--eh-green-dark);
        font-weight: 800;
    }

    .primary-nav {
        position: fixed;
        top: 76px;
        left: 14px;
        right: 14px;
        display: none;
        max-height: calc(100dvh - 90px);
        overflow-y: auto;
        align-items: stretch;
        gap: 12px;
        padding: 14px;
        border: 1px solid var(--border);
        border-radius: 10px;
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 18px 42px rgba(34, 34, 34, .14);
    }

    .primary-nav.is-open {
        display: flex;
        flex-direction: column;
    }

    .primary-nav ul {
        display: grid;
        gap: 6px;
        width: 100%;
    }

    .nav-item,
    .nav-link,
    .dropdown-toggle {
        width: 100%;
    }

    .nav-link,
    button.nav-link {
        justify-content: space-between;
        min-height: 46px;
        padding: 10px 12px;
        border-radius: 8px;
        background: var(--surface-soft);
        box-shadow: none;
        color: var(--text);
    }

    .nav-link.is-active {
        background: var(--eh-green-light);
        box-shadow: inset 4px 0 0 var(--eh-green);
    }

    .dropdown-toggle {
        display: inline-flex;
    }

    .dropdown-menu {
        position: static;
        display: none;
        min-width: 0;
        margin: 6px 0 4px;
        padding: 6px;
        visibility: visible;
        opacity: 1;
        transform: none;
        border-radius: 8px;
        box-shadow: none;
        background: var(--surface-soft);
    }

    .has-dropdown.is-open .dropdown-menu {
        display: grid;
    }

    .dropdown-menu a {
        min-height: 42px;
        padding: 9px 10px;
        border-radius: 7px;
    }

    .header-cta {
        width: 100%;
    }

    .home-hero,
    .page-hero {
        padding-block: 34px 42px;
        background:
            radial-gradient(circle at 92% 8%, rgba(209, 230, 202, .55), transparent 28%),
            linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(243, 240, 234, .72)),
            var(--surface);
    }

    .home-hero-grid,
    .page-hero-grid,
    .hero-grid,
    .accent-text-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .home-hero h1 {
        max-width: 100%;
        font-size: clamp(2.05rem, 11vw, 2.9rem);
        line-height: 1.02;
    }

    .page-hero h1,
    h1 {
        max-width: 100%;
        font-size: clamp(1.9rem, 9vw, 2.45rem);
        line-height: 1.07;
    }

    h2,
    .section-heading h2,
    .accent-text-copy h2 {
        font-size: clamp(1.45rem, 7vw, 2rem);
        line-height: 1.16;
    }

    h3,
    .process-card h3,
    .update-card h3,
    .material-card h3 {
        font-size: clamp(1.05rem, 5vw, 1.24rem);
    }

    .lead {
        font-size: 1rem;
    }

    .button-row,
    .feedback-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .button,
    button.button {
        width: 100%;
        min-height: 48px;
        padding: 12px 16px;
    }

    .status-pill {
        width: 100%;
        padding: 11px 14px;
        font-size: .94rem;
        line-height: 1.35;
        text-align: left;
    }

    .hero-image-panel,
    .page-hero-mark,
    .hero-visual,
    .map-illustration {
        min-height: 210px;
        margin: 0;
    }

    .home-start-illustration {
        min-height: 260px;
        margin: 6px -18px 0;
    }

    .home-start-illustration .hero-image {
        width: min(112%, 420px);
        transform: rotate(-1deg);
    }

    .hero-image {
        width: min(100%, 360px);
        max-height: 270px;
    }

    .page-hero-mark {
        transform: scale(.86);
        transform-origin: center;
    }

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

    .section-heading {
        margin-bottom: 22px;
    }

    .text-block-shell,
    .cards-section > .container,
    .materials-section .container {
        padding: 0;
    }

    .card-grid,
    .card-grid-cols-1,
    .card-grid-cols-2,
    .card-grid-cols-3,
    .card-grid-cols-4,
    .update-list,
    .material-grid,
    .choice-grid,
    .feedback-choice-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cards-section .card-grid,
    .cards-section .card-grid.card-grid-cols-1,
    .cards-section .card-grid.card-grid-cols-2,
    .cards-section .card-grid.card-grid-cols-3,
    .cards-section .card-grid.card-grid-cols-4,
    .form-selector-section .feedback-choice-grid,
    .materials-section .material-grid,
    .updates-section .update-list {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .process-card,
    .update-card,
    .material-card,
    .accordion-item,
    .feedback-choice,
    .feedback-form {
        border-radius: 8px;
    }

    .process-card,
    .update-card,
    .material-card {
        padding: 22px 20px;
    }

    .process-card::before {
        left: 20px;
        width: 46px;
    }

    .card-grid-outro {
        margin-top: 18px;
        padding: 0 0 0 18px;
        border-left: 5px solid var(--eh-beige);
        font-size: 1rem;
    }

    .card-grid-outro::before {
        display: none;
    }

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

    .phase-line li {
        min-width: 0;
        grid-template-columns: 38px minmax(0, 1fr);
        align-items: start;
        padding: 12px;
    }

    .phase-line li::before {
        width: 28px;
        height: 28px;
        font-size: .9rem;
    }

    .vertical-timeline {
        display: grid;
        gap: 18px;
        padding-left: 0;
    }

    .vertical-timeline::before {
        display: none;
    }

    .vertical-timeline-item {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 14px;
        min-height: 0;
    }

    .vertical-timeline-marker {
        width: 46px;
        height: 46px;
        border-width: 4px;
        font-size: 1rem;
        box-shadow: 0 8px 18px rgba(34, 34, 34, .08);
    }

    .vertical-timeline-content {
        min-width: 0;
        padding-left: 14px;
    }

    .vertical-timeline-content::after {
        width: 5px;
    }

    .vertical-timeline-content::before {
        width: 5px;
        height: 54px;
    }

    .vertical-timeline-kicker {
        max-width: 100%;
        padding: 5px 10px;
        font-size: .74rem;
        white-space: normal;
    }

    .vertical-timeline h3 {
        font-size: clamp(1.28rem, 7vw, 1.72rem);
    }

    .accent-text-copy {
        padding-left: 18px;
    }

    .accent-text-copy::after,
    .accent-text-copy::before {
        width: 6px;
    }

    .accent-text-ornament {
        height: 150px;
        margin: 4px 0 0;
        opacity: .85;
    }

    .accent-text-ornament.process-ornament,
    .page-hero-mark.process-ornament {
        min-height: 170px;
    }

    .feedback-choice {
        min-height: 0;
        padding: 20px;
    }

    .feedback-form input,
    .feedback-form textarea,
    .feedback-form select {
        min-height: 48px;
        width: 100%;
    }

    .site-footer {
        padding-top: 34px;
    }

    .footer-grid {
        gap: 24px;
    }
}

@media (max-width: 1320px) {
    .scroll-path-effect {
        display: none;
    }
}

@media (max-width: 430px) {
    .container {
        width: min(100% - 22px, var(--container));
    }

    .brand-program {
        display: block;
        font-size: .5rem;
        line-height: 1.1;
        letter-spacing: .055em;
    }

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

    .brand small {
        font-size: .61rem;
        line-height: 1.12;
    }

    .home-hero,
    .page-hero {
        padding-block: 28px 36px;
    }

    .home-hero h1 {
        font-size: clamp(1.95rem, 12vw, 2.55rem);
    }

    .page-hero h1,
    h1 {
        font-size: clamp(1.72rem, 10vw, 2.22rem);
    }

    .eyebrow {
        font-size: .72rem;
        letter-spacing: .07em;
    }

    .hero-image-panel,
    .page-hero-mark,
    .hero-visual,
    .map-illustration {
        min-height: 170px;
    }

    .home-start-illustration {
        min-height: 230px;
        margin-inline: -12px;
    }

    .hero-image {
        max-height: 220px;
    }

    .process-card,
    .update-card,
    .material-card,
    .feedback-form {
        padding: 20px 16px;
    }

    .vertical-timeline-item {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 12px;
    }

    .vertical-timeline-marker {
        width: 40px;
        height: 40px;
        font-size: .9rem;
    }

    .vertical-timeline-content {
        padding-left: 12px;
    }
}

/* Public responsive refinement 2026-06-12 */
:root {
    --section-space: clamp(48px, 5.4vw, 68px);
}

html,
body {
    max-width: 100%;
}

main,
main > section,
.container,
.home-hero-grid,
.page-hero-grid,
.accent-text-wrap,
.card-grid,
.update-list,
.material-grid,
.feedback-choice-grid,
.footer-grid {
    min-width: 0;
}


.has-scroll-ribbon-effect {
    top: 0;
    margin-top: 0;
}

.scroll-ribbon {
    height: 4px;
    pointer-events: none;
}

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

.text-section {
    padding-block: clamp(34px, 4.2vw, 54px);
}

.accent-text-section {
    padding-block: clamp(42px, 4.8vw, 62px);
}

.section-heading {
    margin-bottom: clamp(22px, 3vw, 32px);
}

.rich-text,
.rich-text p,
.section-heading,
.lead,
.process-card,
.update-card,
.material-card,
.feedback-choice,
.feedback-form,
.site-footer {
    overflow-wrap: anywhere;
}

.feedback-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.form-required-note {
    margin: -2px 0 4px;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 600;
}

.field-label-text {
    display: inline;
}

.field-required {
    color: var(--eh-red);
    font-size: 1em;
    font-weight: 800;
}

.field-optional {
    color: var(--muted);
    font-size: .88em;
    font-weight: 600;
}

.feedback-form [aria-invalid="true"] {
    border-color: var(--eh-red);
    box-shadow: 0 0 0 3px rgba(166, 51, 62, .12);
}

.form-status:not(:empty) {
    margin: 2px 0 0;
    padding: 10px 12px;
    border-left: 4px solid var(--eh-red);
    border-radius: 4px;
    background: rgba(166, 51, 62, .07);
    color: var(--eh-red-dark);
    font-weight: 700;
}

.not-found-section {
    display: grid;
    min-height: calc(100svh - 320px);
    padding-block: clamp(64px, 10vw, 130px);
    place-items: center;
    background:
        radial-gradient(circle at 78% 22%, rgba(209, 230, 202, .58), transparent 28%),
        linear-gradient(135deg, var(--surface), var(--bg));
}

.not-found-content {
    position: relative;
    max-width: 760px;
}

.not-found-content::after {
    position: absolute;
    top: 12%;
    right: 4%;
    width: clamp(80px, 14vw, 150px);
    aspect-ratio: 1;
    border: clamp(12px, 2vw, 22px) solid rgba(224, 195, 135, .45);
    border-left-color: transparent;
    border-radius: 999px;
    content: "";
    pointer-events: none;
    transform: rotate(-14deg);
}

.not-found-content > * {
    position: relative;
    z-index: 1;
}

.article-detail {
    background: var(--bg);
}

.article-detail-header {
    position: relative;
    overflow: hidden;
    padding-block: clamp(42px, 5vw, 68px) clamp(36px, 4vw, 54px);
    background:
        radial-gradient(circle at 88% 16%, rgba(209, 230, 202, .72), transparent 28%),
        linear-gradient(90deg, transparent 0 17%, rgba(224, 195, 135, .22) 17% 18.2%, transparent 18.2%),
        var(--surface);
    border-bottom: 1px solid var(--border);
}

.article-detail-header::after {
    position: absolute;
    right: clamp(-70px, -3vw, -24px);
    bottom: clamp(-92px, -5vw, -42px);
    width: clamp(210px, 25vw, 380px);
    aspect-ratio: 1.1;
    border: clamp(24px, 3vw, 44px) solid rgba(224, 195, 135, .36);
    border-left-color: transparent;
    border-radius: 48% 52% 44% 56%;
    content: "";
    pointer-events: none;
    transform: rotate(-12deg);
}

.article-detail-header-inner,
.article-detail-content {
    width: min(100%, 880px);
}

.article-detail-header-inner {
    position: relative;
    z-index: 1;
}

.article-back-link {
    display: inline-flex;
    margin-bottom: clamp(18px, 2vw, 26px);
    color: var(--eh-green-dark);
    font-size: .92rem;
    font-weight: 800;
    text-decoration: none;
}

.article-back-link:hover,
.article-back-link:focus-visible {
    color: var(--eh-red);
}

.article-detail-header time {
    display: block;
    width: fit-content;
    margin-bottom: 10px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(166, 51, 62, .09);
    color: var(--eh-red-dark);
    font-size: .9rem;
    font-weight: 800;
}

.article-detail-header h1 {
    max-width: 19ch;
    margin-bottom: 16px;
    font-size: clamp(2.05rem, 4.4vw, 3.75rem);
    line-height: 1.06;
}

.article-detail-lead {
    max-width: 760px;
    color: var(--muted);
    font-size: clamp(1.04rem, 1.4vw, 1.2rem);
    line-height: 1.58;
}

.article-detail-body {
    padding-block: clamp(32px, 4vw, 52px);
}

.article-detail-content {
    font-size: clamp(1.02rem, 1.25vw, 1.13rem);
    line-height: 1.78;
}

.article-detail-content .rich-text p + p {
    margin-top: 1.2em;
}

.article-detail-return {
    display: flex;
    width: fit-content;
    margin: clamp(28px, 3.5vw, 40px) auto 0;
}

@media (min-width: 821px) {
    .accent-text-ornament,
    .accent-text-ornament.process-ornament {
        top: clamp(22px, 2.4vw, 36px);
    }

    .accent-text-ornament.process-ornament.ornament-v6 {
        top: clamp(52px, 5vw, 68px);
    }
}

@media (max-width: 1280px) {
    .home-start-illustration {
        margin-right: 0;
        overflow: hidden;
    }

    .accent-text-ornament,
    .accent-text-ornament.process-ornament {
        max-width: 100%;
        margin-right: 0;
        overflow: hidden;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .menu-toggle {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 46px;
        padding: 0;
    }

    .primary-nav {
        top: 80px;
    }

    .card-grid:not(.card-grid-cols-1),
    .card-grid-cols-2,
    .card-grid-cols-3,
    .card-grid-cols-4,
    .update-list,
    .material-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

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

    .page-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
    }

    .page-hero-mark,
    .page-hero-mark.process-ornament {
        min-height: 200px;
        margin-right: 0;
    }

    .accent-text-wrap {
        grid-template-columns: minmax(0, 1fr) minmax(150px, 210px);
    }

    .accent-text-ornament.process-ornament {
        min-height: 180px;
        margin-right: 0;
    }
}

@media (max-width: 820px) {
    :root {
        --section-space: clamp(36px, 7vw, 46px);
    }

    .site-header,
    .has-scroll-ribbon-effect .site-header {
        top: 0;
        margin-top: 0;
    }

    .primary-nav {
        top: 72px;
        right: 12px;
        left: 12px;
        max-height: calc(100dvh - 84px);
    }

    .home-hero {
        padding-block: clamp(30px, 7vw, 42px) clamp(38px, 8vw, 52px);
    }

    .page-hero {
        position: relative;
        overflow: hidden;
        padding-block: clamp(30px, 7vw, 42px);
    }

    .page-hero-grid {
        position: relative;
        display: block;
    }

    .page-hero-copy {
        position: relative;
        z-index: 2;
        max-width: 680px;
    }

    .page-hero-mark,
    .page-hero-mark.process-ornament,
    .page-hero .hero-image-panel {
        position: absolute;
        right: -44px;
        bottom: -54px;
        width: 180px;
        min-height: 150px;
        margin: 0;
        opacity: .16;
        pointer-events: none;
        transform: rotate(5deg);
    }

    .page-hero .hero-image {
        max-height: 150px;
    }

    .accent-text-wrap {
        position: relative;
        display: block;
        overflow: hidden;
        min-height: 0;
    }

    .accent-text-copy {
        position: relative;
        z-index: 2;
        padding-right: 4px;
    }

    .accent-text-ornament,
    .accent-text-ornament.process-ornament {
        position: absolute;
        right: -48px;
        bottom: -38px;
        width: 160px;
        height: 130px;
        min-height: 130px;
        margin: 0;
        opacity: .16;
        pointer-events: none;
    }

    .text-section {
        padding-block: clamp(28px, 6vw, 38px);
    }

    .accent-text-section {
        padding-block: clamp(34px, 7vw, 44px);
    }

    .cards-section,
    .timeline-section,
    .vertical-timeline-section,
    .accordion-section,
    .updates-section,
    .materials-section,
    .form-section {
        padding-block: clamp(36px, 7vw, 46px);
    }

    .section-heading {
        margin-bottom: 20px;
    }

    .process-card,
    .update-card,
    .material-card {
        min-height: 0;
    }

    .filter-tabs {
        gap: 8px;
    }

    .filter-chip {
        min-width: 0;
        max-width: 100%;
        min-height: 44px;
        white-space: normal;
    }

    .accordion-button {
        gap: 16px;
        min-height: 54px;
        padding: 14px 16px;
    }

    .accordion-button > span {
        flex: 0 0 auto;
    }

    .accordion-panel > .rich-text {
        padding-inline: 16px;
    }

    .feedback-panels,
    .feedback-form {
        width: 100%;
        max-width: none;
    }

    .feedback-form {
        padding: clamp(18px, 5vw, 24px);
    }

    .site-footer {
        padding-top: 34px;
    }

    .footer-grid {
        gap: 24px;
    }

    .has-mobile-editorial-effect.has-reveal-effect.effects-ready .section {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .has-mobile-editorial-effect.has-reveal-effect.effects-ready .mobile-reveal-item {
        opacity: .32;
        transform: translate3d(0, 10px, 0);
        transition:
            opacity .38s ease,
            transform .46s cubic-bezier(.2, .74, .2, 1);
        transition-delay: var(--reveal-delay, 0ms);
    }

    .has-mobile-editorial-effect.has-reveal-effect.effects-ready .mobile-reveal-item.is-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .has-mobile-editorial-effect main > .section {
        position: relative;
        isolation: isolate;
    }

    .has-mobile-editorial-effect main > .text-section:nth-of-type(even) {
        background: var(--surface);
    }

    .has-mobile-editorial-effect .text-section .text-block-copy {
        padding: 2px 2px 0;
    }

    .has-mobile-editorial-effect .text-section .rich-text p {
        line-height: 1.72;
    }

    .has-mobile-editorial-effect .text-section .rich-text p + p {
        margin-top: 1.25rem;
    }

    .has-mobile-editorial-effect .text-section .rich-text p:first-child {
        font-size: 1.025rem;
    }

    .has-mobile-editorial-effect .accent-text-section {
        overflow: hidden;
        box-shadow:
            inset 0 1px 0 rgba(228, 221, 210, .72),
            inset 0 -1px 0 rgba(228, 221, 210, .72);
    }

    .has-mobile-editorial-effect.has-lively-accent-effect .accent-text-section::after {
        display: none;
    }

    .has-mobile-editorial-effect .accent-text-wrap {
        overflow: visible;
    }

    .has-mobile-editorial-effect .accent-text-copy {
        padding-left: 20px;
    }

    .has-mobile-editorial-effect .accent-text-copy::after,
    .has-mobile-editorial-effect .accent-text-copy::before {
        width: 7px;
    }

    .has-mobile-editorial-effect .accent-text-ornament,
    .has-mobile-editorial-effect .accent-text-ornament.process-ornament {
        right: -76px;
        bottom: -58px;
        width: clamp(230px, 70vw, 300px);
        height: clamp(190px, 58vw, 250px);
        min-height: clamp(190px, 58vw, 250px);
        opacity: .22;
    }

    .article-detail-header {
        padding-block: 30px 34px;
    }

    .article-detail-header::after {
        right: -82px;
        bottom: -92px;
        width: 240px;
        opacity: .7;
    }

    .article-back-link {
        margin-bottom: 18px;
    }

    .article-detail-header h1 {
        margin-bottom: 13px;
        font-size: clamp(1.85rem, 8.5vw, 2.45rem);
    }

    .article-detail-lead {
        font-size: 1rem;
        line-height: 1.55;
    }

    .article-detail-body {
        padding-block: 28px 38px;
    }

    .article-detail-return {
        margin-top: 26px;
    }
}

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

    .header-inner {
        min-height: 70px;
    }

    .primary-nav {
        top: 72px;
    }

    .home-hero h1 {
        font-size: clamp(2rem, 11.5vw, 2.65rem);
    }

    .page-hero h1 {
        font-size: clamp(1.78rem, 9.5vw, 2.3rem);
    }

    .home-start-illustration {
        min-height: clamp(210px, 72vw, 280px);
        margin: 8px -8px -8px;
    }

    .home-start-illustration .hero-image {
        width: min(108%, 420px);
    }

    .card-grid,
    .card-grid-cols-1,
    .card-grid-cols-2,
    .card-grid-cols-3,
    .card-grid-cols-4,
    .update-list,
    .material-grid,
    .feedback-choice-grid,
    .footer-grid {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .phase-line {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
        overflow: visible;
    }

    .phase-line li {
        min-height: 62px;
        padding: 18px 16px 18px 54px;
        text-align: left;
    }

    .phase-line li::before {
        top: 50%;
        left: 24px;
        transform: translate(-50%, -50%);
    }

    .vertical-timeline {
        gap: 16px;
    }

    .vertical-timeline-item {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
    }

    .vertical-timeline-marker {
        width: 40px;
        height: 40px;
        border-width: 3px;
        font-size: .9rem;
    }

    .vertical-timeline-content {
        padding: 0 0 16px 12px;
    }

    .vertical-timeline-content::after,
    .vertical-timeline-content::before {
        width: 4px;
    }

    .vertical-timeline-kicker {
        margin-bottom: 10px;
    }

    .button-row {
        margin-top: 22px;
    }

    .button,
    button.button,
    .header-cta {
        min-height: 48px;
    }

    .feedback-choice {
        min-height: 104px;
    }

    .feedback-form textarea {
        min-height: 120px;
    }

    .not-found-section {
        min-height: calc(100svh - 350px);
        padding-block: 64px;
    }

    .not-found-content::after {
        opacity: .45;
    }

    .has-mobile-card-carousel-effect .cards-section .card-grid,
    .has-mobile-card-carousel-effect .updates-section .update-list,
    .has-mobile-card-carousel-effect .materials-preview-section .material-grid {
        display: flex !important;
        gap: 14px;
        margin-inline: -12px;
        padding: 4px 12px 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-padding-inline: 12px;
        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
    }

    .has-mobile-card-carousel-effect .cards-section .card-grid::-webkit-scrollbar,
    .has-mobile-card-carousel-effect .updates-section .update-list::-webkit-scrollbar,
    .has-mobile-card-carousel-effect .materials-preview-section .material-grid::-webkit-scrollbar {
        display: none;
    }

    .has-mobile-card-carousel-effect .cards-section .card-grid > *,
    .has-mobile-card-carousel-effect .updates-section .update-list > *,
    .has-mobile-card-carousel-effect .materials-preview-section .material-grid > * {
        flex: 0 0 min(82vw, 330px);
        min-width: 0;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .has-mobile-card-carousel-effect .cards-section .card-grid > :first-child,
    .has-mobile-card-carousel-effect .updates-section .update-list > :first-child,
    .has-mobile-card-carousel-effect .materials-preview-section .material-grid > :first-child {
        scroll-snap-align: start;
    }

    .has-mobile-card-carousel-effect .cards-section .card-grid > :last-child,
    .has-mobile-card-carousel-effect .updates-section .update-list > :last-child,
    .has-mobile-card-carousel-effect .materials-preview-section .material-grid > :last-child {
        scroll-snap-align: end;
    }
}

@media (max-width: 390px) {
    .container {
        width: min(100% - 20px, var(--container));
    }

    .brand-program {
        font-size: .49rem;
    }

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

    .brand small {
        font-size: .6rem;
    }

    .menu-toggle {
        width: 44px;
    }

    .home-hero h1 {
        font-size: clamp(1.9rem, 11.5vw, 2.4rem);
    }

    .feedback-choice {
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 12px;
        padding: 18px 14px;
    }

    .feedback-choice::before {
        width: 42px;
        height: 42px;
    }

    .feedback-choice strong {
        font-size: .98rem;
    }
}

@media (hover: none), (pointer: coarse) {
    .scroll-path-effect,
    .cursor-spotlight,
    .custom-cursor,
    .cursor-spark,
    .spectacle-tiles {
        display: none !important;
    }

    .has-custom-cursor-effect,
    .has-custom-cursor-effect * {
        cursor: auto !important;
    }

    .has-card-lift-effect .process-card,
    .has-card-lift-effect .material-card,
    .has-card-lift-effect .update-card,
    .has-card-lift-effect .feedback-choice,
    .has-magnetic-buttons-effect .button,
    .has-magnetic-buttons-effect button,
    .has-card-shuffle-effect .card-grid > *,
    .has-card-shuffle-effect .update-list > *,
    .has-card-shuffle-effect .material-grid > * {
        transform: none !important;
    }

    .has-hero-motion-effect .hero-map,
    .has-hero-motion-effect .process-ornament {
        animation: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
