:root {
    --brand-red: #e04538;
    --brand-green: #94c742;
    --brand-orange: #f5a623;
    --brand-gray: #b5b5b5;

    --bg: #ffffff;
    --bg-soft: #f8f8f8;
    --surface: #ffffff;
    --border: #ebebeb;
    --border-strong: #d8d8d8;
    --text: #1a1a1a;
    --text-secondary: #555555;
    --text-muted: #888888;
    --shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
    --radius-xl: 20px;
    --radius-lg: 14px;
    --radius-md: 10px;
    --radius-sm: 6px;
    --container: 1200px;
    --font-display: "Bricolage Grotesque", system-ui, sans-serif;
    --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
    --header-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
}

.bg-mesh {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 0% 0%, rgba(224, 69, 56, 0.04), transparent),
        radial-gradient(ellipse 40% 40% at 100% 10%, rgba(148, 199, 66, 0.05), transparent);
}

.page { position: relative; z-index: 1; }

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.site-header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand { display: inline-flex; text-decoration: none; }
.brand-logo { height: 42px; width: auto; display: block; }

.site-nav { display: flex; align-items: center; gap: 4px; }

.site-nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}

.site-nav a:hover { color: var(--text); background: var(--bg-soft); }

.nav-cta {
    margin-left: 12px;
    padding: 10px 22px !important;
    background: var(--brand-orange) !important;
    color: #fff !important;
    font-weight: 600 !important;
    border-radius: var(--radius-sm) !important;
}

.nav-cta:hover { background: #e09515 !important; }

.nav-toggle {
    display: none;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    cursor: pointer;
    font-size: 1.2rem;
}

/* ── Hero ── */
.hero {
    padding: calc(var(--header-h) + 64px) 0 0;
    border-bottom: 1px solid var(--border);
}

.hero-wrap { padding-bottom: 64px; }

.hero-bottom--after-slider {
    margin-top: 0;
    border-top: none;
    padding-top: 32px;
}

/* Hero slider */
.hero-slider { position: relative; }

.hero-slider-viewport {
    position: relative;
    min-height: 360px;
}

.hero-slide {
    display: none;
    position: relative;
    padding: 32px 0 16px;
}

.hero-slide.is-active { display: block; }

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
}

.hero-slide-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.hero-slide-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
}

.hero-slide-sub {
    margin: 0 0 24px;
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 52ch;
    line-height: 1.7;
}

.hero-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-bottom: 8px;
}

.hero-slider-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    font-size: 1rem;
    transition: border-color 0.2s, color 0.2s;
}

.hero-slider-btn:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}

.hero-slider-dots {
    display: flex;
    gap: 8px;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--border-strong);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.hero-slider-dot.is-active {
    background: var(--brand-orange);
    transform: scale(1.15);
}

.hero-top { max-width: 900px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
}

.hero-badge-bars {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
}

.hero-badge-bars span { width: 5px; border-radius: 2px; }
.hero-badge-bars .bar-red { height: 18px; background: var(--brand-red); }
.hero-badge-bars .bar-green { height: 14px; background: var(--brand-green); }
.hero-badge-bars .bar-orange { height: 11px; background: var(--brand-orange); }

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0;
}

.hero-line { display: block; }

.hero h1 .accent-text { color: var(--brand-orange); }

.hero-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: end;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.hero-lead {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 48ch;
    line-height: 1.75;
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 14px 26px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--brand-orange);
    color: #fff;
    box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35);
}

.btn-primary:hover {
    background: #e09515;
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-strong);
}

.btn-ghost:hover { background: var(--bg-soft); }

.locale-pills {
    margin-top: 24px;
    display: flex;
    gap: 6px;
}

.locale-pills a {
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.locale-pills a.active {
    color: var(--brand-orange);
    border-color: var(--brand-orange);
    background: rgba(245, 166, 35, 0.07);
}

.hero-stats {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.stat-item {
    padding: 28px 36px;
    text-align: center;
    border-right: 1px solid var(--border);
    min-width: 130px;
}

.stat-item:last-child { border-right: none; }

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-item:nth-child(1) .stat-value { color: var(--brand-red); }
.stat-item:nth-child(2) .stat-value { color: var(--brand-green); }
.stat-item:nth-child(3) .stat-value { color: var(--brand-orange); }

.stat-label {
    margin-top: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Logos ── */
.logos {
    padding: 32px 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
}

.logos-row {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.logos-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    white-space: nowrap;
    margin: 0;
}

.logos-track {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.logo-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-gray);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
}

.logo-item img {
    max-height: 28px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.75;
    transition: opacity 0.2s, filter 0.2s;
}

.logo-item:hover img {
    filter: none;
    opacity: 1;
}

/* ── Sections ── */
.section { padding: 96px 0; background: var(--bg); }
.section--alt { background: var(--bg-soft); }

.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 56px;
}

.section-split p {
    margin: 0;
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 42ch;
    justify-self: end;
}

.section-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-orange);
    margin-bottom: 12px;
}

.section-split h2,
.section-split--center h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0;
}

/* ── Features (plan: 10 items) ── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.feature-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    transition: box-shadow 0.2s;
}

.feature-card:hover { box-shadow: var(--shadow-lg); }

.feature-num {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-orange);
    letter-spacing: 0.05em;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 10px 0 0;
    letter-spacing: -0.02em;
}

.feature-card p {
    margin: 8px 0 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.form-flash {
    margin-top: 12px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
}

/* ── Service rows ── */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
}

.service-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 32px 36px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.service-row:last-child { border-bottom: none; }
.service-row:hover { background: var(--bg-soft); }

.service-row-head {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.service-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-orange);
    line-height: 1;
    flex-shrink: 0;
}

.service-row:nth-child(1) .service-num { color: var(--brand-red); }
.service-row:nth-child(2) .service-num { color: var(--brand-green); }
.service-row:nth-child(3) .service-num { color: var(--brand-orange); }
.service-row:nth-child(4) .service-num { color: var(--brand-gray); }
.service-row:nth-child(5) .service-num { color: var(--brand-green); }
.service-row:nth-child(6) .service-num { color: var(--brand-red); }

.service-row h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

.service-row-head > div > p {
    margin: 6px 0 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.service-tags {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
    max-width: 340px;
}

.service-tags li {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    background: var(--bg-soft);
    white-space: nowrap;
}

/* ── Work masonry ── */
.work-masonry {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.work-card {
    padding: 36px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s;
}

.work-card:hover { box-shadow: var(--shadow-lg); }

.work-card--featured {
    grid-row: span 2;
    background: linear-gradient(160deg, #fff 0%, #fef9f0 100%);
    border-color: rgba(245, 166, 35, 0.25);
}

.work-card-image {
    margin: -36px -36px 20px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    max-height: 200px;
}

.work-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.work-metric {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brand-green);
}

.work-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--brand-orange);
    margin-bottom: 16px;
}

.work-card:nth-child(2) .work-tag { color: var(--brand-green); }
.work-card:nth-child(3) .work-tag { color: var(--brand-red); }

.work-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

.work-card--featured h3 { font-size: 1.75rem; }

.work-card p {
    margin: 12px 0 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.65;
    flex: 1;
}

.work-link {
    margin-top: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-orange);
    text-decoration: none;
}

.work-link:hover { text-decoration: underline; }

/* ── Timeline ── */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-green), var(--brand-orange), var(--brand-gray));
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 16px;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--border-strong);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text);
    box-shadow: var(--shadow);
}

.timeline-step:nth-child(1) .timeline-marker { border-color: var(--brand-red); color: var(--brand-red); }
.timeline-step:nth-child(2) .timeline-marker { border-color: var(--brand-green); color: var(--brand-green); }
.timeline-step:nth-child(3) .timeline-marker { border-color: var(--brand-orange); color: var(--brand-orange); }
.timeline-step:nth-child(4) .timeline-marker { border-color: var(--brand-gray); color: var(--text-muted); }

.timeline-body h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.timeline-body p {
    margin: 8px 0 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Blog list ── */
.post-list {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
}

.post-row {
    display: grid;
    grid-template-columns: 80px 1fr 40px;
    gap: 24px;
    align-items: center;
    padding: 28px 32px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.post-row:last-child { border-bottom: none; }
.post-row:hover { background: var(--bg-soft); }

.post-row-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-orange);
}

.post-row h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.01em;
}

.post-row-content p {
    margin: 4px 0 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.post-row-arrow {
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: transform 0.2s, color 0.2s;
}

.post-row:hover .post-row-arrow {
    color: var(--brand-orange);
    transform: translateX(4px);
}

.empty-state {
    padding: 48px;
    text-align: center;
    color: var(--text-muted);
}

.pagination {
    margin-top: 32px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.pagination a,
.pagination span {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    text-decoration: none;
    background: var(--surface);
}

.pagination a:hover { border-color: var(--brand-orange); color: var(--brand-orange); }

/* ── CTA split ── */
.cta-section {
    padding: 96px 0;
    background: var(--text);
    color: #fff;
}

.cta-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.cta-copy .section-eyebrow { color: var(--brand-orange); }

.cta-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0;
    color: #fff;
}

.cta-copy > p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    max-width: 40ch;
    line-height: 1.7;
}

.cta-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

.cta-section .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.cta-section .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-panel {
    padding: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
}

.cta-panel h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.cta-panel > p {
    margin: 8px 0 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.cta-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-form input {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
}

.cta-form input::placeholder { color: rgba(255, 255, 255, 0.4); }

.cta-form input:focus {
    border-color: var(--brand-orange);
}

/* ── Footer ── */
.site-footer {
    position: relative;
    background: #121212;
    color: rgba(255, 255, 255, 0.72);
    padding: 0 0 32px;
}

.footer-accent {
    display: flex;
    height: 4px;
    width: 100%;
}

.footer-accent .bar-red { flex: 1; background: var(--brand-red); }
.footer-accent .bar-green { flex: 1; background: var(--brand-green); }
.footer-accent .bar-orange { flex: 1; background: var(--brand-orange); }

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.15fr;
    gap: 48px;
    padding: 56px 0 48px;
}

.footer-brand .brand-logo {
    height: 40px;
    width: auto;
    display: block;
}

.footer-tagline {
    margin: 20px 0 0;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-orange);
}

.footer-desc {
    margin: 12px 0 0;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 32ch;
}

.footer-cta {
    margin-top: 24px;
    padding: 12px 22px;
    font-size: 0.875rem;
}

.footer-social {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-social a {
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-social a:hover {
    border-color: var(--brand-orange);
    color: #fff;
    background: rgba(245, 166, 35, 0.1);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 20px;
    color: #fff;
}

.footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.footer-col a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--brand-orange); }

.footer-contact-list li {
    display: grid;
    gap: 4px;
}

.footer-contact-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.38);
}

.footer-contact-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-list a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.footer-contact-list a:hover { color: var(--brand-orange); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px 32px;
}

.footer-bottom-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 52ch;
}

.footer-copy,
.footer-company-legal {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.42);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.footer-legal a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover { color: var(--brand-orange); }

.footer-legal-link {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.42);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s;
}

.footer-legal-link:hover { color: var(--brand-orange); }

/* ── Cookie consent ── */
.cookie-consent {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 200;
    padding: 16px;
    pointer-events: none;
}

.cookie-consent:not([hidden]) {
    pointer-events: auto;
}

.cookie-consent-panel {
    width: min(720px, 100%);
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.cookie-consent-accent {
    display: flex;
    height: 4px;
}

.cookie-consent-accent .bar-red { flex: 1; background: var(--brand-red); }
.cookie-consent-accent .bar-green { flex: 1; background: var(--brand-green); }
.cookie-consent-accent .bar-orange { flex: 1; background: var(--brand-orange); }

.cookie-consent-body {
    padding: 24px;
}

.cookie-consent-eyebrow {
    margin: 0 0 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-orange);
}

.cookie-consent-title {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.2;
    color: var(--text);
}

.cookie-consent-text {
    margin: 0 0 20px;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

.cookie-consent-text a {
    color: var(--brand-orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-preference-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.cookie-preference {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-soft);
}

.cookie-preference-copy {
    display: grid;
    gap: 4px;
}

.cookie-preference-copy strong {
    font-size: 0.9375rem;
    color: var(--text);
}

.cookie-preference-copy span {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.cookie-preference-badge {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cookie-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.cookie-toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-ui {
    position: relative;
    width: 44px;
    height: 24px;
    border-radius: 999px;
    background: var(--border-strong);
    transition: background 0.2s;
}

.cookie-toggle-ui::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s;
}

.cookie-toggle input:checked + .cookie-toggle-ui {
    background: var(--brand-green);
}

.cookie-toggle input:checked + .cookie-toggle-ui::after {
    transform: translateX(20px);
}

.cookie-toggle input:focus-visible + .cookie-toggle-ui {
    outline: 2px solid var(--brand-orange);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 640px) {
    .cookie-consent {
        padding: 12px;
    }

    .cookie-consent-body {
        padding: 20px;
    }

    .cookie-consent-actions .btn {
        flex: 1 1 100%;
    }

    .cookie-preference {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-bottom { grid-template-columns: 1fr; gap: 40px; }
    .hero-stats { justify-self: start; }
    .section-split { grid-template-columns: 1fr; gap: 20px; }
    .section-split p { justify-self: start; max-width: none; }
    .bento-card--1, .bento-card--2, .bento-card--3, .bento-card--4 { grid-column: span 12; }
    .work-masonry { grid-template-columns: 1fr; }
    .work-card--featured { grid-row: span 1; }
    .timeline { grid-template-columns: 1fr 1fr; gap: 32px; }
    .timeline::before { display: none; }
    .service-row { grid-template-columns: 1fr; gap: 16px; }
    .service-tags { justify-content: flex-start; max-width: none; }
    .cta-split { grid-template-columns: 1fr; gap: 40px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .container { width: min(var(--container), calc(100% - 32px)); }
    .nav-toggle { display: block; }

    .site-nav {
        display: none;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 16px;
        background: #fff;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }

    .site-nav.open { display: flex; }
    .site-nav a { width: 100%; }
    .nav-cta { margin-left: 0; margin-top: 8px; }

    .hero-stats { flex-direction: column; width: 100%; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); min-width: auto; }
    .stat-item:last-child { border-bottom: none; }

    .timeline { grid-template-columns: 1fr; }
    .post-row { grid-template-columns: 1fr; gap: 8px; }
    .post-row-arrow { display: none; }
    .footer-main { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; }
    .footer-cta { width: 100%; }
    .btn { width: 100%; }
    .logos-row { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}
