/* ============================================================
   Voronkin Studio — v2 Design System
   Logo-led palette: copper mark · graphite field · warm ivory text
   ============================================================ */

:root {
    --bg:      #070604;
    --panel:   #0e0b08;
    --text:    #f1e8dc;
    --muted:   rgba(241, 232, 220, 0.60);
    --faint:   rgba(241, 232, 220, 0.32);
    --gold:    #a55024;
    --copper:  #a55024;
    --copper-hi:#d08a4f;
    --copper-deep:#5c2715;
    --gold-s:  rgba(165, 80, 36, 0.16);
    --line:    rgba(241, 232, 220, 0.11);
    --line-s:  rgba(241, 232, 220, 0.056);
    --w:       1300px;
    --ph:      clamp(20px, 5.5vw, 96px);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    background:
        linear-gradient(115deg, rgba(165, 80, 36, 0.13), transparent 32%),
        linear-gradient(245deg, rgba(92, 39, 21, 0.22), transparent 38%),
        radial-gradient(ellipse 92% 58% at 50% 110%, rgba(208,138,79, 0.09), transparent 58%),
        var(--bg);
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.72;
    min-width: 320px;
    overflow-x: hidden;
}

/* Mouse spotlight ─────────────────────────── */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(
        720px circle at var(--mx, -9999px) var(--my, -9999px),
        rgba(165, 80, 36, 0.095) 0%,
        transparent 60%
    );
    pointer-events: none;
    z-index: 1;
}

a  { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }

/* ── Shell ── */
.shell { position: relative; z-index: 2; }

/* ── Ambient fields ── */
.blob {
    position: fixed;
    border-radius: 0;
    filter: blur(110px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.10;
}
.blob-1 {
    width: 72vw; height: 26vh;
    top: -10vh; left: -18vw;
    transform: rotate(-12deg);
    background: linear-gradient(90deg, rgba(165, 80, 36, 0.78), transparent 72%);
    animation: blob-drift 28s ease-in-out infinite;
}
.blob-2 {
    width: 60vw; height: 22vh;
    bottom: 12%; right: -18vw;
    transform: rotate(16deg);
    background: linear-gradient(270deg, rgba(208, 138, 79, 0.44), transparent 70%);
    animation: blob-drift 34s ease-in-out infinite reverse;
    animation-delay: -8s;
}
@keyframes blob-drift {
    0%,100% { transform: translate(0,0)    scale(1);    }
    33%      { transform: translate(60px, 40px) scale(1.08); }
    66%      { transform: translate(-30px,70px) scale(0.95); }
}

/* ── Grain ── */
.grain {
    position: fixed;
    inset: -50%;
    width: 200%; height: 200%;
    pointer-events: none;
    z-index: 5;
    opacity: 0.044;
    /* animation removed — static grain is cleaner on dark backgrounds */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 220px 220px;
}
@keyframes grain-anim {
    0%,100%{ transform:translate(0,0); }
    10%{ transform:translate(-5%,-10%); }
    20%{ transform:translate(-15%,5%); }
    30%{ transform:translate(7%,-25%); }
    40%{ transform:translate(-5%,25%); }
    50%{ transform:translate(-15%,10%); }
    60%{ transform:translate(15%,0); }
    70%{ transform:translate(0,15%); }
    80%{ transform:translate(3%,35%); }
    90%{ transform:translate(-10%,10%); }
}

/* ── Scroll progress bar ── */
.sbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--copper-hi), rgba(165,80,36,0.22));
    transform-origin: left;
    transform: scaleX(0);
    z-index: 200;
    transition: transform 0.06s linear;
}

/* ── Custom cursor ── */
.cur {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    background: rgba(237, 234, 222, 0.9);
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
    transition: width .2s ease, height .2s ease, margin .2s ease,
                background .2s ease, border .2s ease;
}
.cur.is-hovered {
    width: 52px; height: 52px;
    margin: -26px 0 0 -26px;
    background: transparent;
    border: 1px solid rgba(208, 138, 79, 0.78);
}
body.cur-on { cursor: none; }
body.cur-on a, body.cur-on button, body.cur-on [role="button"],
body.cur-on input, body.cur-on textarea, body.cur-on select { cursor: none; }

/* ══════════════════════════════════════════════════
   SHARED UTILITIES
══════════════════════════════════════════════════ */

.eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
}

/* Reveal animation */
.r {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.r.v { opacity: 1; transform: translateY(0); will-change: auto; }

/* Stagger helpers */
.r:nth-child(2) { transition-delay: 0.08s; }
.r:nth-child(3) { transition-delay: 0.16s; }
.r:nth-child(4) { transition-delay: 0.24s; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: transform 0.18s ease, opacity 0.18s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }

.btn-fill {
    background: linear-gradient(135deg, #d08a4f, #a55024 58%, #6e321b);
    color: #120805;
    box-shadow: 0 14px 40px rgba(165,80,36,0.26);
}
.btn-fill:hover { box-shadow: 0 20px 56px rgba(165,80,36,0.36); }

.btn-ghost {
    border-color: var(--line);
    background: rgba(255,255,255,0.028);
    color: var(--muted);
}
.btn-ghost:hover { border-color: rgba(237,234,222,0.24); color: var(--text); }

.btn-full { width: 100%; }

/* ══════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════ */

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px var(--ph) 14px;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    transition: background 0.35s ease, backdrop-filter 0.35s ease;
    border-bottom: 1px solid transparent;
    background: transparent;
}
.nav.is-scrolled {
    background: rgba(7, 6, 4, 0.86);
    backdrop-filter: blur(24px);
    border-bottom-color: var(--line-s);
}

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

.brand-logo {
    flex-shrink: 0;
    height: 44px; /* Высота подстраивается под шапку меню */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(165,80,36,0.28));
}

.brand-name {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    letter-spacing: 0.14em;
    line-height: 1;
}
.brand-sub {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    opacity: 0.7;
    line-height: 1;
}

.brand-name em {
    font-family: "DM Serif Display", serif;
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.04em;
    font-size: 0.72em;
    vertical-align: 0.06em;
}

.nav-r {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lng {
    display: flex;
    align-items: center;
    gap: 1px;
    padding: 3px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(165,80,36,0.035);
}
.lng-b {
    min-width: 48px;
    padding: 7px 10px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--faint);
    cursor: pointer;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    transition: opacity 0.15s;
}
.lng-b.is-on {
    background: rgba(165,80,36,0.24);
    color: var(--text);
}

.ntog {
    display: none;
    width: 48px; height: 48px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(165,80,36,0.035);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.ntog span {
    display: block;
    width: 16px; height: 1px;
    background: var(--text);
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.nlinks { display: flex; gap: 26px; }
.nlinks a {
    font-size: 0.84rem;
    color: var(--muted);
    letter-spacing: 0.05em;
    transition: opacity 0.15s;
    position: relative;
}
.nlinks a::after {
    content: "";
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}
.nlinks a:hover        { color: var(--text); }
.nlinks a:hover::after { transform: scaleX(1); }

/* ══════════════════════════════════════════════════
   HERO  — full-viewport quantum stage
══════════════════════════════════════════════════ */

/* Sections don't hide under fixed nav on anchor jumps */
section, .ticker { scroll-margin-top: 74px; }

.side-label {
    position: absolute;
    left: var(--ph);
    top: 70px;
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 14px;
}
.side-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
}
.side-label span {
    font-size: 0.62rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    opacity: 0.6;
    white-space: nowrap;
}
.side-label-sep {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
}

@media (max-width: 860px) {
    .side-label { display: none; }
}

.hero {
    height: 100svh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

/* Canvas fills the entire hero */
.qfield {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}


/* Slogan — mid-right, floating over the field */
.qtag-slogan {
    position: absolute;
    right: var(--ph);
    top: 50%;
    transform: translateY(-50%);
    max-width: 20ch;
    text-align: right;
    font-family: "DM Serif Display", serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.1rem, 1.8vw, 1.7rem);
    line-height: 1.42;
    color: rgba(237, 234, 222, 0.42);
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    animation: hero-tag-in 1.2s ease 1.1s both;
}

/* Bottom gradient overlay + info strip */
.hero-f {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    padding: clamp(80px, 14vh, 140px) var(--ph) clamp(32px, 4vw, 52px);
    background: linear-gradient(
        to top,
        rgba(7,6,4,0.97) 0%,
        rgba(7,6,4,0.84) 35%,
        rgba(7,6,4,0.44) 65%,
        transparent 100%
    );
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: clamp(16px, 3vw, 52px);
    align-items: flex-end;
    opacity: 0;
    animation: hero-rise 1s ease 0.5s both;
    border-bottom: 1px solid var(--line-s);
}

.hero-txt {
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.76;
    max-width: 42ch;
}

.hero-stats {
    display: flex;
    gap: clamp(14px, 2.5vw, 36px);
}

.hstat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hstat strong {
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
}
.hstat span {
    font-size: 0.7rem;
    color: var(--faint);
    letter-spacing: 0.06em;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

@keyframes hero-rise {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-tag-in {
    from { opacity: 0; transform: translateY(calc(-50% + 20px)); }
    to   { opacity: 1; transform: translateY(-50%); }
}

/* ══════════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════════ */

.ticker {
    overflow: hidden;
    border-top: 1px solid var(--line-s);
    border-bottom: 1px solid var(--line-s);
    padding: 14px 0;
    white-space: nowrap;
    user-select: none;
    position: relative;
    z-index: 2;
    contain: layout style;
}
.ticker-t {
    display: inline-flex;
    animation: ticker-scroll 34s linear infinite;
    will-change: transform;
}
.titem {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--faint);
    flex-shrink: 0;
}
.titem b { color: var(--gold); font-weight: 600; }
.titem i {
    display: inline-block;
    width: 3px; height: 3px;
    border-radius: 50%;
    background: rgba(165,80,36,0.48);
    vertical-align: middle;
    font-style: normal;
    flex-shrink: 0;
}
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════ */

.svcs {
    padding: clamp(72px, 9vw, 128px) var(--ph) 0;
}
.svcs-top {
    display: grid;
    grid-template-columns: minmax(0, 52rem) minmax(360px, 1fr);
    gap: clamp(28px, 5vw, 84px);
    align-items: center;
    max-width: none;
    margin-bottom: clamp(40px, 5vw, 72px);
}
.svcs-copy {
    min-width: 0;
}
.svcs-top h2 {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-size: clamp(2.2rem, 4.2vw, 5.2rem);
    line-height: 1.04;
    letter-spacing: -0.02em;
}
.services-founder {
    justify-self: center;
    width: clamp(360px, 27vw, 520px);
    max-height: clamp(300px, 34vw, 480px);
    margin-right: clamp(0px, 4vw, 80px);
    object-fit: contain;
    opacity: 0.76;
    pointer-events: none;
    user-select: none;
    transform: translate3d(0, -8px, 0) rotate(-1deg) scaleY(1.14);
    transform-origin: 50% 72%;
    filter:
        saturate(0.76)
        sepia(0.16)
        contrast(1.08)
        brightness(0.82)
        drop-shadow(0 26px 58px rgba(0,0,0,0.56))
        drop-shadow(0 0 42px rgba(165,80,36,0.18));
}
.services-founder::selection { background: transparent; }

.svc {
    border-top: 1px solid var(--line-s);
    cursor: pointer;
    transition: opacity 0.22s ease;
}
.svc:last-child  { border-bottom: 1px solid var(--line-s); }
.svc.is-open     { border-top-color: var(--gold); }

.svc-row {
    display: grid;
    grid-template-columns: clamp(3rem, 5vw, 5.5rem) 1fr auto;
    align-items: center;
    gap: 16px;
    padding: clamp(18px, 2.5vw, 26px) 0;
}

.svc-n {
    font-family: "DM Serif Display", serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--gold);
    opacity: 0.55;
    transition: opacity 0.22s;
}
.svc:hover .svc-n,
.svc.is-open .svc-n { opacity: 1; }

.svc-name {
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: clamp(1.4rem, 2.8vw, 3.2rem);
    line-height: 1;
    transition: opacity 0.22s;
}
.svc:hover .svc-name,
.svc.is-open .svc-name { color: var(--gold); }

.svc-ico {
    font-size: 1.3rem;
    color: var(--faint);
    transition: opacity 0.22s, transform 0.3s ease;
    line-height: 1;
}
.svc:hover .svc-ico { color: var(--muted); }
.svc.is-open .svc-ico { color: var(--gold); transform: rotate(45deg); }

.svc-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: calc(clamp(3rem, 5vw, 5.5rem) + 16px);
}
.svc-body p {
    padding-bottom: clamp(18px, 2.5vw, 28px);
    color: var(--muted);
    font-size: 0.98rem;
    max-width: 60ch;
}
.svc.is-open .svc-body { max-height: 240px; }
.svc-link {
    display: inline-block;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    color: var(--gold);
    margin-bottom: clamp(16px, 2vw, 24px);
    transition: opacity 0.18s;
}
.svc-link:hover { opacity: 0.72; }

/* ══════════════════════════════════════════════════
   STATEMENT
══════════════════════════════════════════════════ */

.stmt {
    padding: clamp(72px, 11vw, 140px) var(--ph);
    text-align: center;
    overflow: hidden;
}
.stmt p {
    font-family: "DM Serif Display", serif;
    font-style: italic;
    font-size: clamp(2rem, 5.2vw, 6.8rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--text);
    max-width: 18ch;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════
   METHOD
══════════════════════════════════════════════════ */

.method {
    padding: clamp(72px, 9vw, 120px) var(--ph);
}
.method-top {
    max-width: 52rem;
    margin-bottom: clamp(40px, 5vw, 72px);
}
.method-top h2 {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-size: clamp(2.2rem, 4.2vw, 5.2rem);
    line-height: 1.04;
    letter-spacing: -0.02em;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line-s);
}
.mstep {
    background: var(--bg);
    padding: clamp(28px, 3.5vw, 52px) clamp(24px, 3vw, 44px);
    transition: background 0.25s;
}
.mstep:hover { background: rgba(255,255,255,0.025); }

.mstep-n {
    display: block;
    font-family: "DM Serif Display", serif;
    font-style: italic;
    font-size: clamp(3.5rem, 6vw, 7rem);
    color: var(--gold);
    opacity: 0.28;
    line-height: 1;
    margin-bottom: clamp(24px, 3vw, 40px);
    transition: opacity 0.25s;
}
.mstep:hover .mstep-n { opacity: 0.55; }

.mstep {
    position: relative;
}
.mstep-icon {
    position: absolute;
    top: clamp(28px, 3.5vw, 52px);
    right: clamp(24px, 3vw, 44px);
    width: clamp(52px, 5vw, 68px);
    height: clamp(52px, 5vw, 68px);
    color: var(--gold);
    opacity: 0.45;
    transition: opacity 0.3s;
    pointer-events: none;
}
.mstep:hover .mstep-icon {
    opacity: 0.75;
}

.mstep h3 {
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 1.18rem;
    margin-bottom: 12px;
}
.mstep p {
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.74;
}

/* ══════════════════════════════════════════════════
   SIGNATURE
══════════════════════════════════════════════════ */

.sig {
    padding: clamp(72px, 9vw, 120px) var(--ph);
}
.sig-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: clamp(40px, 5vw, 64px);
    overflow: hidden;
}
.sig-top-copy {
    flex: 0 0 auto;
    max-width: 52rem;
}
.sig-top-img {
    flex: 1 1 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: clamp(320px, 34vw, 520px);
    pointer-events: none;
}
.sig-top-founder {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
    object-position: bottom center;
    mask-image: linear-gradient(to top, transparent 0%, black 12%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 12%);
    opacity: 0.92;
}
.sig-top h2 {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-size: clamp(2.2rem, 4.2vw, 5.2rem);
    line-height: 1.04;
    letter-spacing: -0.02em;
}

.sig-grid {
    display: grid;
    grid-template-columns: 1.28fr 1fr;
    gap: 1px;
    background: var(--line-s);
}

.sigp {
    background: var(--bg);
    padding: clamp(28px, 3.5vw, 52px);
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.25s;
}
.sigp:hover { background: rgba(255,255,255,0.022); }

.sigp-lg {
    grid-row: span 2;
    min-height: 520px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(165,80,36,0.16), transparent 44%),
        var(--bg);
}
.sigp-lg:hover {
    background:
        linear-gradient(145deg, rgba(165,80,36,0.22), transparent 44%),
        rgba(255,255,255,0.018);
}

.sig-founder {
    position: absolute;
    bottom: 0;
    right: -2%;
    height: 88%;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
    pointer-events: none;
    mask-image:
        linear-gradient(to top,  transparent 0%, black 22%),
        linear-gradient(to right, transparent 0%, black 18%);
    mask-composite: intersect;
    -webkit-mask-image:
        linear-gradient(to top,  transparent 0%, black 22%),
        linear-gradient(to right, transparent 0%, black 18%);
    -webkit-mask-composite: source-in;
    opacity: 0.82;
}

.sigp-qt {
    background:
        linear-gradient(160deg, var(--gold-s), rgba(255,255,255,0.018)),
        var(--bg);
}
.sigp-qt p {
    font-family: "DM Serif Display", serif;
    font-style: italic;
    font-size: clamp(1.6rem, 2.8vw, 2.8rem);
    line-height: 1.1;
    color: var(--text);
}

.sigp-meta {
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.sigp h3 {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-size: clamp(2rem, 3.4vw, 4.2rem);
    line-height: 1.04;
    letter-spacing: -0.02em;
    max-width: 11ch;
}
.sigp:not(.sigp-qt) > p {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.76;
    max-width: 38ch;
}

/* ══════════════════════════════════════════════════
   METRICS
══════════════════════════════════════════════════ */

.mtcs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line-s);
    margin: 0 var(--ph) clamp(72px, 9vw, 120px);
}
.mtc {
    background: var(--bg);
    padding: clamp(28px, 3.5vw, 48px);
    min-height: 180px;
    transition: background 0.25s;
}
.mtc:hover { background: rgba(255,255,255,0.022); }

.mtc strong {
    display: block;
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--text);
}
.mtc span {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.68;
}

/* ══════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════ */

.contact {
    padding: 0 var(--ph) clamp(80px, 10vw, 140px);
}
.contact-in {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: clamp(32px, 4vw, 80px);
    padding: clamp(36px, 4.5vw, 72px);
    background:
        linear-gradient(135deg, rgba(165,80,36,0.14), transparent 38%),
        linear-gradient(315deg, rgba(208,138,79,0.08), transparent 42%),
        rgba(255,255,255,0.025);
    border: 1px solid var(--line);
}

.contact-l {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-l h2 {
    font-family: "DM Serif Display", serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.9rem, 3.2vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}
.contact-sub {
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.76;
    margin-top: 20px;
    max-width: 36ch;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-style: normal;
}
.contact-phone,
.contact-address {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.9rem;
    color: var(--muted);
}
.contact-phone {
    color: var(--text);
    font-weight: 500;
    transition: color 0.15s;
}
.contact-phone:hover { color: var(--gold); }
.contact-email {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.9rem;
    color: var(--muted);
    transition: color 0.15s;
}
.contact-email:hover { color: var(--gold); }
.contact-phone svg,
.contact-address svg,
.contact-email svg { flex-shrink: 0; opacity: 0.6; }

/* Contact form */
.cform {
    display: grid;
    gap: 14px;
}
.cform label {
    display: grid;
    gap: 7px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--faint);
    text-transform: uppercase;
}
.cform input,
.cform textarea,
.cform select {
    width: 100%;
    padding: 15px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--text);
    outline: none;
    letter-spacing: normal;
    text-transform: none;
    font-size: 0.96rem;
    transition: opacity 0.18s;
}
.cform input:focus,
.cform textarea:focus,
.cform select:focus {
    border-color: rgba(208,138,79,0.56);
    box-shadow: 0 0 0 4px rgba(165,80,36,0.09);
    background: rgba(255,255,255,0.06);
}
.cform textarea { min-height: 140px; resize: vertical; }

.cform select option { background: #120c08; }

.fstat {
    font-size: 0.86rem;
    color: var(--muted);
    display: none;
}
.fstat.ok,
.fstat.err { display: block; }
.fstat.ok  { color: #9ef3be; }
.fstat.err { color: #ffbcbc; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 28px var(--ph) 52px;
    border-top: 1px solid var(--line-s);
}
.footer-mark {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    letter-spacing: 0.14em;
    line-height: 1;
}
.footer-mark em {
    font-family: "DM Serif Display", serif;
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.04em;
    font-size: 0.72em;
    vertical-align: 0.06em;
}
.footer-leg {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--faint);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */

@media (max-width: 1080px) {
    .svcs-top      { grid-template-columns: minmax(0, 1fr) minmax(220px, 32vw); }
    .services-founder { width: clamp(240px, 32vw, 340px); margin-right: 0; opacity: 0.58; }
    .hero-f        { grid-template-columns: 1fr auto; }
    .hero-btns     { grid-column: 1 / -1; flex-direction: row; }
    .hero-stats    { grid-column: 2; }
    .qtag-slogan   { font-size: clamp(1rem, 2.2vw, 1.4rem); max-width: 18ch; }

    .sig-grid { grid-template-columns: 1fr 1fr; }
    .sigp-lg  { grid-row: auto; min-height: 420px; }
    .sig-top  { gap: 24px; }
    .sig-top-img { height: clamp(200px, 22vw, 320px); }
}

@media (max-width: 860px) {
    .svcs-top {
        grid-template-columns: 1fr;
        margin-bottom: 0;
    }
    .services-founder {
        justify-self: center;
        width: clamp(260px, 72vw, 360px);
        max-height: none;
        margin-right: 0;
        margin-bottom: -40px;
        opacity: 0.72;
        -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
    }
    .nav-r .nlinks { display: none; }
    .ntog { display: flex; }

    .nlinks.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 8px);
        right: var(--ph);
        min-width: 200px;
        padding: 18px;
        background: rgba(10,11,18,0.97);
        border: 1px solid var(--line);
        backdrop-filter: blur(16px);
        gap: 14px;
        z-index: 50;
    }

    .method-grid   { grid-template-columns: 1fr; }
    .sig-grid      { grid-template-columns: 1fr; }
    .mtcs          { grid-template-columns: 1fr; }
    .contact-in    { grid-template-columns: 1fr; }
    .sigp-lg       { min-height: 360px; }
    .sig-top       { flex-direction: column; gap: 0; }
    .sig-top-img   { display: none; }
}

@media (max-width: 640px) {
    .hero          { height: 100svh; }
    .hero-f        { grid-template-columns: 1fr; gap: 16px; padding-top: clamp(40px, 8vh, 80px); }
    .hero-stats    { grid-column: auto; flex-direction: row; flex-wrap: wrap; gap: 20px; }
    .hero-btns     { grid-column: auto; flex-direction: row; flex-wrap: wrap; }
    .qtag-slogan   { display: none; }
    .svc-name      { font-size: clamp(1.3rem, 6.5vw, 2.2rem); }
}

/* ══════════════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .r, .r.v, .hero-f,
    .qtag-eyebrow, .qtag-slogan { animation: none; transition: none; opacity: 1; transform: none; }
    .qtag-slogan { transform: translateY(-50%); } /* restore vertical center on desktop */
    .grain { animation: none; }
    .blob  { animation: none; }
    .ticker-t { animation: none; }
    .cur   { display: none; }
    .svc-body { transition: none; }
}
