:root {
    --ink: #140e0b;
    --ink-soft: #3c2f28;
    --paper: #f4efe8;
    --paper-2: #fffdfb;
    --line: rgba(20, 14, 11, 0.12);
    --orange: #ff4f00;
    --orange-deep: #e04400;
    --muted: #6e5d54;
    --header: 78px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Manrope, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
    position: sticky; top: 0; z-index: 30;
    background: rgba(244, 239, 232, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s;
}
.site-header.is-stuck { border-color: var(--line); box-shadow: 0 10px 30px rgba(20,14,11,.05); }
.header-bar { min-height: var(--header); display: flex; align-items: center; gap: 22px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; background: #000; flex: none; }
.brand-mark img { width: 92px; height: 46px; max-width: none; object-fit: cover; object-position: left center; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: Unbounded, Manrope, sans-serif; font-weight: 600; font-size: 18px; letter-spacing: -0.03em; }
.brand-tag { font-size: 12px; color: var(--muted); margin-top: 3px; }
.nav { display: flex; gap: 18px; margin-left: auto; }
.nav a { text-decoration: none; font-size: 14px; font-weight: 700; }
.nav a:hover { color: var(--orange-deep); }
.header-phone { text-decoration: none; font-weight: 800; white-space: nowrap; }
.nav-toggle {
    display: none; margin-left: auto; width: 44px; height: 44px;
    border: 1px solid var(--line); background: transparent; border-radius: 12px; padding: 11px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .2s; }
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 50px; padding: 0 22px; border-radius: 999px;
    text-decoration: none; font-weight: 800; border: 1px solid transparent; cursor: pointer;
}
.btn-solid { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(255,79,0,.28); }
.btn-solid:hover { background: var(--orange-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.45); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--ink); }

.hero {
    position: relative; overflow: hidden; color: #f7f1ea;
    background: #100c0a;
    min-height: calc(100vh - var(--header));
    padding: 72px 0 88px;
    display: flex; align-items: center;
}
.hero-canvas {
    position: absolute; inset: 0; width: 100%; height: 100%;
    pointer-events: none; display: block;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.eyebrow { margin: 0 0 14px; text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; color: var(--orange); }
h1, h2, h3 { font-family: Unbounded, Manrope, sans-serif; letter-spacing: -.03em; line-height: 1.12; }
h1 { margin: 0 0 18px; font-size: clamp(40px, 5.4vw, 68px); font-weight: 500; }
h2 { margin: 0 0 12px; font-size: clamp(28px, 3vw, 42px); font-weight: 500; }
h3 { margin: 0 0 8px; font-size: 20px; font-weight: 500; }
.lede { margin: 0 0 28px; font-size: 18px; max-width: 640px; color: #e4d8cf; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stage { display: none; }
.office-photo { margin: 28px 0 0; }
.office-photo img { width: 100%; height: 320px; object-fit: cover; border-radius: 22px; }
.office-photo figcaption { margin-top: 10px; color: var(--muted); font-size: 14px; }

.marquee { overflow: hidden; background: var(--orange); color: #fff; }
.marquee-track { display: flex; gap: 28px; width: max-content; padding: 14px 0; animation: ticker 28s linear infinite; }
.marquee-track span { font-weight: 800; letter-spacing: .04em; text-transform: uppercase; font-size: 13px; }
.marquee-track span::before { content: "●"; margin-right: 28px; font-size: 8px; vertical-align: middle; }

.section { padding: 92px 0; }
.section-tight { padding-top: 20px; }
.section-head { max-width: 720px; margin-bottom: 36px; }
.adv, .cards, .cases { display: grid; gap: 14px; }
.adv { grid-template-columns: repeat(4, 1fr); }
.cards { grid-template-columns: repeat(4, 1fr); }
.cases { grid-template-columns: repeat(3, 1fr); }
.adv article, .card, .case {
    background: var(--paper-2); border: 1px solid var(--line); border-radius: 22px; padding: 22px;
    transition: transform .35s ease, box-shadow .35s ease;
}
.adv article:hover, .card:hover, .case:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(20,14,11,.08); }
.adv p, .card p, .case p { margin: 0; color: var(--ink-soft); }
.adv-ico, .card-num, .case span { color: var(--orange); font-weight: 800; font-size: 13px; letter-spacing: .08em; }
.section-ink { background: var(--ink); color: #f6f1ea; }
.section-ink .case { background: #231912; border-color: rgba(255,255,255,.08); color: #f6f1ea; }
.section-ink .case p { color: #d9cdc4; }
.eyebrow-light { color: #ffb088; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.steps li { display: grid; grid-template-columns: 64px 1fr; gap: 16px; padding: 8px 0 28px; position: relative; }
.steps li::before {
    content: ""; position: absolute; left: 23px; top: 48px; bottom: 0; width: 2px;
    background: linear-gradient(var(--orange), transparent);
}
.steps li:last-child::before { display: none; }
.steps span {
    width: 48px; height: 48px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    background: var(--orange); color: #fff; font-weight: 800; position: relative; z-index: 1;
}
.split, .contact-grid, .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.facts { margin: 0; }
.facts div { padding: 16px 0; border-bottom: 1px solid var(--line); }
.facts dt { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.facts dd { margin: 4px 0 0; font-weight: 800; font-size: 18px; }
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary { cursor: pointer; font-weight: 800; font-size: 18px; padding: 14px 0; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--orange); font-size: 24px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 16px; color: var(--ink-soft); }
.contact-list { list-style: none; margin: 24px 0; padding: 0; }
.contact-list li { padding: 12px 0; border-top: 1px solid var(--line); }
.contact-list span { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.contact-list a, .contact-list strong { font-size: 20px; font-weight: 800; text-decoration: none; }
.contact-list small { display: block; color: var(--muted); }
.map-links { display: flex; gap: 16px; flex-wrap: wrap; }
.map-links a { font-weight: 800; color: var(--orange-deep); }
.lead-form { background: #fff; border-radius: 28px; padding: 28px; border: 1px solid var(--line); display: grid; gap: 14px; box-shadow: 0 24px 60px rgba(20,14,11,.06); }
.lead-form label { display: grid; gap: 6px; font-weight: 700; font-size: 14px; }
.lead-form input, .lead-form textarea { width: 100%; border: 1px solid var(--line); background: var(--paper); border-radius: 12px; padding: 12px 14px; }
.lead-form input:focus, .lead-form textarea:focus { outline: 2px solid var(--orange); border-color: transparent; }
.check { grid-template-columns: 18px 1fr; align-items: start; font-weight: 500; color: var(--muted); }
.check input { width: 18px; height: 18px; margin-top: 3px; }
.form-note { margin: 0; padding: 12px 14px; border-radius: 12px; }
.form-ok { background: #e7f6ea; color: #145c28; }
.form-bad { background: #fff1ea; color: #9a3412; }
.section-contact { padding-bottom: 0; }
.map-wrap { margin-top: 36px; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }
.call-fab {
    position: fixed; right: 18px; bottom: 18px; z-index: 25;
    background: var(--orange); color: #fff; text-decoration: none; font-weight: 800;
    padding: 14px 18px; border-radius: 999px; box-shadow: 0 12px 30px rgba(255,79,0,.35);
}
.site-footer { background: var(--ink); color: #f6f1ea; padding: 48px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer-grid a { display: block; color: #fff; text-decoration: none; margin: 6px 0; }
.brand-light .brand-tag, .footer-note, .footer-label { color: #cbbdb3; }
.footer-note { max-width: 320px; }
.footer-label { margin: 0 0 8px; text-transform: uppercase; letter-spacing: .1em; font-size: 12px; }
.footer-bottom {
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    margin-top: 32px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12); color: #cbbdb3; font-size: 14px;
}
.footer-bottom a { color: #fff; }
.page-plain { padding: 64px 0 88px; }
.narrow { width: min(760px, calc(100% - 40px)); margin: 0 auto; }
.prose a { color: var(--orange-deep); }

.reveal { opacity: 0; transform: translateY(22px); animation: rise .7s ease forwards; }
.d1 { animation-delay: .12s; }
.d2 { animation-delay: .24s; }
.d3 { animation-delay: .36s; }

@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes drift { 50% { transform: translateY(-18px) scale(1.04); } }
@keyframes floaty { 50% { transform: translateY(-8px); } }
@keyframes pulse { 50% { box-shadow: 0 0 0 22px rgba(255,79,0,.05), 0 30px 80px rgba(0,0,0,.35); } }

@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation-duration: 80s; }
}
@media (max-width: 980px) {
    .hero-grid, .adv, .cards, .cases, .split, .contact-grid, .faq-grid, .footer-grid { grid-template-columns: 1fr; }
    .cards, .adv { grid-template-columns: 1fr 1fr; }
    .nav, .header-phone, .header-cta { display: none; }
    .nav-toggle { display: block; }
    .header-bar { position: relative; flex-wrap: wrap; }
    .header-bar.is-open .nav {
        display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: var(--header);
        background: var(--paper); padding: 12px 20px 20px; border-bottom: 1px solid var(--line);
    }
    .hero { min-height: 0; padding-top: 48px; }
}
@media (max-width: 640px) {
    .cards, .adv, .cases { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
}
