
:root {
  --ink: #020406;
  --ink-2: #06090d;
  --ink-3: #0a1017;
  --white: #f4f5f6;
  --muted: #aeb7bf;
  --muted-2: #707a84;
  --cyan: #00c5ef;
  --blue: #006cff;
  --violet: #7e2cff;
  --orange: #ff7619;
  --lime: #c6ff2f;
  --line: rgba(255,255,255,.12);
  --ease: cubic-bezier(.2,.8,.2,1);
  --header-h: 88px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; background: var(--ink); color: var(--white); font-family: "Inter", system-ui, sans-serif; overflow-x: hidden; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--cyan); color: var(--ink); }

.noise {
  position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed; z-index: 0; width: 520px; height: 520px;
  border-radius: 50%; pointer-events: none; opacity: 0; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(0,114,255,.10), rgba(126,44,255,.035) 34%, transparent 69%);
  filter: blur(20px); transition: opacity .25s var(--ease);
}
body.pointer .cursor-glow { opacity: 1; }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  height: var(--header-h); padding: 0 clamp(24px,4vw,72px);
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: height .35s var(--ease), background .35s var(--ease), border-color .35s;
}
.site-header.scrolled {
  height: 68px;
  background: rgba(2,4,6,.78);
  backdrop-filter: blur(20px);
  border-color: rgba(255,255,255,.08);
}
/* ── Logo + LinkedIn header group ── */
.header-linkedin {
  display: flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  margin-left: 14px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.header-linkedin:hover { opacity: 1; }
.header-linkedin svg {
  width: 22px; height: 22px;
  display: block;
}

/* ── Logo ── */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 3;
  flex-shrink: 0;
}
.logo-desktop {
  display: block;
  height: 74px;
  width: auto;
  object-fit: contain;
}
.logo-mobile {
  display: none;
  height: 66px;
  width: auto;
  object-fit: contain;
}
.site-nav { display:flex; align-items:center; gap:clamp(24px,3vw,54px); }
.site-nav a {
  font-size: 12px; font-weight: 700; letter-spacing: .16em;
  padding: 14px 0; position: relative;
}
.site-nav a::after {
  content:""; position:absolute; left:0; right:100%; bottom:5px;
  height:1px; background:linear-gradient(90deg,var(--cyan),var(--violet));
  transition:right .25s var(--ease);
}
.site-nav a:hover::after { right:0; }
.menu-toggle { display:none; background:none; border:0; width:44px; height:44px; padding:11px; z-index:4; }
.menu-toggle span { display:block; height:1px; background:#fff; margin:7px 0; transition:.25s var(--ease); }

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + 30px) clamp(24px,4vw,72px) 40px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg-layer {
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(2,4,6,.94) 0 34%, rgba(2,4,6,.68) 47%, rgba(2,4,6,.42) 66%, rgba(2,4,6,.18) 100%),
    url("../../assets/hero/background-execution-studio.png") center center / cover no-repeat;
  transform: scale(1.02);
}
.hero::after {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(56% 62% at 70% 44%, rgba(0,92,255,.17), transparent 54%),
    linear-gradient(180deg, rgba(2,4,6,.08), rgba(2,4,6,.26));
  z-index: 1;
}
.hero-rim {
  position:absolute; border-radius:50%;
  filter: blur(1px);
  opacity:.9; z-index: 2; pointer-events:none;
}
.hero-rim-a {
  width: 940px; height: 940px; right: -220px; top: 110px;
  border: 2px solid rgba(0,160,255,.78);
  mask-image: linear-gradient(90deg, transparent 0 24%, black 40% 100%);
  box-shadow: 0 0 26px rgba(0,140,255,.55), 0 0 60px rgba(0,100,255,.24) inset;
}
.hero-rim-b {
  width: 1020px; height: 1020px; right: -320px; top: 210px;
  border: 2px solid rgba(138,61,255,.82);
  mask-image: linear-gradient(90deg, transparent 0 36%, black 54% 100%);
  box-shadow: 0 0 26px rgba(138,61,255,.52), 0 0 60px rgba(138,61,255,.2) inset;
}
.hero-grid {
  position: relative; z-index: 3;
  min-height: calc(100svh - var(--header-h) - 70px);
  max-width: 1600px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(360px, 1fr) minmax(390px, .95fr) 170px;
  gap: clamp(22px, 3vw, 56px);
  align-items: center;
}
.hero-copy { position:relative; max-width:600px; padding-left:10px; }
.eyebrow, .overline { margin:0 0 18px; font-size:15px; font-weight:700; letter-spacing:.24em; color:var(--white); }
.display-name { margin:0; }
.display-name span {
  display:block; font-family:"Archivo Black",sans-serif;
  font-size:clamp(76px,8vw,142px); line-height:.83; letter-spacing:-.07em;
}
.hero-role {
  margin: 28px 0 18px; color: var(--cyan); font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 800; letter-spacing: .09em; line-height: 1.45;
}
.hero-intro {
  max-width: 515px; margin: 0; color: #ccd2d7;
  font-size: clamp(16px,1.2vw,19px); line-height: 1.65;
}
.hero-actions { display:flex; align-items:center; gap:27px; margin-top:32px; }
.button {
  min-height:58px; display:inline-flex; align-items:center; justify-content:space-between;
  gap:44px; padding:0 28px; border-radius:7px; font-size:14px; font-weight:800;
  letter-spacing:.08em; transition:transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.button-primary {
  min-width: 250px; border:1px solid var(--cyan); background:rgba(2,8,12,.55);
  position:relative; overflow:hidden;
}
.button-primary::before {
  content:""; position:absolute; inset:0; transform:translateX(-105%);
  background:linear-gradient(90deg,rgba(0,197,239,.18),rgba(126,44,255,.18));
  transition:transform .35s var(--ease);
}
.button-primary:hover::before { transform:translateX(0); }
.button-primary > * { position:relative; z-index:1; }
.button-ghost { border:1px solid var(--line); }
.button-arrow { color: var(--cyan); font-size: 28px; transition: transform .25s var(--ease); }
.button:hover .button-arrow { transform: translateX(6px); }

.scroll-cue { display:none !important; } .scroll-cue-hidden {
  position:absolute; left:10px; bottom:-8px;
  display:grid; grid-template-columns:30px auto; grid-template-rows:48px 20px;
  align-items:end; column-gap:15px; font-size:10px; letter-spacing:.24em;
}
.scroll-line { width:1px; height:42px; background:var(--white); margin-left:10px; }
.scroll-circle { grid-row:2; width:16px; height:16px; border:1px solid #fff; border-radius:50%; margin-left:2px; }
.scroll-cue span:last-child { grid-column:2; grid-row:2; align-self:center; }

.hero-portrait-wrap {
  position: relative; height: min(84vh, 860px); min-height: 540px;
  display:flex; align-items:flex-end; justify-content:center;
}
.hero-portrait {
  width: min(680px, 118%); max-height: 90vh; object-fit: contain;
  filter: drop-shadow(0 34px 50px rgba(0,0,0,.48));
  position: relative; z-index: 2; transform-origin: center bottom;
}
.portrait-backglow {
  position:absolute; right:8%; top:6%; width:78%; aspect-ratio:1;
  background: radial-gradient(circle, rgba(0,120,255,.26), rgba(126,44,255,.12) 44%, transparent 68%);
  filter: blur(30px);
}
.hero-side-notes {
  justify-self:end; align-self:center; display:flex; flex-direction:column; gap:18px;
  color: rgba(255,255,255,.95); font-size: 12px; font-weight: 500; letter-spacing: .24em;
}
.hero-side-notes i { width:1px; height:88px; background: rgba(255,255,255,.75); display:block; margin-top:12px; }
/* linkedin-float removed — LinkedIn moved to header */

.reveal { opacity:0; transform:translateY(26px); transition:opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity:1; transform:none; }

.section {
  position:relative; z-index:1;
  padding: clamp(90px,10vw,160px) clamp(24px,5vw,84px);
}
.section-kicker {
  font-size:11px; font-weight:800; letter-spacing:.22em;
  color:var(--muted-2); text-transform:uppercase; margin-bottom:46px;
}
.section-kicker span { color:var(--cyan); margin-right:14px; }

.section-about { background:#f0eee8; color:#101216; }
.about-grid {
  display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(60px,10vw,170px);
  max-width:1500px; margin:0 auto;
}
.about-lead h2, .work-heading h2, .brands-copy h2, .contact-title h2 {
  margin:0; font-family:"Archivo Black",sans-serif;
  font-size:clamp(54px,7.4vw,118px); line-height:.88; letter-spacing:-.055em;
}
.about-lead h2 em, .work-heading h2 em, .brands-copy h2 em, .contact-title h2 em,
.case-title h2 em, .statement-inner em { font-style:normal; color:var(--cyan); }
.about-copy { font-size:clamp(18px,1.45vw,23px); line-height:1.65; color:#34383c; }
.about-copy p { margin:0 0 26px; }
.metrics-grid {
  max-width:1500px; margin:90px auto 0; border-top:1px solid #c6c4bd; border-bottom:1px solid #c6c4bd;
  display:grid; grid-template-columns:repeat(4,1fr);
}
.metrics-grid article { padding:32px 26px; display:flex; align-items:flex-end; gap:18px; border-right:1px solid #c6c4bd; }
.metrics-grid article:last-child { border-right:0; }
.metrics-grid strong { font-family:"Archivo Black"; font-size:clamp(42px,5vw,82px); line-height:.9; letter-spacing:-.05em; }
.metrics-grid span { font-size:11px; font-weight:700; letter-spacing:.09em; text-transform:uppercase; color:#60656a; }
.quote-block { max-width:1000px; margin:100px auto 0; position:relative; padding-left:90px; }
.quote-mark { position:absolute; left:0; top:-35px; font-family:Georgia,serif; font-size:120px; color:var(--cyan); }
.quote-block blockquote { margin:0; font-size:clamp(28px,3.4vw,52px); line-height:1.2; letter-spacing:-.035em; font-weight:600; }
.quote-block cite { display:block; margin-top:24px; color:#676d72; font-style:normal; font-size:13px; font-weight:700; letter-spacing:.08em; }
.services-rail {
  margin:110px calc(clamp(24px,5vw,84px) * -1) calc(clamp(90px,10vw,160px) * -1);
  overflow:hidden; background:#0a0d10; color:#fff; border-top:1px solid #252a2f; border-bottom:1px solid #252a2f;
}
.rail-track { width:max-content; display:flex; align-items:center; gap:32px; padding:24px 0; animation:marquee 30s linear infinite; }
.rail-track span { font-family:"Archivo Black"; font-size:15px; letter-spacing:.07em; }
.rail-track i { color:var(--cyan); font-style:normal; }
@keyframes marquee { to { transform:translateX(-50%); } }

.case-feature { background:#080c11; overflow:hidden; }
.case-feature::before { content:""; position:absolute; inset:0 0 auto auto; width:55%; height:100%; background:radial-gradient(circle at 100% 40%,rgba(126,44,255,.19),transparent 55%); }
.case-grid { max-width:1500px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:100px; position:relative; }
.award-pill { display:inline-block; color:var(--lime); border:1px solid rgba(198,255,47,.45); border-radius:999px; padding:9px 13px; font-size:10px; font-weight:800; letter-spacing:.14em; }
.case-title h2 { font-family:"Archivo Black"; font-size:clamp(55px,6.5vw,104px); line-height:.88; letter-spacing:-.055em; margin:28px 0 0; }
.case-details { display:grid; gap:32px; align-self:end; color:#c4cbd0; font-size:17px; line-height:1.65; }
.case-details .overline { color:var(--cyan); font-size:11px; margin-bottom:10px; }
.case-details p { margin:0; }
.case-tags { max-width:1500px; margin:70px auto 0; display:flex; flex-wrap:wrap; gap:10px; }
.case-tags span { border:1px solid var(--line); border-radius:999px; padding:10px 14px; color:#8c959d; font-size:10px; font-weight:700; letter-spacing:.1em; }

.section-work { background:var(--ink); }
.work-heading { max-width:1500px; margin:0 auto; }
.work-heading h2 { font-size:clamp(65px,9vw,145px); }
.filters { max-width:1500px; margin:60px auto 38px; display:flex; gap:8px; flex-wrap:wrap; }
.filter {
  border:1px solid var(--line); background:transparent; padding:11px 16px; border-radius:999px;
  font-size:10px; letter-spacing:.12em; font-weight:800; cursor:pointer;
}
.filter:hover, .filter.is-active { border-color:var(--cyan); color:var(--cyan); background:rgba(0,197,239,.06); }
.work-grid { max-width:1500px; margin:0 auto; display:grid; grid-template-columns:repeat(12,1fr); gap:18px; }
.work-card {
  position:relative; min-height:420px; overflow:hidden; background:#0a0f15; border:1px solid var(--line);
  grid-column:span 6; cursor:pointer; opacity:0; transform:translateY(30px);
  transition:opacity .55s var(--ease), transform .55s var(--ease), border-color .3s var(--ease);
}
.work-card.visible { opacity:1; transform:none; }
.work-card:nth-child(4n+1), .work-card:nth-child(4n+4) { grid-column:span 7; }
.work-card:nth-child(4n+2), .work-card:nth-child(4n+3) { grid-column:span 5; }
.work-card.hidden { display:none; }
.card-art { position:absolute; inset:0; overflow:hidden; }
.card-art::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 20%,rgba(2,4,6,.15) 45%,rgba(2,4,6,.92) 100%); }
.card-art img { width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease), filter .7s var(--ease); }
.work-card:hover .card-art img { transform:scale(1.045); filter:saturate(1.08) brightness(1.08); }
.card-content { position:absolute; z-index:2; inset:auto 30px 28px; }
.card-number { color:var(--cyan); font-size:10px; letter-spacing:.14em; font-weight:800; }
.card-role { color:#8c959e; text-transform:uppercase; font-size:10px; letter-spacing:.13em; font-weight:700; margin-top:12px; }
.card-content h3 { max-width:680px; margin:10px 0 14px; font-size:clamp(24px,2.6vw,43px); line-height:1; letter-spacing:-.035em; }
.card-tags { display:flex; flex-wrap:wrap; gap:7px; }
.card-tags span { font-size:9px; letter-spacing:.08em; padding:6px 8px; background:rgba(255,255,255,.08); border-radius:4px; color:#d4d9dd; }
.card-arrow { position:absolute; right:25px; top:24px; z-index:3; width:40px; height:40px; border:1px solid rgba(255,255,255,.18); border-radius:50%; display:grid; place-items:center; transition:.3s var(--ease); }
.work-card:hover { border-color:rgba(0,197,239,.4); }
.work-card:hover .card-arrow { transform:rotate(45deg); border-color:var(--cyan); color:var(--cyan); }
.work-footer { max-width:1500px; margin:40px auto 0; display:flex; justify-content:flex-end; }
.button-ghost:hover { border-color:var(--cyan); color:var(--cyan); transform:translateY(-2px); }

.statement-section { padding:clamp(90px,11vw,170px) clamp(24px,5vw,84px); background:#f0eee8; color:#101216; }
.statement-inner { max-width:1300px; margin:0 auto; }
.statement-inner .overline { color:#60666a; font-size:11px; }
.statement-inner blockquote { margin:30px 0; font-family:"Archivo Black"; font-size:clamp(43px,6.2vw,94px); line-height:.97; letter-spacing:-.05em; }
.statement-inner p:last-child { color:#71767a; font-size:12px; letter-spacing:.08em; font-weight:700; }

.section-brands { background:#06090c; }
.brands-copy p { max-width:560px; color:var(--muted); line-height:1.65; }
.brand-cloud { display:flex; flex-wrap:wrap; align-content:center; gap:12px; }
.brand-cloud span {
  border:1px solid var(--line); border-radius:999px; padding:18px 22px;
  font-family:"Archivo Black"; font-size:clamp(14px,1.5vw,22px); color:#dce0e3; transition:.25s var(--ease);
}
.brand-cloud span:hover { color:var(--ink); background:var(--cyan); border-color:var(--cyan); transform:translateY(-3px); }

.section-references { background:#0b1016; }
.reference-shell { max-width:1320px; margin:0 auto; display:grid; grid-template-columns:60px 1fr 60px; align-items:center; gap:18px; }
.reference-stage { min-height:420px; display:grid; place-items:center; }
.reference-card { width:min(900px,100%); text-align:center; animation:refIn .45s var(--ease); }
@keyframes refIn { from { opacity:0; transform:translateY(14px) } to { opacity:1; transform:none } }
.reference-quote { font-size:clamp(29px,4vw,58px); line-height:1.2; letter-spacing:-.035em; font-weight:600; margin:0; }
.reference-person { margin-top:40px; }
.reference-person strong { display:block; font-size:14px; letter-spacing:.1em; }
.reference-person span { display:block; margin-top:7px; color:var(--muted-2); font-size:11px; letter-spacing:.08em; }
.ref-nav { width:52px; height:52px; border-radius:50%; border:1px solid var(--line); background:transparent; cursor:pointer; font-size:24px; }
.ref-nav:hover { color:var(--cyan); border-color:var(--cyan); }

.section-contact { background:#020406; min-height:92vh; padding-bottom:30px; }
.contact-grid { min-height:65vh; max-width:1500px; margin:0 auto; display:grid; grid-template-columns:1.1fr .9fr; gap:100px; align-items:center; }
.contact-title h2 { font-size:clamp(72px,10vw,155px); }
.contact-content > p { font-size:clamp(20px,2vw,30px); line-height:1.5; color:#b9c1c8; max-width:620px; }
.contact-links { margin-top:50px; border-top:1px solid var(--line); }
.contact-links a { display:grid; grid-template-columns:120px 1fr; gap:25px; padding:22px 0; border-bottom:1px solid var(--line); font-size:15px; }
.contact-links a span { color:#69737c; font-size:10px; font-weight:800; letter-spacing:.16em; }
.contact-links a:hover { color:var(--cyan); }
.footer { max-width:1500px; margin:70px auto 0; padding-top:25px; border-top:1px solid var(--line); display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; color:#68717a; font-size:9px; font-weight:700; letter-spacing:.12em; }

.project-modal {
  width:min(1120px,calc(100% - 30px)); max-height:90svh; padding:0; border:1px solid rgba(255,255,255,.13);
  border-radius:14px; background:#080c11; color:#fff; overflow:auto; box-shadow:0 40px 100px rgba(0,0,0,.65);
}
.project-modal::backdrop { background:rgba(0,0,0,.72); backdrop-filter:blur(10px); }
.modal-close { position:sticky; float:right; top:14px; right:14px; z-index:5; width:44px; height:44px; border-radius:50%; border:1px solid rgba(255,255,255,.15); background:#0b1117; cursor:pointer; font-size:26px; }
.modal-visual { min-height:320px; background:linear-gradient(135deg,#0f1c2c,#271344); overflow:hidden; }
.modal-visual img { width:100%; height:420px; object-fit:cover; }
.modal-content { padding:clamp(30px,5vw,70px); }
.modal-meta { color:var(--cyan); font-size:10px; font-weight:800; letter-spacing:.15em; text-transform:uppercase; }
.modal-content h2 { font-family:"Archivo Black"; font-size:clamp(38px,5vw,75px); line-height:.95; letter-spacing:-.05em; margin:14px 0 20px; }
.modal-content > p { max-width:800px; color:#b9c1c8; font-size:17px; line-height:1.65; }
.modal-tags { display:flex; gap:8px; flex-wrap:wrap; margin:18px 0 26px; }
.modal-tags span { border:1px solid var(--line); border-radius:999px; padding:8px 11px; font-size:9px; letter-spacing:.1em; }
.modal-actions { margin-top:28px; display:flex; gap:12px; flex-wrap:wrap; }

@media (max-width: 1180px) {
  .hero-grid { grid-template-columns: minmax(340px, 1fr) minmax(340px, .9fr); }
  .hero-side-notes { display:none; }
  .about-grid, .case-grid, .contact-grid { gap:60px; }
  .section-brands { grid-template-columns:1fr; }
}
@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .site-nav {
    position:fixed; inset:0; background:rgba(2,4,6,.97); display:flex; flex-direction:column; justify-content:center;
    gap:28px; transform:translateY(-100%); transition:transform .45s var(--ease);
  }
  .site-nav.open { transform:none; }
  .site-nav a { font-family:"Archivo Black"; font-size:30px; }
  .menu-toggle { display:block; }
  .menu-toggle.active span:first-child { transform:translateY(4px) rotate(45deg); }
  .menu-toggle.active span:last-child { transform:translateY(-4px) rotate(-45deg); }

  .hero { padding-left:24px; padding-right:24px; padding-bottom:55px; }
  .hero-grid { grid-template-columns:1fr; min-height:auto; }
  .hero-copy { padding-top:18px; max-width:640px; }
  .hero-portrait-wrap { height: 60vh; min-height: 420px; margin-top: 18px; }
  .hero-portrait { width: min(500px, 92vw); max-height: 60vh; }
  .linkedin-float { right:30px; bottom:20px; }
  .scroll-cue { display:none !important; } .scroll-cue-hidden { display:none; }

  .about-grid, .case-grid, .contact-grid { grid-template-columns:1fr; }
  .metrics-grid { grid-template-columns:1fr 1fr; }
  .metrics-grid article:nth-child(2) { border-right:0; }
  .metrics-grid article:nth-child(-n+2) { border-bottom:1px solid #c6c4bd; }
  .quote-block { padding-left:60px; }
  .work-card, .work-card:nth-child(n) { grid-column:span 6; }
  .contact-grid { min-height:auto; }
}
@media (max-width: 640px) {
  .site-header { padding:0 18px; }
  /* Logo: always use desktop lockup */
  .logo-mobile { display: none; }
  .hero { padding-left:18px; padding-right:18px; }
  .hero-bg-layer { background-position: 58% center; }
  .display-name span { font-size: clamp(64px, 21vw, 92px); }
  .hero-role { margin-top:24px; }
  .hero-actions { flex-direction:column; align-items:flex-start; }
  .button-primary { width:100%; max-width:320px; }
  .hero-portrait-wrap { height: 46vh; min-height: 340px; }
  .hero-portrait { width: min(410px, 94vw); max-height: 46vh; }
  .section { padding-left:20px; padding-right:20px; }
  .about-lead h2, .brands-copy h2 { font-size:clamp(50px,16vw,76px); }
  .metrics-grid { grid-template-columns:1fr; }
  .metrics-grid article { border-right:0!important; border-bottom:1px solid #c6c4bd; }
  .quote-block { padding-left:0; padding-top:45px; }
  .quote-mark { top:-25px; }
  .services-rail { margin-left:-20px; margin-right:-20px; }
  .case-grid { gap:55px; }
  .case-title h2 { font-size:clamp(49px,15vw,75px); }
  .work-heading h2 { font-size:clamp(60px,19vw,94px); }
  .work-grid { display:block; }
  .work-card { min-height:410px; margin-bottom:14px; }
  .card-content { inset:auto 20px 22px; }
  .filters { overflow-x:auto; flex-wrap:nowrap; padding-bottom:8px; scrollbar-width:none; }
  .filters::-webkit-scrollbar { display:none; }
  .filter { flex:0 0 auto; }
  .statement-inner blockquote { font-size:clamp(38px,12vw,61px); }

  .reference-shell { grid-template-columns:44px 1fr 44px; gap:8px; }
  .ref-nav { width:40px; height:40px; font-size:17px; }
  .reference-stage { min-height:480px; }
  .contact-title h2 { font-size:clamp(68px,22vw,105px); }
  .contact-links a { grid-template-columns:1fr; gap:8px; word-break:break-word; }
  .footer { flex-direction:column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms!important; animation-iteration-count:1!important; scroll-behavior:auto!important; transition-duration:.01ms!important; }
  .rail-track { animation:none; }
}


/* ── BRANDS COMBINED LAYOUT ── */
.brands-top {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px,6vw,80px);
  align-items: center;
  margin-bottom: clamp(60px,8vw,100px);
}
.brands-bottom { width: 100%; }
.brands-grid-label {
  font-size: 11px; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted-2);
  margin-bottom: 24px;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.logo-tile {
  background: #06090c;
  aspect-ratio: 2 / 1;
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem; overflow: hidden;
  opacity: 0; transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
}
.logo-tile.shown { opacity: 1; transform: translateY(0); }
.logo-tile img {
  max-width: 100%; max-height: 52px;
  width: auto; height: auto; object-fit: contain;
}
.brands-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.brands-count { font-size: 12px; font-weight: 700; letter-spacing: .12em; color: var(--muted-2); }
.brands-count span { color: var(--cyan); }
.load-more-btn {
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--white); background: none;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 28px; border-radius: 3px; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: border-color .2s, color .2s, background .2s;
}
.load-more-btn:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,189,235,.06); }
.load-more-btn.hidden { display: none; }
.load-more-btn svg { transition: transform .2s; }
.load-more-btn:hover svg { transform: translateY(2px); }

@media (max-width: 900px) {
  .brands-top { grid-template-columns: 1fr; }
}
