:root {
  --ink: #08120f;
  --paper: #f4f7f2;
  --white: #fff;
  --muted: #64706a;
  --line: #deddd8;
  --accent: #6c5ce7;
  --accent-dark: #3326a8;
  --coral: #ff7a59;
  --sky: #8bd3ff;
  --lemon: #eaff7b;
  --blush: #ffd8d0;
  --surface: #f6f4ef;
  --text: #17171a;
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --shadow: 0 26px 80px rgba(23, 23, 26, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--surface); font-family: "Inter", sans-serif; font-size: 16px; line-height: 1.65; overflow-x: hidden; }
body, button, input, textarea, select { -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p, h1, h2, h3, h4 { margin-top: 0; }
h1, h2, h3, .brand-type, .button { font-family: "Space Grotesk", sans-serif; }
button, input, textarea, select { font: inherit; }
::selection { color: #111; background: var(--lemon); }
.container-xxl { max-width: 1440px; }
.section-pad { padding: clamp(88px, 10vw, 150px) 0; }
.section-pad-sm { padding: clamp(70px, 8vw, 110px) 0; }
.section-dark { color: #fff; background: #17171a; }
.section-purple { color: #fff; background: var(--accent-dark); }
.section-blue { color: #111; background: var(--sky); }

/* Header */
.top-ribbon { position: relative; z-index: 1031; padding: 8px 0; color: #fff; background: #17171a; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.site-header { position: sticky; top: 0; z-index: 1030; background: rgba(246, 244, 239, .88); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: box-shadow .25s ease, border-color .25s ease, background .25s ease; }
.site-header.is-scrolled { background: rgba(255,255,255,.94); border-color: rgba(23,23,26,.08); box-shadow: 0 12px 32px rgba(23,23,26,.08); }
.header-shell { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-symbol { width: 40px; height: 40px; padding: 7px; border-radius: 13px; display: grid; place-items: center; background: var(--text); }
.brand-symbol img { width: 100%; height: 100%; }
.brand-type { display: grid; line-height: 1; }
.brand-type strong { font-size: .93rem; letter-spacing: .08em; }
.brand-type small { margin-top: 4px; color: var(--accent); font-size: .58rem; font-weight: 800; letter-spacing: .31em; }
.desktop-nav { align-items: center; gap: 7px; padding: 5px; border: 1px solid rgba(23,23,26,.08); border-radius: 999px; background: rgba(255,255,255,.66); }
.desktop-nav .nav-link { padding: 10px 16px; border-radius: 999px; color: #4e4e53; font-size: .86rem; font-weight: 700; transition: .2s ease; }
.desktop-nav .nav-link:hover, .desktop-nav .nav-link.active { color: #fff; background: var(--text); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-mail { align-items: center; gap: 7px; color: #505056; font-size: .78rem; font-weight: 700; }
.button { min-height: 48px; padding: 13px 20px; border: 1px solid transparent; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-size: .86rem; font-weight: 700; line-height: 1; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-dark { color: #fff; background: var(--text); box-shadow: 0 12px 25px rgba(23,23,26,.16); }
.button-dark:hover { color: #fff; background: var(--accent); }
.button-light { color: var(--text); background: #fff; border-color: rgba(23,23,26,.11); }
.button-light:hover { color: #fff; background: var(--text); }
.button-coral { color: #111; background: var(--coral); }
.button-lemon { color: #111; background: var(--lemon); }
.button-outline { color: var(--text); border-color: rgba(23,23,26,.24); background: transparent; }
.button-outline:hover { color: #fff; background: var(--text); }
.menu-button, .menu-close { width: 46px; height: 46px; padding: 0; border: 0; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--text); font-size: 1.35rem; }
.mobile-menu { width: min(92vw, 450px) !important; color: #fff; background: #17171a; }
.mobile-menu .offcanvas-header { padding: 24px; }
.mobile-menu .brand-type strong { color: #fff; }
.mobile-menu .brand-symbol { background: #fff; }
.mobile-menu .offcanvas-body { padding: 18px 24px 28px; display: flex; flex-direction: column; justify-content: space-between; }
.mobile-nav { display: grid; }
.mobile-nav-link { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; align-items: center; font-family: "Space Grotesk"; font-size: 1.55rem; }
.mobile-nav-link.active { color: var(--lemon); }
.mobile-menu-card { margin-top: 40px; padding: 24px; border-radius: 24px; color: #111; background: var(--lemon); }
.mobile-menu-card span { display: block; margin-bottom: 18px; font-family: "Space Grotesk"; font-size: 1.25rem; font-weight: 700; }

/* Global headings */
.eyebrow { margin-bottom: 22px; display: inline-flex; align-items: center; gap: 10px; font-size: .71rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 2px; background: currentColor; }
.display-title, .home-title { font-weight: 600; letter-spacing: -.065em; line-height: .92; }
.display-title { max-width: 1120px; margin-bottom: 0; font-size: clamp(3.7rem, 8.4vw, 8.7rem); }
.home-title { margin-bottom: 30px; font-size: clamp(4.2rem, 8.5vw, 8.8rem); }
.home-title em { color: var(--accent); font-style: normal; }
.section-heading { margin-bottom: 55px; }
.section-heading h2, .split-heading h2 { margin: 0; font-size: clamp(2.7rem, 5vw, 5.5rem); font-weight: 600; letter-spacing: -.055em; line-height: .98; }
.split-heading { display: grid; grid-template-columns: 1.22fr .78fr; gap: 70px; align-items: end; }
.split-heading > p { max-width: 550px; margin: 0 0 6px; color: #66666c; font-size: 1.05rem; }
.light-heading .eyebrow, .light-heading h2 { color: #fff; }
.large-editorial { font-family: "Space Grotesk"; font-size: clamp(1.65rem, 2.7vw, 2.8rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.23; }

/* Home hero */
.home-hero { position: relative; padding: clamp(74px, 8vw, 120px) 0 0; overflow: hidden; background: linear-gradient(145deg, #f7f1e8 0%, #f5f0ff 50%, #e7f7ff 100%); }
.hero-grid-bg { position: absolute; inset: 0; opacity: .42; background-image: linear-gradient(rgba(23,23,26,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(23,23,26,.07) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, #000, transparent 82%); }
.home-lead { max-width: 730px; margin-bottom: 30px; color: #53535a; font-size: clamp(1.05rem, 1.5vw, 1.28rem); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-visual { position: relative; min-height: 590px; }
.hero-picture { position: absolute; inset: 24px 0 0 35px; overflow: hidden; border-radius: 220px 220px 30px 30px; box-shadow: var(--shadow); }
.hero-picture img { width: 100%; height: 100%; object-fit: cover; }
.hero-picture::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(23,23,26,.5), transparent 55%); }
.hero-shape { position: absolute; top: 0; right: -28px; width: 150px; height: 150px; border: 25px solid var(--lemon); border-radius: 50%; z-index: -1; }
.hero-badge { position: absolute; z-index: 3; padding: 13px 17px; border-radius: 16px; display: flex; align-items: center; gap: 8px; box-shadow: 0 15px 40px rgba(23,23,26,.16); font-family: "Space Grotesk"; font-weight: 700; }
.hero-badge-top { top: 80px; left: 0; background: var(--lemon); }
.hero-badge-bottom { right: -16px; bottom: 34px; color: #fff; background: var(--accent); }
.hero-badge-bottom strong { font-size: 2rem; }
.hero-badge-bottom span { max-width: 130px; font-size: .79rem; line-height: 1.25; }
.hero-stats { position: relative; z-index: 4; margin-top: 70px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(23,23,26,.12); }
.hero-stat { min-height: 126px; padding: 24px 22px; border-right: 1px solid rgba(23,23,26,.12); display: flex; align-items: flex-end; gap: 15px; }
.hero-stat:last-child { border-right: 0; }
.hero-stat strong { font-family: "Space Grotesk"; font-size: 2.4rem; letter-spacing: -.06em; }
.hero-stat span { max-width: 150px; color: #55555c; font-size: .75rem; font-weight: 700; line-height: 1.3; }

/* Marquee */
.marquee-strip { overflow: hidden; color: #fff; background: var(--accent); transform: rotate(-1deg) scale(1.01); }
.marquee-track { width: max-content; padding: 17px 0; display: flex; animation: marquee 28s linear infinite; }
.marquee-track span { padding: 0 30px; display: inline-flex; align-items: center; gap: 24px; font-family: "Space Grotesk"; font-size: 1rem; font-weight: 700; text-transform: uppercase; }
.marquee-track i { color: var(--lemon); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Bento */
.service-bento-section { background: #fff; }
.service-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(180px, auto); gap: 16px; }
.bento-card { position: relative; min-height: 275px; padding: 26px; border-radius: var(--radius-md); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.bento-card:hover { box-shadow: var(--shadow); }
.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; min-height: 566px; }
.bento-coral { background: var(--coral); }
.bento-purple { color: #fff; background: var(--accent); }
.bento-lemon { background: var(--lemon); }
.bento-sky { background: var(--sky); }
.bento-dark { color: #fff; background: #202025; }
.bento-blush { background: var(--blush); }
.bento-number { position: absolute; right: 25px; top: 22px; font-family: "Space Grotesk"; font-size: .75rem; font-weight: 800; }
.bento-icon { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; color: #fff; background: rgba(23,23,26,.88); font-size: 1.55rem; }
.bento-purple .bento-icon, .bento-dark .bento-icon { color: #111; background: var(--lemon); }
.bento-card h3 { max-width: 450px; margin: 45px 0 10px; font-size: clamp(1.45rem, 2.2vw, 2.45rem); letter-spacing: -.045em; }
.bento-card p { max-width: 520px; margin: 0; opacity: .76; font-size: .9rem; }
.bento-link { margin-top: 28px; display: inline-flex; align-items: center; gap: 7px; font-size: .78rem; font-weight: 800; text-transform: uppercase; }

/* Manifesto */
.manifesto-section { background: var(--surface); }
.manifesto-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; }
.manifesto-copy h2 { margin: 0 0 25px; font-size: clamp(2.8rem, 5.1vw, 5.7rem); font-weight: 600; letter-spacing: -.06em; line-height: .98; }
.manifesto-copy p { max-width: 620px; margin-bottom: 30px; color: #606066; }
.manifesto-gallery { min-height: 680px; position: relative; }
.gallery-card { position: absolute; overflow: hidden; border-radius: 30px; box-shadow: var(--shadow); }
.gallery-card-a { inset: 0 19% 21% 0; transform: rotate(-2deg); }
.gallery-card-b { inset: 24% 0 0 45%; transform: rotate(3deg); }
.gallery-picture, .gallery-picture img { width: 100%; height: 100%; }
.gallery-picture img { object-fit: cover; }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(23,23,26,.75), transparent 55%); }
.gallery-card span { position: absolute; z-index: 2; left: 22px; bottom: 20px; color: #fff; font-family: "Space Grotesk"; font-weight: 700; }
.gallery-card-c { z-index: 4; right: 6%; top: 4%; width: 210px; height: 190px; padding: 22px; display: flex; align-items: flex-end; color: #111; background: var(--lemon); transform: rotate(5deg); }
.gallery-card-c::after { display: none; }
.gallery-card-c strong { font-family: "Space Grotesk"; font-size: 1.35rem; line-height: 1.08; }

/* Capability slider */
.capability-section { overflow: hidden; }
.capability-section .container-xxl { overflow: visible; }
.slider-controls { display: flex; gap: 10px; }
.slider-controls button { width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: grid; place-items: center; color: #fff; background: transparent; font-size: 1.2rem; transition: .2s ease; }
.slider-controls button:hover { color: #111; background: var(--lemon); }
.capability-swiper { overflow: visible; }
.capability-slide { height: auto; overflow: hidden; border-radius: 34px; display: grid; grid-template-columns: 1.08fr .92fr; background: #242429; }
.capability-image { min-height: 500px; }
.slide-picture, .slide-picture img { width: 100%; height: 100%; }
.slide-picture img { object-fit: cover; }
.capability-copy { padding: clamp(30px, 4vw, 55px); display: flex; flex-direction: column; justify-content: center; }
.capability-copy > span { color: var(--lemon); font-size: .7rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.capability-copy h3 { margin: 25px 0 18px; color: #fff; font-size: clamp(2rem, 3.2vw, 3.5rem); letter-spacing: -.05em; line-height: 1; }
.capability-copy p { color: #b9b9c0; }
.capability-copy a { margin-top: 20px; color: #fff; font-size: .82rem; font-weight: 800; text-transform: uppercase; }
.capability-swiper .swiper-pagination { position: relative; margin-top: 32px; }
.capability-swiper .swiper-pagination-bullet { width: 26px; height: 5px; border-radius: 99px; background: #fff; }

/* Portfolio + outcomes */
.portfolio-section { background: #fff; }
.portfolio-chart-card { height: 100%; min-height: 670px; padding: clamp(28px, 4vw, 48px); border-radius: 36px; color: #fff; background: var(--accent); }
.portfolio-chart-card h2 { margin-bottom: 20px; font-size: clamp(2.5rem, 4vw, 4.6rem); font-weight: 600; letter-spacing: -.055em; line-height: 1; }
.chart-wrap { height: 260px; margin: 30px 0; }
.chart-legend { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; list-style: none; }
.chart-legend li { display: flex; align-items: center; gap: 9px; font-size: .76rem; }
.chart-legend li span { width: 11px; height: 11px; border-radius: 50%; background: var(--lemon); }
.chart-legend li:nth-child(2) span { background: var(--coral); }.chart-legend li:nth-child(3) span { background: var(--lemon); }.chart-legend li:nth-child(4) span { background: var(--sky); }.chart-legend li:nth-child(5) span { background: #26262b; }.chart-legend li:nth-child(6) span { background: var(--blush); }
.outcome-mini-grid { height: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.outcome-mini { min-height: 325px; padding: 30px; border: 1px solid var(--line); border-radius: 32px; display: flex; flex-direction: column; justify-content: flex-end; background: var(--surface); }
.outcome-mini:nth-child(2) { background: var(--lemon); }.outcome-mini:nth-child(3) { background: var(--blush); }.outcome-mini:nth-child(4) { background: var(--sky); }
.outcome-mini > div { width: 54px; height: 54px; margin-bottom: auto; border-radius: 18px; display: grid; place-items: center; color: #fff; background: var(--text); font-size: 1.5rem; }
.outcome-mini h3 { margin: 35px 0 10px; font-size: 1.65rem; letter-spacing: -.04em; }
.outcome-mini p { margin: 0; color: #5c5c62; font-size: .9rem; }

/* Audiences */
.audiences-section { color: #fff; background: #17171a; }
.audiences-head { max-width: 880px; margin-bottom: 55px; }
.audiences-head h2 { margin: 0; font-size: clamp(2.8rem, 5.2vw, 5.6rem); letter-spacing: -.055em; line-height: 1; }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.audience-card { min-height: 315px; padding: 25px; border: 1px solid rgba(255,255,255,.13); border-radius: 28px; display: flex; flex-direction: column; background: #202025; }
.audience-card > i { font-size: 2rem; }.audience-card > span { margin: auto 0 25px; color: #82828c; font-size: .73rem; font-weight: 800; }.audience-card h3 { margin-bottom: 10px; font-size: 1.5rem; }.audience-card p { margin: 0; color: #aaaab2; font-size: .85rem; }
.audience-2 { color: #111; background: var(--coral); }.audience-2 p, .audience-2 > span { color: rgba(17,17,17,.65); }.audience-3 { color: #111; background: var(--lemon); }.audience-3 p, .audience-3 > span { color: rgba(17,17,17,.65); }

/* Process */
.process-preview { background: var(--surface); }
.process-rail { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-card { min-height: 330px; padding: 28px; border-top: 1px solid #bfc0ba; border-right: 1px solid #bfc0ba; }
.process-card:last-child { border-right: 0; }
.process-top { display: flex; justify-content: space-between; align-items: center; }
.process-top span { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--accent); font-family: "Space Grotesk"; font-weight: 700; }
.process-top i { color: #92928f; font-size: 1.35rem; }
.process-card h3 { margin: 80px 0 12px; font-size: 2rem; letter-spacing: -.05em; }
.process-card p { margin: 0; color: #66666c; font-size: .9rem; }

/* CTA */
.cta-band { padding: 22px 0; color: #fff; background: #17171a; }
.cta-band-inner { min-height: 360px; padding: clamp(35px, 5vw, 70px); border-radius: 36px; display: flex; justify-content: space-between; align-items: flex-end; gap: 50px; background: var(--accent); background-image: radial-gradient(circle at 85% 10%, rgba(234,255,123,.7), transparent 25%), linear-gradient(135deg, transparent 45%, rgba(255,255,255,.1)); }
.cta-band-inner > div { max-width: 880px; }
.cta-band-inner span { display: block; margin-bottom: 20px; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.cta-band-inner h2 { margin-bottom: 18px; font-size: clamp(3rem, 5.5vw, 6rem); letter-spacing: -.06em; line-height: .94; }
.cta-band-inner p { max-width: 660px; margin: 0; color: rgba(255,255,255,.75); }

/* Page hero */
.page-hero { padding: clamp(78px, 9vw, 135px) 0 0; overflow: hidden; }
.page-hero .hero-intro { max-width: 590px; margin: 0 0 12px auto; font-size: clamp(1rem, 1.5vw, 1.25rem); }
.page-hero-media { position: relative; height: clamp(430px, 56vw, 720px); margin-top: 70px; overflow: hidden; border-radius: 42px 42px 0 0; }
.page-hero-picture, .page-hero-picture img { width: 100%; height: 100%; }
.page-hero-picture img { object-fit: cover; }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(23,23,26,.5), transparent 45%); }
.image-index { position: absolute; z-index: 2; left: 25px; bottom: 22px; padding: 8px 12px; border-radius: 99px; color: #fff; background: rgba(23,23,26,.75); font-size: .68rem; font-weight: 800; letter-spacing: .08em; }
.hero-purple { background: #e9e3ff; }.hero-coral { background: #ffd6ca; }.hero-blue { background: #cdeeff; }.hero-lemon { background: #f2ffad; }.hero-pink { background: #ffe2e9; }.hero-green { background: #c8f4df; }

/* Services page */
.service-index { background: #fff; }
.service-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-index-card { min-height: 300px; padding: 25px; border: 1px solid var(--line); border-radius: 28px; display: flex; flex-direction: column; transition: .22s ease; }
.service-index-card:hover { color: #fff; background: var(--accent); transform: translateY(-5px); box-shadow: var(--shadow); }
.service-index-card > span { align-self: flex-end; font-size: .72rem; font-weight: 800; }.service-index-card > i { margin-top: 15px; font-size: 2rem; }.service-index-card h2 { margin: auto 0 12px; font-size: 1.7rem; letter-spacing: -.045em; }.service-index-card p { margin: 0; color: #68686e; font-size: .86rem; }.service-index-card:hover p { color: rgba(255,255,255,.75); }.service-index-card b { margin-top: 22px; }
.service-story { padding: clamp(80px, 9vw, 135px) 0; scroll-margin-top: 100px; }
.service-story:nth-child(odd) { background: #fff; }
.service-story-1 { background: #f1edff !important; }.service-story-2 { background: #fff0eb !important; }.service-story-3 { background: #f5ffc2 !important; }.service-story-4 { background: #e7f6ff !important; }.service-story-5 { background: #202025 !important; color: #fff; }.service-story-6 { background: #ffe8e3 !important; }
.service-story-image { position: relative; height: clamp(410px, 45vw, 610px); overflow: hidden; border-radius: 34px; box-shadow: var(--shadow); }
.service-story-picture, .service-story-picture img { width: 100%; height: 100%; }.service-story-picture img { object-fit: cover; }.service-story-image > span { position: absolute; left: 22px; top: 22px; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: #111; background: var(--lemon); font-family: "Space Grotesk"; font-weight: 800; }
.service-story-copy { max-width: 610px; padding: 20px; }
.service-large-icon { width: 68px; height: 68px; margin-bottom: 26px; border-radius: 22px; display: grid; place-items: center; color: #fff; background: var(--accent); font-size: 1.8rem; }
.service-story-copy h2 { margin-bottom: 18px; font-size: clamp(2.7rem, 5vw, 5.5rem); letter-spacing: -.06em; line-height: .95; }.service-story-copy .service-lead { color: inherit; font-family: "Space Grotesk"; font-size: 1.35rem; font-weight: 600; }.service-story-copy > p { color: #626269; }.service-story-5 .service-story-copy > p { color: #b8b8c1; }
.service-story-copy ul { margin: 28px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; list-style: none; }.service-story-copy li { display: flex; gap: 8px; font-size: .87rem; }.service-story-copy li i { color: var(--accent); }.service-story-5 .service-story-copy li i { color: var(--lemon); }.service-story-5 .button-outline { color: #fff; border-color: rgba(255,255,255,.35); }

/* Solutions */
.challenge-section { background: #fff; }
.challenge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.challenge-card { min-height: 390px; padding: 32px; border-radius: 32px; display: flex; flex-direction: column; }
.challenge-card > span { align-self: flex-end; font-size: .72rem; font-weight: 800; }.challenge-card > i { margin-top: 8px; font-size: 2.3rem; }.challenge-card h2 { max-width: 580px; margin: auto 0 15px; font-size: clamp(2rem, 3vw, 3.3rem); letter-spacing: -.05em; }.challenge-card p { max-width: 580px; margin: 0 0 24px; opacity: .68; }.challenge-card div { display: flex; flex-wrap: wrap; gap: 7px; }.challenge-card b { padding: 7px 11px; border: 1px solid currentColor; border-radius: 99px; font-size: .68rem; }
.challenge-1 { background: var(--coral); }.challenge-2 { color: #fff; background: var(--accent); }.challenge-3 { background: var(--lemon); }.challenge-4 { background: var(--sky); }
.systems-story { background: var(--surface); }
.systems-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.systems-image { position: relative; height: 690px; overflow: hidden; border-radius: 38px; }.systems-picture, .systems-picture img { width: 100%; height: 100%; }.systems-picture img { object-fit: cover; }.systems-label { position: absolute; left: 24px; bottom: 24px; padding: 18px 20px; border-radius: 18px; color: #111; background: var(--lemon); font-family: "Space Grotesk"; font-size: 1.25rem; font-weight: 700; line-height: 1.1; }
.systems-copy h2 { margin-bottom: 24px; font-size: clamp(2.8rem, 5vw, 5.2rem); letter-spacing: -.06em; line-height: .98; }.systems-copy > p { color: #64646a; }.systems-list { margin: 30px 0; border-top: 1px solid #c9c9c3; }.systems-list span { padding: 15px 0; border-bottom: 1px solid #c9c9c3; display: flex; gap: 20px; font-size: .82rem; }.systems-list b { font-family: "Space Grotesk"; font-size: 1rem; }
.solution-outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }.solution-outcome { min-height: 300px; padding: 27px; border: 1px solid rgba(255,255,255,.17); border-radius: 28px; display: flex; flex-direction: column; }.solution-outcome > i { font-size: 2rem; }.solution-outcome h3 { margin: auto 0 12px; font-size: 1.65rem; }.solution-outcome p { margin: 0; color: rgba(255,255,255,.68); font-size: .86rem; }
.faq-section { background: #fff; }.faq-section h2 { margin-bottom: 20px; font-size: clamp(2.7rem, 4.5vw, 4.9rem); letter-spacing: -.055em; line-height: 1; }.faq-section p { color: #66666d; }.custom-accordion { --bs-accordion-bg: transparent; --bs-accordion-border-color: #d5d5d0; --bs-accordion-btn-focus-box-shadow: none; --bs-accordion-active-color: var(--accent); --bs-accordion-active-bg: transparent; }.custom-accordion .accordion-button { padding: 23px 0; font-family: "Space Grotesk"; font-size: 1.16rem; font-weight: 700; }.custom-accordion .accordion-body { padding: 0 0 24px; color: #65656c; }

/* Approach */
.approach-intro { background: #fff; }.approach-intro h2 { font-size: clamp(2.8rem, 5vw, 5rem); letter-spacing: -.055em; line-height: 1; }
.approach-steps { background: #fff; }.approach-step { padding: 58px 0; border-top: 1px solid #cacac5; display: grid; grid-template-columns: 110px 1fr .75fr; gap: 50px; }.approach-step-number { width: 70px; height: 70px; border-radius: 22px; display: grid; place-items: center; color: #fff; background: var(--accent); font-family: "Space Grotesk"; font-size: 1.35rem; font-weight: 700; }.approach-step-main > span, .approach-deliverables > span { color: #85858b; font-size: .69rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.approach-step-main h2 { margin: 15px 0; font-size: clamp(2.8rem, 4.8vw, 5rem); letter-spacing: -.055em; }.approach-step-main p { max-width: 650px; color: #626269; }.approach-deliverables { padding-top: 5px; }.approach-deliverables div { padding: 12px 0; border-bottom: 1px solid #d5d5d0; font-size: .85rem; }
.approach-gallery-grid { min-height: 760px; display: grid; grid-template-columns: 1.3fr .7fr; grid-template-rows: 1fr 1fr; gap: 16px; }.approach-gallery-large { grid-row: 1 / 3; }.approach-gallery-large, .approach-gallery-small { position: relative; overflow: hidden; border-radius: 32px; }.approach-picture, .approach-picture img { width: 100%; height: 100%; }.approach-picture img { object-fit: cover; }.approach-gallery-large::after, .approach-gallery-small::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(23,23,26,.65), transparent 55%); }.approach-gallery-grid span { position: absolute; z-index: 2; left: 22px; bottom: 20px; font-family: "Space Grotesk"; font-weight: 700; }.approach-quote { padding: 35px; border-radius: 32px; display: flex; align-items: flex-end; color: #111; background: var(--lemon); font-family: "Space Grotesk"; font-size: clamp(1.8rem, 3vw, 3.4rem); font-weight: 600; letter-spacing: -.045em; line-height: 1.08; }
.principles-section { background: var(--surface); }.principle-grid-new { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }.principle-tile { min-height: 330px; padding: 27px; border-radius: 28px; display: flex; flex-direction: column; }.principle-tile > i { font-size: 2rem; }.principle-tile > span { margin: auto 0 24px; font-size: .7rem; font-weight: 800; }.principle-tile h3 { margin-bottom: 10px; font-size: 1.6rem; }.principle-tile p { margin: 0; opacity: .68; font-size: .87rem; }.principle-1 { color: #fff; background: var(--accent); }.principle-2 { background: var(--coral); }.principle-3 { background: var(--lemon); }.principle-4 { background: var(--sky); }

/* Company */
.company-facts { background: #fff; }.company-facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }.company-fact { min-height: 220px; padding: 25px; border-radius: 28px; display: flex; flex-direction: column; justify-content: space-between; background: var(--surface); }.company-fact span { color: #6f6f75; font-size: .7rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }.company-fact strong { font-family: "Space Grotesk"; font-size: 1.45rem; line-height: 1.12; }.fact-2 { color: #fff; background: var(--accent); }.fact-2 span { color: rgba(255,255,255,.7); }.fact-3 { background: var(--coral); }.fact-4 { background: var(--lemon); }.fact-address { grid-column: 1 / -1; min-height: 150px; background: var(--sky); }.fact-address strong { max-width: 900px; font-size: clamp(1.4rem, 2.5vw, 2.5rem); }
.company-story { background: var(--surface); }.company-story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }.company-story-copy h2 { margin-bottom: 28px; font-size: clamp(2.8rem, 5vw, 5.4rem); letter-spacing: -.06em; line-height: .97; }.company-story-copy > p:not(.large-editorial) { color: #636369; }.company-story-image { position: relative; height: 720px; overflow: hidden; border-radius: 38px; }.company-picture, .company-picture img { width: 100%; height: 100%; }.company-picture img { object-fit: cover; }.company-story-image span { position: absolute; left: 24px; bottom: 24px; padding: 18px 21px; border-radius: 18px; color: #111; background: var(--lemon); font-family: "Space Grotesk"; font-size: 1.3rem; font-weight: 700; line-height: 1.08; }
.sic-section h2 { margin-bottom: 18px; font-size: clamp(2.8rem, 5vw, 5.1rem); letter-spacing: -.06em; line-height: .98; }.sic-section p { max-width: 540px; }.sic-grid-new { display: grid; gap: 14px; }.sic-card-new { position: relative; min-height: 190px; padding: 27px; border: 1px solid rgba(23,23,26,.16); border-radius: 27px; display: flex; flex-direction: column; justify-content: space-between; background: rgba(255,255,255,.35); }.sic-card-new span { font-size: .72rem; font-weight: 800; letter-spacing: .1em; }.sic-card-new h3 { max-width: 560px; margin: 0; font-size: 1.75rem; letter-spacing: -.035em; }.sic-card-new i { position: absolute; right: 26px; top: 24px; font-size: 1.3rem; }
.company-values { background: #fff; }.company-values h2 { font-size: clamp(2.8rem, 4.8vw, 5rem); letter-spacing: -.06em; line-height: 1; }.company-values-list { border-top: 1px solid #cacac5; }.company-value { padding: 25px 0; border-bottom: 1px solid #cacac5; display: grid; grid-template-columns: 70px 1fr; gap: 20px; }.company-value > i { width: 54px; height: 54px; border-radius: 17px; display: grid; place-items: center; color: #fff; background: var(--accent); font-size: 1.4rem; }.company-value h3 { margin-bottom: 6px; font-size: 1.4rem; }.company-value p { margin: 0; color: #65656b; }

/* Contact */
.contact-section { background: #fff; }.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }.contact-sidebar { position: sticky; top: 120px; }.contact-sidebar h2 { margin-bottom: 20px; font-size: clamp(2.8rem, 4.7vw, 5rem); letter-spacing: -.06em; line-height: 1; }.contact-sidebar > p { color: #65656c; }.contact-detail { padding: 22px 0; border-top: 1px solid #d1d1cc; display: grid; grid-template-columns: 46px 1fr; gap: 10px; }.contact-detail > i { font-size: 1.5rem; }.contact-detail div { display: grid; }.contact-detail span { color: #78787e; font-size: .69rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }.contact-detail a, .contact-detail address { margin: 4px 0 0; font-family: "Space Grotesk"; font-size: 1.1rem; font-weight: 600; font-style: normal; }.contact-note { margin-top: 25px; padding: 25px; border-radius: 24px; display: grid; color: #111; background: var(--lemon); }.contact-note strong { font-family: "Space Grotesk"; font-size: 2rem; }.contact-note span { font-size: .78rem; }
.contact-form-card { padding: clamp(28px, 4vw, 50px); border-radius: 34px; background: var(--surface); }.form-kicker { margin-bottom: 35px; display: flex; justify-content: space-between; gap: 20px; font-family: "Space Grotesk"; font-size: 1.4rem; font-weight: 700; }.form-kicker span { color: #78787e; font-family: "Inter"; font-size: .7rem; font-weight: 600; }.contact-form-card label { margin-bottom: 8px; font-size: .74rem; font-weight: 800; }.contact-form-card .form-control, .contact-form-card .form-select { min-height: 58px; padding: 14px 16px; border: 1px solid #d0d0cb; border-radius: 14px; background: #fff; box-shadow: none; }.contact-form-card textarea.form-control { min-height: 190px; resize: vertical; }.contact-form-card .form-control:focus, .contact-form-card .form-select:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(108,92,231,.11); }.contact-form-card small { max-width: 560px; color: #6b6b72; }.contact-form-card small a { text-decoration: underline; }

/* Legal + status */
.legal-hero { padding: clamp(90px, 11vw, 170px) 0; color: #fff; background: var(--accent); }.legal-hero h1 { max-width: 900px; margin-bottom: 24px; font-size: clamp(4rem, 9vw, 9rem); letter-spacing: -.07em; line-height: .9; }.legal-hero p { max-width: 680px; color: rgba(255,255,255,.75); font-size: 1.15rem; }.legal-hero > div > span:last-child { font-size: .72rem; font-weight: 800; text-transform: uppercase; }.legal-content { background: #fff; }.legal-container { max-width: 980px; }.legal-content article { padding: 38px 0; border-bottom: 1px solid #d3d3cf; display: grid; grid-template-columns: 85px 1fr; gap: 25px; }.legal-content article > span { font-family: "Space Grotesk"; font-weight: 700; }.legal-content h2 { margin-bottom: 14px; font-size: 2rem; letter-spacing: -.04em; }.legal-content p { color: #64646a; }.legal-company-box { margin-top: 50px; padding: 30px; border-radius: 25px; display: grid; background: var(--lemon); }.legal-company-box strong { font-family: "Space Grotesk"; font-size: 1.5rem; }.legal-company-box address { margin: 14px 0 0; font-style: normal; }
.status-page { min-height: 78vh; padding: 80px 20px; display: grid; place-items: center; background: linear-gradient(135deg, #e8e1ff, #fff3ee); }.status-card { width: min(760px, 100%); padding: clamp(35px, 6vw, 70px); border-radius: 36px; text-align: center; background: #fff; box-shadow: var(--shadow); }.status-card > i { width: 75px; height: 75px; margin: 0 auto 22px; border-radius: 24px; display: grid; place-items: center; color: #fff; background: var(--accent); font-size: 2rem; }.status-card > strong { display: block; color: var(--accent); font-family: "Space Grotesk"; font-size: 7rem; letter-spacing: -.08em; line-height: 1; }.status-card > span { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.status-card h1 { margin: 18px 0; font-size: clamp(2.6rem, 5vw, 5rem); letter-spacing: -.06em; line-height: 1; }.status-card p { max-width: 560px; margin: 0 auto 28px; color: #65656b; }

/* Footer + cookie */
.site-footer { padding: 95px 0 30px; color: #fff; background: #111114; }.footer-main { display: grid; grid-template-columns: 1.6fr .65fr .75fr 1fr; gap: 65px; }.footer-brand .brand-type strong { color: #fff; }.footer-brand .brand-symbol { background: #fff; }.footer-brand-block p { max-width: 430px; margin: 28px 0; color: #9d9da6; }.footer-email { display: inline-flex; align-items: center; gap: 8px; font-family: "Space Grotesk"; font-size: 1.15rem; font-weight: 700; }.footer-column { display: flex; flex-direction: column; gap: 11px; }.footer-column > span { margin-bottom: 8px; color: #73737c; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }.footer-column a { color: #c7c7ce; font-size: .86rem; }.footer-column a:hover { color: var(--lemon); }.footer-address address { margin: 0; color: #c7c7ce; font-style: normal; }.footer-address small { color: #73737c; }.footer-bottom { margin-top: 70px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 30px; color: #777780; font-size: .68rem; }.footer-bottom span:last-child { max-width: 740px; text-align: right; }
.cookie-bar { position: fixed; z-index: 1100; right: 20px; bottom: 20px; width: min(500px, calc(100vw - 40px)); padding: 18px; border-radius: 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #fff; background: #17171a; box-shadow: var(--shadow); transition: opacity .25s ease, transform .25s ease; }.cookie-bar[hidden] { display: none; }.cookie-bar.is-closing { opacity: 0; transform: translateY(10px); }.cookie-bar > div:first-child { display: grid; }.cookie-bar strong { font-family: "Space Grotesk"; }.cookie-bar span { color: #aaaab2; font-size: .75rem; }.cookie-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }.cookie-actions a { font-size: .72rem; text-decoration: underline; }.cookie-actions button { padding: 9px 13px; border: 0; border-radius: 99px; background: var(--lemon); font-size: .72rem; font-weight: 800; }

/* Responsive */
@media (max-width: 1199px) {
  .service-bento { grid-template-columns: repeat(2, 1fr); }.bento-tall { grid-row: span 1; min-height: 275px; }
  .audience-grid, .solution-outcome-grid, .principle-grid-new { grid-template-columns: repeat(2, 1fr); }
  .process-rail { grid-template-columns: repeat(2, 1fr); }.process-card:nth-child(2) { border-right: 0; }
  .company-facts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.4fr .7fr .8fr; }.footer-address { grid-column: 1 / -1; }
}
@media (max-width: 991px) {
  .top-ribbon { padding: 7px 0; }.header-shell { min-height: 72px; }
  .home-hero { padding-top: 70px; }.hero-visual { min-height: 520px; max-width: 650px; margin: 0 auto; }.hero-picture { inset-left: 0; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }.hero-stat:nth-child(2) { border-right: 0; }.hero-stat { border-bottom: 1px solid rgba(23,23,26,.12); }
  .split-heading, .manifesto-grid, .systems-grid, .company-story-grid, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .manifesto-gallery { min-height: 600px; }
  .capability-slide { grid-template-columns: 1fr; }.capability-image { min-height: 420px; }
  .portfolio-chart-card { min-height: 620px; }.outcome-mini { min-height: 280px; }
  .service-index-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-step { grid-template-columns: 80px 1fr; }.approach-deliverables { grid-column: 2; }
  .company-story-image { height: 600px; }
  .contact-sidebar { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }.footer-brand-block { grid-column: 1 / -1; }.footer-address { grid-column: auto; }
  .page-hero .hero-intro { margin-left: 0; }
}
@media (max-width: 767px) {
  .section-pad { padding: 78px 0; }.section-pad-sm { padding: 65px 0; }
  .top-ribbon { font-size: .61rem; }.header-shell { min-height: 68px; }.brand-type { display: none; }.site-footer .brand-type, .mobile-menu .brand-type { display: grid; }
  .home-title { font-size: clamp(3.7rem, 17vw, 5.8rem); }.home-lead { font-size: 1rem; }.hero-buttons .button { width: 100%; }.hero-visual { min-height: 430px; }.hero-picture { inset: 15px 12px 0; border-radius: 160px 160px 25px 25px; }.hero-badge-top { top: 58px; left: 0; font-size: .74rem; }.hero-badge-bottom { right: 0; bottom: 18px; }.hero-shape { right: -35px; width: 115px; height: 115px; border-width: 20px; }.hero-stats { margin-top: 45px; }.hero-stat { min-height: 105px; padding: 18px 12px; align-items: center; }.hero-stat strong { font-size: 2rem; }.hero-stat span { font-size: .65rem; }
  .split-heading { gap: 20px; }.section-heading h2, .split-heading h2 { font-size: clamp(2.7rem, 13vw, 4.5rem); }.split-heading > p { font-size: .95rem; }
  .service-bento { grid-template-columns: 1fr; }.bento-wide { grid-column: span 1; }.bento-card { min-height: 260px; }
  .manifesto-gallery { min-height: 530px; }.gallery-card-a { inset: 0 12% 25% 0; }.gallery-card-b { inset: 31% 0 0 37%; }.gallery-card-c { width: 155px; height: 140px; right: 1%; padding: 16px; }.gallery-card-c strong { font-size: 1rem; }
  .capability-image { min-height: 290px; }.capability-copy { padding: 28px; }.capability-copy h3 { font-size: 2rem; }
  .portfolio-chart-card { min-height: 590px; padding: 27px; }.chart-legend { grid-template-columns: 1fr; }.outcome-mini-grid { grid-template-columns: 1fr; }.outcome-mini { min-height: 245px; }
  .audience-grid, .solution-outcome-grid, .principle-grid-new { grid-template-columns: 1fr; }.audience-card, .solution-outcome, .principle-tile { min-height: 260px; }
  .process-rail { grid-template-columns: 1fr; }.process-card { border-right: 0; min-height: 280px; }.process-card h3 { margin-top: 55px; }
  .cta-band-inner { min-height: 450px; align-items: flex-start; flex-direction: column; }.cta-band-inner h2 { font-size: clamp(3rem, 13vw, 5rem); }
  .display-title { font-size: clamp(3.7rem, 16vw, 6rem); }.page-hero { padding-top: 70px; }.page-hero-media { height: 390px; margin-top: 45px; border-radius: 28px 28px 0 0; }
  .service-index-grid, .challenge-grid { grid-template-columns: 1fr; }.service-index-card { min-height: 250px; }.service-story { padding: 75px 0; }.service-story-image { height: 390px; }.service-story-copy { padding: 0; }.service-story-copy ul { grid-template-columns: 1fr; }
  .challenge-card { min-height: 330px; }.systems-image { height: 430px; }
  .approach-step { padding: 40px 0; grid-template-columns: 58px 1fr; gap: 18px; }.approach-step-number { width: 52px; height: 52px; border-radius: 16px; font-size: 1rem; }.approach-deliverables { grid-column: 1 / -1; }.approach-gallery-grid { min-height: auto; grid-template-columns: 1fr; grid-template-rows: 430px 280px auto; }.approach-gallery-large { grid-row: auto; }.approach-quote { min-height: 280px; }
  .company-facts-grid { grid-template-columns: 1fr; }.fact-address { grid-column: auto; }.company-fact { min-height: 180px; }.company-story-image { height: 430px; }
  .contact-form-card { padding: 25px; }.form-kicker { flex-direction: column; }
  .legal-content article { grid-template-columns: 45px 1fr; }.legal-hero h1 { font-size: clamp(3.8rem, 16vw, 6rem); }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }.footer-brand-block { grid-column: auto; }.footer-bottom { flex-direction: column; }.footer-bottom span:last-child { text-align: left; }.cookie-bar { align-items: flex-start; flex-direction: column; }.cookie-actions { width: 100%; justify-content: space-between; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
/* Graceful fallback if Bootstrap CDN is unavailable */
.mobile-menu:not(.show):not(.showing) { visibility: hidden; }
