/* =====================================================================
   nodeframe.de — dunkles Theme
   ===================================================================== */

:root {
    --nf-bg: #0b0d10;
    --nf-bg-2: #0f1216;
    --nf-surface: #14181e;
    --nf-surface-2: #1a1f27;
    --nf-border: #262d38;
    --nf-border-soft: #1e242d;
    --nf-text: #e8ebf0;
    --nf-text-dim: #b6becb;
    --nf-muted: #7b8494;
    --nf-accent: #4fd1a5;
    --nf-accent-strong: #3bbf92;
    --nf-accent-2: #8aa2ff;
    --nf-danger: #ff6b6b;
    --nf-radius: 12px;
    --nf-radius-sm: 8px;
    --nf-mono: ui-monospace, "SFMono-Regular", "JetBrains Mono", "Fira Code", Menlo, Consolas, monospace;
    --nf-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --nf-maxw: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--nf-sans);
    background: var(--nf-bg);
    color: var(--nf-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 44px 44px;
    background-position: -1px -1px;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; }

::selection { background: var(--nf-accent); color: #05221a; }

.container {
    max-width: var(--nf-maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.mono {
    font-family: var(--nf-mono);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--nf-accent);
}

/* ---- Buttons ---- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--nf-radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--nf-sans);
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--nf-accent); color: #04231b; }
.btn--primary:hover { background: var(--nf-accent-strong); }

.btn--ghost { border-color: var(--nf-border); color: var(--nf-text); background: transparent; }
.btn--ghost:hover { border-color: var(--nf-accent); color: var(--nf-accent); }

.btn--dark { background: var(--nf-surface-2); color: var(--nf-text); border-color: var(--nf-border); }
.btn--dark:hover { background: #232935; }

.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 8px 13px; font-size: 0.75rem; }

.btn .icon { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ---- Header ---- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 13, 16, 0.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--nf-border-soft);
}

.site-header__inner {
    max-width: var(--nf-maxw);
    margin: 0 auto;
    padding: 15px 24px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
    font-family: var(--nf-mono);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--nf-text);
    margin-right: auto;
    letter-spacing: -0.01em;
}

.brand__bracket { color: var(--nf-accent); }
.brand__node { color: var(--nf-muted); }
.brand__frame { color: var(--nf-text); font-weight: 700; }

.main-nav { display: flex; gap: 1.6rem; }

.main-nav a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nf-text-dim);
    padding: 4px 0;
    position: relative;
    transition: color 0.2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: -3px;
    height: 2px;
    background: var(--nf-accent);
    transition: right 0.2s ease;
}

.main-nav a:hover { color: var(--nf-text); }
.main-nav a:hover::after,
.main-nav a.is-active::after { right: 0; }
.main-nav a.is-active { color: var(--nf-text); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius-sm);
    cursor: pointer;
}

.hamburger span { display: block; width: 18px; height: 2px; background: var(--nf-text); border-radius: 2px; }

/* ---- Offcanvas ---- */

.offcanvas-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 5, 7, 0.7);
    z-index: 150;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.offcanvas-backdrop.is-visible { opacity: 1; }

.offcanvas {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 86vw);
    background: var(--nf-bg-2);
    border-left: 1px solid var(--nf-border);
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.offcanvas.is-open { transform: translateX(0); }

.offcanvas__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--nf-border);
}

.offcanvas__close {
    background: none; border: none; color: var(--nf-text);
    font-size: 1.7rem; line-height: 1; cursor: pointer;
}

.offcanvas__nav { display: flex; flex-direction: column; padding: 0.5rem 0; overflow-y: auto; }
.offcanvas__nav a {
    padding: 0.95rem 1.25rem;
    font-weight: 600;
    color: var(--nf-text-dim);
    border-bottom: 1px solid var(--nf-border-soft);
}
.offcanvas__nav a.is-active { color: var(--nf-accent); }
.offcanvas__footer { margin-top: auto; padding: 1.25rem; border-top: 1px solid var(--nf-border); }

body.nav-open { overflow: hidden; }

/* ---- Hero ---- */

.hero {
    position: relative;
    padding: 6.5rem 24px 5rem;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 320px at 20% 0%, rgba(79, 209, 165, 0.14), transparent 70%),
        radial-gradient(520px 300px at 92% 30%, rgba(138, 162, 255, 0.12), transparent 70%);
    pointer-events: none;
}

.hero__inner { max-width: var(--nf-maxw); margin: 0 auto; position: relative; }

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--nf-mono);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nf-accent);
    border: 1px solid var(--nf-border);
    border-radius: 100px;
    padding: 5px 13px;
    margin-bottom: 1.5rem;
}
.hero__eyebrow::before {
    content: "";
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--nf-accent);
    box-shadow: 0 0 0 4px rgba(79, 209, 165, 0.18);
}

.hero h1 {
    font-size: clamp(2.1rem, 5.4vw, 3.6rem);
    margin: 0 0 1.2rem;
    max-width: 15ch;
}
.hero h1 em { color: var(--nf-accent); font-style: normal; }

.hero__lead {
    font-size: 1.12rem;
    color: var(--nf-text-dim);
    max-width: 52ch;
    margin: 0 0 1.1rem;
}

.hero__visitors {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--nf-mono);
    font-size: 0.8rem;
    color: var(--nf-muted);
    margin: 0 0 2rem;
}
.hero__visitors strong { color: var(--nf-text); font-weight: 600; }
.hero__visitors .icon {
    width: 16px; height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero__actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--nf-border-soft);
}
.hero__meta div strong {
    display: block;
    font-size: 1.7rem;
    font-family: var(--nf-mono);
    color: var(--nf-text);
}
.hero__meta div span { font-size: 0.85rem; color: var(--nf-muted); }

/* ---- Sections ---- */

.section { padding: 5rem 0; }
.section--tight { padding: 3.5rem 0; }
.section--alt { background: var(--nf-bg-2); border-top: 1px solid var(--nf-border-soft); border-bottom: 1px solid var(--nf-border-soft); }

.section-head { margin-bottom: 2.75rem; max-width: 62ch; }
.section-head--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: none;
}
.section-head .mono { display: block; margin-bottom: 0.75rem; }
.section-head h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin: 0 0 0.6rem; }
.section-head p { margin: 0; color: var(--nf-text-dim); }
.section-head__link { color: var(--nf-accent); font-weight: 700; font-size: 0.9rem; white-space: nowrap; }

/* ---- Card base + frame corners ---- */

.card {
    background: var(--nf-surface);
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius);
    padding: 1.6rem;
}

.framed { position: relative; }
.framed::before, .framed::after {
    content: "";
    position: absolute;
    width: 12px; height: 12px;
    border: 1px solid var(--nf-accent);
    opacity: 0.55;
}
.framed::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.framed::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* ---- Services ---- */

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.service-card {
    background: var(--nf-surface);
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius);
    padding: 1.6rem;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.service-card:hover { border-color: var(--nf-accent); transform: translateY(-3px); }

.service-card__icon {
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius-sm);
    background: var(--nf-surface-2);
    color: var(--nf-accent);
    margin-bottom: 1.1rem;
}
.service-card__icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.service-card h3 { font-size: 1.1rem; margin: 0 0 0.5rem; }
.service-card p { margin: 0; color: var(--nf-text-dim); font-size: 0.92rem; }
.service-card__more { display: inline-block; margin-top: 1rem; color: var(--nf-accent); font-weight: 700; font-size: 0.82rem; }

/* ---- Work / Portfolio ---- */

.filter-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filter-chips a {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 100px;
    border: 1px solid var(--nf-border);
    color: var(--nf-text-dim);
    transition: border-color 0.2s ease, color 0.2s ease;
}
.filter-chips a:hover { border-color: var(--nf-accent); color: var(--nf-text); }
.filter-chips a.is-active { background: var(--nf-accent); border-color: var(--nf-accent); color: #04231b; }

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.4rem;
}

.work-card {
    background: var(--nf-surface);
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.work-card:hover { border-color: var(--nf-accent); transform: translateY(-3px); }

.work-card__media {
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
    background-color: var(--nf-surface-2);
    border-bottom: 1px solid var(--nf-border);
}

.work-card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.work-card__meta {
    font-family: var(--nf-mono);
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    color: var(--nf-muted);
    text-transform: uppercase;
    margin-bottom: 0.55rem;
}
.work-card__meta span { color: var(--nf-accent); }
.work-card h3 { font-size: 1.12rem; margin: 0 0 0.5rem; }
.work-card p { margin: 0; color: var(--nf-text-dim); font-size: 0.9rem; }

/* ---- Blog ---- */

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.4rem;
}

.post-card {
    background: var(--nf-surface);
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.post-card:hover { border-color: var(--nf-accent); transform: translateY(-3px); }
.post-card__media { aspect-ratio: 16 / 9; background-size: cover; background-position: center; background-color: var(--nf-surface-2); }
.post-card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card__date { font-family: var(--nf-mono); font-size: 0.72rem; color: var(--nf-muted); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.5rem; }
.post-card h3 { font-size: 1.14rem; margin: 0 0 0.5rem; }
.post-card p { margin: 0 0 1rem; color: var(--nf-text-dim); font-size: 0.9rem; }
.post-card__more { margin-top: auto; color: var(--nf-accent); font-weight: 700; font-size: 0.82rem; }

.tag-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.75rem; }
.tag {
    font-family: var(--nf-mono);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--nf-text-dim);
    border: 1px solid var(--nf-border);
    border-radius: 100px;
    padding: 3px 9px;
}

/* ---- Team ---- */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.4rem;
}
.team-card {
    background: var(--nf-surface);
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius);
    overflow: hidden;
}
.team-card__photo { aspect-ratio: 1 / 1; background-size: cover; background-position: center; background-color: var(--nf-surface-2); }
.team-card__body { padding: 1.2rem 1.3rem 1.4rem; }
.team-card h3 { font-size: 1.05rem; margin: 0 0 0.2rem; }
.team-card__role { font-family: var(--nf-mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--nf-accent); }
.team-card p { margin: 0.7rem 0 0; color: var(--nf-text-dim); font-size: 0.87rem; }
.team-card__links { display: flex; gap: 0.6rem; margin-top: 1rem; }
.team-card__links a {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius-sm);
    color: var(--nf-text-dim);
    transition: border-color 0.2s ease, color 0.2s ease;
}
.team-card__links a:hover { border-color: var(--nf-accent); color: var(--nf-accent); }
.team-card__links svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }

/* ---- Detail (Projekt / Beitrag) ---- */

.detail { padding: 3.5rem 0 5rem; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--nf-muted); font-weight: 600; font-size: 0.85rem; margin-bottom: 1.75rem; }
.back-link:hover { color: var(--nf-accent); }

.detail__head { margin-bottom: 2rem; }
.detail__head h1 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin: 0.6rem 0 0.8rem; }
.detail__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    padding: 1.2rem 0;
    border-top: 1px solid var(--nf-border-soft);
    border-bottom: 1px solid var(--nf-border-soft);
    margin: 1.5rem 0 2rem;
}
.detail__facts div strong { display: block; font-family: var(--nf-mono); font-size: 0.95rem; }
.detail__facts div span { font-size: 0.78rem; color: var(--nf-muted); text-transform: uppercase; letter-spacing: 0.03em; }

.detail__cover {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--nf-radius);
    border: 1px solid var(--nf-border);
    margin-bottom: 2.5rem;
}

.prose { max-width: 68ch; }
.prose p { margin: 0 0 1.2rem; color: var(--nf-text-dim); font-size: 1.02rem; }
.prose p:first-child { color: var(--nf-text); font-size: 1.1rem; }
.prose h1 { font-size: 1.7rem; margin: 0 0 1rem; }
.prose h2 { font-size: 1.4rem; margin: 2rem 0 0.8rem; }
.prose a { color: var(--nf-accent); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--nf-text); }
.prose ul { margin: 0 0 1.2rem; padding-left: 1.3rem; color: var(--nf-text-dim); }
.prose li { margin: 0 0 0.45rem; }
.prose hr { border: none; border-top: 1px solid var(--nf-border-soft); margin: 2rem 0; }

/* ---- Contact ---- */

.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }

.contact-info h3 { font-size: 1.15rem; margin: 0 0 1rem; }
.contact-info ul { list-style: none; margin: 1.25rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.contact-info li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; color: var(--nf-text-dim); }
.contact-info .ico {
    flex: 0 0 auto;
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius-sm);
    color: var(--nf-accent);
}
.contact-info .ico svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.contact-form {
    background: var(--nf-surface);
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius);
    padding: 1.9rem;
}

/* ---- Fields ---- */

.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 1.15rem; }
.field label {
    font-family: var(--nf-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--nf-muted);
}
.field input, .field select, .field textarea {
    padding: 11px 13px;
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius-sm);
    font-size: 0.92rem;
    font-family: inherit;
    background: var(--nf-bg-2);
    color: var(--nf-text);
}
.field input::placeholder, .field textarea::placeholder { color: #5c6472; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--nf-accent);
    box-shadow: 0 0 0 3px rgba(79, 209, 165, 0.14);
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---- Alerts ---- */

.alert {
    padding: 0.9rem 1.15rem;
    border-radius: var(--nf-radius-sm);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
}
.alert--success { background: rgba(79, 209, 165, 0.1); border-color: rgba(79, 209, 165, 0.35); color: #7fe3c4; }
.alert--error { background: rgba(255, 107, 107, 0.1); border-color: rgba(255, 107, 107, 0.35); color: #ff9d9d; }
.alert ul { margin: 0; padding-left: 1.2rem; }

.empty-state { text-align: center; padding: 3rem 1rem; color: var(--nf-muted); border: 1px dashed var(--nf-border); border-radius: var(--nf-radius); }

/* ---- CTA band ---- */

.cta-band {
    background: var(--nf-surface);
    border: 1px solid var(--nf-border);
    border-radius: var(--nf-radius);
    padding: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-band h2 { font-size: 1.6rem; margin: 0 0 0.4rem; }
.cta-band p { margin: 0; color: var(--nf-text-dim); }

/* ---- Footer ---- */

.site-footer {
    background: var(--nf-bg-2);
    border-top: 1px solid var(--nf-border-soft);
    margin-top: 4rem;
}
.site-footer__inner {
    max-width: var(--nf-maxw);
    margin: 0 auto;
    padding: 3.5rem 24px 2.5rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 2.5rem;
}
.site-footer p { color: var(--nf-muted); font-size: 0.9rem; margin: 0.9rem 0 0; max-width: 40ch; }
.site-footer p.site-footer__visitors {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--nf-mono);
    font-size: 0.78rem;
    max-width: none;
}
.site-footer__visitors strong { color: var(--nf-text-dim); font-weight: 600; }
.site-footer__visitors .icon {
    width: 14px; height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.site-footer h4 {
    font-family: var(--nf-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--nf-muted);
    margin: 0 0 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.site-footer li { font-size: 0.9rem; color: var(--nf-text-dim); }
.site-footer li a { color: var(--nf-text-dim); }
.site-footer li a:hover { color: var(--nf-accent); }
.site-footer__bottom {
    max-width: var(--nf-maxw);
    margin: 0 auto;
    padding: 1.4rem 24px;
    border-top: 1px solid var(--nf-border-soft);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-family: var(--nf-mono);
    font-size: 0.74rem;
    color: var(--nf-muted);
}

/* ---- Responsive ---- */

@media (max-width: 940px) {
    .main-nav, .header-actions .btn { display: none; }
    .hamburger { display: flex; }
    .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
    .site-footer__inner { grid-template-columns: 1fr 1fr; }
    .section-head--row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
    .section { padding: 3.5rem 0; }
    .hero { padding: 4.5rem 24px 3.5rem; }
    .field--row { grid-template-columns: 1fr; }
    .site-footer__inner { grid-template-columns: 1fr; }
    .cta-band { padding: 1.9rem; }
}
