/* ============================================================
   vladimirpilny.cz – PHP build
   Cyberpunk Brutalism · 1:1 podle React verze
   ============================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd { margin: 0; }
h1, h2, h3, h4, h5, h6 { font-weight: inherit; font-size: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- TOKENS ---------- */
:root {
    --bg: #050505;
    --surface: #0a0a0a;
    --yellow: #e6ff00;
    --cyan: #00ffff;
    --magenta: #ff0055;
    --green: #00ff41;
    --white: #ffffff;
    --w-08: rgba(255,255,255,0.08);
    --w-10: rgba(255,255,255,0.10);
    --w-15: rgba(255,255,255,0.15);
    --w-18: rgba(255,255,255,0.18);
    --w-25: rgba(255,255,255,0.25);
    --w-40: rgba(255,255,255,0.40);
    --w-50: rgba(255,255,255,0.50);
    --w-60: rgba(255,255,255,0.60);
    --w-65: rgba(255,255,255,0.65);
    --w-70: rgba(255,255,255,0.70);
    --w-75: rgba(255,255,255,0.75);
    --w-80: rgba(255,255,255,0.80);
    --container: 1400px;
    --pad-x: 1.5rem;
    --pad-x-lg: 2.5rem;
    --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    --display: "Unbounded", "JetBrains Mono", sans-serif;
}

html { background: var(--bg); overflow-x: hidden; }

body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--mono);
    font-feature-settings: "ss01","ss02","calt","liga";
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

::selection { background: var(--yellow); color: #000; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1a1a1a; border-left: 1px solid var(--yellow); }
::-webkit-scrollbar-thumb:hover { background: var(--yellow); }

*:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }

.display, h1, h2, h3, h4, h5, h6 {
    font-family: var(--display);
    letter-spacing: -0.04em;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}
@media (min-width: 1024px) {
    .container { padding: 0 var(--pad-x-lg); }
}

/* Utility colors */
.text-yellow  { color: var(--yellow); }
.text-cyan    { color: var(--cyan); }
.text-magenta { color: var(--magenta); }
.text-green   { color: var(--green); }
.text-muted   { color: var(--w-60); }

.section {
    position: relative;
    padding: 6rem 0;
    border-top: 1px solid var(--w-10);
}
@media (min-width: 1024px) { .section { padding: 8rem 0; } }
.section--no-border { border-top: 0; }

.section__head {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
    .section__head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.section__desc {
    max-width: 28rem;
    color: var(--w-60);
    font-family: var(--mono);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* ---------- NOISE / GRID ---------- */
.bg-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.7;
}
.bg-grid-dense {
    position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
    background-image:
        linear-gradient(to right, rgba(230,255,0,0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(230,255,0,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
}
.noise::before {
    content: "";
    position: fixed; inset: 0; pointer-events: none;
    z-index: 100; opacity: 0.06; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- TAG LABEL ---------- */
.tag-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.6rem;
    border: 1px solid rgba(230,255,0,0.4);
    color: var(--yellow);
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.tag-label__dot {
    width: 0.375rem;
    height: 0.375rem;
    background: var(--yellow);
    display: inline-block;
}

/* ---------- BUTTON BRUT ---------- */
.btn-brut {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.6rem;
    border: 1px solid var(--yellow);
    color: var(--yellow);
    background: transparent;
    font-family: var(--mono);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background .15s, color .15s, box-shadow .15s, opacity .15s;
    text-decoration: none;
}
.btn-brut:hover {
    background: var(--yellow);
    color: #000;
    box-shadow: 8px 8px 0 0 rgba(0,255,255,0.7);
}
.btn-brut.cyan { border-color: var(--cyan); color: var(--cyan); }
.btn-brut.cyan:hover {
    background: var(--cyan);
    color: #000;
    box-shadow: 8px 8px 0 0 rgba(230,255,0,0.7);
}
.btn-brut.ghost { border-color: var(--w-25); color: var(--white); }
.btn-brut.ghost:hover { border-color: #fff; background: #fff; color: #000; box-shadow: none; }
.btn-brut[disabled] { opacity: 0.5; cursor: progress; }

/* ---------- INPUT BRUT ---------- */
.brut-input, .brut-textarea {
    width: 100%;
    background: transparent;
    border: 1px solid var(--w-18);
    border-radius: 0;
    padding: 1rem 1.1rem;
    color: #fff;
    font-family: var(--mono);
    font-size: 0.95rem;
    transition: border-color .15s, background .15s;
}
.brut-textarea { resize: vertical; min-height: 9rem; }
.brut-input:focus, .brut-textarea:focus {
    outline: none;
    border-color: var(--yellow);
    background: rgba(230,255,0,0.03);
}
.brut-input::placeholder, .brut-textarea::placeholder {
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
}

/* ---------- NAV ---------- */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 40;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(0,0,0,0.6);
    border-bottom: 1px solid var(--w-10);
}
.site-nav__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
@media (min-width: 1024px) { .site-nav__inner { padding: 0 var(--pad-x-lg); } }

.site-nav__logo { display: flex; align-items: center; gap: 0.75rem; }
.site-nav__dot { width: 0.5rem; height: 0.5rem; background: var(--yellow); display: inline-block; }
.site-nav__brand {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    transition: color .15s;
}
.site-nav__logo:hover .site-nav__brand { color: var(--yellow); }

.site-nav__links { display: none; gap: 1.5rem; }
@media (min-width: 1024px) { .site-nav__links { display: flex; align-items: center; } }
.site-nav__link {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--w-60);
    transition: color .15s;
}
.site-nav__link:hover { color: var(--yellow); }

.site-nav__meta { display: none; align-items: center; gap: 1rem; }
@media (min-width: 1024px) { .site-nav__meta { display: flex; } }
.site-nav__city { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--w-50); }
.site-nav__time { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--cyan); min-width: 4.5rem; }
.site-nav__cta {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1px solid var(--yellow);
    color: var(--yellow);
    padding: 0.375rem 0.75rem;
    transition: background .15s, color .15s;
}
.site-nav__cta:hover { background: var(--yellow); color: #000; }
.site-nav__cta--mobile { margin-top: 1rem; padding: 0.75rem 1rem; text-align: center; display: block; }

.site-nav__toggle {
    display: inline-flex;
    border: 1px solid var(--w-25);
    color: #fff;
    padding: 0.5rem 0.75rem;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.16em;
}
@media (min-width: 1024px) { .site-nav__toggle { display: none; } }

.site-nav__mobile {
    border-top: 1px solid var(--w-10);
    background: #000;
    padding: 1rem var(--pad-x);
    display: flex; flex-direction: column;
}
.site-nav__mobile[hidden] { display: none; }
.site-nav__mlink {
    padding: 0.75rem 0;
    font-family: var(--mono);
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--w-80);
    border-bottom: 1px solid var(--w-10);
}
.site-nav__mlink:hover { color: var(--yellow); }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: 7rem 0 5rem;
    overflow: hidden;
}
@media (min-width: 1024px) { .hero { padding: 9rem 0 8rem; } }
.hero__grid {
    position: absolute; inset: 0; pointer-events: none; opacity: 0.7;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
}
.hero__blobs { position: absolute; inset: 0; pointer-events: none; }
.hero__blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(80px);
}
.hero__blob--y {
    top: -8rem; left: -8rem;
    width: 520px; height: 520px;
    background: var(--yellow);
    opacity: 0.30;
}
.hero__blob--c {
    bottom: -8rem; right: -8rem;
    width: 420px; height: 420px;
    background: var(--cyan);
    opacity: 0.20;
}
.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
}
.hero__rail { display: none; }
@media (min-width: 1024px) {
    .hero__rail {
        grid-column: span 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border-left: 1px solid var(--w-10);
        padding-left: 1rem;
    }
}
.hero__rail-list { display: flex; flex-direction: column; gap: 0.5rem; }
.hero__rail-item {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--w-50);
}
.hero__rail-vertical {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.30);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: none;
}
@media (min-width: 1280px) { .hero__rail-vertical { display: block; } }

.hero__main { grid-column: span 12; }
@media (min-width: 1024px) { .hero__main { grid-column: span 10; } }

.hero-name {
    margin-top: 1.5rem;
    font-family: var(--display);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.05em;
    font-size: 13.5vw;
    overflow-wrap: break-word;
    word-break: break-word;
}
@media (min-width: 640px) { .hero-name { font-size: 14vw; letter-spacing: -0.06em; } }
@media (min-width: 1024px) {
    .hero-name {
        font-size: 12rem;
        letter-spacing: -0.06em;
        word-break: normal;
        overflow-wrap: normal;
    }
}
@media (min-width: 1280px) { .hero-name { font-size: 14rem; } }
.hero-name span { display: block; }
.hero-name__second { color: rgba(255,255,255,0.95); }

.hero__lead { margin-top: 2.5rem; max-width: 42rem; }
.hero__lead-text {
    font-family: var(--mono);
    font-size: 1rem;
    color: var(--w-75);
    line-height: 1.7;
}
@media (min-width: 1024px) { .hero__lead-text { font-size: 1.125rem; } }

.hero__ctas {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero__scroll { margin-top: 4rem; position: relative; }
.hero__scroll-cue {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--w-40);
}

/* ---------- MARQUEE ---------- */
.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    border-top: 1px solid var(--w-15);
    border-bottom: 1px solid var(--w-15);
    padding: 1.5rem 0;
    background: #000;
}
.marquee__track {
    display: flex;
    flex-shrink: 0;
    gap: 4rem;
    min-width: 100%;
    white-space: nowrap;
    animation: marquee 35s linear infinite;
}
.marquee__item { display: inline-flex; align-items: center; gap: 3rem; }
.marquee__text {
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -0.04em;
    font-size: 3rem;
    color: #fff;
}
@media (min-width: 768px) { .marquee__text { font-size: 4.5rem; } }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* ---------- ABOUT ---------- */
.about__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
}
.about__intro { grid-column: span 12; }
@media (min-width: 1024px) {
    .about__intro {
        grid-column: span 4;
        position: sticky;
        top: 6rem;
        align-self: flex-start;
    }
}
.about__title {
    font-size: 3rem;
    margin-top: 1.5rem;
    line-height: 0.95;
}
@media (min-width: 1024px) { .about__title { font-size: 3.75rem; } }
.about__body { grid-column: span 12; display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 1024px) {
    .about__body { grid-column: 6 / span 7; }
}
.about__lead {
    font-family: var(--mono);
    font-size: 1.125rem;
    color: var(--w-80);
    line-height: 1.7;
}
@media (min-width: 1024px) { .about__lead { font-size: 1.25rem; } }
.about__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) { .about__cards { grid-template-columns: 1fr 1fr; } }
.about__card {
    border: 1px solid var(--w-10);
    padding: 1.5rem;
    transition: border-color .2s;
}
.about__card p {
    margin-top: 0.75rem;
    color: var(--w-70);
    font-size: 0.875rem;
    line-height: 1.6;
}
.about__card-h {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
}
.about__card--y .about__card-h { color: var(--yellow); }
.about__card--c .about__card-h { color: var(--cyan); }
.about__card--m .about__card-h { color: var(--magenta); }
.about__card--g .about__card-h { color: var(--green); }
.about__card--y:hover { border-color: var(--yellow); }
.about__card--c:hover { border-color: var(--cyan); }
.about__card--m:hover { border-color: var(--magenta); }
.about__card--g:hover { border-color: var(--green); }

/* ---------- SERVICES ---------- */
.services__title { font-size: 3rem; margin-top: 1.5rem; line-height: 0.95; }
@media (min-width: 1024px) { .services__title { font-size: 4.5rem; } }
.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--w-10);
}
@media (min-width: 640px) { .services__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services__grid { grid-template-columns: repeat(4, 1fr); } }

.svc-card {
    position: relative;
    border: 1px solid var(--w-10);
    background: var(--surface);
    padding: 1.75rem;
    transition: border-color .2s, transform .2s, background .2s;
    display: flex;
    flex-direction: column;
    min-height: 260px;
}
.svc-card:hover {
    border-color: var(--yellow);
    background: #0d0d04;
    transform: translate(-2px, -2px);
}
.svc-card__top { display: flex; align-items: center; justify-content: space-between; }
.svc-num {
    color: var(--yellow);
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
}
.svc-title {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #fff;
    margin-top: 1.5rem;
}
.svc-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 0.75rem;
}
.svc-arrow {
    margin-top: auto;
    padding-top: 1.5rem;
    color: var(--yellow);
    transition: transform .2s;
}
.svc-card:hover .svc-arrow { transform: translateX(6px); }

/* ---------- STATS ---------- */
.stats { background: #000; overflow: hidden; padding: 5rem 0; }
@media (min-width: 1024px) { .stats { padding: 7rem 0; } }
.stats__inner { position: relative; }
.stats__title { font-size: 2.25rem; margin-top: 1.5rem; }
@media (min-width: 1024px) { .stats__title { font-size: 3rem; } }
.stats__update {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--w-40);
    text-transform: uppercase;
}
.stats__grid {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--w-10);
}
@media (min-width: 768px) { .stats__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stats__cell {
    padding: 2rem;
    border-right: 1px solid var(--w-10);
    border-bottom: 1px solid var(--w-10);
    transition: background .2s;
}
@media (min-width: 1024px) {
    .stats__cell { padding: 2.5rem; border-bottom: 0; }
    .stats__cell:last-child { border-right: 0; }
}
@media (max-width: 767.98px) {
    .stats__cell { border-right: 0; }
    .stats__cell:last-child { border-bottom: 0; }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
    .stats__cell:nth-child(2n) { border-right: 0; }
    .stats__cell:nth-last-child(-n+2) { border-bottom: 0; }
}
.stats__cell:hover { background: var(--yellow); }
.stat-num {
    font-family: var(--display);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 0.9;
    background: linear-gradient(180deg, #fff 0%, #fff 60%, var(--yellow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 3rem;
}
@media (min-width: 480px) { .stat-num { font-size: 3.75rem; } }
@media (min-width: 768px) { .stat-num { font-size: 6rem; } }
@media (min-width: 1024px) { .stat-num { font-size: 7.5rem; } }
.stats__cell:hover .stat-num {
    background: none;
    -webkit-text-fill-color: #000;
    color: #000;
}
.stats__label {
    margin-top: 1rem;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--w-60);
}
.stats__sub {
    margin-top: 0.25rem;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--w-40);
}
.stats__cell:hover .stats__label { color: rgba(0,0,0,0.8); }
.stats__cell:hover .stats__sub { color: rgba(0,0,0,0.6); }

/* ---------- PORTFOLIO ---------- */
.portfolio__title { font-size: 3rem; margin-top: 1.5rem; line-height: 0.95; }
@media (min-width: 1024px) { .portfolio__title { font-size: 4.5rem; } }
.portfolio__list {
    border-top: 1px solid var(--w-08);
    border-bottom: 1px solid var(--w-08);
}
.proj-row {
    display: grid;
    grid-template-columns: 60px 1fr 200px 90px;
    gap: 1.5rem;
    align-items: center;
    padding: 1.4rem 1.5rem;
    border-top: 1px solid var(--w-08);
    transition: background .18s, color .18s;
}
.proj-row:first-child { border-top: 0; }
.proj-row:hover { background: var(--yellow); color: #000; }
.proj-row:hover .proj-tag { background: #000; color: var(--yellow); border-color: #000; }
.proj-row:hover .proj-desc { color: rgba(0,0,0,0.7); }
.proj-num {
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
}
.proj-title {
    font-family: var(--display);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: -0.03em;
}
.proj-desc {
    font-size: 0.875rem;
    font-family: var(--mono);
    color: var(--w-50);
    margin-top: 0.25rem;
}
.proj-tag {
    border: 1px solid var(--w-25);
    padding: 0.35rem 0.7rem;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    width: max-content;
}
.proj-link {
    font-family: var(--mono);
    font-size: 0.85rem;
    text-align: right;
}
@media (max-width: 768px) {
    .proj-row { grid-template-columns: 40px 1fr; grid-template-rows: auto auto; }
    .proj-row .proj-tag, .proj-row .proj-link { grid-column: 2; }
    .proj-row .proj-link { text-align: left; }
    .proj-row .proj-title { font-size: 1.25rem; }
}
.portfolio__more { margin-top: 2.5rem; text-align: center; }

/* ---------- BLOG ---------- */
.blog__title { font-size: 3rem; margin-top: 1.5rem; line-height: 0.95; }
@media (min-width: 1024px) { .blog__title { font-size: 4.5rem; } }
.blog__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--w-10);
    border: 1px solid var(--w-10);
}
@media (min-width: 1024px) { .blog__grid { grid-template-columns: repeat(3, 1fr); } }
.blog__card {
    background: #000;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    transition: background .2s;
}
@media (min-width: 1024px) { .blog__card { padding: 2rem; } }
.blog__card:hover { background: var(--surface); }
.blog__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.blog__date {
    color: var(--yellow);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.blog__cat {
    color: var(--w-50);
    border: 1px solid var(--w-15);
    padding: 0.125rem 0.5rem;
}
.blog__h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    line-height: 1.2;
    transition: color .15s;
}
.blog__card:hover .blog__h3 { color: var(--yellow); }
.blog__excerpt {
    margin-top: 1rem;
    color: var(--w-60);
    font-size: 0.875rem;
    line-height: 1.6;
}
.blog__foot {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog__more {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--w-40);
    transition: color .15s;
}
.blog__card:hover .blog__more { color: var(--yellow); }
.blog__arrow { color: var(--w-40); transition: color .15s, transform .15s; }
.blog__card:hover .blog__arrow {
    color: var(--yellow);
    transform: translate(4px, -4px);
}

/* ---------- CONTACT ---------- */
.contact { background: #000; }
.contact__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2.5rem 0;
}
@media (min-width: 1024px) { .contact__grid { gap: 2.5rem; } }
.contact__left { grid-column: span 12; display: flex; flex-direction: column; }
@media (min-width: 1024px) { .contact__left { grid-column: span 5; } }
.contact__title {
    margin-top: 1.5rem;
    font-size: 3rem;
    line-height: 0.92;
}
@media (min-width: 1024px) { .contact__title { font-size: 4.5rem; } }
.contact__lead {
    margin-top: 2rem;
    color: var(--w-65);
    font-family: var(--mono);
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 28rem;
}
.contact__details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact__row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact__ico {
    border: 1px solid var(--w-15);
    padding: 0.75rem;
    transition: border-color .15s, color .15s;
    color: #fff;
    flex-shrink: 0;
}
.contact__row--y:hover .contact__ico { border-color: var(--yellow); color: var(--yellow); }
.contact__row--c:hover .contact__ico { border-color: var(--cyan); color: var(--cyan); }
.contact__row-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--w-40);
    text-transform: uppercase;
}
.contact__row-val {
    font-family: var(--mono);
    font-size: 1rem;
    color: #fff;
    transition: color .15s;
}
.contact__row--y:hover .contact__row-val { color: var(--yellow); }
.contact__row--c:hover .contact__row-val { color: var(--cyan); }

.contact__form {
    grid-column: span 12;
    border: 1px solid var(--w-10);
    padding: 1.75rem;
    background: #070707;
    position: relative;
}
@media (min-width: 1024px) {
    .contact__form { grid-column: span 7; padding: 2.5rem; }
}
.contact__form-tx {
    position: absolute;
    top: -0.6rem;
    left: 1.5rem;
    background: #000;
    padding: 0 0.75rem;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--yellow);
}
.contact__row2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 768px) { .contact__row2 { grid-template-columns: 1fr 1fr; } }
.contact__topics, .contact__msg { margin-top: 1.25rem; }
.contact__label {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--w-50);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.contact__topic-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.contact__topic {
    padding: 0.5rem 0.75rem;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1px solid var(--w-15);
    color: var(--w-70);
    transition: background .15s, color .15s, border-color .15s;
}
.contact__topic:hover { border-color: var(--yellow); color: var(--yellow); }
.contact__topic.is-active {
    background: var(--yellow);
    color: #000;
    border-color: var(--yellow);
}
.contact__submit {
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 640px) {
    .contact__submit { flex-direction: row; align-items: center; justify-content: space-between; }
}
.contact__note {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--w-40);
}
.vp-honey {
    position: absolute !important;
    left: -10000px !important;
    top: auto;
    width: 1px; height: 1px;
    overflow: hidden;
}

/* ---------- FOOTER ---------- */
.site-footer { position: relative; border-top: 1px solid var(--w-10); background: #000; }
.stripe-bar {
    height: 0.75rem;
    width: 100%;
    opacity: 0.9;
    background-image: repeating-linear-gradient(45deg, var(--yellow) 0, var(--yellow) 12px, #000 12px, #000 24px);
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 2.5rem var(--pad-x);
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(3, 1fr); } }
.site-footer__copy, .site-footer__center, .site-footer__right {
    font-family: var(--mono);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.site-footer__copy   { font-size: 12px; color: var(--w-50); }
.site-footer__center { text-align: center; font-size: 11px; color: var(--w-40); }
.site-footer__right  { font-size: 12px; color: var(--w-50); }
@media (min-width: 768px) { .site-footer__right { text-align: right; } }
.hover-yellow:hover { color: var(--yellow); }
.hover-cyan:hover { color: var(--cyan); }

/* ---------- REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: reveal .7s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

/* ---------- TOAST ---------- */
.vp-toast {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}
.vp-toast__item {
    pointer-events: auto;
    border: 1px solid var(--yellow);
    background: #050505;
    color: #fff;
    padding: 0.9rem 1.1rem;
    font-family: var(--mono);
    font-size: 0.85rem;
    max-width: 22rem;
    box-shadow: 6px 6px 0 0 rgba(0,255,255,0.4);
    animation: toast-in .25s ease-out;
}
.vp-toast__item--error {
    border-color: var(--magenta);
    box-shadow: 6px 6px 0 0 rgba(255,0,85,0.35);
}
.vp-toast__title { font-weight: 600; letter-spacing: 0.04em; }
.vp-toast__desc { color: var(--w-70); margin-top: 0.25rem; font-size: 0.78rem; }
@keyframes toast-in {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
