:root {
    --ink: #141411;
    --paper: #f6f0e4;
    --paper-2: #fffaf0;
    --muted: #6e6a60;
    --line: rgba(20, 20, 17, 0.14);
    --yellow: #ffcf33;
    --red: #eb4d3d;
    --green: #0d8f70;
    --blue: #2267d8;
    --black: #080806;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
::selection { background: var(--yellow); color: var(--ink); }
body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.serif { font-family: "Instrument Serif", serif; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 700;
    border: 1px solid var(--ink);
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: var(--paper-2); }
.btn-primary:hover { background: var(--red); color: #fff; }
.btn-secondary { background: transparent; color: var(--ink); }
.btn-secondary:hover { background: var(--yellow); }
.btn-light { background: var(--paper-2); color: var(--ink); border-color: var(--paper-2); }
.btn-light:hover { background: var(--yellow); border-color: var(--yellow); }
.section { padding: 112px 0; border-bottom: 1px solid var(--line); }
.section-dark { background: var(--black); color: var(--paper-2); border-color: rgba(255,255,255,0.12); }
.section-title {
    margin: 0;
    max-width: 820px;
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.9;
    font-weight: 400;
}
.section-copy {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
}
.section-dark .section-copy { color: rgba(255,250,240,0.72); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.nav {
    position: fixed;
    z-index: 50;
    inset: 16px 0 auto;
    pointer-events: none;
}
.nav-inner {
    pointer-events: auto;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(246,240,228,0.88);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px 10px 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 50px rgba(20,20,17,0.08);
}
.brand { font-size: 1.5rem; line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 18px; color: var(--muted); font-size: 0.92rem; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-2);
    color: var(--ink);
}
.mobile-drawer {
    display: none;
    margin-top: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-2);
    padding: 12px;
    box-shadow: 0 18px 50px rgba(20,20,17,0.12);
}
.mobile-drawer a { display: block; padding: 14px; color: var(--muted); }
.mobile-drawer .btn { color: var(--paper-2); margin-top: 8px; width: 100%; }
.mobile-drawer.open { display: block; }

.hero {
    min-height: 100vh;
    padding: 130px 0 40px;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(20,20,17,0.055) 1px, transparent 1px),
        linear-gradient(rgba(20,20,17,0.055) 1px, transparent 1px),
        var(--paper);
    background-size: 48px 48px;
}
.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
    gap: 48px;
    align-items: end;
}
.hero h1 {
    margin: 18px 0 0;
    font-size: clamp(4.1rem, 9vw, 9.4rem);
    line-height: 0.82;
    font-weight: 400;
}
.hero h1 span {
    display: inline-block;
    background: var(--yellow);
    color: var(--ink);
    padding: 0 0.08em 0.06em;
    transform: rotate(-1deg);
}
.hero-copy {
    max-width: 650px;
    margin: 26px 0 0;
    font-size: 1.2rem;
    line-height: 1.75;
    color: var(--muted);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-media {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--ink);
    border-radius: 8px;
    background: var(--paper-2);
    box-shadow: 16px 16px 0 var(--ink);
}
.hero-media::before {
    content: "Strategy / Creative / Tech / Growth";
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 999px;
    background: rgba(8,8,6,0.54);
    color: #fff;
    padding: 8px 12px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
}
.hero-media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.05);
}
.hero-media-caption {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 18px;
    border-top: 1px solid var(--ink);
}
.hero-media-caption strong { display: block; }
.hero-media-caption span { display: block; margin-top: 3px; color: var(--muted); font-size: 0.92rem; }
.stamp {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-weight: 800;
    text-align: center;
    font-size: 0.74rem;
    line-height: 1.1;
    text-transform: uppercase;
}
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--ink);
    border-radius: 8px;
    margin-top: 58px;
    background: var(--ink);
}
.cred-strip {
    display: grid;
    grid-template-columns: 1.1fr repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-top: 18px;
    background: var(--line);
}
.cred-cell {
    min-height: 112px;
    background: rgba(255,250,240,0.72);
    padding: 20px;
}
.cred-cell strong {
    display: block;
    font-size: 1.05rem;
}
.cred-cell span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.92rem;
}
.metric {
    min-height: 148px;
    padding: 22px;
    background: var(--paper-2);
}
.metric strong {
    display: block;
    font-family: "Instrument Serif", serif;
    font-size: 3.6rem;
    line-height: 0.9;
    font-weight: 400;
}
.metric span {
    display: block;
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.ticker {
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--yellow);
    color: var(--ink);
}
.ticker-track {
    width: max-content;
    display: flex;
    gap: 28px;
    padding: 16px 0;
    animation: marquee 34s linear infinite;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.82rem;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.problems-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 44px;
    align-items: start;
}
.problem-list {
    display: grid;
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--line);
}
.problem-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
    background: var(--paper-2);
    padding: 24px;
}
.problem-item em {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--ink);
    color: var(--paper-2);
    font-style: normal;
    font-weight: 800;
    font-size: 0.85rem;
}
.problem-item h3 { margin: 0; font-size: 1.2rem; }
.problem-item p { margin: 8px 0 0; color: var(--muted); line-height: 1.6; }

.system-section { background: var(--paper-2); }
.system-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    align-items: center;
}
.system-map {
    position: relative;
    min-height: 560px;
    border: 1px solid var(--ink);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(20,20,17,0.05) 1px, transparent 1px),
        linear-gradient(rgba(20,20,17,0.05) 1px, transparent 1px),
        #fff7e7;
    background-size: 34px 34px;
    overflow: hidden;
}
.system-node {
    position: absolute;
    width: min(230px, 42%);
    border: 1px solid var(--ink);
    border-radius: 8px;
    background: var(--paper-2);
    padding: 18px;
    box-shadow: 8px 8px 0 rgba(20,20,17,0.92);
    z-index: 2;
}
.system-node small {
    display: block;
    margin-bottom: 18px;
    color: var(--muted);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.68rem;
}
.system-node strong {
    display: block;
    font-family: "Instrument Serif", serif;
    font-size: 2rem;
    line-height: 1;
    font-weight: 400;
}
.system-node p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.9rem;
}
.node-1 { top: 34px; left: 34px; }
.node-2 { top: 98px; right: 34px; }
.node-3 { left: 58px; bottom: 64px; }
.node-4 { right: 58px; bottom: 34px; }
.node-center {
    top: 50%;
    left: 50%;
    width: 182px;
    height: 182px;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 50%;
    background: var(--yellow);
    transform: translate(-50%, -50%);
    box-shadow: none;
    z-index: 3;
}
.node-center strong { font-size: 2.4rem; }
.system-line {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70%;
    height: 1px;
    background: var(--ink);
    transform-origin: left center;
    opacity: 0.35;
    z-index: 1;
}
.line-a { transform: rotate(-35deg); }
.line-b { transform: rotate(35deg); }
.line-c { transform: rotate(145deg); }
.line-d { transform: rotate(-145deg); }
.system-list {
    display: grid;
    gap: 12px;
    margin-top: 34px;
}
.system-list li {
    list-style: none;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    color: var(--muted);
    line-height: 1.65;
}
.system-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    margin-top: 8px;
}

.service-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 52px;
}
.service-card {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    padding: 26px;
    transition: transform 180ms ease, background 180ms ease;
}
.service-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.09); }
.service-number {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255,250,240,0.55);
}
.service-number span:last-child {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--ink);
    font-weight: 900;
}
.swatch-yellow { background: var(--yellow); }
.swatch-red { background: var(--red); color: #fff !important; }
.swatch-green { background: var(--green); color: #fff !important; }
.swatch-blue { background: var(--blue); color: #fff !important; }
.service-card h3 {
    margin: 70px 0 0;
    font-size: 2.1rem;
    line-height: 1;
    font-weight: 400;
}
.service-card p { margin: 18px 0 0; color: rgba(255,250,240,0.68); line-height: 1.65; }

.work-header {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 40px;
    align-items: end;
}
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 52px;
}
.work-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--paper-2);
    transition: transform 180ms ease, box-shadow 180ms ease;
}
.work-card:hover { transform: translateY(-5px); box-shadow: 10px 10px 0 var(--ink); }
.work-card img {
    width: 100%;
    aspect-ratio: 1.22 / 1;
    object-fit: cover;
}
.work-card-body { padding: 24px; }
.work-card .tag { color: var(--red); }
.work-card h3 {
    margin: 16px 0 0;
    font-size: 2rem;
    line-height: 1;
    font-weight: 400;
}
.work-card p { margin: 16px 0 0; color: var(--muted); line-height: 1.65; }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 52px;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--line);
    gap: 1px;
}
.process-step { background: var(--paper-2); padding: 28px; min-height: 300px; }
.process-step strong {
    display: block;
    font-family: "Instrument Serif", serif;
    font-size: 5rem;
    line-height: 0.9;
    font-weight: 400;
}
.process-step h3 { margin: 64px 0 0; font-size: 1.25rem; }
.process-step p { color: var(--muted); line-height: 1.65; }

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 52px;
}
.engagement-card {
    position: relative;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 8px;
    background: rgba(255,255,255,0.055);
    padding: 28px;
    overflow: hidden;
}
.engagement-card.featured {
    background: var(--yellow);
    color: var(--ink);
    border-color: var(--yellow);
}
.engagement-card.featured .engagement-kicker,
.engagement-card.featured p,
.engagement-card.featured li { color: rgba(20,20,17,0.72); }
.engagement-kicker {
    color: rgba(255,250,240,0.58);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.engagement-card h3 {
    margin: 24px 0 0;
    font-family: "Instrument Serif", serif;
    font-size: 3rem;
    line-height: 0.95;
    font-weight: 400;
}
.engagement-card p {
    margin: 18px 0 0;
    color: rgba(255,250,240,0.68);
    line-height: 1.7;
}
.engagement-card ul {
    display: grid;
    gap: 10px;
    margin: 30px 0 0;
    padding: 0;
}
.engagement-card li {
    list-style: none;
    color: rgba(255,250,240,0.72);
    line-height: 1.55;
}
.engagement-card li::before {
    content: "+";
    display: inline-block;
    margin-right: 8px;
    font-weight: 900;
}
.engagement-card .btn { margin-top: 34px; width: 100%; }

.cta-band {
    background: var(--red);
    color: #fff;
    padding: 64px 0;
}
.cta-band-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
}
.cta-band h2 {
    margin: 0;
    font-family: "Instrument Serif", serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.9;
    font-weight: 400;
}
.cta-band p {
    max-width: 620px;
    margin: 18px 0 0;
    color: rgba(255,255,255,0.8);
    font-size: 1.08rem;
    line-height: 1.7;
}

.about-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 54px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.14);
}
.about-image img { width: 100%; height: 560px; object-fit: cover; }
.about-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 34px;
}
.about-point {
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    padding: 22px;
    background: rgba(255,255,255,0.055);
}
.about-point h3 { margin: 0; font-size: 1.12rem; }
.about-point p { margin: 10px 0 0; color: rgba(255,250,240,0.66); line-height: 1.6; }

.narrow { width: min(880px, calc(100% - 40px)); margin: 0 auto; }
.page-hero {
    padding: 150px 0 82px;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(20,20,17,0.055) 1px, transparent 1px),
        linear-gradient(rgba(20,20,17,0.055) 1px, transparent 1px),
        var(--paper);
    background-size: 48px 48px;
}
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; color: var(--muted); margin-bottom: 24px; font-size: 0.94rem; }
.crumbs a:hover { color: var(--red); }
.page-hero h1 {
    margin: 16px 0 0;
    max-width: 980px;
    font-family: "Instrument Serif", serif;
    font-size: clamp(4rem, 9vw, 8.8rem);
    line-height: 0.84;
    font-weight: 400;
}
.highlight { display: inline-block; background: var(--yellow); color: var(--ink); padding: 0 0.08em 0.06em; transform: rotate(-1deg); }
.page-hero p { max-width: 720px; margin: 28px 0 0; color: var(--muted); font-size: 1.18rem; line-height: 1.75; }

.ticker { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--yellow); color: var(--ink); }
.ticker-track {
    width: max-content;
    display: flex;
    gap: 28px;
    padding: 16px 0;
    animation: marquee 34s linear infinite;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.82rem;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-2);
    padding: 28px;
}
.card.dark { border-color: rgba(255,255,255,0.14); background: rgba(255,255,255,0.055); }
.card h2, .card h3 { margin: 0; font-family: "Instrument Serif", serif; font-weight: 400; line-height: 1; }
.card h2 { font-size: 3rem; }
.card h3 { font-size: 2.2rem; }
.card p { color: var(--muted); line-height: 1.7; }
.section-dark .card p, .card.dark p { color: rgba(255,250,240,0.68); }
.number { display: block; font-family: "Instrument Serif", serif; font-size: 4.8rem; line-height: 0.9; font-weight: 400; }
.feature-card { min-height: 330px; display: flex; flex-direction: column; justify-content: space-between; }
.feature-card .badge {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    font-weight: 900;
}
.check-list { display: grid; gap: 12px; margin: 26px 0 0; padding: 0; }
.check-list li {
    list-style: none;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    color: var(--muted);
    line-height: 1.6;
}
.check-list li::before { content: "+"; font-weight: 900; color: var(--red); }
.section-dark .check-list li { color: rgba(255,250,240,0.7); }

.timeline { display: grid; gap: 1px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--line); }
.timeline-step { display: grid; grid-template-columns: 120px 1fr; gap: 24px; background: var(--paper-2); padding: 28px; }
.timeline-step strong { font-family: "Instrument Serif", serif; font-size: 4.2rem; line-height: 0.9; font-weight: 400; }
.timeline-step h3 { margin: 0; font-size: 1.35rem; }
.timeline-step p { margin: 10px 0 0; color: var(--muted); line-height: 1.7; }

.legal {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-2);
    padding: clamp(24px, 5vw, 54px);
}
.legal h2 { margin: 48px 0 14px; font-family: "Instrument Serif", serif; font-size: 2.6rem; line-height: 1; font-weight: 400; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { margin: 28px 0 10px; font-size: 1.1rem; }
.legal p, .legal li { color: var(--muted); line-height: 1.75; }
.legal a { color: var(--red); font-weight: 700; }
.legal ul { margin: 14px 0 0; padding-left: 20px; }
.legal table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 0.94rem; }
.legal th, .legal td { border: 1px solid var(--line); padding: 14px; text-align: left; vertical-align: top; }
.legal th { background: var(--paper); color: var(--ink); }

.faq-list { display: grid; gap: 10px; margin-top: 44px; }

.product-shot {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-2);
    padding: 22px;
    box-shadow: 16px 16px 0 var(--ink);
}
.product-top { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
.transcript { min-height: 220px; margin-top: 18px; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--muted); line-height: 1.8; }

.faq-wrap {
    max-width: 860px;
    margin: 52px auto 0;
    display: grid;
    gap: 10px;
}
.faq-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-2);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 0;
    background: transparent;
    color: var(--ink);
    padding: 22px 24px;
    text-align: left;
    font-weight: 800;
    cursor: pointer;
}
.faq-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--yellow);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 280ms ease;
}
.faq-answer p { margin: 0; padding: 0 24px 24px; color: var(--muted); line-height: 1.7; }

.contact-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 44px;
    align-items: start;
}
.contact-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-2);
    padding: 30px;
}
.contact-links { display: grid; gap: 16px; margin-top: 36px; color: var(--muted); }
.contact-links a:hover { color: var(--red); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
label span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
input, select, textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    padding: 14px 15px;
}
textarea { min-height: 132px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--yellow); border-color: var(--ink); }
.full { grid-column: 1 / -1; }
.submit { width: 100%; margin-top: 18px; cursor: pointer; }

.floating-cta {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    box-shadow: 0 14px 40px rgba(235,77,61,0.32);
}
footer { background: var(--ink); color: var(--paper-2); padding: 42px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; color: rgba(255,250,240,0.62); font-size: 0.92rem; }
.footer-links a:hover { color: var(--yellow); }

@media (max-width: 980px) {
    .nav-links, .nav-actions .desktop-cta { display: none; }
    .mobile-toggle { display: inline-grid; place-items: center; }
    .hero-layout, .problems-grid, .work-header, .about-layout, .contact-grid { grid-template-columns: 1fr; }
    .hero-media { box-shadow: 10px 10px 0 var(--ink); }
    .hero-metrics, .cred-strip, .service-board, .work-grid, .process-grid, .engagement-grid { grid-template-columns: repeat(2, 1fr); }
    .system-layout { grid-template-columns: 1fr; }
    .grid-2, .grid-3, .grid-4, .cta-band-inner { grid-template-columns: 1fr; }
    .timeline-step { grid-template-columns: 1fr; }
    .section { padding: 84px 0; }
}

@media (max-width: 640px) {
    .container, .narrow { width: min(100% - 28px, 1180px); }
    .hero { padding-top: 112px; }
    .hero h1 { font-size: 4.25rem; }
    .hero h1 span { padding-bottom: 0.04em; }
    .hero-copy { font-size: 1.05rem; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; }
    .hero-media img { height: 300px; }
    .hero-media-caption { grid-template-columns: 1fr; }
    .stamp { width: 66px; height: 66px; }
    .hero-metrics, .cred-strip, .service-board, .work-grid, .process-grid, .about-panel, .form-grid, .engagement-grid { grid-template-columns: 1fr; }
    .metric { min-height: 118px; }
    .section-title { font-size: 3.4rem; }
    .page-hero { padding-top: 120px; }
    .page-hero h1 { font-size: 4.1rem; }
    .engagement-card { min-height: auto; }
    .cta-band { padding: 52px 0; }
    .system-map { min-height: auto; padding: 14px; display: grid; gap: 14px; }
    .system-line { display: none; }
    .system-node, .node-center { position: static; width: 100%; height: auto; transform: none; border-radius: 8px; }
    .node-center { min-height: 150px; }
    .about-image img { height: 360px; }
    .legal { padding: 22px; }
    .legal table { display: block; overflow-x: auto; white-space: nowrap; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; transition: none !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}
