/* ============================================================================
   WIN-WIN MARKETING A/S — Design system
   Editorial, two-tone (vermilion × cobalt) identity on warm paper.
   Display: Bricolage Grotesque · Body: Hanken Grotesk · Labels: DM Mono
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------- */
:root {
    --paper:        #f4efe4;
    --paper-2:      #fbf8f1;
    --paper-3:      #ece5d6;
    --ink:          #18150f;
    --ink-2:        #5b5446;
    --ink-3:        #8c8475;
    --line:         #18150f;
    --line-soft:    rgba(24, 21, 15, 0.12);
    --accent:       #ff4d1f;   /* vermilion — "win" one */
    --accent-press: #e63b10;
    --accent-2:     #1f3fd6;   /* cobalt — "win" two */
    --accent-2-press:#1730ad;
    --accent-ink:   #ffffff;
    --highlight:    #ffd84d;   /* warm marker */
    --good:         #1f9a6a;

    --shadow-block: 7px 7px 0 var(--ink);
    --shadow-soft:  0 18px 40px -24px rgba(24, 21, 15, 0.45);

    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 22px;
    --r-pill: 999px;

    --container: 1240px;
    --gap: clamp(1.5rem, 4vw, 3rem);
    --sect: clamp(4.5rem, 9vw, 8rem);

    --f-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
    --f-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
    --f-mono: "DM Mono", "SFMono-Regular", ui-monospace, monospace;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in: cubic-bezier(0.55, 0, 0.45, 1);

    color-scheme: light;
}

[data-theme="dark"] {
    --paper:        #131109;
    --paper-2:      #1c1910;
    --paper-3:      #262114;
    --ink:          #f4efe4;
    --ink-2:        #a89f8c;
    --ink-3:        #7c7464;
    --line:         #f4efe4;
    --line-soft:    rgba(244, 239, 228, 0.16);
    --accent:       #ff623c;
    --accent-press: #ff7a59;
    --accent-2:     #6f8bff;
    --accent-2-press:#90a4ff;
    --accent-ink:   #131109;
    --highlight:    #ffd84d;

    --shadow-block: 7px 7px 0 rgba(244, 239, 228, 0.85);
    --shadow-soft:  0 22px 48px -24px rgba(0, 0, 0, 0.7);
    color-scheme: dark;
}

/* ---- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
    font-family: var(--f-body);
    background: var(--paper);
    color: var(--ink);
    font-size: 1.0625rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

/* subtle paper grain for atmosphere */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
[data-theme="dark"] body::before { opacity: 0.05; }

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }

::selection { background: var(--accent); color: var(--accent-ink); }

:focus-visible {
    outline: 3px solid var(--accent-2);
    outline-offset: 2px;
    border-radius: 3px;
}

/* ---- Layout ------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(1.15rem, 4vw, 2.5rem);
    position: relative;
    z-index: 1;
}
.section { padding-block: var(--sect); position: relative; z-index: 1; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--alt { background: var(--paper-2); border-block: 1.5px solid var(--line-soft); }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 1000;
    background: var(--ink); color: var(--paper);
    padding: 0.75rem 1.25rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---- Typography --------------------------------------------------------- */
.kicker {
    font-family: var(--f-mono);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}
.kicker::before {
    content: "";
    width: 1.6rem; height: 2px;
    background: var(--accent);
    display: inline-block;
}
.kicker--alt { color: var(--accent-2); }
.kicker--alt::before { background: var(--accent-2); }

h1, h2, h3, h4 {
    font-family: var(--f-display);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.022em;
    font-variation-settings: "wght" 700, "opsz" 36;
}

.display {
    font-size: clamp(2.75rem, 7.5vw, 6.2rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 0.95;
}
.h2 { font-size: clamp(2rem, 4.6vw, 3.5rem); }
.h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); }
.lead {
    font-size: clamp(1.1rem, 1.7vw, 1.4rem);
    line-height: 1.5;
    color: var(--ink-2);
    max-width: 42ch;
}
.muted { color: var(--ink-2); }
.mark { color: var(--accent); }
.mark-2 { color: var(--accent-2); }
.serif-ital { font-style: italic; }

.section-head { max-width: 56ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .h2 { margin-top: 1rem; }
.section-head .lead { margin-top: 1.1rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }
.section-head--center .kicker { justify-content: center; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.01em;
    padding: 0.95rem 1.5rem;
    border-radius: var(--r-pill);
    border: 1.5px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    transition: transform 0.25s var(--ease), background 0.25s var(--ease),
                color 0.25s var(--ease), box-shadow 0.25s var(--ease);
    cursor: pointer;
    line-height: 1;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform 0.3s var(--ease); }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(-1px); }

.btn--primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.btn--primary:hover { background: var(--accent-press); border-color: var(--accent-press); }

.btn--ink {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
}
.btn--ghost { background: transparent; }
.btn--lg { padding: 1.1rem 1.9rem; font-size: 1.08rem; }
.btn--block { width: 100%; justify-content: center; }

.text-link {
    font-family: var(--f-mono);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ink);
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.25s var(--ease), gap 0.25s var(--ease), color 0.25s;
}
.text-link svg { width: 1em; height: 1em; transition: transform 0.25s var(--ease); }
.text-link:hover { border-color: var(--accent); gap: 0.8rem; color: var(--accent); }

/* ============================================================================
   NAV
   ========================================================================== */
.nav {
    position: sticky; top: 0; z-index: 100;
    background: color-mix(in srgb, var(--paper) 82%, transparent);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    border-bottom: 1.5px solid var(--line-soft);
    transition: background 0.3s, border-color 0.3s;
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; height: 74px;
}
.logo {
    display: inline-flex; align-items: center; gap: 0.65rem;
    font-family: var(--f-display);
    font-weight: 800; font-size: 1.18rem; letter-spacing: -0.03em;
    color: var(--ink);
}
.logo-mark { width: 34px; height: 34px; flex: 0 0 auto; }
.logo-x { color: var(--accent); margin-inline: 0.05em; }
.logo small {
    font-family: var(--f-mono); font-weight: 500;
    font-size: 0.6rem; letter-spacing: 0.12em;
    color: var(--ink-3); text-transform: uppercase;
    display: block; line-height: 1; margin-top: 2px;
}

.nav-links {
    display: flex; align-items: center; gap: 0.35rem;
}
.nav-links > li > a {
    font-family: var(--f-display);
    font-weight: 500; font-size: 0.96rem;
    padding: 0.5rem 0.85rem; border-radius: var(--r-pill);
    color: var(--ink-2);
    transition: color 0.2s, background 0.2s;
    position: relative;
}
.nav-links > li > a:hover { color: var(--ink); }
.nav-links > li > a.active { color: var(--ink); }
.nav-links > li > a.active::after {
    content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.15rem;
    height: 2px; background: var(--accent); border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 0.6rem; }

.lang-switch {
    display: inline-flex; border: 1.5px solid var(--line-soft);
    border-radius: var(--r-pill); overflow: hidden;
    font-family: var(--f-mono); font-size: 0.72rem;
}
.lang-switch a {
    padding: 0.42rem 0.7rem; color: var(--ink-2);
    transition: background 0.2s, color 0.2s; letter-spacing: 0.05em;
}
.lang-switch a.active { background: var(--ink); color: var(--paper); }

.icon-btn {
    width: 42px; height: 42px; display: grid; place-items: center;
    border: 1.5px solid var(--line-soft); border-radius: var(--r-pill);
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.icon-btn:hover { transform: translateY(-2px); border-color: var(--line); }
.icon-btn svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.nav-cta { padding: 0.6rem 1.15rem; font-size: 0.92rem; }
.burger { display: none; }

/* ============================================================================
   HERO
   ========================================================================== */
.hero { padding-top: clamp(2.5rem, 6vw, 5rem); padding-bottom: clamp(2rem, 4vw, 3.5rem); position: relative; }
.hero-grid {
    display: grid; grid-template-columns: 1.35fr 0.9fr;
    gap: clamp(2rem, 5vw, 4.5rem); align-items: end;
}
.hero-kicker { margin-bottom: 1.5rem; }
.hero h1 { margin-bottom: 1.75rem; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line-2 { color: var(--accent-2); }
.hero-lead { max-width: 46ch; margin-bottom: 2.2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.hero-visual {
    border: 1.5px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--paper-2);
    overflow: hidden;
    box-shadow: var(--shadow-block);
}
.venn-art { padding: clamp(1.5rem, 3vw, 2.5rem); display: grid; gap: 1.25rem; }
.venn-svg { width: 100%; height: auto; }
.venn-caption {
    font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.04em;
    color: var(--ink-2); text-transform: uppercase; text-align: center;
}

.hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0; margin-top: clamp(3rem, 6vw, 4.5rem);
    border: 1.5px solid var(--line); border-radius: var(--r-md);
    overflow: hidden;
}
.hero-stat {
    padding: 1.5rem 1.6rem;
    border-right: 1.5px solid var(--line-soft);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-n {
    font-family: var(--f-display); font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.03em;
    line-height: 1; margin-bottom: 0.4rem;
}
.hero-stat:nth-child(2) .hero-stat-n { color: var(--accent); }
.hero-stat:nth-child(3) .hero-stat-n { color: var(--accent-2); }
.hero-stat-l { font-size: 0.92rem; color: var(--ink-2); }

/* ---- Marquee ------------------------------------------------------------ */
.marquee {
    border-block: 1.5px solid var(--line);
    background: var(--ink);
    color: var(--paper);
    overflow: hidden;
    padding-block: 0.9rem;
}
.marquee-track {
    display: inline-flex; gap: 2.5rem; white-space: nowrap;
    animation: marquee 38s linear infinite;
    font-family: var(--f-display); font-weight: 600;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    will-change: transform;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 2.5rem; }
.marquee-track .dot { color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============================================================================
   INTRO / SPLIT
   ========================================================================== */
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.intro-points { display: grid; gap: 0; margin-top: 0.5rem; }
.intro-point {
    display: grid; grid-template-columns: auto 1fr; gap: 1.4rem;
    padding: 1.6rem 0; border-top: 1.5px solid var(--line-soft); align-items: start;
}
.intro-point:last-child { border-bottom: 1.5px solid var(--line-soft); }
.intro-point-no {
    font-family: var(--f-mono); font-size: 0.85rem; color: var(--accent);
    padding-top: 0.35rem;
}
.intro-point h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.intro-point p { color: var(--ink-2); font-size: 1rem; }

/* ============================================================================
   SERVICES GRID
   ========================================================================== */
.svc-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
}
.svc-card {
    position: relative;
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    background: var(--paper-2);
    padding: clamp(1.5rem, 2.5vw, 2.1rem);
    display: flex; flex-direction: column; gap: 1rem;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
    overflow: hidden;
}
.svc-card::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(120% 90% at 100% 0%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 55%);
    opacity: 0; transition: opacity 0.35s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-block); }
.svc-card:hover::after { opacity: 1; }
.svc-card:nth-child(3n+2):hover { box-shadow: 7px 7px 0 var(--accent); }
.svc-card:nth-child(3n):hover { box-shadow: 7px 7px 0 var(--accent-2); }

.svc-no {
    font-family: var(--f-mono); font-size: 0.8rem; color: var(--ink-3);
    letter-spacing: 0.06em;
}
.svc-icon {
    width: 48px; height: 48px; border-radius: var(--r-sm);
    border: 1.5px solid var(--line); display: grid; place-items: center;
    color: var(--accent); background: var(--paper);
}
.svc-icon svg { width: 24px; height: 24px; }
.svc-card h3 { font-size: 1.4rem; }
.svc-card p { color: var(--ink-2); font-size: 0.99rem; flex: 1; }
.svc-tag {
    font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.03em;
    color: var(--ink-3); padding-top: 0.9rem; border-top: 1.5px solid var(--line-soft);
}

/* services page list variant */
.svc-list { display: grid; gap: 0; }
.svc-row {
    display: grid; grid-template-columns: 5rem 1fr 1.1fr auto; gap: 2rem;
    align-items: center; padding: clamp(1.6rem, 3vw, 2.4rem) 0;
    border-top: 1.5px solid var(--line-soft);
    transition: padding-inline 0.3s var(--ease);
}
.svc-row:last-child { border-bottom: 1.5px solid var(--line-soft); }
.svc-row:hover { background: var(--paper-2); padding-inline: 1.2rem; }
.svc-row-no { font-family: var(--f-mono); color: var(--accent); font-size: 0.9rem; }
.svc-row h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
.svc-row p { color: var(--ink-2); }
.svc-row-tag {
    font-family: var(--f-mono); font-size: 0.74rem; color: var(--ink-3);
    text-align: right; white-space: nowrap;
}
@media (max-width: 880px) {
    .svc-row { grid-template-columns: 3rem 1fr; gap: 0.5rem 1.2rem; }
    .svc-row p { grid-column: 2; }
    .svc-row-tag { grid-column: 2; text-align: left; }
}

/* ============================================================================
   PROCESS
   ========================================================================== */
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.proc-step {
    border-top: 3px solid var(--line); padding-top: 1.4rem;
    display: flex; flex-direction: column; gap: 0.7rem;
    transition: border-color 0.3s;
}
.proc-step:hover { border-color: var(--accent); }
.proc-step:nth-child(even):hover { border-color: var(--accent-2); }
.proc-no {
    font-family: var(--f-display); font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.5rem); line-height: 0.9;
    letter-spacing: -0.04em; color: var(--paper-3);
    -webkit-text-stroke: 1.5px var(--line); color: transparent;
}
[data-theme="dark"] .proc-no { -webkit-text-stroke: 1.5px var(--ink-3); }
.proc-step h3 { font-size: 1.3rem; }
.proc-step p { color: var(--ink-2); font-size: 0.98rem; }

/* ============================================================================
   WORK
   ========================================================================== */
.work-note {
    font-family: var(--f-mono); font-size: 0.82rem; line-height: 1.6;
    color: var(--ink-2); border: 1.5px dashed var(--line-soft);
    border-radius: var(--r-sm); padding: 0.9rem 1.1rem; margin-bottom: 2.5rem;
    display: flex; gap: 0.7rem;
}
.work-note svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--accent-2); margin-top: 2px; }

.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.work-card {
    border: 1.5px solid var(--line); border-radius: var(--r-md);
    overflow: hidden; background: var(--paper-2);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    display: flex; flex-direction: column;
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-block); }
.work-thumb {
    aspect-ratio: 16 / 10; position: relative; overflow: hidden;
    border-bottom: 1.5px solid var(--line);
    display: grid; place-items: center;
}
.work-thumb svg { width: 100%; height: 100%; }
.work-badge {
    position: absolute; top: 0.9rem; left: 0.9rem;
    font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.08em;
    text-transform: uppercase; background: var(--ink); color: var(--paper);
    padding: 0.32rem 0.65rem; border-radius: var(--r-pill);
}
.work-body { padding: clamp(1.3rem, 2.2vw, 1.8rem); display: grid; gap: 0.6rem; }
.work-cat { font-family: var(--f-mono); font-size: 0.76rem; color: var(--accent); letter-spacing: 0.04em; text-transform: uppercase; }
.work-card h3 { font-size: 1.45rem; }
.work-card p { color: var(--ink-2); font-size: 0.99rem; }
.work-scope {
    font-family: var(--f-mono); font-size: 0.76rem; color: var(--ink-3);
    padding-top: 0.8rem; border-top: 1.5px solid var(--line-soft); margin-top: 0.3rem;
}

/* ============================================================================
   WHY / VALUES
   ========================================================================== */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.why-item {
    padding: clamp(1.6rem, 3vw, 2.3rem);
    border: 1.5px solid var(--line-soft);
    margin: -0.75px;
    display: grid; gap: 0.7rem; align-content: start;
    transition: background 0.3s;
}
.why-item:hover { background: var(--paper-2); }
.why-check {
    width: 38px; height: 38px; border-radius: var(--r-pill);
    background: var(--accent); color: #fff; display: grid; place-items: center;
}
.why-check svg { width: 19px; height: 19px; }
.why-item:nth-child(even) .why-check { background: var(--accent-2); }
.why-item h3 { font-size: 1.25rem; }
.why-item p { color: var(--ink-2); font-size: 0.99rem; }

/* ---- Stats band --------------------------------------------------------- */
.band { background: var(--ink); color: var(--paper); border-block: 1.5px solid var(--line); }
.band-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.band-item { padding: clamp(2rem, 4vw, 3.2rem) 1.5rem; text-align: center; border-right: 1.5px solid rgba(244,239,228,0.14); }
.band-item:last-child { border-right: none; }
.band-n {
    font-family: var(--f-display); font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; letter-spacing: -0.03em;
}
.band-item:nth-child(1) .band-n { color: var(--accent); }
.band-item:nth-child(3) .band-n { color: var(--accent-2); }
[data-theme="dark"] .band-item:nth-child(1) .band-n { color: var(--accent); }
.band-l { font-family: var(--f-mono); font-size: 0.82rem; letter-spacing: 0.04em; margin-top: 0.6rem; opacity: 0.78; text-transform: uppercase; }

/* ============================================================================
   FAQ
   ========================================================================== */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq-item { border-top: 1.5px solid var(--line-soft); }
.faq-item:last-child { border-bottom: 1.5px solid var(--line-soft); }
.faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; padding: 1.5rem 0; text-align: left;
    font-family: var(--f-display); font-weight: 600; font-size: clamp(1.1rem, 2vw, 1.4rem);
    letter-spacing: -0.01em;
}
.faq-icon {
    flex: 0 0 auto; width: 32px; height: 32px; border-radius: var(--r-pill);
    border: 1.5px solid var(--line); display: grid; place-items: center;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}
.faq-icon svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.faq-item[data-open="true"] .faq-icon { background: var(--accent); color: #fff; border-color: var(--accent); }
.faq-item[data-open="true"] .faq-icon svg { transform: rotate(45deg); }
.faq-a { overflow: hidden; height: 0; transition: height 0.35s var(--ease); }
.faq-a-inner { padding-bottom: 1.6rem; color: var(--ink-2); max-width: 64ch; }

/* ============================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
    background: var(--accent); color: #fff;
    border-radius: var(--r-lg); padding: clamp(2.5rem, 6vw, 5rem);
    text-align: center; position: relative; overflow: hidden;
    border: 1.5px solid var(--line);
}
.cta-band::before {
    content: ""; position: absolute; inset: 0; opacity: 0.5;
    background:
       radial-gradient(40% 60% at 12% 18%, rgba(255,255,255,0.25), transparent 60%),
       radial-gradient(50% 70% at 88% 90%, var(--accent-2), transparent 55%);
    mix-blend-mode: overlay;
}
.cta-band > * { position: relative; }
.cta-band .h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,0.92); max-width: 48ch; margin: 1.1rem auto 2rem; font-size: 1.1rem; }
.cta-band .btn--ink { background: #fff; border-color: #fff; color: var(--accent); }
.cta-band .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.6); }
.cta-actions { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================================
   PAGE HEAD
   ========================================================================== */
.page-head { padding-top: clamp(3rem, 7vw, 5.5rem); padding-bottom: clamp(2rem, 4vw, 3rem); }
.page-head h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); font-weight: 800; letter-spacing: -0.035em; margin-top: 1rem; max-width: 18ch; }
.page-head .lead { margin-top: 1.4rem; }

/* ============================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.3fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form-card {
    border: 1.5px solid var(--line); border-radius: var(--r-lg);
    background: var(--paper-2); padding: clamp(1.6rem, 3vw, 2.6rem);
    box-shadow: var(--shadow-block);
}
.form-card h2 { font-size: 1.7rem; margin-bottom: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: 0.45rem; margin-bottom: 1.1rem; }
.field label { font-family: var(--f-display); font-weight: 600; font-size: 0.92rem; display: flex; gap: 0.4rem; align-items: baseline; }
.req { color: var(--accent); font-size: 0.8rem; font-family: var(--f-mono); }
.field input, .field select, .field textarea {
    background: var(--paper); border: 1.5px solid var(--line-soft);
    border-radius: var(--r-sm); padding: 0.8rem 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.field input.invalid, .field textarea.invalid { border-color: var(--accent); }
.field-err { color: var(--accent); font-size: 0.83rem; font-family: var(--f-mono); display: none; }
.field.has-error .field-err { display: block; }

.consent {
    display: grid; grid-template-columns: auto 1fr; gap: 0.75rem;
    align-items: start; padding: 0.9rem 1rem; border: 1.5px solid var(--line-soft);
    border-radius: var(--r-sm); margin-bottom: 1.1rem; font-size: 0.9rem; color: var(--ink-2);
}
.consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent); }
.form-privacy { font-size: 0.86rem; color: var(--ink-2); margin-bottom: 1.3rem; }
.form-privacy a { color: var(--accent); border-bottom: 1.5px solid currentColor; }
.form-demo-note { font-family: var(--f-mono); font-size: 0.76rem; color: var(--ink-3); margin-top: 1rem; line-height: 1.55; }
.form-success {
    display: none; background: color-mix(in srgb, var(--good) 14%, var(--paper));
    border: 1.5px solid var(--good); color: var(--ink);
    border-radius: var(--r-sm); padding: 1rem 1.2rem; margin-bottom: 1.3rem; font-size: 0.95rem;
}
.form-success.show { display: block; }

.contact-aside { display: grid; gap: 1.1rem; }
.info-card {
    border: 1.5px solid var(--line-soft); border-radius: var(--r-md);
    padding: 1.4rem 1.5rem; background: var(--paper-2);
}
.info-card h4 { font-family: var(--f-mono); font-weight: 500; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.6rem; }
.info-card address { font-style: normal; line-height: 1.65; }
.info-card a.lnk { color: var(--accent); border-bottom: 1.5px solid currentColor; }
.info-meta { font-size: 0.95rem; color: var(--ink-2); line-height: 1.7; }
.verify-pill {
    display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.8rem;
    font-family: var(--f-mono); font-size: 0.8rem; color: var(--accent-2);
    border: 1.5px solid var(--accent-2); border-radius: var(--r-pill); padding: 0.4rem 0.8rem;
    transition: background 0.2s, color 0.2s;
}
.verify-pill:hover { background: var(--accent-2); color: #fff; }
.verify-pill svg { width: 14px; height: 14px; }

/* ============================================================================
   ABOUT
   ========================================================================== */
.story { display: grid; gap: 1.3rem; max-width: 60ch; }
.story p { color: var(--ink-2); font-size: 1.1rem; line-height: 1.7; }
.story p:first-child::first-letter {
    font-family: var(--f-display); font-weight: 800; font-size: 3.4rem;
    float: left; line-height: 0.8; padding: 0.3rem 0.6rem 0 0; color: var(--accent);
}
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.value {
    padding: clamp(1.5rem, 3vw, 2.2rem); border: 1.5px solid var(--line-soft); margin: -0.75px;
    display: grid; gap: 0.6rem; align-content: start;
}
.value-no { font-family: var(--f-mono); font-size: 0.85rem; color: var(--accent-2); }
.value h3 { font-size: 1.3rem; }
.value p { color: var(--ink-2); }

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.team-card {
    border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 1.6rem;
    display: flex; align-items: center; gap: 1.2rem; background: var(--paper-2);
}
.team-avatar {
    width: 64px; height: 64px; border-radius: var(--r-pill); flex: 0 0 auto;
    display: grid; place-items: center; font-family: var(--f-display); font-weight: 800;
    font-size: 1.5rem; color: #fff; background: var(--accent);
}
.team-card:nth-child(even) .team-avatar { background: var(--accent-2); }
.team-card h3 { font-size: 1.2rem; }
.team-role { font-family: var(--f-mono); font-size: 0.8rem; color: var(--ink-2); margin-top: 0.2rem; }

.factsheet {
    border: 1.5px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--paper-2);
}
.fact-row { display: grid; grid-template-columns: 1fr 1.3fr; gap: 1rem; padding: 1rem 1.5rem; border-top: 1.5px solid var(--line-soft); }
.fact-row:first-child { border-top: none; }
.fact-k { font-family: var(--f-mono); font-size: 0.82rem; color: var(--ink-2); letter-spacing: 0.03em; }
.fact-v { font-weight: 600; }
.fact-v a { color: var(--accent-2); border-bottom: 1.5px solid currentColor; }

/* ============================================================================
   LEGAL PAGES
   ========================================================================== */
.legal { max-width: 760px; margin-inline: auto; }
.legal-updated { font-family: var(--f-mono); font-size: 0.82rem; color: var(--accent); letter-spacing: 0.05em; margin-bottom: 1.5rem; }
.legal-intro { font-size: 1.15rem; color: var(--ink); line-height: 1.6; padding-bottom: 2rem; border-bottom: 1.5px solid var(--line-soft); margin-bottom: 2rem; }
.legal-section { padding-block: 1.6rem; border-top: 1.5px solid var(--line-soft); }
.legal-section:first-of-type { border-top: none; }
.legal-section h3 { font-size: 1.3rem; margin-bottom: 0.6rem; display: flex; gap: 0.8rem; align-items: baseline; }
.legal-section h3 .n { font-family: var(--f-mono); font-size: 0.9rem; color: var(--accent); }
.legal-section p { color: var(--ink-2); line-height: 1.7; }

/* ============================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--paper-2); border-top: 1.5px solid var(--line); margin-top: var(--sect); position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-block: clamp(3rem, 6vw, 4.5rem); }
.footer-brand .logo { margin-bottom: 1.1rem; }
.footer-brand p { color: var(--ink-2); max-width: 34ch; margin-bottom: 1.3rem; font-size: 0.98rem; }
.footer-id { font-family: var(--f-mono); font-size: 0.82rem; color: var(--ink-2); line-height: 1.85; }
.footer-id a { color: var(--accent); }
.footer-col h5 { font-family: var(--f-mono); font-weight: 500; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: 0.65rem; }
.footer-col a { color: var(--ink-2); transition: color 0.2s; font-size: 0.98rem; }
.footer-col a:hover { color: var(--accent); }

.footer-compliance {
    border-top: 1.5px solid var(--line-soft); padding-block: 1.8rem;
    display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
}
.footer-compliance .badge {
    font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--good); border: 1.5px solid var(--good); border-radius: var(--r-pill);
    padding: 0.35rem 0.75rem; white-space: nowrap; display: inline-flex; gap: 0.4rem; align-items: center;
}
.footer-compliance .badge svg { width: 13px; height: 13px; }
.footer-compliance p { color: var(--ink-2); font-size: 0.88rem; line-height: 1.6; max-width: 90ch; }

.footer-bottom {
    border-top: 1.5px solid var(--line-soft); padding-block: 1.5rem;
    display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
    font-family: var(--f-mono); font-size: 0.8rem; color: var(--ink-2);
}
.footer-bottom a { color: var(--accent-2); }

/* ============================================================================
   COOKIE BANNER
   ========================================================================== */
.cookie {
    position: fixed; left: 50%; bottom: 1.25rem; transform: translateX(-50%) translateY(180%);
    z-index: 200; width: min(640px, calc(100% - 2rem));
    background: var(--paper-2); border: 1.5px solid var(--line); border-radius: var(--r-md);
    box-shadow: var(--shadow-soft); padding: 1.1rem 1.3rem;
    display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center;
    transition: transform 0.5s var(--ease);
}
.cookie.show { transform: translateX(-50%) translateY(0); }
.cookie-ico { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--ink); color: var(--paper); display: grid; place-items: center; }
.cookie-ico svg { width: 22px; height: 22px; }
.cookie-body strong { font-family: var(--f-display); font-size: 1rem; display: block; margin-bottom: 0.2rem; }
.cookie-body p { font-size: 0.85rem; color: var(--ink-2); line-height: 1.5; }
.cookie-body a { color: var(--accent); border-bottom: 1.5px solid currentColor; }
.cookie .btn { white-space: nowrap; padding: 0.7rem 1.3rem; }
@media (max-width: 560px) {
    .cookie { grid-template-columns: 1fr; text-align: left; }
    .cookie-ico { display: none; }
    .cookie .btn { width: 100%; justify-content: center; }
}

/* ============================================================================
   REVEAL ANIMATION
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
    .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-visual { max-width: 460px; }
    .split { grid-template-columns: 1fr; }
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
    .proc-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .band-grid { grid-template-columns: repeat(2, 1fr); }
    .band-item:nth-child(2) { border-right: none; }
    .band-item:nth-child(1), .band-item:nth-child(2) { border-bottom: 1.5px solid rgba(244,239,228,0.14); }
}
@media (max-width: 760px) {
    .nav-links, .nav-cta { display: none; }
    .burger { display: grid; }
    .nav-links.open {
        display: flex; position: fixed; inset: 74px 0 auto 0; flex-direction: column;
        align-items: stretch; gap: 0; background: var(--paper);
        border-bottom: 1.5px solid var(--line); padding: 1rem 1.5rem 2rem;
        max-height: calc(100dvh - 74px); overflow-y: auto;
    }
    .nav-links.open > li > a { padding: 1rem 0.5rem; font-size: 1.2rem; border-bottom: 1.5px solid var(--line-soft); border-radius: 0; }
    .nav-links.open > li > a.active::after { display: none; }
    .nav-links.open .nav-cta-m { display: flex; margin-top: 1.2rem; }
    .work-grid { grid-template-columns: 1fr; }
    .why-grid, .values-grid, .team-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-compliance { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
    .svc-grid, .proc-grid { grid-template-columns: 1fr; }
    .band-grid { grid-template-columns: 1fr; }
    .band-item { border-right: none !important; border-bottom: 1.5px solid rgba(244,239,228,0.14); }
    .hero-stats { grid-template-columns: 1fr; }
    .hero-stat { border-right: none; border-bottom: 1.5px solid var(--line-soft); }
    .hero-stat:last-child { border-bottom: none; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .fact-row { grid-template-columns: 1fr; gap: 0.25rem; }
}

.nav-cta-m { display: none; }
