:root {
    --paper: #f5f3ee;
    --paper-2: #ffffff;
    --paper-3: #efece4;
    --ink: #16151a;
    --ink-2: #56555e;
    --ink-3: #908e96;
    --line: rgba(22, 21, 26, 0.10);
    --line-2: rgba(22, 21, 26, 0.18);
    --line-faint: rgba(22, 21, 26, 0.05);
    --heart: #ff4a2f;
    --heart-deep: #e23a22;
    --blush: #fbe7df;
    --dark: #161219;
    --serif: 'Fraunces', 'Times New Roman', serif;
    --sans: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'Geist Mono', 'Courier New', monospace;
    --maxw: 1320px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
body.loading { overflow: hidden; height: 100vh; }
::selection { background: var(--heart); color: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 48px; }

.display {
    font-family: var(--serif);
    font-weight: 300;
    letter-spacing: -0.035em;
    line-height: 0.98;
    font-variation-settings: "opsz" 144, "SOFT" 24, "WONK" 0;
}
.display em {
    font-style: italic;
    color: var(--heart);
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--ink-3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.eyebrow::before {
    content: "";
    width: 22px; height: 1px;
    background: var(--heart);
    display: inline-block;
}
.micro {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--ink-3);
}

/* ============ LOADER ============ */
.loader {
    position: fixed; inset: 0; z-index: 1000;
    background: var(--paper);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 30px;
    transition: opacity .9s ease, transform 1s cubic-bezier(.7,0,.2,1);
}
.loader.done { opacity: 0; transform: translateY(-24px); pointer-events: none; }
.loader-mark { width: 70px; height: 70px; color: var(--heart); }
.loader-mark svg { width: 100%; height: 100%; }
.loader-beat { stroke-dasharray: 360; stroke-dashoffset: 360; animation: beatdraw 2.6s ease-in-out infinite; }
@keyframes beatdraw {
    0% { stroke-dashoffset: 360; }
    55% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -360; }
}
.loader-brand {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 34px;
    letter-spacing: -0.04em;
    font-variation-settings: "opsz" 144, "SOFT" 30;
}
.loader-brand em { font-style: italic; color: var(--heart); }
.loader-counter { font-family: var(--mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-3); }

/* ============ NAV ============ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    padding: 22px 48px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(245, 243, 238, 0.72);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: padding .35s ease, background .35s ease, border-color .35s ease;
}
.nav.scrolled { padding: 13px 48px; border-bottom-color: var(--line); background: rgba(245,243,238,.9); }
.nav-brand { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 21px; font-weight: 400; letter-spacing: -0.035em; font-variation-settings: "opsz" 144, "SOFT" 24; }
.nav-brand-mark { width: 30px; height: 30px; color: var(--heart); }
.nav-brand-mark svg { width: 100%; height: 100%; }
.nav-links { display: flex; gap: 34px; list-style: none; }
.nav-links a { font-size: 14px; color: var(--ink-2); position: relative; transition: color .25s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1.5px; background: var(--heart); transition: width .3s cubic-bezier(.2,.8,.2,1); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-cta {
    font-size: 13px; font-weight: 500;
    padding: 11px 20px; border-radius: 999px;
    background: var(--ink); color: var(--paper);
    display: inline-flex; align-items: center; gap: 8px;
    transition: background .25s, transform .25s;
}
.nav-cta:hover { background: var(--heart); transform: translateY(-1px); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed; inset: 0; z-index: 190;
    background: var(--paper);
    padding: 120px 32px 40px;
    display: flex; flex-direction: column; gap: 8px;
    transform: translateY(-100%);
    transition: transform .5s cubic-bezier(.7,0,.2,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-size: 34px; font-weight: 300; letter-spacing: -0.03em; padding: 12px 0; border-bottom: 1px solid var(--line); }
.mobile-menu a em { color: var(--heart); }
.mobile-menu .mm-cta { margin-top: 24px; border: none; background: var(--ink); color: var(--paper); border-radius: 999px; text-align: center; font-family: var(--sans); font-size: 16px; padding: 18px; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 500;
    padding: 15px 26px; border-radius: 999px;
    cursor: pointer; border: 1px solid transparent;
    transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s, color .25s, border-color .25s;
}
.btn svg { width: 15px; height: 15px; transition: transform .3s; }
.btn:hover svg { transform: translate(3px, -3px); }
.btn-primary { background: var(--heart); color: #fff; }
.btn-primary:hover { background: var(--heart-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--heart); transform: translateY(-2px); }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============ HERO ============ */
.hero { padding: 190px 0 90px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: end; }
.hero-status {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--ink-2);
    background: var(--paper-2); border: 1px solid var(--line);
    padding: 8px 14px; border-radius: 999px; margin-bottom: 30px;
}
.hero-status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--heart); box-shadow: 0 0 0 0 rgba(255,74,47,.5); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,74,47,.45); } 70% { box-shadow: 0 0 0 9px rgba(255,74,47,0); } 100% { box-shadow: 0 0 0 0 rgba(255,74,47,0); } }
.hero-headline { font-size: clamp(58px, 9vw, 134px); margin-bottom: 0; }
.hero-headline .ln { display: block; overflow: hidden; }
.hero-headline .ln > span { display: block; transform: translateY(110%); animation: rise 1.1s cubic-bezier(.16,1,.3,1) forwards; }
.hero-headline .ln:nth-child(1) > span { animation-delay: .15s; }
.hero-headline .ln:nth-child(2) > span { animation-delay: .28s; }
.hero-headline .ln:nth-child(3) > span { animation-delay: .41s; }
@keyframes rise { to { transform: none; } }
.hero-right { padding-bottom: 10px; }
.hero-lede { font-size: 18px; line-height: 1.6; color: var(--ink-2); max-width: 40ch; margin-bottom: 30px; }
.hero-lede strong { color: var(--ink); font-weight: 500; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-beat { margin: 56px 0 0; color: var(--heart); opacity: .9; }
.hero-beat svg { width: 100%; height: 70px; display: block; }
.hero-beat path { stroke-dasharray: 1400; stroke-dashoffset: 1400; animation: beatline 3s cubic-bezier(.6,0,.2,1) .6s forwards; }
@keyframes beatline { to { stroke-dashoffset: 0; } }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; border-top: 1px solid var(--line); padding-top: 30px; }
.hero-stat .num { font-family: var(--serif); font-weight: 300; font-size: clamp(34px, 4vw, 50px); letter-spacing: -0.03em; line-height: 1; font-variation-settings: "opsz" 144, "SOFT" 20; }
.hero-stat .num sup { font-size: 0.45em; color: var(--heart); top: -0.7em; }
.hero-stat .lbl { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); margin-top: 12px; }

/* ============ MARQUEE ============ */
.marquee-section { padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); overflow: hidden; }
.marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 40px; white-space: nowrap; animation: marquee 34s linear infinite; will-change: transform; padding-right: 40px; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: 26px; letter-spacing: -0.02em; color: var(--ink); display: inline-flex; align-items: center; gap: 40px; }
.marquee-item::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--heart); }

/* ============ SECTION HEAD ============ */
.section { padding: 120px 0; }
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 64px; }
.section-head h2 { font-size: clamp(38px, 5.2vw, 76px); }
.section-head-right { color: var(--ink-2); font-size: 16px; line-height: 1.65; max-width: 44ch; justify-self: end; }
.section-num { font-family: var(--mono); font-size: 12px; letter-spacing: .2em; color: var(--heart); margin-bottom: 22px; display: block; }

/* ============ SERVICES ============ */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; }
.service { background: var(--paper-2); padding: 42px 34px 38px; display: flex; flex-direction: column; min-height: 320px; transition: background .4s; position: relative; }
.service:hover { background: var(--paper-3); }
.service-ico { width: 46px; height: 46px; border-radius: 13px; background: var(--blush); color: var(--heart); display: flex; align-items: center; justify-content: center; margin-bottom: 28px; transition: background .35s, color .35s; }
.service:hover .service-ico { background: var(--heart); color: #fff; }
.service-ico svg { width: 23px; height: 23px; }
.service h3 { font-family: var(--serif); font-weight: 400; font-size: 25px; letter-spacing: -0.02em; margin-bottom: 12px; font-variation-settings: "opsz" 80, "SOFT" 20; }
.service p { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); flex: 1; }
.service-tag { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); margin-top: 26px; display: flex; align-items: center; gap: 8px; }
.service-tag .ar { color: var(--heart); transition: transform .3s; }
.service:hover .service-tag .ar { transform: translateX(4px); }

/* ============ PROCESS ============ */
.process { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-line { color: var(--heart); margin-bottom: 50px; }
.process-line svg { width: 100%; height: 40px; }
.process-line path { stroke-dasharray: 2000; stroke-dashoffset: 2000; transition: stroke-dashoffset 2.2s cubic-bezier(.6,0,.2,1); }
.process.in .process-line path { stroke-dashoffset: 0; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.step-n { font-family: var(--mono); font-size: 12px; letter-spacing: .2em; color: var(--heart); margin-bottom: 18px; }
.step h3 { font-family: var(--serif); font-weight: 400; font-size: 23px; letter-spacing: -0.02em; margin-bottom: 12px; }
.step p { font-size: 14px; line-height: 1.6; color: var(--ink-2); }

/* ============ NUMBERS (dark band) ============ */
.numbers { background: var(--dark); color: var(--paper); padding: 110px 0; }
.numbers .eyebrow { color: rgba(255,255,255,.5); }
.numbers .eyebrow::before { background: var(--heart); }
.numbers-head { text-align: center; margin-bottom: 70px; }
.numbers-head h2 { font-size: clamp(34px, 4.6vw, 62px); color: #fff; }
.numbers-head h2 em { color: var(--heart); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.nstat { text-align: center; padding: 0 12px; }
.nstat .num { font-family: var(--serif); font-weight: 300; font-size: clamp(48px, 6vw, 86px); letter-spacing: -0.04em; line-height: 1; font-variation-settings: "opsz" 144, "SOFT" 20; }
.nstat .num sup { font-size: 0.4em; color: var(--heart); top: -0.8em; }
.nstat .lbl { font-family: var(--mono); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 18px; }

/* ============ WORK / CASES ============ */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case { background: var(--paper-2); border: 1px solid var(--line); border-radius: 20px; padding: 34px 30px 30px; transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s; }
.case:hover { transform: translateY(-6px); box-shadow: 0 22px 50px -28px rgba(22,21,26,.28); }
.case-tag { display: inline-block; font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--heart); background: var(--blush); padding: 5px 11px; border-radius: 999px; margin-bottom: 24px; }
.case h3 { font-family: var(--serif); font-weight: 400; font-size: 22px; letter-spacing: -0.02em; margin-bottom: 10px; }
.case p { font-size: 14px; line-height: 1.6; color: var(--ink-2); margin-bottom: 26px; }
.case-result { display: flex; align-items: baseline; gap: 10px; border-top: 1px solid var(--line); padding-top: 22px; }
.case-result .big { font-family: var(--serif); font-weight: 300; font-size: 40px; letter-spacing: -0.03em; line-height: 1; color: var(--ink); font-variation-settings: "opsz" 144; }
.case-result .big em { color: var(--heart); font-style: normal; }
.case-result .small { font-size: 12px; color: var(--ink-3); line-height: 1.4; }

/* ============ ABOUT / FOUNDER ============ */
.about { background: var(--paper-2); border-top: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
.about-photo { position: relative; }
.about-photo img { width: 100%; border-radius: 22px; filter: grayscale(0.15); }
.about-photo .badge { position: absolute; bottom: 22px; left: 22px; background: var(--paper); border-radius: 14px; padding: 14px 18px; box-shadow: 0 14px 40px -20px rgba(22,21,26,.4); }
.about-photo .badge .n { font-family: var(--serif); font-size: 17px; }
.about-photo .badge .r { font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); margin-top: 3px; }
.about-quote { font-family: var(--serif); font-weight: 300; font-size: clamp(28px, 3.6vw, 46px); letter-spacing: -0.03em; line-height: 1.18; margin-bottom: 30px; font-variation-settings: "opsz" 144, "SOFT" 24; }
.about-quote em { color: var(--heart); font-style: italic; }
.about-text { font-size: 16px; line-height: 1.7; color: var(--ink-2); max-width: 52ch; margin-bottom: 26px; }
.about-sign { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); }

/* ============ VOICES ============ */
.voices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.voice { background: var(--paper-2); border: 1px solid var(--line); border-radius: 20px; padding: 34px 30px; }
.voice-stars { color: var(--heart); font-size: 15px; letter-spacing: 3px; margin-bottom: 20px; }
.voice p { font-size: 16px; line-height: 1.6; color: var(--ink); margin-bottom: 24px; }
.voice-who { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.voice-who strong { color: var(--ink); font-weight: 500; }

/* ============ FAQ ============ */
.faq-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 28px 0; cursor: pointer; }
.faq-q h3 { font-family: var(--serif); font-weight: 400; font-size: 22px; letter-spacing: -0.02em; }
.faq-icon { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--heart); transition: transform .3s; }
.faq-icon::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.faq-icon::after { left: 12px; top: 4px; bottom: 4px; width: 2px; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.4,0,.2,1); }
.faq-a-inner { padding: 0 0 30px; font-size: 15.5px; line-height: 1.7; color: var(--ink-2); max-width: 60ch; }
.faq-item.open .faq-a { max-height: 320px; }

/* ============ FORM ============ */
.form-section { background: var(--dark); color: var(--paper); }
.form-inner { max-width: 920px; margin: 0 auto; }
.form-section .eyebrow { color: rgba(255,255,255,.5); }
.form-head { text-align: center; margin-bottom: 16px; }
.form-head h2 { font-size: clamp(38px, 5vw, 72px); color: #fff; }
.form-head h2 em { color: var(--heart); }
.form-sub { text-align: center; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.6; max-width: 50ch; margin: 0 auto 54px; }
.form-body { display: grid; gap: 30px; }
.form-field label.flbl { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 14px; }
.form-field label.flbl em { color: var(--heart); font-style: normal; }
.form-input, .form-textarea {
    width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,.22);
    color: #fff; font-family: var(--sans); font-size: 18px; padding: 8px 0 14px; transition: border-color .3s;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,.3); }
.form-input:focus, .form-textarea:focus { outline: none; border-bottom-color: var(--heart); }
.form-textarea { resize: vertical; min-height: 56px; line-height: 1.5; }
.hint { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .12em; color: rgba(255,255,255,.35); margin-top: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.form-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.form-pill { position: relative; }
.form-pill input { position: absolute; opacity: 0; pointer-events: none; }
.form-pill label { display: inline-block; padding: 11px 18px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; font-size: 13.5px; color: rgba(255,255,255,.8); cursor: pointer; transition: all .2s; min-height: 44px; line-height: 1.4; }
.form-pill label:hover { border-color: rgba(255,255,255,.5); }
.form-pill input:checked + label { background: var(--heart); border-color: var(--heart); color: #fff; }
.form-consent { display: flex; gap: 14px; align-items: flex-start; }
.form-checkbox { flex-shrink: 0; width: 20px; height: 20px; margin-top: 3px; accent-color: var(--heart); cursor: pointer; }
.form-consent-text { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.6); }
.form-consent-text a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.4); }
.form-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 10px; }
.form-fine { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.form-submit { display: inline-flex; align-items: center; gap: 12px; background: var(--heart); color: #fff; border: none; border-radius: 999px; font-family: var(--sans); font-size: 15px; font-weight: 500; padding: 16px 30px; cursor: pointer; transition: background .25s, transform .25s; min-height: 44px; }
.form-submit:hover { background: #fff; color: var(--dark); transform: translateY(-2px); }
.form-success { display: none; text-align: center; padding: 30px 0; }
.form-success.on { display: block; animation: rise2 .8s cubic-bezier(.16,1,.3,1); }
@keyframes rise2 { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.form-success-mark { width: 64px; height: 64px; margin: 0 auto 26px; color: var(--heart); }
.form-success h3 { font-family: var(--serif); font-weight: 300; font-size: clamp(32px, 4vw, 52px); color: #fff; letter-spacing: -0.03em; margin-bottom: 16px; }
.form-success h3 em { color: var(--heart); font-style: italic; }
.form-success p { color: rgba(255,255,255,.6); font-size: 16px; max-width: 44ch; margin: 0 auto; }

/* ============ FOOTER ============ */
.footer { padding: 90px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid var(--line); }
.footer-brand .nav-brand { font-size: 28px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; color: var(--ink-2); line-height: 1.6; max-width: 32ch; }
.footer-col h4 { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--ink-2); transition: color .2s; }
.footer-col a:hover { color: var(--heart); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 28px; font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
    .wrap { padding: 0 28px; }
    .nav, .nav.scrolled { padding: 16px 28px; }
    .nav-links, .nav-right .nav-cta, .nav-right .micro { display: none; }
    .nav-burger { display: flex; }
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-right { padding-bottom: 0; }
    .section-head { grid-template-columns: 1fr; gap: 24px; }
    .section-head-right { justify-self: start; }
    .services { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr 1fr; gap: 40px 30px; }
    .numbers-grid { grid-template-columns: 1fr 1fr; gap: 50px 20px; }
    .cases, .voices { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .faq-wrap { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
    .wrap { padding: 0 20px; }
    .hero { padding: 150px 0 70px; }
    .section { padding: 80px 0; }
    .numbers, .form-section.section { padding: 80px 0; }
    .services { grid-template-columns: 1fr; }
    .service { min-height: auto; }
    .steps, .numbers-grid, .cases, .voices { grid-template-columns: 1fr; }
    .hero-stats { gap: 16px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
    .footer-brand { grid-column: 1 / -1; }
    .marquee-item { font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
    .marquee-track { animation: none !important; }
    .hero-headline .ln > span { transform: none; }
}

/* ============================================================
   SUBPAGE COMPONENTS (Leistungen / Agentur / Arbeit / Kontakt)
   ============================================================ */

/* Page hero (inner pages) */
.page-hero { padding: 168px 0 64px; position: relative; }
.page-hero .crumbs { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 30px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.page-hero .crumbs a { color: var(--ink-3); transition: color .2s; }
.page-hero .crumbs a:hover { color: var(--heart); }
.page-hero .crumbs .sep { color: var(--line-2); }
.page-hero h1 { font-size: clamp(48px, 8vw, 112px); margin: 0 0 28px; }
.page-hero-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 56px; align-items: end; }
.page-hero-lede { font-size: 18px; line-height: 1.65; color: var(--ink-2); max-width: 42ch; }
.page-hero-lede strong { color: var(--ink); font-weight: 500; }
.page-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

/* Section intro (single column, left aligned) */
.lead-block { max-width: 60ch; }
.lead-block h2 { font-size: clamp(34px, 4.6vw, 64px); margin-bottom: 24px; }
.lead-block p { font-size: 17px; line-height: 1.7; color: var(--ink-2); }
.lead-block p + p { margin-top: 18px; }
.lead-block em { color: var(--heart); font-style: italic; }

/* Service detail rows */
.svc-rows { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; }
.svc-row { background: var(--paper-2); display: grid; grid-template-columns: 72px 1.1fr 1.4fr; gap: 36px; padding: 48px 44px; align-items: start; transition: background .4s; }
.svc-row:hover { background: var(--paper-3); }
.svc-row-ico { width: 56px; height: 56px; border-radius: 15px; background: var(--blush); color: var(--heart); display: flex; align-items: center; justify-content: center; transition: background .35s, color .35s; }
.svc-row:hover .svc-row-ico { background: var(--heart); color: #fff; }
.svc-row-ico svg { width: 27px; height: 27px; }
.svc-row-head .snum { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; color: var(--heart); display: block; margin-bottom: 14px; }
.svc-row-head h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 3vw, 36px); letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 14px; font-variation-settings: "opsz" 80, "SOFT" 20; }
.svc-row-head .tag { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); }
.svc-row-body p { font-size: 15.5px; line-height: 1.7; color: var(--ink-2); margin-bottom: 20px; }
.svc-row-body ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.svc-row-body li { font-size: 14px; color: var(--ink); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.svc-row-body li::before { content: ""; flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; border-radius: 50%; background: var(--blush); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6.2 5 8.5 9.5 3.5' stroke='%23ff4a2f' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

/* Manifesto / big statement */
.manifesto { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.manifesto-text { font-family: var(--serif); font-weight: 300; font-size: clamp(28px, 4vw, 56px); letter-spacing: -0.03em; line-height: 1.16; max-width: 18ch; font-variation-settings: "opsz" 144, "SOFT" 24; }
.manifesto-text em { color: var(--heart); font-style: italic; }
.manifesto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.manifesto-aside p { font-size: 16px; line-height: 1.75; color: var(--ink-2); }
.manifesto-aside p + p { margin-top: 18px; }

/* Values */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value { background: var(--paper-2); border: 1px solid var(--line); border-radius: 20px; padding: 36px 32px; transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s; }
.value:hover { transform: translateY(-6px); box-shadow: 0 22px 50px -28px rgba(22,21,26,.28); }
.value .vn { font-family: var(--mono); font-size: 12px; letter-spacing: .2em; color: var(--heart); margin-bottom: 22px; }
.value h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; letter-spacing: -0.02em; margin-bottom: 12px; }
.value p { font-size: 14.5px; line-height: 1.65; color: var(--ink-2); }

/* Team */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.member { text-align: left; }
.member-ph { aspect-ratio: 4/5; border-radius: 18px; background: linear-gradient(150deg, var(--paper-3), var(--blush)); display: flex; align-items: flex-end; justify-content: flex-start; padding: 20px; margin-bottom: 18px; position: relative; overflow: hidden; }
.member-ph .initials { font-family: var(--serif); font-weight: 300; font-size: 52px; color: var(--heart); letter-spacing: -0.04em; font-variation-settings: "opsz" 144, "SOFT" 40; opacity: .9; }
.member-ph .beat { position: absolute; top: 18px; right: 18px; color: var(--heart); opacity: .55; }
.member-ph .beat svg { width: 46px; height: 22px; }
.member h3 { font-family: var(--serif); font-weight: 400; font-size: 21px; letter-spacing: -0.02em; margin-bottom: 4px; }
.member .role { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }

/* Berlin strip */
.berlin { background: var(--dark); color: var(--paper); padding: 110px 0; position: relative; overflow: hidden; }
.berlin .eyebrow { color: rgba(255,255,255,.5); }
.berlin h2 { font-size: clamp(34px, 5vw, 70px); color: #fff; margin: 22px 0 26px; }
.berlin h2 em { color: var(--heart); font-style: italic; }
.berlin p { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.62); max-width: 54ch; }
.berlin-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; }
.berlin-facts { display: grid; gap: 22px; }
.berlin-fact { display: flex; align-items: baseline; gap: 18px; border-top: 1px solid rgba(255,255,255,.14); padding-top: 18px; }
.berlin-fact .bf-num { font-family: var(--serif); font-weight: 300; font-size: 40px; letter-spacing: -0.03em; color: #fff; line-height: 1; flex-shrink: 0; font-variation-settings: "opsz" 144; }
.berlin-fact .bf-num em { color: var(--heart); font-style: normal; }
.berlin-fact .bf-txt { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.5; }

/* CTA band */
.cta-band { padding: 130px 0; text-align: center; }
.cta-band h2 { font-size: clamp(40px, 6vw, 92px); margin-bottom: 26px; }
.cta-band p { font-size: 17px; color: var(--ink-2); max-width: 46ch; margin: 0 auto 38px; line-height: 1.6; }
.cta-band .hero-cta { justify-content: center; }

/* Contact split */
.contact-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start; }
.contact-aside h2 { font-size: clamp(34px, 4.4vw, 60px); margin-bottom: 22px; }
.contact-aside .lede { font-size: 16px; line-height: 1.7; color: var(--ink-2); max-width: 38ch; margin-bottom: 38px; }
.contact-channels { display: grid; gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.channel { background: var(--paper-2); padding: 22px 24px; display: flex; align-items: center; gap: 16px; transition: background .3s; }
.channel:hover { background: var(--paper-3); }
.channel-ico { width: 40px; height: 40px; border-radius: 11px; background: var(--blush); color: var(--heart); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.channel-ico svg { width: 19px; height: 19px; }
.channel .ch-l { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 3px; }
.channel .ch-v { font-size: 15px; color: var(--ink); font-weight: 500; }
.contact-form-card { background: var(--dark); border-radius: 26px; padding: 48px 44px; }
.contact-form-card .form-head { text-align: left; margin-bottom: 32px; }
.contact-form-card .form-head h2 { font-size: clamp(26px, 3vw, 38px); }
.contact-form-card .form-sub { text-align: left; margin: 12px 0 0; }

/* Logo cloud / trust */
.trust { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.trust-chip { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; }

/* Service detail page */
.svc-layout { display: grid; grid-template-columns: 1.5fr .9fr; gap: 64px; align-items: start; }
.svc-prose > * + * { margin-top: 22px; }
.svc-prose p { font-size: 16.5px; line-height: 1.78; color: var(--ink-2); }
.svc-prose p strong { color: var(--ink); font-weight: 500; }
.svc-prose h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(23px, 3vw, 30px); letter-spacing: -0.02em; line-height: 1.1; margin-top: 46px; font-variation-settings: "opsz" 80, "SOFT" 20; }
.svc-prose h3 em { color: var(--heart); font-style: italic; }
.svc-aside { position: sticky; top: 108px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 22px; padding: 34px 30px; }
.svc-aside .sa-label { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--heart); margin-bottom: 18px; }
.svc-aside h2 { font-family: var(--serif); font-weight: 400; font-size: 24px; letter-spacing: -0.02em; margin-bottom: 20px; }
.svc-aside .btn { width: 100%; justify-content: center; margin-top: 26px; }
.svc-aside .sa-fine { font-family: var(--mono); font-size: 10.5px; letter-spacing: .04em; color: var(--ink-3); text-align: center; margin-top: 14px; }
.checks { list-style: none; display: grid; gap: 13px; }
.checks li { font-size: 14.5px; color: var(--ink); display: flex; align-items: flex-start; gap: 11px; line-height: 1.5; }
.checks li::before { content: ""; flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; border-radius: 50%; background: var(--blush); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6.2 5 8.5 9.5 3.5' stroke='%23ff4a2f' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.svc-next-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-next-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: 18px; padding: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: transform .35s, border-color .35s, background .35s; }
.svc-next-card:hover { transform: translateY(-4px); border-color: var(--heart); background: var(--paper-3); }
.svc-next-card h3 { font-family: var(--serif); font-weight: 400; font-size: 20px; letter-spacing: -0.02em; }
.svc-next-card .arr { color: var(--heart); flex-shrink: 0; }
.svc-next-card .arr svg { width: 18px; height: 18px; display: block; }

@media (max-width: 1000px) {
  .svc-layout { grid-template-columns: 1fr; gap: 38px; }
  .svc-aside { position: static; }
  .svc-next-grid { grid-template-columns: 1fr; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .svc-row { grid-template-columns: 1fr; gap: 22px; padding: 36px 30px; }
  .svc-row-body ul { grid-template-columns: 1fr; }
  .manifesto-grid, .berlin-grid, .contact-split { grid-template-columns: 1fr; gap: 36px; }
  .values { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .page-hero { padding: 140px 0 50px; }
  .team { grid-template-columns: 1fr 1fr; }
  .contact-form-card { padding: 34px 24px; }
  .cta-band { padding: 90px 0; }
}

/* ============ LANDING PAGE — Google-Bewertungen löschen ============ */
.lp-hero { position: relative; padding: 150px 0 96px; overflow: hidden; }
.lp-hero::before {
    content: ""; position: absolute; top: -220px; right: -160px;
    width: 640px; height: 640px;
    background: radial-gradient(circle, rgba(255,74,47,.16), transparent 70%);
    pointer-events: none; z-index: 0;
}
.lp-hero .wrap { position: relative; z-index: 1; }
.lp-hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 60px; align-items: center; }
.lp-hero h1 { font-size: clamp(44px, 6.4vw, 94px); margin: 22px 0 0; }
.lp-lede { font-size: 19px; line-height: 1.6; color: var(--ink-2); max-width: 46ch; margin: 26px 0 0; }
.lp-lede strong { color: var(--ink); font-weight: 600; }

.lp-pricetag {
    display: inline-flex; align-items: baseline; gap: 11px;
    margin-top: 30px; padding: 13px 22px; background: var(--ink);
    color: var(--paper); border-radius: 100px;
}
.lp-pricetag b { font-family: var(--serif); font-weight: 300; font-size: 30px; line-height: 1; }
.lp-pricetag b em { font-style: italic; color: var(--heart); }
.lp-pricetag span { font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); }

.lp-trust { display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; margin-top: 32px; }
.lp-stars { display: inline-flex; gap: 2px; color: var(--heart); }
.lp-stars svg { width: 18px; height: 18px; }
.lp-trust-item { font-size: 13.5px; color: var(--ink-2); display: inline-flex; align-items: center; gap: 8px; }
.lp-trust-item b { color: var(--ink); font-weight: 600; }

.lp-badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.lp-badge {
    font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink-2); border: 1px solid var(--line-2); border-radius: 100px;
    padding: 8px 14px; background: var(--paper-2);
}

.lp-formcard { position: relative; }
.lp-formcard .form-head { margin-bottom: 22px; }

/* dark stat band */
.lp-statband { background: var(--dark); color: var(--paper); padding: 70px 0; }
.lp-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.lp-stat .n { font-family: var(--serif); font-weight: 300; font-size: clamp(38px, 4.2vw, 58px); line-height: 1; color: var(--paper); letter-spacing: -.03em; }
.lp-stat .n em { font-style: italic; color: var(--heart); }
.lp-stat .l { font-size: 13.5px; color: rgba(255,255,255,.62); margin-top: 12px; line-height: 1.5; max-width: 22ch; }
.lp-statband .lp-disclaimer { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 40px; }

/* removable list */
.lp-two { display: grid; grid-template-columns: 1fr 1fr; gap: 0 50px; }

/* big price card */
.lp-pricecard {
    background: var(--paper-2); border: 1px solid var(--line); border-radius: 26px;
    padding: 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.lp-pricecard .big { font-family: var(--serif); font-weight: 300; font-size: clamp(62px, 8vw, 112px); line-height: .88; letter-spacing: -.045em; }
.lp-pricecard .big em { font-style: italic; color: var(--heart); }
.lp-pricecard .unit { font-family: var(--mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); margin-top: 16px; }
.lp-pricecard .checks { margin-top: 0; }

/* proof / testimonials */
.lp-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-quote { background: var(--paper-2); border: 1px solid var(--line); border-radius: 22px; padding: 32px; display: flex; flex-direction: column; gap: 20px; }
.lp-quote .lp-stars svg { width: 16px; height: 16px; }
.lp-quote p { font-family: var(--serif); font-weight: 300; font-size: 19px; line-height: 1.42; letter-spacing: -.01em; }
.lp-quote-by { font-size: 13px; color: var(--ink-2); margin-top: auto; }
.lp-quote-by b { color: var(--ink); font-weight: 600; display: block; }

/* sticky mobile cta */
.lp-sticky {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    display: none; align-items: center; justify-content: space-between; gap: 14px;
    padding: 11px 16px; background: var(--ink); color: var(--paper);
    box-shadow: 0 -8px 30px rgba(0,0,0,.18);
}
.lp-sticky .p { font-size: 12px; line-height: 1.2; color: rgba(255,255,255,.62); }
.lp-sticky .p b { font-family: var(--serif); font-weight: 300; font-size: 19px; color: var(--paper); display: block; }
.lp-sticky .p b em { font-style: italic; color: var(--heart); }
.lp-sticky .btn { white-space: nowrap; padding: 13px 20px; }

@media (max-width: 1000px) {
    .lp-hero-grid { grid-template-columns: 1fr; gap: 46px; }
    .lp-stats { grid-template-columns: repeat(2, 1fr); gap: 38px 24px; }
    .lp-pricecard { grid-template-columns: 1fr; gap: 30px; padding: 38px; }
    .lp-proof-grid { grid-template-columns: 1fr; }
    .lp-two { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 640px) {
    .lp-hero { padding: 120px 0 64px; }
    .lp-sticky { display: flex; }
    .footer { padding-bottom: 92px; }
}
