/* ==========================================================================
   Digital Globalindo — one-page site
   Design system: island pill nav, dark hero with signal-orbit graphic,
   sticky story timeline, animated counters, logo-river marquee. See
   resources/views/pages/home.blade.php + partials.
   ========================================================================== */

:root {
	--red: #f21e28;
	--ink: #050505;
	--cream: #f2eee8;
	--white: #fff;
	--muted: #777;
	--orange: #ff6a1a;
	--gold: #ffbd63;
	--ease: cubic-bezier(.16, 1, .3, 1);
	--nav-height: 90px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: 'Inter', Arial, sans-serif;
	line-height: 1.5;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
em { font-style: normal; color: var(--red); }

.shell { width: min(1380px, calc(100% - 64px)); margin: auto; }
.section-dark { background: var(--ink); color: #fff; }
.section-red { background: var(--red); color: #fff; }
.section-light { background: #fff; }
.section-cream { background: var(--cream); }

/* ---------------------------------------------------------- scroll progress */

.progress { position: fixed; left: 0; top: 0; width: 100%; height: 3px; z-index: 1000; }
.progress span { display: block; width: 100%; height: 100%; background: var(--red); transform-origin: left; transform: scaleX(0); }

/* ------------------------------------------------------------------ scroll-top */

.scroll-top {
	position: fixed; right: 24px; bottom: 28px; z-index: 900;
	width: 48px; height: 48px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: rgba(5, 5, 5, .72); backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
	border: 1px solid rgba(255, 255, 255, .18); color: #fff;
	opacity: 0; visibility: hidden; transform: translateY(10px);
	transition: opacity .25s ease, transform .25s ease, visibility .25s, background .25s ease, border-color .25s ease;
}
.scroll-top svg { width: 18px; height: 18px; }
.scroll-top.visible { opacity: 1; visibility: visible; transform: none; }
.scroll-top:hover { background: var(--red); border-color: var(--red); }
body.menu-open .scroll-top { opacity: 0; visibility: hidden; pointer-events: none; }

@media (max-width: 700px) {
	.scroll-top { right: 16px; bottom: 18px; width: 44px; height: 44px; }
}

/* --------------------------------------------------------------- island nav */

.nav { position: fixed; inset: 0 0 auto; z-index: 900; padding: 14px 18px; transition: .4s var(--ease); }
.nav.scrolled { padding-top: 8px; }
.nav-shell {
	height: 54px; padding: 0 12px 0 22px;
	display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
	border: 1px solid transparent; border-radius: 999px;
	background: transparent;
	color: #fff;
	max-width: 1380px; margin: auto;
	transition: background-color .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled .nav-shell {
	border-color: rgba(255, 255, 255, .18);
	background: rgba(5, 5, 5, .62); backdrop-filter: blur(24px) saturate(140%); -webkit-backdrop-filter: blur(24px) saturate(140%);
	box-shadow: 0 12px 32px rgba(0, 0, 0, .25);
}
.brand img { width: 165px; filter: brightness(0) invert(1); }
.nav-center { display: flex; gap: 34px; font-size: 13px; font-weight: 600; color: #fff; }
.nav-center a { opacity: .7; transition: .25s; }
.nav-center a:hover { opacity: 1; }
.nav-center-link small { display: none; }

.nav-right { justify-self: end; display: flex; align-items: center; gap: 14px; }

.locale-dropdown { position: relative; }
.locale-toggle { position: relative; display: flex; align-items: center; gap: 6px; background: none; border: 0; padding: 6px; color: #fff; }
.locale-toggle svg.globe { width: 18px; height: 18px; color: var(--red); }
.locale-toggle:after {
	content: ""; position: absolute; top: 3px; right: 3px; width: 6px; height: 6px; border-radius: 50%;
	background: var(--red); transform-origin: center; animation: locale-breathe 1.6s ease-in-out infinite;
}
.locale-dropdown.locale-seen .locale-toggle:after { display: none; }
@keyframes locale-breathe {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.6); }
}
@media (prefers-reduced-motion: reduce) {
	.locale-toggle:after { animation: none; }
}
.locale-toggle svg.caret { width: 9px; height: 9px; color: #fff; transition: transform .2s ease; }
.locale-dropdown.open .locale-toggle svg.caret { transform: rotate(180deg); }
.locale-menu {
	position: absolute; top: calc(100% + 16px); right: -6px;
	background: #111; border: 1px solid rgba(255, 255, 255, .14); border-radius: 12px;
	padding: 6px; min-width: 168px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
	opacity: 0; visibility: hidden; transform: translateY(-6px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.locale-dropdown.open .locale-menu { opacity: 1; visibility: visible; transform: none; }
.locale-menu a { display: block; padding: 10px 12px; border-radius: 7px; font-size: 13px; color: #ccc; }
.locale-menu a:hover { background: rgba(242, 30, 40, .15); color: #fff; }
.locale-menu a[aria-current="true"] { color: var(--red); font-weight: 600; }

.locale-mobile { display: none; }

.nav-cta {
	justify-self: end; border-radius: 999px; background: #fff; color: var(--ink);
	padding: 11px 15px 11px 18px; display: flex; gap: 18px; align-items: center;
	font-size: 13px; font-weight: 700;
}
.nav-cta b { font-size: 16px; }

.menu { display: none; border: 0; background: none; width: 42px; height: 42px; }
.menu span { display: block; height: 1px; background: #fff; margin: 7px; transition: .3s; }
.menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* -------------------------------------------------------------------- hero */

.hero { min-height: 100svh; background: var(--ink); color: #fff; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 145px 0 62px; }
.hero-grid {
	position: absolute; inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
	background-size: 84px 84px;
	mask-image: linear-gradient(to bottom, black, transparent 92%);
}
.signal-orbit {
	position: absolute; width: min(73vw, 1050px); height: min(73vw, 1050px);
	border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%;
	right: -24vw; top: -28vw;
}
.signal-orbit:before, .signal-orbit:after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .1); inset: 9%; }
.signal-orbit:after { inset: 23%; }

.hero-shell { width: min(1380px, calc(100% - 64px)); margin: auto; position: relative; z-index: 2; }
.hero-kicker { display: flex; justify-content: space-between; text-transform: uppercase; letter-spacing: .18em; font-size: 11px; color: #8d8d8d; margin-bottom: 58px; }
.hero-title { font-size: clamp(3.4rem, 9.9vw, 10.9rem); letter-spacing: -.07em; line-height: .88; font-weight: 600; margin: 0; }
.hero-title .line { display: block; }
.hero-title .red { color: var(--red); }
.hero-foot { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; margin-top: 58px; align-items: end; }
.hero-intro { max-width: 650px; font-size: clamp(1.05rem, 1.45vw, 1.32rem); color: #aaa; margin: 0; }
.hero-actions { justify-self: end; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.primary-cta, .contact-primary {
	display: flex; align-items: center; justify-content: space-between; gap: 38px;
	padding: 18px 20px 18px 24px; border-radius: 999px; background: var(--red);
	font-weight: 700; min-width: 255px; transition: transform .3s var(--ease);
}
.primary-cta:hover, .contact-primary:hover { transform: scale(1.03); }
.primary-cta b, .contact-primary b { font-size: 20px; }
.plain-link { font-size: 14px; font-weight: 650; }
.plain-link span { display: inline-block; margin-left: 9px; }
.hero-index { position: absolute; right: 24px; bottom: 24px; writing-mode: vertical-rl; text-transform: uppercase; letter-spacing: .16em; font-size: 9px; color: #666; display: flex; gap: 15px; }

/* -------------------------------------------------------------------- ticker */

.ticker { height: 74px; background: #fff; overflow: hidden; border-bottom: 1px solid #ddd; display: flex; align-items: center; }
.ticker-track { display: flex; align-items: center; white-space: nowrap; min-width: max-content; animation: ticker 28s linear infinite; }
.ticker span { font-size: 14px; font-weight: 800; letter-spacing: .12em; margin: 0 34px; }
.ticker i { width: 8px; height: 8px; background: var(--red); border-radius: 50%; display: inline-block; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------- manifesto */

.section-number { position: absolute; top: 38px; right: 32px; font-size: 12px; letter-spacing: .15em; color: #777; }
.section-number.dark { color: #aaa; }
.manifesto, .metrics, .network, .story, .recognition, .faq, .coverage, .contact { position: relative; }
.manifesto { padding: 145px 0 100px; }
.manifesto-grid { display: grid; grid-template-columns: .35fr 1.65fr; gap: 80px; margin-bottom: 90px; }
.manifesto-label { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: #777; }
.dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; display: inline-block; margin-right: 10px; }
.manifesto-copy { font-size: clamp(2.2rem, 5.4vw, 5.4rem); line-height: 1; letter-spacing: -.055em; margin: 0; font-weight: 500; }

/* --------------------------------------------------------------- service rows */

.service-list { border-top: 1px solid #2a2a2a; }
.services-cta { padding-top: 70px; display: flex; justify-content: center; }
.service-item { position: relative; border-bottom: 1px solid #2a2a2a; transition: background .35s; }
.service-item.open, .service-item:hover { background: rgba(255, 255, 255, .04); }
.service-row {
	width: 100%; background: none; border: 0; text-align: left; color: inherit; font: inherit;
	display: grid; grid-template-columns: 70px minmax(220px, 1fr) minmax(220px, 1fr) 130px 24px;
	gap: 32px; align-items: center; padding: 30px 4px;
}
.service-no { font-size: 11px; color: var(--red); font-weight: 700; }
.service-tag { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: #888; text-align: right; }
.service-row h3 { font-size: clamp(1.5rem, 2.4vw, 2.4rem); letter-spacing: -.04em; font-weight: 500; margin: 0; }
.service-row p { font-size: 14px; line-height: 1.55; margin: 0; color: #aaa; }
.service-plus { width: 20px; height: 20px; position: relative; justify-self: end; color: #fff; }
.service-plus:before, .service-plus:after { content: ""; position: absolute; background: currentColor; }
.service-plus:before { left: 0; top: 50%; width: 100%; height: 1.5px; transform: translateY(-50%); }
.service-plus:after { top: 0; left: 50%; width: 1.5px; height: 100%; transform: translateX(-50%); transition: transform .3s; }
.service-item.open .service-plus:after { transform: translateX(-50%) rotate(90deg) scaleY(0); }
.service-expand { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.service-item.open .service-expand { grid-template-rows: 1fr; }
.service-expand-inner { overflow: hidden; }
.service-expand ul { list-style: none; margin: 0; padding: 0 130px 30px 106px; display: grid; gap: 10px; }
.service-expand li { font-size: 13px; color: #999; padding-left: 20px; position: relative; }
.service-expand li:before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

/* ------------------------------------------------------------------ metrics */

.metrics { padding: 140px 0; }
.metrics-head { display: grid; grid-template-columns: .5fr 1.5fr; gap: 80px; align-items: start; margin-bottom: 95px; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 800; color: var(--red); margin: 0; }
.eyebrow.light { color: #fff; }
.metrics-head h2, .recognition-head h2, .faq-head h2 { font-size: clamp(2.6rem, 7vw, 6.4rem); line-height: .95; letter-spacing: -.06em; margin: 0; font-weight: 600; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #ddd; border-left: 1px solid #ddd; }
.metric { min-height: 320px; padding: 32px; border-right: 1px solid #ddd; border-bottom: 1px solid #ddd; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; }
.metric-number { display: flex; align-items: flex-start; }
.metric strong { font-size: clamp(3.4rem, 7.2vw, 6.6rem); font-weight: 500; line-height: .85; letter-spacing: -.06em; }
.metric sup { font-size: 1.7rem; color: var(--red); margin-left: 2px; }
.metric p { width: 100%; max-width: 220px; color: #666; margin: 0; }

/* ------------------------------------------------------------------ network */

.network { padding: 120px 0 140px; overflow: hidden; }
.network-top { display: grid; grid-template-columns: .3fr 1.7fr; margin-bottom: 70px; }
.network-title h2 { font-size: clamp(2.6rem, 7.6vw, 5.8rem); line-height: .95; letter-spacing: -.055em; font-weight: 600; margin: 20px 0 0; }
.logo-river { border-top: 1px solid rgba(255, 255, 255, .38); border-bottom: 1px solid rgba(255, 255, 255, .38); padding: 26px 0; overflow: hidden; }
.logo-river-track { display: flex; width: max-content; animation: river 90s linear infinite; }
.logo-river span { font-size: clamp(1.3rem, 2.4vw, 2.4rem); font-weight: 700; letter-spacing: -.04em; margin: 0 40px; opacity: .42; white-space: nowrap; }
@keyframes river { to { transform: translateX(-50%); } }
.network-body { display: grid; grid-template-columns: 1fr .8fr; gap: 70px; margin-top: 90px; align-items: center; }
.sector-map { aspect-ratio: 1.15; position: relative; max-width: 620px; }
.sector-map svg { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: rgba(255, 255, 255, .27); }
.sector-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 150px; height: 150px; border-radius: 50%; background: #fff; display: grid; place-items: center; z-index: 2; }
.sector-center img { width: 78px; }
.sector { position: absolute; z-index: 3; background: #fff; color: var(--red); border-radius: 999px; padding: 8px 13px; font-size: 11px; font-weight: 700; box-shadow: 0 8px 30px rgba(120, 0, 0, .18); white-space: nowrap; }
.s1 { left: 8%; top: 21%; } .s2 { right: 4%; top: 24%; } .s3 { right: 0; bottom: 20%; } .s4 { left: 13%; bottom: 8%; } .s5 { left: -2%; top: 51%; }
.network-copy > p { font-size: clamp(1.2rem, 2vw, 1.7rem); line-height: 1.3; letter-spacing: -.02em; }
.network-list { margin-top: 45px; border-top: 1px solid rgba(255, 255, 255, .35); }
.network-list div { display: grid; grid-template-columns: 50px 1fr; padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, .35); }
.network-list span { font-size: 11px; }
.network-list strong { font-size: 1rem; }
.more-industries { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.more-industries-label { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255, 255, 255, .5); }
.more-industries-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.more-industries-tag { font-size: 12px; color: rgba(255, 255, 255, .85); border: 1px solid rgba(255, 255, 255, .3); border-radius: 999px; padding: 7px 14px; }

.brand-directory { margin-top: 90px; }
.brand-directory-list { margin-top: 26px; border-top: 1px solid rgba(255, 255, 255, .35); }
.brand-directory-row { display: grid; grid-template-columns: 260px 1fr; gap: 30px; padding: 24px 0; border-bottom: 1px solid rgba(255, 255, 255, .35); }
.brand-directory-row span { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: #fff; opacity: .8; padding-top: 3px; }
.brand-directory-row p { margin: 0; font-size: 1.02rem; line-height: 1.7; color: rgba(255, 255, 255, .75); }

/* ------------------------------------------------------------------ reach-map */

.reach-map { padding: 130px 0; }
.reach-map-head h2 { font-size: clamp(2.6rem, 6.8vw, 5.6rem); letter-spacing: -.055em; line-height: .95; font-weight: 600; margin: 22px 0 18px; }
.reach-map-head > p { font-size: 1.1rem; color: #aaa; max-width: 560px; margin: 0; }
.reach-map-body { position: relative; margin-top: 70px; }
.reach-map-svg { width: 100%; height: auto; display: block; }
.reach-map-islands { fill: rgba(255, 255, 255, .1); }
.reach-map-dots { position: absolute; inset: 0; pointer-events: none; }
.reach-dot-ring, .reach-dot-core {
	position: absolute; left: var(--x); top: var(--y); border-radius: 50%;
	transform: translate(-50%, -50%) scale(1);
}
.reach-dot-ring { border: 1px solid var(--red); opacity: .55; animation: reach-pulse 2.6s ease-out infinite; will-change: transform, opacity; }
.reach-dot-core { background: var(--red); }
.reach-dot-hit {
	position: absolute; left: var(--x); top: var(--y); transform: translate(-50%, -50%);
	width: 26px; height: 26px; border-radius: 50%; pointer-events: auto; outline: none;
}
.reach-dot-tooltip {
	position: absolute; left: var(--x); top: var(--y); z-index: 5;
	transform: translate(-50%, calc(-100% - 16px)); width: max-content; max-width: 220px;
	background: #111; border: 1px solid rgba(255, 255, 255, .16); border-radius: 10px;
	padding: 9px 13px; box-shadow: 0 14px 32px rgba(0, 0, 0, .4);
	opacity: 0; visibility: hidden; pointer-events: none;
	transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.reach-dot-tooltip strong { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--red); font-weight: 700; }
.reach-dot-tooltip span { display: block; font-size: 12px; color: #fff; line-height: 1.4; margin-top: 2px; }
.reach-dot:hover .reach-dot-tooltip, .reach-dot-hit:focus-visible ~ .reach-dot-tooltip {
	opacity: 1; visibility: visible; transform: translate(-50%, calc(-100% - 20px));
}
.reach-dot--xl .reach-dot-ring { width: 3.71%; aspect-ratio: 1; }
.reach-dot--xl .reach-dot-core { width: 2%; aspect-ratio: 1; }
.reach-dot--l .reach-dot-ring { width: 2.86%; aspect-ratio: 1; }
.reach-dot--l .reach-dot-core { width: 1.43%; aspect-ratio: 1; }
.reach-dot--m .reach-dot-ring { width: 2.29%; aspect-ratio: 1; }
.reach-dot--m .reach-dot-core { width: 1.09%; aspect-ratio: 1; }
.reach-dot--s .reach-dot-ring { width: 1.71%; aspect-ratio: 1; }
.reach-dot--s .reach-dot-core { width: .8%; aspect-ratio: 1; }
.reach-dot--xs .reach-dot-ring { width: 1.29%; aspect-ratio: 1; opacity: .4; }
.reach-dot--xs .reach-dot-core { width: .57%; aspect-ratio: 1; }
@keyframes reach-pulse {
	0% { transform: translate(-50%, -50%) scale(.6); opacity: .6; }
	100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
	.reach-dot-ring { animation: none; opacity: .3; }
}

/* ------------------------------------------------------ client grid (kept) */

.client-network { margin-top: 100px; padding-top: 60px; border-top: 1px solid rgba(255, 255, 255, .25); }
.client-network-label { margin-bottom: 22px; }
.industry-tabs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 36px; }
.industry-tab {
	padding: 9px 15px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 99px;
	font-size: 11px; text-transform: uppercase; letter-spacing: .07em; font-weight: 500;
	background: none; color: #fff; transition: background .15s, color .15s, border-color .15s;
}
.industry-tab.active, .industry-tab:hover { background: #fff; color: var(--red); border-color: #fff; }

.client-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 1px; background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .16); }
.client-card { position: relative; background: #fff; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; padding: 26px; overflow: hidden; outline: none; }
.client-card--pending { background: #fafafa; }
.client-name-fallback { font-size: 13px; font-weight: 600; letter-spacing: -.01em; line-height: 1.35; text-align: center; color: #999; transition: opacity .3s ease; }
.client-card--pending:hover .client-name-fallback, .client-card--pending:focus-visible .client-name-fallback, .client-card--pending.active .client-name-fallback { opacity: 0; }
.client-logo { max-width: 85%; max-height: 80px; object-fit: contain; transition: opacity .3s ease, filter .3s ease; }
.client-card:hover .client-logo, .client-card:focus-visible .client-logo, .client-card.active .client-logo { opacity: 0; }
.client-card.dimmed .client-logo { filter: grayscale(1); opacity: .35; }
.client-card.dimmed:hover .client-logo, .client-card.dimmed:focus-visible .client-logo, .client-card.dimmed.active .client-logo { opacity: 0; }
.client-overlay {
	position: absolute; inset: 0; background: var(--ink); color: #fff;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	text-align: center; padding: 18px; gap: 7px;
	opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease;
}
.client-card:hover .client-overlay, .client-card:focus-visible .client-overlay, .client-card.active .client-overlay { opacity: 1; transform: none; }
.client-overlay strong { font-size: 14px; font-weight: 600; letter-spacing: -.01em; line-height: 1.3; }
.client-overlay .client-industry { font-size: 9px; text-transform: uppercase; letter-spacing: .1em; color: var(--red); }
.client-overlay .client-city { font-size: 11px; color: #999; }

/* ------------------------------------------------------------------- story */

.story { padding: 130px 0; }
.story-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; }
.story-sticky { position: sticky; top: 130px; align-self: start; }
.story-sticky h2 { font-size: clamp(2.6rem, 6.5vw, 5.2rem); letter-spacing: -.055em; line-height: .95; margin: 20px 0 30px; }
.story-sticky > p:last-child { font-size: 1.1rem; color: #666; max-width: 460px; }
.timeline { padding-top: 40px; position: relative; }
.timeline::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 14px;
	bottom: 14px;
	width: 1px;
	background: #cfc8c1;
}
.timeline-item { display: grid; grid-template-columns: 100px 1fr; gap: 26px; padding: 40px 0; }
.timeline-item:first-child { padding-top: 0; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item > span { color: var(--red); font-size: 13px; font-weight: 700; position: relative; padding-left: 22px; }
.timeline-item > span:before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--red);
	z-index: 2;
}
.timeline-item h3 { font-size: clamp(1.7rem, 3.2vw, 3rem); line-height: 1.02; letter-spacing: -.04em; margin: 0 0 14px; }
.timeline-item p { color: #666; max-width: 540px; margin: 0; }

/* ------------------------------------------------------------ instagram-cta */

.instagram-cta { padding: 110px 0; }
.instagram-cta-inner h2 { font-size: clamp(2.6rem, 6.5vw, 5.4rem); letter-spacing: -.055em; line-height: .95; font-weight: 600; margin: 24px 0 20px; max-width: 900px; }
.instagram-cta-inner > p { font-size: 1.15rem; color: #aaa; max-width: 520px; margin: 0 0 40px; }
.instagram-cta-row { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }

/* --------------------------------------------------------------- recognition */

.recognition { padding: 130px 0; }
.recognition-head { display: grid; grid-template-columns: .45fr 1.55fr; gap: 80px; margin-bottom: 80px; }
.awards { border-top: 1px solid #ddd; }
.award { display: grid; grid-template-columns: 110px 1fr; align-items: center; padding: 28px 0; border-bottom: 1px solid #ddd; }
.award > span { color: var(--red); font-size: 1.7rem; font-weight: 600; }
.award small { color: #888; text-transform: uppercase; letter-spacing: .1em; font-size: 11px; }
.award h3 { font-size: clamp(1.4rem, 2.6vw, 2.4rem); letter-spacing: -.04em; margin: 4px 0 0; }

/* ------------------------------------------------------------- case studies */

.case-studies { padding: 130px 0; }
.case-studies-head { max-width: 700px; margin-bottom: 80px; }
.case-studies-head h2 { font-size: clamp(2.6rem, 6.8vw, 5.2rem); letter-spacing: -.055em; line-height: .95; font-weight: 600; margin: 22px 0 18px; }
.case-studies-head > p { font-size: 1.1rem; color: #666; max-width: 560px; margin: 0; }
.case-list { border-top: 1px solid #ddd; }
.case-study { display: grid; grid-template-columns: 260px 1fr; gap: 40px; padding: 40px 0; border-bottom: 1px solid #ddd; align-items: start; }
.case-study-meta { display: flex; flex-direction: column; gap: 8px; }
.case-study-industry { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--red); font-weight: 700; }
.case-study-body h3 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); letter-spacing: -.04em; margin: 0 0 10px; font-weight: 500; }
.case-study-body p { font-size: 15px; line-height: 1.6; color: #555; margin: 0; max-width: 640px; }

/* -------------------------------------------------------------------- faq */

.faq { padding: 130px 0; }
.faq-head { display: grid; grid-template-columns: .45fr 1.55fr; gap: 80px; margin-bottom: 70px; }
.faq-list { border-top: 1px solid #cfc8c1; }
.faq-item { border-bottom: 1px solid #cfc8c1; }
.faq-question {
	width: 100%; background: none; border: 0; text-align: left; color: inherit; font: inherit;
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
	padding: 28px 2px; transition: padding .3s;
}
.faq-item.open .faq-question, .faq-question:hover { padding-left: 14px; }
.faq-question h3 { font-size: clamp(1.15rem, 2vw, 1.6rem); font-weight: 500; letter-spacing: -.025em; margin: 0; }
.faq-plus { width: 20px; height: 20px; position: relative; flex-shrink: 0; color: var(--red); }
.faq-plus:before, .faq-plus:after { content: ""; position: absolute; background: currentColor; }
.faq-plus:before { left: 0; top: 50%; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-plus:after { top: 0; left: 50%; width: 1.5px; height: 100%; transform: translateX(-50%); transition: transform .3s; }
.faq-item.open .faq-plus:after { transform: translateX(-50%) rotate(90deg) scaleY(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer p { margin: 0 44px 28px 2px; color: #555; font-size: 15px; line-height: 1.62; max-width: 760px; }

/* --------------------------------------------------------------- coverage */

.coverage { padding: 130px 0; overflow: hidden; }
.coverage-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 60px; }
.coverage-title h2 { font-size: clamp(2.6rem, 7.2vw, 5.6rem); line-height: .95; letter-spacing: -.055em; font-weight: 600; margin: 20px 0 0; }

.location-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: #2a2a2a; margin-top: 60px; }
.location-card { background: var(--ink); }
.location-card-body { display: flex; flex-direction: column; padding: 30px; gap: 12px; }
.location-card-body > span { font-size: 11px; color: #777; }
.location-card small { text-transform: uppercase; letter-spacing: .13em; color: #777; font-size: 10px; }
.location-card h3 { font-size: 2.2rem; letter-spacing: -.05em; margin: 6px 0; }
.location-card p { color: #888; margin: 0 0 3px; font-size: 13px; }
.location-card .location-hours { margin-top: 10px; color: #666; font-size: 12px; }
.location-card .location-link { display: inline-block; margin-top: 14px; font-size: 12px; color: var(--red); border-bottom: 1px solid var(--red); padding-bottom: 3px; }
.location-map { height: 240px; filter: grayscale(.4) invert(.92) contrast(.9); }
.location-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ------------------------------------------------------------------ contact */

.contact { min-height: 70svh; padding: 130px 0; display: flex; align-items: center; overflow: hidden; }
.contact-orbit { position: absolute; width: 780px; height: 780px; border: 130px solid rgba(255, 255, 255, .94); border-radius: 50%; right: -350px; bottom: -430px; }
.contact-inner { position: relative; z-index: 2; }
.contact h2 { font-size: clamp(2.8rem, 9.2vw, 7.4rem); letter-spacing: -.06em; line-height: .92; font-weight: 600; max-width: 1190px; margin: 30px 0 60px; }
.contact-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.contact-primary { background: #fff; color: var(--ink); min-width: 300px; }
.contact-row > a:last-child { font-size: 1.05rem; border-bottom: 1px solid rgba(255, 255, 255, .6); padding-bottom: 5px; }

/* ------------------------------------------------------- contact-kept blocks */

.reach-us { background: var(--ink); color: #fff; padding: 100px 0; }
.reach-block { width: min(1380px, calc(100% - 64px)); margin: 0 auto; }
.reach-block + .reach-block { margin-top: 90px; }
.reach-heading { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: #777; margin-bottom: 34px; }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1px; background: #262626; }
.info-card { position: relative; background: var(--ink); padding: 30px; display: flex; flex-direction: column; gap: 14px; }
.info-card:after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 3px; background: var(--red); transition: .45s; }
.info-card:hover:after { width: 100%; }
.info-card small { font-size: 10px; color: #777; text-transform: uppercase; letter-spacing: .1em; }
.info-card h3 { font-size: 20px; font-weight: 500; letter-spacing: -.02em; margin: 0; color: var(--red); }
.info-card p { color: #999; line-height: 1.55; font-size: 13px; margin: 0; flex-grow: 1; }
.info-card .wa-link { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--red); border-radius: 99px; padding: 10px 16px; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--red); align-self: flex-start; }
.info-card .wa-link:hover { background: var(--red); color: #fff; }

.link-rows { border-top: 1px solid #2a2a2a; }
.link-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 0; border-bottom: 1px solid #2a2a2a; }
.link-row-text strong { display: block; font-size: 15px; font-weight: 500; letter-spacing: -.01em; }
.link-row-text small { display: block; font-size: 12px; color: #777; margin-top: 4px; }
.link-row-arrow { flex-shrink: 0; font-size: 15px; color: #777; transition: color .2s, transform .2s; }
.link-row:hover .link-row-arrow { color: var(--red); transform: translate(2px, -2px); }
.reach-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 60px; }

/* ------------------------------------------------------------------- footer */

.footer { background: var(--ink); color: #fff; padding: 80px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 80px; }
.footer-brand img { width: 220px; filter: brightness(0) invert(1); }
.footer-brand p { color: #666; margin-top: 6px; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.footer-links { display: grid; grid-template-columns: repeat(2, auto); gap: 14px 45px; font-size: 14px; }
.footer-meta { grid-column: 1 / -1; border-top: 1px solid #252525; padding-top: 25px; display: flex; justify-content: space-between; color: #666; font-size: 12px; flex-wrap: wrap; gap: 10px; }
.footer-meta a { color: var(--red); font-weight: 700; transition: opacity .2s ease; }
.footer-meta a:hover { opacity: .75; }

/* ------------------------------------------------------------------- reveal */

.reveal { opacity: 0; transform: translateY(30px); transition: 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	* { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* ---------------------------------------------------------------- responsive */

@media (max-width: 1050px) {
	.nav-shell { grid-template-columns: 1fr auto; }

	/* Menu open: the island pill flattens into a thin, borderless header bar
	   so the overlay reads as one continuous surface instead of a floating pill
	   sitting on top of it. */
	body.menu-open .nav { padding: 0; }
	body.menu-open .nav-shell {
		max-width: none; height: 72px; padding: 0 22px;
		border-radius: 0; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .14);
		background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
	}

	.nav-center {
		position: fixed; inset: 0; z-index: 800;
		display: none; opacity: 0; transition: opacity .32s var(--ease);
		flex-direction: column; justify-content: center; align-items: stretch;
		gap: 0; padding: 100px 26px 40px;
		background-color: rgba(5, 5, 5, .55);
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
		backdrop-filter: blur(36px) saturate(140%); -webkit-backdrop-filter: blur(36px) saturate(140%);
		color: #fff;
	}
	.nav-center.open { display: flex; }
	.nav-center.open.visible { opacity: 1; }

	.nav-center-link {
		display: flex; flex-direction: column; gap: 6px;
		padding: 18px 0; border-top: 1px solid rgba(255, 255, 255, .12);
		opacity: 1;
	}
	.nav-center-link:last-of-type { border-bottom: 1px solid rgba(255, 255, 255, .12); }
	.nav-center-link span {
		font-size: clamp(2.4rem, 10.5vw, 4.2rem); font-weight: 500;
		letter-spacing: -.03em; line-height: .95; transition: color .25s ease;
	}
	.nav-center-link small {
		display: block; font-size: 11px; font-weight: 600; text-transform: uppercase;
		letter-spacing: .1em; color: rgba(255, 255, 255, .4);
	}
	.nav-center-link:hover span, .nav-center-link:active span { color: var(--red); }

	.nav-center .locale-mobile { display: flex; gap: 16px; margin-top: 36px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: rgba(255, 255, 255, .45); opacity: 1; }
	.nav-center .locale-mobile a[aria-current="true"] { color: var(--red); }

	body.menu-open .progress { opacity: 0; pointer-events: none; transition: opacity .2s ease; }

	.nav-right .locale-dropdown { display: none; }
	.nav-cta { display: none; }
	.menu { display: block; }

	.hero-title { font-size: clamp(3rem, 11.5vw, 6.5rem); }
	.hero-foot, .manifesto-grid, .network-top, .metrics-head, .recognition-head, .faq-head { grid-template-columns: 1fr; }
	.manifesto-label { margin-bottom: 18px; }
	.service-row { grid-template-columns: 40px 1fr 24px; gap: 14px; }
	.service-row p, .service-tag { grid-column: 2; }
	.service-tag { text-align: left; }
	.service-expand ul { padding: 0 20px 26px 54px; }
	.metrics-grid { grid-template-columns: repeat(2, 1fr); }
	.network-body { grid-template-columns: 1fr; }
	.sector-map { display: none; }
	.story-grid { grid-template-columns: 1fr; }
	.story-sticky { position: static; }
	.coverage-grid { gap: 60px; }
	.location-cards { grid-template-columns: 1fr; }
	.case-study { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 700px) {
	.shell, .hero-shell { width: min(100% - 30px, 1380px); }
	.nav { padding: 9px; }
	.nav-shell { height: 50px; padding-left: 17px; }
	.brand img { width: 140px; }
	.hero { min-height: 820px; padding: 118px 0 40px; }
	.hero-grid { background-size: 48px 48px; }
	.hero-kicker { font-size: 9px; gap: 16px; }
	.hero-title { font-size: 2.9rem; line-height: .95; }
	.hero-foot { grid-template-columns: 1fr; margin-top: 40px; gap: 30px; }
	.hero-actions { justify-self: stretch; display: flex; flex-direction: column; align-items: center; gap: 22px; }
	.hero-index { display: none; }
	.manifesto, .metrics, .network, .story, .recognition, .faq, .coverage, .contact, .instagram-cta, .reach-map, .case-studies { padding: 80px 0; }
	.reach-map-body { margin-top: 45px; }
	.manifesto-grid { margin-bottom: 50px; }
	.manifesto-copy { font-size: 2.1rem; }
	.metrics-grid { grid-template-columns: 1fr; }
	.metric {
		min-height: auto;
		padding: 28px 20px;
		align-content: flex-start;
		align-items: center;
		justify-content: center;
		text-align: center;
		row-gap: 10px;
	}
	.metric p { max-width: 100%; }
	.network-title h2, .metrics-head h2, .recognition-head h2, .story-sticky h2, .coverage-title h2, .faq-head h2 { font-size: 2.7rem; }
	.network-body { margin-top: 55px; }
	.network-copy > p { font-size: 1.2rem; }
	.brand-directory { margin-top: 60px; }
	.brand-directory-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
	.client-network { margin-top: 60px; padding-top: 40px; }
	.client-grid { grid-template-columns: repeat(2, 1fr); }
	.story-grid { gap: 20px; }
	.timeline { padding-top: 6px; }
	.timeline-item { grid-template-columns: 64px 1fr; }
	.award { grid-template-columns: 66px 1fr; }
	.award > span { font-size: 1.2rem; }
	.award h3 { font-size: 1.5rem; }
	.location-cards { margin-top: 40px; }
	.contact { min-height: 620px; padding: 80px 0; }
	.contact h2 { font-size: 3rem; }
	.contact-primary { min-width: 100%; }
	.contact-orbit { width: 420px; height: 420px; border-width: 74px; right: -240px; bottom: -240px; }
	.reach-us { padding: 70px 0; }
	.footer-grid { grid-template-columns: 1fr; }
	.footer-links { justify-content: start; }
	.footer-meta { display: block; }
	.footer-meta a { display: block; margin-top: 9px; }
}
