:root {
    --ink: #141312;
    --graphite: #2b2f38;
    --muted: #687182;
    --purple: #6507c7;
    --purple-deep: #2a113f;
    --aqua: #76cfff;
    --aqua-soft: #b7e8ff;
    --cloud: #f4f7fb;
    --cloud-2: #eef7fb;
    --line: #dce3ee;
    --paper: #ffffff;
    --warm: #9b744c;
    --shadow: 0 24px 70px rgba(20, 19, 18, 0.14);
    --neo-surface: #f3f8fe;
    --neo-light: rgba(255, 255, 255, 0.92);
    --neo-dark: rgba(80, 92, 112, 0.18);
    --neo-raised: 14px 14px 34px var(--neo-dark), -14px -14px 34px var(--neo-light);
    --neo-raised-tight: 8px 8px 18px rgba(80, 92, 112, 0.16), -8px -8px 18px rgba(255, 255, 255, 0.88);
    --neo-inset: inset 7px 7px 16px rgba(80, 92, 112, 0.16), inset -7px -7px 16px rgba(255, 255, 255, 0.86);
    --neo-dark-raised: 16px 16px 34px rgba(0, 0, 0, 0.28), -10px -10px 24px rgba(255, 255, 255, 0.06);
    --neo-dark-inset: inset 7px 7px 18px rgba(0, 0, 0, 0.3), inset -7px -7px 18px rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 38%, var(--cloud-2) 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.2em;
}

a:hover {
    color: var(--purple);
}

:focus-visible {
    outline: 3px solid rgba(183, 232, 255, 0.9);
    outline-offset: 4px;
}

.layout-wide {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.layout-narrow {
    width: min(760px, calc(100% - 40px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -100px;
    z-index: 100;
    padding: 10px 14px;
    background: var(--ink);
    color: #fff;
    border-radius: 6px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(20, 19, 18, 0.9);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.site-header__inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 180px;
    text-decoration: none;
}

.brand img {
    width: clamp(180px, 20vw, 250px);
    filter: brightness(0) invert(1);
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    font-weight: 650;
}

.primary-nav a,
.header-call {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
}

.primary-nav a {
    transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.primary-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--aqua-soft);
    box-shadow: var(--neo-dark-inset);
}

.header-call {
    background: var(--purple);
    color: #fff;
    font-weight: 750;
    white-space: nowrap;
    box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.22), -5px -5px 14px rgba(255, 255, 255, 0.08);
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.header-call:hover {
    background: var(--aqua-soft);
    color: var(--ink);
    transform: translateY(-1px);
}

.section-band {
    padding: 86px 0;
}

.section-band--quiet {
    background: linear-gradient(180deg, #ffffff 0%, var(--neo-surface) 100%);
}

.section-band--accent {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(10, 12, 18, 0.96) 0%, rgba(42, 17, 63, 0.9) 48%, rgba(20, 19, 18, 0.94) 100%);
    color: #fff;
    box-shadow: inset 0 24px 48px rgba(0, 0, 0, 0.22), inset 0 -24px 48px rgba(255, 255, 255, 0.04);
}

.section-band--accent::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0%, transparent 26%, rgba(118, 207, 255, 0.1) 100%);
}

.section-band--accent > * {
    position: relative;
}

.section-band--accent h2,
.section-band--accent h3 {
    color: #fff;
}

.section-band--accent .eyebrow,
.section-band--contact .eyebrow {
    color: var(--aqua-soft);
}

.section-band--accent .section-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.82);
}

.section-band--contact {
    background: #11141b;
    color: #fff;
    box-shadow: inset 0 18px 44px rgba(0, 0, 0, 0.2);
}

.hero {
    padding-top: 62px;
}

.hero__grid,
.feature-grid,
.vohme-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 48px;
    align-items: center;
}

.hero__content,
.section-copy,
.page-content {
    min-width: 0;
}

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

h1,
h2,
h3,
p {
    overflow-wrap: break-word;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--ink);
    line-height: 1.1;
}

h1 {
    max-width: 12ch;
    font-size: 3.5rem;
}

h2 {
    max-width: 13ch;
    font-size: 2.45rem;
}

h3 {
    font-size: 1.08rem;
}

.lede {
    max-width: 58ch;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1.14rem;
}

.section-copy p:not(.eyebrow) {
    max-width: 62ch;
    color: var(--muted);
}

.section-band--contact .section-copy p,
.section-band--contact h2 {
    color: #fff;
}

.action-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0);
}

.button--primary {
    background: var(--purple);
    color: #fff;
    box-shadow: 10px 10px 22px rgba(101, 7, 199, 0.22), -8px -8px 20px rgba(255, 255, 255, 0.8);
}

.button--primary:hover {
    background: var(--purple-deep);
    color: #fff;
    box-shadow: 13px 13px 28px rgba(101, 7, 199, 0.24), -8px -8px 22px rgba(255, 255, 255, 0.86);
}

.button--primary:active {
    box-shadow: inset 5px 5px 12px rgba(0, 0, 0, 0.22), inset -5px -5px 12px rgba(255, 255, 255, 0.12);
}

.section-band--accent .button--primary,
.section-band--contact .button--primary {
    box-shadow: var(--neo-dark-raised);
}

.section-band--accent .button--primary:hover,
.section-band--contact .button--primary:hover {
    background: var(--aqua-soft);
    color: var(--ink);
}

.button--secondary {
    background: var(--neo-surface);
    color: var(--ink);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: var(--neo-raised-tight);
}

.button--secondary:hover {
    border-color: rgba(101, 7, 199, 0.2);
    color: var(--purple);
    box-shadow: 10px 10px 22px rgba(80, 92, 112, 0.16), -10px -10px 22px rgba(255, 255, 255, 0.9);
}

.button--secondary:active {
    box-shadow: var(--neo-inset);
}

.button--light {
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: var(--neo-dark-raised);
}

.button--light:hover {
    background: var(--aqua-soft);
    color: var(--ink);
}

.hero__image,
.media-panel,
.vohme-hero__image {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--neo-surface);
    box-shadow: var(--neo-raised);
}

.hero__image,
.vohme-hero__image {
    border: 1px solid rgba(255, 255, 255, 0.86);
    padding: 10px;
}

.media-panel {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--neo-dark-raised);
}

.hero__image img,
.media-panel img,
.vohme-hero__image img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 6px;
}

.media-panel img {
    aspect-ratio: 2 / 1;
}

.split,
.contact-grid {
    display: grid;
    grid-template-columns: 0.84fr 1.16fr;
    gap: 48px;
    align-items: start;
}

.split--compact {
    grid-template-columns: 0.95fr 1.05fr;
}

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

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

.info-card {
    min-height: 210px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 8px;
    background: var(--neo-surface);
    box-shadow: var(--neo-raised-tight);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.info-card:hover {
    transform: translateY(-3px);
    border-color: rgba(183, 232, 255, 0.8);
    box-shadow: 12px 12px 26px rgba(80, 92, 112, 0.18), -12px -12px 26px rgba(255, 255, 255, 0.9);
}

.info-card__label {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--purple);
    font-weight: 900;
}

.info-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.quote-panel {
    padding: 42px;
    border-left: 6px solid var(--purple);
    background: var(--neo-surface);
    border-radius: 8px;
    box-shadow: var(--neo-raised);
}

.quote-panel p {
    max-width: 850px;
    margin: 0;
    color: var(--ink);
    font-size: 1.6rem;
    line-height: 1.35;
    font-weight: 750;
}

.quote-panel span {
    display: block;
    margin-top: 18px;
    color: var(--muted);
    font-weight: 750;
}

.contact-grid {
    align-items: center;
}

.contact-card {
    display: grid;
    gap: 12px;
    padding: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--neo-dark-inset);
}

.contact-card a,
.vohme-card__details a {
    display: block;
    padding: 18px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 7px 7px 18px rgba(0, 0, 0, 0.22), -5px -5px 14px rgba(255, 255, 255, 0.06);
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-card a:hover,
.vohme-card__details a:hover {
    background: rgba(101, 7, 199, 0.54);
    border-color: rgba(183, 232, 255, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

.contact-card a:active,
.vohme-card__details a:active {
    transform: translateY(0);
    box-shadow: var(--neo-dark-inset);
}

.contact-card span,
.vohme-card__details span {
    display: block;
    color: var(--aqua-soft);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.vohme-hero__grid {
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.vohme-card {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 8px;
    background: var(--neo-surface);
    box-shadow: var(--neo-raised);
}

.vohme-card__logo {
    width: min(420px, 100%);
    margin-bottom: 34px;
    padding: 14px;
    border-radius: 8px;
    background: var(--neo-surface);
    box-shadow: var(--neo-inset);
}

.vohme-card h1 {
    max-width: none;
    font-size: 2.5rem;
}

.vohme-card p {
    color: var(--muted);
}

.vohme-card__details {
    display: grid;
    gap: 12px;
}

.vohme-card__details a {
    background: var(--ink);
}

.page-content {
    padding: 46px 0;
}

.page-content h1 {
    max-width: none;
    font-size: 2.6rem;
}

.entry-content {
    margin-top: 24px;
}

.site-footer {
    background: #11141b;
    color: rgba(255, 255, 255, 0.78);
    box-shadow: inset 0 18px 44px rgba(0, 0, 0, 0.24);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 30px;
    padding: 46px 0;
}

.footer-kicker {
    margin: 0 0 8px;
    color: #fff;
    font-weight: 850;
}

.site-footer a {
    color: #fff;
}

.site-footer a:hover {
    color: var(--aqua-soft);
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 20px;
    text-align: center;
    font-size: 0.9rem;
}

.site-footer__bottom p {
    margin: 0;
}

.latest-vohme {
    background: var(--neo-surface);
}

.latest-vohme__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px;
}

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

.vohme-post-card {
    min-height: 245px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 8px;
    background: var(--neo-surface);
    box-shadow: var(--neo-raised-tight);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.vohme-post-card:hover {
    transform: translateY(-3px);
    border-color: rgba(183, 232, 255, 0.8);
    box-shadow: 12px 12px 26px rgba(80, 92, 112, 0.18), -12px -12px 26px rgba(255, 255, 255, 0.9);
}

.vohme-post-card a {
    display: flex;
    min-height: 245px;
    flex-direction: column;
    padding: 24px;
    color: inherit;
    text-decoration: none;
}

.vohme-post-card span {
    color: var(--purple);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.vohme-post-card h3 {
    margin-top: 16px;
    font-size: 1.25rem;
    line-height: 1.18;
}

.vohme-post-card p {
    margin: 12px 0 0;
    color: var(--muted);
}

.latest-vohme__fallback {
    padding: 24px;
    border-radius: 8px;
    background: var(--neo-surface);
    box-shadow: var(--neo-inset);
}

.latest-vohme__fallback p {
    margin-top: 0;
}

.latest-vohme__fallback a {
    color: var(--purple);
    font-weight: 900;
    text-decoration: none;
}

.mobile-action-strip {
    display: none;
}

@media (max-width: 920px) {
    .site-header__inner {
        justify-content: center;
    }

    .primary-nav {
        order: 3;
        width: 100%;
    }

    .hero__grid,
    .feature-grid,
    .vohme-hero__grid,
    .split,
    .split--compact,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid .media-panel {
        order: 2;
    }

    .card-grid,
    .card-grid--three,
    .vohme-post-grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .latest-vohme__header {
        align-items: start;
        flex-direction: column;
    }

    h1 {
        max-width: 14ch;
        font-size: 2.75rem;
    }

    h2 {
        max-width: 16ch;
        font-size: 2.05rem;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 76px;
    }

    .mobile-action-strip {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 30;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 8px;
        background: rgba(20, 19, 18, 0.92);
        box-shadow: var(--neo-dark-raised);
        backdrop-filter: blur(18px);
    }

    .mobile-action-strip a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        font-weight: 900;
        text-decoration: none;
    }

    .mobile-action-strip a:hover {
        background: var(--purple);
        color: #fff;
    }

    .layout-wide,
    .layout-narrow {
        width: min(100% - 28px, 1120px);
    }

    .site-header {
        position: static;
    }

    .site-header__inner {
        min-height: 0;
        gap: 10px;
    }

    .brand {
        justify-content: center;
        width: 100%;
    }

    .brand img {
        width: 210px;
    }

    .primary-nav {
        gap: 4px;
        font-size: 0.84rem;
    }

    .primary-nav a {
        min-height: 36px;
        padding: 7px 8px;
    }

    .header-call {
        width: 100%;
    }

    .section-band {
        padding: 58px 0;
    }

    .hero {
        padding-top: 44px;
    }

    .hero__grid,
    .feature-grid,
    .vohme-hero__grid,
    .split,
    .contact-grid {
        gap: 32px;
    }

    h1,
    .vohme-card h1,
    .page-content h1 {
        max-width: none;
        font-size: 2.15rem;
    }

    h2 {
        max-width: none;
        font-size: 1.8rem;
    }

    .lede {
        font-size: 1.02rem;
    }

    .action-row,
    .button {
        width: 100%;
    }

    .hero__image,
    .media-panel,
    .vohme-hero__image {
        padding: 7px;
    }

    .info-card {
        min-height: 0;
        padding: 20px;
    }

    .quote-panel {
        padding: 26px;
    }

    .quote-panel p {
        font-size: 1.22rem;
    }

    .contact-card a,
    .vohme-card__details a {
        font-size: 1rem;
    }

    .vohme-card {
        padding: 22px;
    }
}
