/* ================================================================
   FRWD Theme — frwd.css
   Color system from color-scheme.svg:
     Dark BG   #282828
     Off-white #f5f4f1
     Orange    #ff5b00
     Purple    #390d9e
     Lilac     #b16aff
   ================================================================ */

/* ── Font Faces ────────────────────────────────────────────────── */
@font-face {
  font-family: 'FRWD Sequel';
  src: url('../srcfonts/sequel-100-black-55.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: 'FRWD Lato';
  src: url('../srcfonts/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'FRWD Lato';
  src: url('../srcfonts/Lato-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'FRWD Arabic';
  src: url('../srcfonts/TheYearofHandicrafts-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'FRWD Arabic';
  src: url('../srcfonts/TheYearofHandicrafts-Bold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}

/* ── Reset & Variables ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0d0d0f;
  --bg2:       #111114;
  --bg3:       #181820;
  --surface:   #1c1c25;
  --text:      #f5f4f1;
  --muted:     #8a8a9c;
  --dim:       #4a4a60;
  --border:    rgba(255,255,255,.07);
  --orange:    #ff5b00;
  --purple:    #390d9e;
  --lilac:     #b16aff;
  --grad:      linear-gradient(135deg, #ff5b00 0%, #b16aff 50%, #390d9e 100%);
  --grad-h:    linear-gradient(90deg,  #ff5b00 0%, #b16aff 100%);
  --ease:      cubic-bezier(.16,1,.3,1);
  --font-head: 'FRWD Sequel', 'Arial Black', sans-serif;
  --font-body: 'FRWD Lato', Arial, sans-serif;
}

html { scroll-behavior: smooth; }
html { margin-top: 0 !important; }
#wpadminbar { display: none !important; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
[lang="ar"], :lang(ar) { font-family: 'FRWD Arabic', var(--font-body); }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography helpers ────────────────────────────────────────── */
.h-display {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 8vw, 9.5rem);
  line-height: .92;
  letter-spacing: -.04em;
}
.h-xl {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  line-height: .96;
  letter-spacing: -.03em;
}
.h-lg {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -.025em;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.label-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
}
.label-tag::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── SVG Lines canvas ──────────────────────────────────────────── */
.frwd-svg-lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}
.frwd-svg-lines path,
.frwd-svg-lines line {
  fill: none;
  stroke-miterlimit: 10;
  vector-effect: non-scaling-stroke;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .35s var(--ease);
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  border: 1.5px solid var(--orange);
}
.btn-primary:hover {
  background: transparent;
  color: var(--orange);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: none;
  padding: 14px 0;
}
.btn-ghost:hover { color: var(--text); }
.btn-arrow::after {
  content: '→';
  transition: transform .3s var(--ease);
}
.btn:hover .btn-arrow::after,
.btn-arrow:hover::after { transform: translateX(6px); }

/* ════════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════════ */
#frwd-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 48px 0;
  display: flex;
  align-items: center;
  transition: padding .45s ease;
}
#frwd-nav.scrolled {
  padding: 10px 48px;
}
#frwd-nav.scrolled .nav-inner {
  background: rgba(5,5,6,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50px;
  padding: 6px 20px;
  min-height: 48px;
}
.nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 58px;
  padding: 8px 10px 8px 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: background .45s ease, border-color .45s ease, border-radius .45s ease, padding .45s ease, min-height .45s ease;
}
.nav-logo { justify-self: start; }
.nav-links { justify-self: center; }
.nav-actions { justify-self: end; }
.nav-ham { justify-self: end; }
.nav-logo img { height: 34px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  transition: background .4s, border-color .4s;
}
#frwd-nav.scrolled .nav-links {
  background: transparent;
  border-color: transparent;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,244,241,.72);
  transition: color .25s, background .25s;
  position: relative;
}
.nav-links a:hover,
.nav-links li.active a {
  color: var(--text);
  background: rgba(255,255,255,.09);
}
.nav-links a::after { display: none; }

/* Nav actions group */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.nav-socials {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: rgba(255,255,255,.45);
  font-size: 13px;
  transition: color .25s, background .25s;
}
.nav-social-link:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

/* Hamburger */
.nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: none;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  cursor: pointer;
  transition: border-color .25s, color .25s, background .25s;
  flex-shrink: 0;
}
.nav-search-btn:hover {
  border-color: rgba(255,255,255,.5);
  color: #fff;
  background: rgba(255,255,255,.08);
}
.nav-ham {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-ham span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--text);
  transition: all .35s var(--ease);
  transform-origin: center;
}
.nav-ham.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-ham.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.nav-mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav-mobile-overlay a {
  font-family: var(--font-head);
  font-size: clamp(2rem, 8vw, 3.5rem);
  letter-spacing: -.03em;
  color: var(--muted);
  transition: color .2s;
}
.nav-mobile-overlay a:hover { color: var(--text); }

@media (max-width: 1100px) {
  #frwd-nav { padding: 14px 18px 0; }
  .nav-inner { min-height: 54px; padding: 8px 10px 8px 16px; }
  .nav-links { display: none; }
  .nav-ham { display: flex; }
}

/* ════════════════════════════════════════════════════
   HERO — full-viewport with animated SVG lines
════════════════════════════════════════════════════ */
#frwd-hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  background: #000;
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .22;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,15,0.08) 0%, transparent 30%);
}
.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  overflow: visible;
  pointer-events: none;
}
.hero-content {
  position: absolute;
  top: 62%;
  transform: translateY(-50%);
  left: 60px;
  right: 60px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.hero-eyebrow {
  margin-bottom: 24px;
}
.hero-h1 {
  position: relative;
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 7rem);
  line-height: .88;
  letter-spacing: -.045em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.6);
  margin: 0;
}
.hero-h1 .hero-char {
  display: inline-block;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.6);
}
.hero-h1 .hl {
  font-style: normal;
  display: block;
}
.hero-h1 .fwd-char {
  -webkit-text-stroke: 0;
  -webkit-text-fill-color: #f5f4f1;
  color: #f5f4f1;
}
.hero-h1 .fwd-line {
  position: relative;
}
/* ── GLITCH ── */
.glitch-wrap {
  position: relative;
  display: block;
}
.glitch-main {
  position: relative;
  z-index: 2;
  display: block;
}
.glitch-ghost {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
  white-space: nowrap;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}
.glitch-ghost--r { color: #fff; z-index: 1; clip-path: inset(50% 0 50% 0); opacity: 0.45; }
.glitch-ghost--c { color: #b16aff; z-index: 3; clip-path: inset(50% 0 50% 0); opacity: 0.35; }


.hero-h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
}
.hero-desc {
  max-width: 400px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}
.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #f5f4f1;
}
.hero-scroll-hint::before {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; }
  50% { opacity: 1; }
}

@media (max-width: 768px) {
  #frwd-hero { padding: 0 24px 60px; }
  .hero-h1 { font-size: clamp(3rem, 16vw, 7rem); }
}

/* ════════════════════════════════════════════════════
   SCRAMBLE SECTION
════════════════════════════════════════════════════ */
.scramble-section  { position: relative; height: 400vh; }
.scramble-sticky   { position: sticky; top: 0; height: 100vh; overflow: hidden; background: #000; display: flex; align-items: center; justify-content: center; }
.scramble-lines    { display: flex; flex-direction: column; align-items: flex-start; padding: 0 8vw; gap: 0; }
.fsl {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(4rem, 10vw, 10rem);
  text-transform: uppercase;
  color: #f5f4f1;
  line-height: 0.88;
  letter-spacing: -.04em;
  overflow: hidden;
  will-change: transform;
}
.fsl--accent { color: #ff5b00; }

/* ════════════════════════════════════════════════════
   SCROLL CARD TICKER
════════════════════════════════════════════════════ */
.frwd-ticker-section     { position: relative; height: 300vh; }
.frwd-ticker-sticky      { position: sticky; top: 0; height: 100vh; overflow: hidden; background: #0d0d0f; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px; }
.frwd-ticker-label       { font-family: var(--font-head); font-style: italic; font-size: clamp(1rem, 3vw, 2rem); letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,.12); }
.frwd-ticker-track-outer { width: 100%; overflow: hidden; }
.frwd-tk-track           { display: flex; gap: 20px; will-change: transform; }
.frwd-tk-card            { flex: 0 0 260px; height: 320px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; border-radius: 4px; flex-shrink: 0; }
.frwd-tk-icon            { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; }
.frwd-tk-icon img        { width: 100%; height: auto; filter: brightness(0) invert(1); }
.frwd-tk-text            { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: #fff; letter-spacing: -.03em; }
.frwd-tk-label           { font-family: var(--font-head); font-style: italic; font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.55); }

/* ════════════════════════════════════════════════════
   TICKER STRIP
════════════════════════════════════════════════════ */
.frwd-ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 14px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: tickerScroll 28s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.ticker-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════
   WORK / PORTFOLIO LIST
════════════════════════════════════════════════════ */
#frwd-work {
  padding: 120px 72px;
  background: var(--bg);
}
.section-inner { max-width: 1320px; margin: 0 auto; }
.section-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.work-list { border-top: 1px solid var(--border); }
.work-item {
  display: grid;
  grid-template-columns: 56px 1fr 240px 80px;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: padding-left .4s var(--ease);
}
.work-item-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: opacity .5s, clip-path .7s var(--ease);
  z-index: 0;
}
.work-item:hover { padding-left: 14px; }
.work-item:hover .work-item-bg { opacity: .15; clip-path: inset(0 0% 0 0); }
.work-item > *:not(.work-item-bg) { position: relative; z-index: 1; }
.wi-num {
  font-size: 10px;
  color: var(--dim);
  letter-spacing: .1em;
}
.wi-info { display: flex; flex-direction: column; gap: 6px; }
.wi-title {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.8vw, 1.75rem);
  color: var(--text);
  line-height: 1.1;
  transition: color .3s;
}
.work-item:hover .wi-title { color: var(--orange); }
.wi-cat {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.wi-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s var(--ease);
}
.work-item:hover .wi-thumb { clip-path: inset(0 0% 0 0); }
.wi-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.7) saturate(.6);
  display: block;
  transition: filter .4s;
}
.work-item:hover .wi-thumb img { filter: brightness(.9) saturate(.85); }
.wi-year { font-size: 10px; color: var(--dim); text-align: right; letter-spacing: .06em; }
@media (max-width: 900px) {
  #frwd-work { padding: 80px 24px; }
  .work-item { grid-template-columns: 36px 1fr; }
  .wi-thumb, .wi-year { display: none; }
}

/* ════════════════════════════════════════════════════
   SVG LINES SECTION (theme-lines inspired)
════════════════════════════════════════════════════ */
#frwd-lines-section {
  position: relative;
  padding: 120px 72px;
  background: var(--bg2);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lines-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}
.lines-tagline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 5rem);
  letter-spacing: -.035em;
  line-height: .96;
  color: var(--text);
  max-width: 820px;
  margin: 32px auto 40px;
}
.lines-svg-wrap {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.7) 15%, rgba(0,0,0,0.7) 60%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.7) 15%, rgba(0,0,0,0.7) 60%, transparent 100%);
}
.lines-svg-wrap svg {
  width: 100%; height: 100%;
  object-fit: fill;
  opacity: .22;
}

/* ════════════════════════════════════════════════════
   SERVICES ACCORDION
════════════════════════════════════════════════════ */
#frwd-services {
  padding: 120px 72px;
  background: var(--bg);
}
.svc-accordion { border-top: 1px solid var(--border); }
.svc-row { border-bottom: 1px solid var(--border); overflow: hidden; }
.svc-head {
  display: grid;
  grid-template-columns: 56px 1fr 180px 44px;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  cursor: pointer;
  transition: padding-left .3s;
}
.svc-head:hover { padding-left: 8px; }
.svc-rn { font-size: 10px; color: var(--dim); letter-spacing: .12em; }
.svc-rname {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.7vw, 1.55rem);
  color: var(--text);
  line-height: 1.1;
  transition: color .3s;
}
.svc-head:hover .svc-rname { color: var(--orange); }
.svc-rtag {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}
.svc-toggle {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  font-size: 18px;
  line-height: 1;
  transition: all .35s;
  justify-self: end;
}
.svc-row.open .svc-toggle { transform: rotate(45deg); border-color: var(--orange); color: var(--orange); }
.svc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-height: 0;
  overflow: hidden;
  transition: max-height .65s var(--ease);
  padding-left: 80px;
}
.svc-row.open .svc-body { max-height: 420px; padding-bottom: 32px; }
.svc-body-text { font-size: 14px; line-height: 1.85; color: var(--muted); }
.svc-body-img {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  clip-path: inset(0 100% 0 0);
  transition: clip-path .8s var(--ease) .1s;
}
.svc-row.open .svc-body-img { clip-path: inset(0 0% 0 0); }
.svc-body-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); }
@media (max-width: 900px) {
  #frwd-services { padding: 80px 24px; }
  .svc-head { grid-template-columns: 36px 1fr 36px; }
  .svc-rtag { display: none; }
  .svc-body { grid-template-columns: 1fr; padding-left: 0; }
}

/* ════════════════════════════════════════════════════
   STATEMENT / MANIFESTO
════════════════════════════════════════════════════ */
#frwd-statement {
  padding: 160px 72px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#frwd-statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(255,91,0,.06) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(177,106,255,.07) 0%, transparent 55%);
  pointer-events: none;
}
.stmt-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.stmt-text {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 7rem);
  line-height: .96;
  letter-spacing: -.04em;
  color: var(--text);
}
.s-row { display: block; overflow: hidden; }
.s-word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  margin-right: .22em;
}
.s-word.hi {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stmt-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 72px;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stmt-cta-row p { max-width: 400px; font-size: 1rem; line-height: 1.8; color: var(--muted); }
@media (max-width: 768px) {
  #frwd-statement { padding: 100px 24px; }
  .stmt-cta-row { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════════════
   STATS / NUMBERS
════════════════════════════════════════════════════ */
#frwd-stats {
  padding: 100px 72px;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  padding: 40px 48px;
  border-right: 1px solid var(--border);
  transition: background .3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--surface); }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: -.04em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.stat-label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 900px) {
  #frwd-stats { padding: 60px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 28px 24px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ════════════════════════════════════════════════════
   TEAM GRID
════════════════════════════════════════════════════ */
#frwd-team {
  padding: 120px 72px;
  background: var(--bg);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 3/4;
  background: var(--surface);
  cursor: pointer;
}
.team-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(.85);
  transition: filter .5s var(--ease), transform .6s var(--ease);
}
.team-card:hover img { filter: grayscale(0%) brightness(1); transform: scale(1.04); }
.team-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(13,13,15,.92) 0%, transparent 100%);
  transform: translateY(6px);
  transition: transform .35s var(--ease);
}
.team-card:hover .team-overlay { transform: translateY(0); }
.team-name {
  font-family: var(--font-head);
  font-size: .95rem;
  letter-spacing: -.01em;
  color: var(--text);
  margin-bottom: 4px;
}
.team-role { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
@media (max-width: 900px) {
  #frwd-team { padding: 80px 24px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════
   ABOUT SPLIT
════════════════════════════════════════════════════ */
#frwd-about {
  padding: 120px 72px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.about-split {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -1px; right: -1px;
  width: 40%; height: 40%;
  background: var(--grad);
  opacity: .25;
  filter: blur(40px);
  border-radius: 50%;
}
.about-text { padding-top: 24px; }
.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -.035em;
  line-height: .97;
  color: var(--text);
  margin: 16px 0 28px;
}
.about-text p { font-size: 1rem; line-height: 1.8; color: var(--muted); margin-bottom: 20px; }
@media (max-width: 900px) {
  #frwd-about { padding: 80px 24px; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
}

/* ════════════════════════════════════════════════════
   CONTACT CTA
════════════════════════════════════════════════════ */
#frwd-cta {
  padding: 140px 72px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#frwd-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(57,13,158,.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.cta-h2 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 8rem);
  letter-spacing: -.05em;
  line-height: .88;
  color: var(--text);
  margin: 20px 0 36px;
}
.cta-h2 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-sub { font-size: 1rem; line-height: 1.75; color: var(--muted); margin-bottom: 48px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
@media (max-width: 768px) { #frwd-cta { padding: 100px 24px; } }

/* ════════════════════════════════════════════════════
   MAGAZINE / BLOG CARDS
════════════════════════════════════════════════════ */
#frwd-magazine {
  padding: 120px 72px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.mag-card {
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s;
  cursor: pointer;
}
.mag-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.mag-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.mag-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); filter: saturate(.75); }
.mag-card:hover .mag-thumb img { transform: scale(1.05); filter: saturate(1); }
.mag-body { padding: 24px; }
.mag-cat {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.mag-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 10px;
  transition: color .3s;
}
.mag-card:hover .mag-title { color: var(--orange); }
.mag-excerpt { font-size: 13px; line-height: 1.7; color: var(--muted); margin-bottom: 16px; }
.mag-meta { font-size: 10px; letter-spacing: .1em; color: var(--dim); }
@media (max-width: 900px) {
  #frwd-magazine { padding: 80px 24px; }
  .magazine-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .magazine-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
#frwd-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 72px 56px;
}
.footer-logo { height: 32px; margin-bottom: 20px; }
.footer-desc { font-size: 13px; line-height: 1.8; color: var(--muted); max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 14px;
  transition: all .3s;
}
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }
.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 13px; color: var(--muted); transition: color .25s; }
.footer-col a:hover { color: var(--text); }
.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 72px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 11px; color: var(--dim); letter-spacing: .08em; }
.footer-badge {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; padding: 48px 24px 40px; gap: 36px; }
  .footer-bar { padding: 20px 24px; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════
   INNER PAGE HERO
════════════════════════════════════════════════════ */
.page-hero {
  padding: 160px 72px 80px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero-bg-text {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: clamp(6rem, 16vw, 18rem);
  letter-spacing: -.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.page-hero-inner { max-width: 1320px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: -.04em;
  line-height: .9;
  color: var(--text);
  margin: 20px 0;
}
.page-hero-sub { font-size: 1rem; color: var(--muted); max-width: 500px; line-height: 1.7; margin-top: 20px; }
@media (max-width: 768px) { .page-hero { padding: 120px 24px 60px; } }

/* ── Utilities ─────────────────────────────────────────────────── */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ── Scroll reveal helpers (pre-animation state) ───────────────── */
.reveal-up { opacity: 0; transform: translateY(40px); }
.reveal-fade { opacity: 0; }
.reveal-left { opacity: 0; transform: translateX(-40px); }

/* ════════════════════════════════════════════════════
   FRWD single-page redesign
════════════════════════════════════════════════════ */
#frwd-onepage {
  background:
    radial-gradient(circle at 85% 10%, rgba(177,106,255,.13), transparent 32rem),
    radial-gradient(circle at 8% 42%, rgba(255,91,0,.1), transparent 26rem),
    var(--bg);
}
#frwd-onepage section { scroll-margin-top: 90px; }
.onepage-container { width: min(100% - 120px, 1360px); margin: 0 auto; }
.frwd-hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 72px;
  background: #050506;
}
.frwd-hero-section .hero-bg-video { opacity: .42; filter: saturate(.85) contrast(1.12); }
.onepage-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,6,.94) 0%, rgba(5,5,6,.68) 43%, rgba(5,5,6,.2) 100%),
    linear-gradient(0deg, rgba(13,13,15,.96) 0%, transparent 38%);
  z-index: 1;
}
.onepage-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 56px;
  align-items: end;
}
.onepage-hero-copy { max-width: 960px; }
.onepage-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  line-height: 1.2;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--orange), var(--lilac));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.16,1,.3,1);
}
.onepage-kicker.kicker-visible {
  opacity: 1;
  transform: translateY(0);
}
.onepage-kicker::before { content: ''; width: 28px; height: 1px; background: linear-gradient(90deg, var(--orange), var(--lilac)); }
.onepage-hero-title {
  max-width: 1040px;
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.8vw, 5.2rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  flex-direction: column;
  visibility: hidden;
}
.hero-title-clip {
  display: block;
  overflow: hidden;
  padding-bottom: .1em;
  margin-bottom: -.1em;
}
.onepage-hero-title .hero-title-word {
  display: block;
  will-change: transform;
  transform: translateY(110%);
}
.hero-title-forward {
  display: inline-block;
}

/* O-pill wrapper: inline, sized by the pill span in flow */
.hero-o-wrap {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  margin: 0 0.12em;
}

/* Normal O: absolutely overlaid on the wrap, fades out on hover */
.hero-o-char {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  transition: opacity .3s ease;
  pointer-events: none;
}

/* Pill: sits in normal flow, defines the wrap width */
.hero-o-pill {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -0.1em;
  line-height: 0;
  width: 0.72em;   /* start ≈ width of capital O */
  opacity: 0;
  overflow: visible;
  transition: width .7s cubic-bezier(.16,1,.3,1),
              opacity .3s ease;
  white-space: nowrap;
  pointer-events: none;
}

.onepage-hero-title:hover .hero-o-char {
  opacity: 0;
}
.onepage-hero-title:hover .hero-o-pill {
  opacity: 1;
  width: 2.2em;
  pointer-events: auto;
}
.onepage-hero-title:hover .hero-o-rect {
  stroke-dashoffset: 0;
}

.hero-o-shine {
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.onepage-hero-title:hover .hero-o-shine {
  opacity: 1;
}

.hero-o-svg {
  display: block;
  height: .72em;
  width: 100%;
  overflow: visible;
}
.hero-o-rect {
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  transition: stroke-dashoffset .6s cubic-bezier(.16,1,.3,1) .15s;
}
.onepage-hero-title:not(:hover) .hero-o-rect {
  stroke-dashoffset: 620;
  transition: stroke-dashoffset .4s ease;
}
@keyframes pillDraw {
  to { stroke-dashoffset: 0; }
}
.onepage-hero-title.intro-play .hero-title-clip .hero-title-word {
  animation: heroSlideUp .9s cubic-bezier(.16,1,.3,1) both;
  animation-delay: var(--d, 0ms);
}
@keyframes heroSlideUp {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}
@keyframes heroWordIn {
  from { transform: translateY(46px); opacity: 0; filter: blur(8px); }
  to { transform: translateY(0); opacity: 1; filter: blur(0); }
}
.onepage-hero-text {
  max-width: 650px;
  margin-top: 28px;
  color: rgba(245,244,241,.74);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.75;
}
.onepage-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.onepage-hero-panel {
  display: grid;
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
  backdrop-filter: blur(18px);
}
.onepage-hero-panel > div { min-height: 118px; padding: 22px; background: rgba(15,15,18,.74); }
.onepage-hero-panel .stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.45rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}
.onepage-hero-panel small {
  display: block;
  max-width: 190px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.45;
  text-transform: uppercase;
}
.onepage-section { padding: 118px 0; border-top: 1px solid var(--border); }
.two-col, .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 80px;
  align-items: start;
}
.onepage-section-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.onepage-section-title {
  max-width: 980px;
  font-family: var(--font-head);
  font-size: clamp(2.15rem, 4.7vw, 5.3rem);
  font-weight: 800;
  line-height: .96;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text);
}
.onepage-copy {
  max-width: 680px;
  color: rgba(245,244,241,.72);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.9;
}
.onepage-copy p + p { margin-top: 22px; }
.onepage-section-note { max-width: 310px; color: var(--muted); font-size: .95rem; line-height: 1.75; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(13,13,15,.38) 38%, rgba(13,13,15,.96) 100%);
}
.service-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(.82) brightness(.78);
  transition: transform .7s var(--ease), filter .7s var(--ease);
}
.service-card:hover img { transform: scale(1.05); filter: saturate(1) brightness(.9); }
.service-card-body { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2; }
.service-card-body span { color: var(--orange); font-family: var(--font-head); font-size: 12px; font-weight: 800; }
.service-card-body h3 {
  margin-top: 12px;
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  line-height: 1.22;
  letter-spacing: 0;
  color: var(--text);
  text-transform: uppercase;
}
.service-card-body p { margin-top: 14px; color: rgba(245,244,241,.72); font-size: .92rem; line-height: 1.65; }
.onepage-work { background: rgba(255,255,255,.018); }
.onepage-work .work-item { grid-template-columns: 60px 1fr 270px 76px; cursor: default; }
.wi-arrow { color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.onepage-clients { overflow: hidden; }
.client-logo-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.client-logo-tile {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255,255,255,.035);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.client-logo-tile:hover { transform: translateY(-4px); border-color: rgba(255,91,0,.42); background: rgba(255,255,255,.055); }
.client-logo-tile img {
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.5);
  opacity: .76;
  transition: filter .3s var(--ease), opacity .3s var(--ease);
}
.client-logo-tile:hover img { filter: none; opacity: 1; }
.onepage-process {
  background:
    linear-gradient(135deg, rgba(57,13,158,.24), rgba(255,91,0,.08)),
    var(--bg2);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.process-grid > div { min-height: 260px; padding: 34px; background: rgba(13,13,15,.68); }
.process-grid > div + div { border-left: 1px solid rgba(255,255,255,.12); }
.process-grid span { color: var(--orange); font-family: var(--font-head); font-size: 12px; font-weight: 800; }
.process-grid h3 { margin-top: 58px; font-family: var(--font-head); font-size: 1.35rem; line-height: 1.1; text-transform: uppercase; }
.process-grid p { margin-top: 14px; color: rgba(245,244,241,.7); line-height: 1.75; }
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.team-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
}
.team-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(13,13,15,.94) 100%); }
.team-card img { width: 100%; height: 440px; object-fit: cover; filter: grayscale(.1) saturate(.82); }
.team-card > div { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 1; }
.team-card h3 { font-family: var(--font-head); font-size: 1.45rem; text-transform: uppercase; }
.team-card p { margin-top: 4px; color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.onepage-contact { background: #050506; padding-bottom: 140px; }
.contact-panel {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255,91,0,.16), rgba(177,106,255,.08)),
    rgba(255,255,255,.035);
}
.contact-panel a:not(.btn), .contact-panel p {
  color: var(--text);
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.75rem);
  line-height: 1.2;
}
.contact-panel .btn { justify-self: start; margin-top: 14px; }

@media (max-width: 1100px) {
  .onepage-container { width: min(100% - 56px, 1360px); }
  .onepage-hero-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .onepage-hero-panel { grid-template-columns: repeat(3, 1fr); }
  .service-grid, .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .client-logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  #frwd-nav { height: auto; }
  .onepage-container { width: min(100% - 36px, 1360px); }
  .frwd-hero-section { min-height: 100svh; padding: 116px 0 46px; }
  .onepage-hero-shade {
    background:
      linear-gradient(90deg, rgba(5,5,6,.93), rgba(5,5,6,.58)),
      linear-gradient(0deg, rgba(13,13,15,.96), transparent 45%);
  }
  .onepage-hero-title { font-size: clamp(2.5rem, 12vw, 4.6rem); }
  .onepage-hero-panel, .service-grid, .process-grid, .team-grid, .client-logo-grid { grid-template-columns: 1fr; }
  .onepage-hero-panel > div { min-height: auto; }
  .onepage-section { padding: 78px 0; }
  .onepage-section-head { display: block; }
  .onepage-section-note { margin-top: 18px; }
  .onepage-work .work-item { grid-template-columns: 42px 1fr; gap: 18px; }
  .onepage-work .wi-thumb, .onepage-work .wi-arrow { display: none; }
  .process-grid > div + div { border-left: none; border-top: 1px solid rgba(255,255,255,.12); }
  .service-card, .service-card img, .team-card, .team-card img { min-height: 360px; height: 360px; }
  .footer-desc { max-width: none; }
}

/* ════════════════════════════════════════════════════
   Hero slider redesign
════════════════════════════════════════════════════ */
.frwd-hero-slider {
  isolation: isolate;
  align-items: stretch;
  padding: 0;
}
.hero-slider-media,
.hero-slide-media,
.hero-slide-media::after,
.hero-slide-media video,
.hero-slide-media img {
  position: absolute;
  inset: 0;
}
.hero-slider-media {
  z-index: 0;
  overflow: hidden;
  background: #050506;
}
.hero-slide-media {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .9s var(--ease), transform 6.5s linear;
}
.hero-slide-media.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide-media::after {
  content: '';
  background:
    linear-gradient(90deg, rgba(5,5,6,.72) 0%, rgba(5,5,6,.46) 41%, rgba(5,5,6,.08) 100%),
    linear-gradient(0deg, rgba(5,5,6,.78) 0%, rgba(5,5,6,.1) 45%, rgba(5,5,6,.3) 100%);
}
.hero-slide-media video,
.hero-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.08) brightness(.78);
}
.hero-slide-media video {
  position: absolute;
  left: 0;
  top: -7%;
  width: 100%;
  height: 114%;
  max-width: none;
  object-position: center center;
}
.frwd-hero-slider .onepage-hero-shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,5,6,.24), transparent 28%, rgba(5,5,6,.58)),
    radial-gradient(circle at 74% 58%, rgba(177,106,255,.17), transparent 28rem),
    radial-gradient(circle at 18% 80%, rgba(255,91,0,.12), transparent 22rem);
}
.frwd-hero-slider .onepage-hero-grid {
  min-height: 100vh;
  padding-top: 148px;
  padding-bottom: 58px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
}
.hero-slider-copy {
  align-self: end;
  position: relative;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-slide-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transform: translateY(28px);
  pointer-events: none;
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.hero-slide-copy.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-slider-console {
  align-self: end;
  display: grid;
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

/* flip container */
.hero-console-flip {
  position: absolute;
  right: 12px;
  bottom: 72px;
  z-index: 10;
  perspective: 600px;
}

/* scroll indicator */
.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transform-origin: center bottom;
  transition: opacity .4s var(--ease), transform .45s cubic-bezier(.4,0,.2,1);
}
.hero-scroll-indicator span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hsi-track {
  width: 2px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  position: relative;
  overflow: hidden;
}
.hsi-thumb {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), var(--lilac));
  animation: hsiDrop 1.8s ease-in-out infinite;
}
@keyframes hsiDrop {
  0%   { top: -40%; }
  100% { top: 140%; }
}

/* pagination — hidden behind, flipped up */
.hero-pagination {
  position: absolute;
  bottom: 0;
  right: 0;
  display: grid;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transform: rotateX(-90deg);
  transform-origin: center bottom;
  transition: opacity .4s var(--ease), transform .45s cubic-bezier(.4,0,.2,1);
}

/* on hover: indicator flips away, pagination flips in */
.hero-console-flip:hover .hero-scroll-indicator {
  opacity: 0;
  pointer-events: none;
  transform: rotateX(90deg);
}
.hero-console-flip:hover .hero-pagination {
  opacity: 1;
  pointer-events: auto;
  transform: rotateX(0deg);
}
.hero-slider-meta,
.hero-slider-metric {
  display: grid;
  gap: 8px;
}
.hero-slider-meta span,
.hero-slider-metric strong {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: .9;
  color: var(--text);
}
.hero-slider-meta small,
.hero-slider-metric small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.45;
  text-transform: uppercase;
}
.hero-slider-progress {
  height: 1px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}
.hero-slider-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--lilac));
}
.hero-slider-controls {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.hero-slider-btn {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: transparent;
  color: transparent;
  font-size: 0;
  font-weight: 800;
  position: relative;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.hero-slider-btn::before {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid var(--text);
  border-left: 1.5px solid var(--text);
  transform: translate(-35%, -50%) rotate(-45deg);
}
.hero-slider-btn[data-hero-next]::before {
  transform: translate(-65%, -50%) rotate(135deg);
}
.hero-slider-btn:hover {
  border-color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}
.hero-slider-dots {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.hero-slider-dots button {
  min-width: 0;
  height: 28px;
  padding: 0 0 7px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(245,244,241,.52);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  position: relative;
  overflow: visible;
  transition: color .25s var(--ease);
}
.hero-slider-dots button::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  opacity: .28;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity .25s var(--ease), transform .35s var(--ease);
}
.hero-slider-dots button span {
  position: relative;
  z-index: 1;
}
.hero-slider-dots button.is-active {
  color: #fff;
}
.hero-slider-dots button.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}

@media (max-width: 1100px) {
  .frwd-hero-slider .onepage-hero-grid {
    grid-template-columns: 1fr;
    align-content: end;
  }
  .hero-slider-copy {
    min-height: 300px;
  }
  .hero-slider-console {
    grid-template-columns: 1fr 1fr;
  }
  .hero-slider-controls {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .frwd-hero-slider .onepage-hero-grid {
    min-height: 100svh;
    padding-top: 112px;
    padding-bottom: 26px;
    display: flex;
    align-items: flex-end;
  }
  .hero-slide-media::after {
    background:
      linear-gradient(90deg, rgba(5,5,6,.66), rgba(5,5,6,.34)),
      linear-gradient(0deg, rgba(5,5,6,.78), rgba(5,5,6,.1) 55%, rgba(5,5,6,.3));
  }
  .hero-slider-copy {
    width: 100%;
    min-height: 230px;
    padding-right: 70px;
  }
  .hero-slide-copy {
    bottom: 82px;
  }
  .hero-slider-console {
    position: absolute;
    right: -10px;
    bottom: 168px;
    display: block;
    width: 36px;
    overflow: visible;
  }
  .hero-scroll-indicator { width: 36px; align-items: center; overflow: visible; }
  .hero-scroll-indicator .hsi-track { flex: 0 0 48px; margin: 0 auto; }
  .hero-scroll-indicator span { display: block; margin: 0 auto; line-height: 1; white-space: nowrap; text-align: center; }
  .hero-slider-meta,
  .hero-slider-metric {
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: 14px;
  }
  .hero-slider-meta span,
  .hero-slider-metric strong {
    font-size: 1.85rem;
  }
  .hero-slider-controls {
    justify-content: center;
  }
  .hero-slider-dots {
    justify-content: center;
    order: -1;
  }
  .hero-slider-btn {
    width: 38px;
    height: 38px;
  }
  .hero-slider-dots button {
    font-size: 9px;
  }
}

@media (max-width: 760px) {
  .hero-slide-media video {
    top: -5%;
    height: 110%;
  }
}

/* ════════════════════════════════════════════════════
   About section
════════════════════════════════════════════════════ */
.frwd-about-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  padding: 92px 0 112px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255,91,0,.1), transparent 34rem),
    radial-gradient(circle at 6% 92%, rgba(177,106,255,.09), transparent 30rem),
    #09090b;
}
.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}
.ceo-line-field { position: absolute; left: -14%; right: -14%; top: 0; bottom: -16%; overflow: hidden; pointer-events: none; z-index: 0; opacity: .42; animation: ceoLinesBreathe 20s ease-in-out infinite alternate; }
.ceo-line-field svg { position: absolute; width: min(112vw, 1620px); height: auto; right: -10%; top: -9%; opacity: .72; transform: rotate(-4deg) scale(1.2); }
.ceo-line-field path { fill: none; stroke: url(#ceoLineGradient); stroke-width: 1.45; stroke-linecap: round; vector-effect: non-scaling-stroke; }
@keyframes ceoLinesBreathe {
  0% { transform: translate3d(-1.2%, 0, 0); }
  100% { transform: translate3d(1.4%, 1.2%, 0); }
}
.about-stage {
  position: relative;
  min-height: 70vh;
  isolation: isolate;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 106px;
  padding-top: 34px;
  grid-column: 1;
  grid-row: 1;
}
.about-stage::before,
.about-stage::after { content: none !important; display: none !important; }
.about-hero-image {
  position: relative;
  width: auto;
  height: calc(100vh - 140px);
  aspect-ratio: 3 / 4;
  max-height: none;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  background: transparent;
}
.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform-origin: center top;
  filter: contrast(1.08) saturate(.92) brightness(.9);
  -webkit-mask-image: none;
  mask-image: none;
}
.ceo-image-mark {
  display: none;
}
.about-hero-image::after {
  content: none;
  display: none;
}
.about-copy {
  max-width: 620px;
  padding: 34px 18px 22px 4px;
  grid-column: 2;
  grid-row: 1;
}
.about-kicker { white-space: nowrap; font-size: clamp(.72rem, 1vw, .92rem); }
.about-kicker::before {
  background: linear-gradient(90deg, var(--orange), var(--lilac));
}
.about-title {
  margin-top: 10px;
  max-width: 570px;
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 1.85vw, 2.15rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: .01em;
  text-transform: uppercase;
  text-wrap: balance;
  color: var(--text);
}
.ceo-quote {
  position: relative;
  margin-top: 28px;
  padding: 26px 0 4px;
  border: 0;
  border-top: 1px solid rgba(255,91,0,.28);
}
.ceo-quote > span {
  position: absolute;
  left: 0;
  top: -14px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  opacity: .7;
}
.ceo-quote p { color: rgba(245,244,241,.7); font-size: .93rem; line-height: 1.78; }
.ceo-quote p + p { margin-top: 16px; }
.ceo-signature { display: grid; gap: 2px; margin: 24px 0 0; }
.ceo-signature strong { color: #fff; font-size: 1rem; letter-spacing: .04em; }
.ceo-signature small { color: var(--orange); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.about-counters {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.about-counter {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.about-counter strong {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.35vw, 2.4rem);
  line-height: 1;
  color: #fff;
}
.about-counter span {
  color: rgba(245,244,241,.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-stage { min-height: 58vh; position: relative; top: auto; grid-column: 1; grid-row: 2; }
  .about-hero-image { width: auto; height: 72vh; aspect-ratio: 3 / 4; }
  .about-copy { max-width: 760px; padding: 8px 0 0; grid-column: 1; grid-row: 1; }
}

@media (max-width: 760px) {
  .frwd-about-section {
    padding: 64px 0 76px;
  }
  .frwd-about-section .about-grid,
  .frwd-about-section .about-copy,
  .frwd-about-section .ceo-quote,
  .frwd-about-section .ceo-quote p { min-width: 0; width: 100%; max-width: 100%; }
  .frwd-about-section .about-grid { width: calc(100% - 36px); margin-right: auto; margin-left: auto; }
  .frwd-about-section .about-copy { overflow: hidden; padding-right: 22px; padding-left: 22px; }
  .frwd-about-section .about-kicker { display: grid; grid-template-columns: 60px minmax(0,1fr); align-items: center; gap: 18px; white-space: normal; line-height: 1.45; overflow-wrap: anywhere; }
  .frwd-about-section .about-kicker::before { width: 60px; }
  .frwd-about-section .about-title,
  .frwd-about-section .ceo-quote p { overflow-wrap: anywhere; word-break: normal; }
  .about-stage { min-height: 44vh; }
  .ceo-line-field { left: -32%; right: -32%; top: -2px; bottom: -12%; opacity: .3; }
  .ceo-line-field svg { width: 190vw; right: -32%; top: -7%; opacity: .64; transform: rotate(-8deg) scale(1.28); }
  .about-hero-image { width: 100%; height: auto; aspect-ratio: 3 / 4; }
  .about-title { font-size: clamp(1.25rem, 5.6vw, 1.8rem); line-height: 1.24; }
  .about-counters { grid-template-columns: 1fr; margin-top: 20px; }
}

/* ════════════════════════════════════════════════════
   Services scroll slider
════════════════════════════════════════════════════ */
.frwd-services-section {
  position: relative;
  z-index: 4;
  isolation: isolate;
  background:
    linear-gradient(180deg, #09090b 0%, #0f0f12 48%, #09090b 100%);
  overflow: hidden;
}
.frwd-services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #09090b;
}
.services-sticky {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
  padding: 88px 0;
}
.services-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.services-kicker::before {
  background: linear-gradient(90deg, var(--orange), var(--lilac));
}
.services-title {
  max-width: 720px;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.2vw, 4.6rem);
  font-weight: 800;
  line-height: .94;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--orange), var(--lilac));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label::before {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--lilac));
  flex-shrink: 0;
}
.section-sub {
  max-width: 580px;
  margin-top: 1.2em;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(245,244,241,.55);
  letter-spacing: .01em;
}
.services-rail {
  width: 100%;
  overflow: visible;
}
.services-track {
  display: flex;
  gap: 18px;
  padding-left: max(24px, calc((100vw - 1360px) / 2 + 60px));
  padding-right: 60px;
  width: max-content;
  will-change: transform;
}
.service-slide {
  position: relative;
  flex: 0 0 clamp(300px, 34vw, 470px);
  height: min(58vh, 560px);
  min-height: 420px;
  overflow: hidden;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: #111;
}
.service-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4,4,7,.08) 0%, rgba(4,4,7,.2) 38%, rgba(4,4,7,.82) 68%, #07070a 100%),
    linear-gradient(110deg, rgba(57,13,158,.32), transparent 46%, rgba(255,91,0,.24));
  pointer-events: none;
}
.service-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.94) contrast(1.08) brightness(.82);
}
.service-slide-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 58px;
  z-index: 1;
}
.service-slide-copy span {
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
}
.service-slide-copy h3 {
  margin-top: 8px;
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 1.7vw, 1.75rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
  max-width: 390px;
  text-wrap: balance;
}
.service-slide-copy { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.22); }
.services-progress { display: none; }

@media (max-width: 900px) {
  .services-sticky {
    min-height: auto;
    padding: 72px 0;
  }
  .services-head {
    display: block;
  }
  .services-title {
    margin-top: 12px;
    font-size: clamp(1.8rem, 8vw, 3rem);
  }
  .services-rail {
    overflow: hidden;
  }
  .services-track {
    width: auto;
    padding: 0 18px;
    display: grid;
    grid-template-columns: 1fr;
  }
  .service-slide {
    flex: none;
    height: 360px;
    min-height: 360px;
  }
  .service-slide-copy { bottom: 38px; }
  .services-progress {
    display: none;
  }
}

/* ════════════════════════════════════════════════════
   Management section
════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════
   Manifesto — typeface morph (clip crossfade)
════════════════════════════════════════════════════ */
.frwd-manifesto-section {
  position: relative;
  height: 500vh;
  background: #060608;
}
.manifesto-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 65% 40%, rgba(255,91,0,.09), transparent 50%),
    radial-gradient(ellipse at 20% 70%, rgba(57,13,158,.08), transparent 45%),
    #060608;
}
.morph-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  user-select: none;
}
.morph-word {
  position: relative;
  line-height: 1;
  max-width: 90vw;
  text-align: center;
}
/* Keep both reveal layers aligned on one horizontal line. */
.morph-layer {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -.02em;
  text-transform: uppercase;
  line-height: 1.02;
  text-align: center;
  white-space: nowrap;
}
.morph-layer span { display: block; }
.morph-layer--gray {
  color: rgba(255,255,255,.1);
}
.morph-layer--color {
  position: absolute;
  inset: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  clip-path: inset(100% 0 0 0);
  will-change: clip-path, background;
}
.morph-sub {
  font-family: var(--font-head);
  font-size: clamp(.9rem, 1.4vw, 1.1rem);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  opacity: 0;
  transform: translateY(12px);
}

@media (max-width: 768px) {
  .morph-layer { font-size: clamp(1rem, 6vw, 4.5rem); }
  .morph-word { max-width: 90vw; }
}

/* ════════════════════════════════════════════════════
   Management section
════════════════════════════════════════════════════ */
.frwd-management-section {
  position: relative;
  padding: 104px 0 124px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,91,0,.1), transparent 30rem),
    linear-gradient(180deg, #09090b 0%, #101014 100%);
}
.management-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 42px;
}
.management-kicker::before {
  background: linear-gradient(90deg, var(--orange), var(--lilac));
}
.management-title {
  max-width: 760px;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.8vw, 4.2rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text);
}
.management-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.management-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: #111;
  aspect-ratio: 3 / 4;
  will-change: transform, clip-path, opacity;
}
.management-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.85) 100%);
  pointer-events: none;
  z-index: 1;
}
.management-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(.9) contrast(1.04) brightness(.9);
  transform: scale(1.03);
  will-change: transform;
}
.management-card.is-placeholder img,
.management-placeholder-avatar {
  filter: saturate(0) brightness(.7) !important;
}
.management-card.is-placeholder .management-card-copy h3 {
  color: rgba(255,255,255,.45);
}
.management-card.is-placeholder .management-card-copy p {
  color: rgba(177,106,255,.6);
}
.management-card-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}
.management-card-copy h3 {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 1.6vw, 1.65rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
}
.management-card-copy p {
  margin-top: 8px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .management-head {
    display: block;
  }
  .management-title {
    margin-top: 12px;
  }
  .management-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .frwd-management-section {
    padding: 72px 0 84px;
  }
  .management-title {
    font-size: clamp(1.65rem, 8vw, 2.8rem);
  }
  .management-card img {
    min-height: 300px;
  }
  .management-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════
   Works — Swiper carousel with filtering
════════════════════════════════════════════════════ */
.frwd-works-section {
  position: relative;
  padding: 110px 0 124px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    radial-gradient(circle at 82% 18%, rgba(255,91,0,.12), transparent 28rem),
    linear-gradient(180deg, #09090b 0%, #111114 54%, #09090b 100%);
  background-size: 86px 86px, auto, auto;
}

.works-head {
  display: grid;
  grid-template-columns: minmax(180px, 320px) minmax(0, 760px);
  justify-content: space-between;
  align-items: end;
  gap: 56px;
  margin-bottom: 34px;
}
.works-title {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 4.2vw, 5rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text);
  max-width: 760px;
  justify-self: end;
  text-align: right;
}
.works-stats {
  display: flex;
  gap: 40px;
  flex-shrink: 0;
}
.works-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,.1);
}
.works-stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--orange) 0%, #ff9a5c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.works-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
@media (max-width: 900px) {
  .works-stats { gap: 20px; }
  .works-stat-num { font-size: clamp(1.4rem, 5vw, 2rem); }
}
@media (max-width: 600px) {
  .works-head { grid-template-columns: 1fr; align-items: flex-start; gap: 16px; }
  .works-title { justify-self: start; text-align: left; }
  .works-stats { flex-wrap: wrap; gap: 16px 24px; }
}
.works-filters-row {
  margin-bottom: 38px;
}

/* filter pills */
.works-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.works-filter-btn {
  min-height: 38px;
  padding: 9px 18px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.035);
  color: rgba(245,244,241,.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}
.works-filter-btn:hover { border-color: rgba(255,255,255,.3); color: #fff; transform: translateY(-1px); }
.works-filter-btn.is-active { background: var(--orange); border-color: var(--orange); color: #fff; }

/* swiper */
.works-swiper-wrap {
  padding: 0 max(24px, calc((100vw - 1320px) / 2));
  overflow: hidden;
}
.works-swiper {
  overflow: visible;
}
.works-swiper .swiper-wrapper {
  align-items: stretch;
}

/* slide */
.works-slide {
  height: auto;
  padding: 26px 0;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  display: flex;
  align-items: center;
}
.works-slide:not(.is-work-active) {
  opacity: 1;
}
.works-slide.is-work-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.works-slide.is-hidden { display: none; }

/* card */
.works-card {
  position: relative;
  height: 100%;
  min-height: 440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(255,91,0,.24), rgba(177,106,255,.16) 48%, rgba(255,255,255,.035) 78%),
    rgba(12,12,15,.82);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 30px 68px rgba(0,0,0,.38);
  isolation: isolate;
  transform-origin: center bottom;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .35s, background .35s;
}
.works-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255,91,0,.26), rgba(177,106,255,.16) 46%, transparent 70%);
  opacity: 0;
  transition: opacity .35s;
}
.works-card:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.025) 42%),
    rgba(12,12,15,.82);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 24px 56px rgba(0,0,0,.3);
}
.works-card:hover::before { opacity: 0; }
.works-slide.is-work-active .works-card {
  border-color: rgba(255,255,255,.18);
  min-height: 500px;
  transform: translateY(-18px);
  border-color: rgba(255,91,0,.44);
  box-shadow: 0 48px 92px rgba(0,0,0,.54);
}
.works-slide.is-work-active .works-card:hover {
  transform: translateY(-22px);
}
.works-slide.is-work-active .works-card-media .works-card-img,
.works-slide.is-work-active .works-card-media img {
  object-fit: cover;
  object-position: center center;
}
.works-slide:not(.is-work-active) .works-card {
  box-shadow: 0 30px 68px rgba(0,0,0,.38);
}

.works-card-media {
  position: relative;
  flex: 0 0 auto;
  display: block;
  overflow: hidden;
  margin: 10px 10px 0;
  border-radius: 6px;
  aspect-ratio: 16 / 10;
  background: #16161a;
}
.works-card-media .works-card-img,
.works-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.06);
  display: block;
  filter: brightness(.92) saturate(1.04);
  transition: transform .7s var(--ease), filter .5s;
}
.works-card:hover .works-card-media img { transform: scale(1.1); filter: brightness(1) saturate(1.08); }
.works-play { position: absolute; z-index: 3; left: 50%; top: 50%; display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-width: 112px; height: 46px; padding: 0 17px 0 13px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; background: rgba(10,9,12,.5); color: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.25),inset 0 1px 0 rgba(255,255,255,.12); backdrop-filter: blur(12px); transform: translate(-50%,-50%); transition: background .35s,border-color .35s,color .35s,transform .35s var(--ease),box-shadow .35s; pointer-events: none; }
.works-play::after { content: 'Play film'; font-size: 9px; font-weight: 800; letter-spacing: .13em; line-height: 1; text-transform: uppercase; white-space: nowrap; }
.works-play svg { width: 20px; height: 20px; flex: 0 0 20px; margin: 0; }
.works-card:hover .works-play { border-color: transparent; background: linear-gradient(105deg,var(--orange),var(--lilac)); color: #111014; box-shadow: 0 14px 38px rgba(0,0,0,.38); transform: translate(-50%,-50%) scale(1.06); }
@media (max-width: 600px) { .works-play { min-width: 102px; height: 42px; padding: 0 14px 0 11px; } }
.works-card-placeholder { width: 100%; height: 100%; background: #1c1c22; }

.works-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04) 20%, rgba(0,0,0,.44) 100%),
    linear-gradient(135deg, rgba(255,91,0,.18), transparent 45%);
  opacity: .92;
  transition: opacity .35s;
}
.works-card:hover .works-card-overlay { opacity: .68; }

.wcl-index {
  position: absolute;
  left: 14px;
  top: 14px;
  min-width: 50px;
  padding: 10px 12px 9px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.22);
  background:
    linear-gradient(135deg, rgba(255,91,0,.86), rgba(177,106,255,.78)),
    rgba(8,8,10,.72);
  color: #fff;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  box-shadow: 0 12px 26px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.wcl-index::before {
  content: '#';
  margin-right: 1px;
  color: rgba(255,255,255,.66);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
}

.wcl-body {
  position: relative;
  flex: 1 1 auto;
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wcl-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(245,244,241,.56);
  margin: 0;
}
.wcl-meta span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wcl-meta span:first-child {
  color: #fff;
}
.wcl-meta span:last-child {
  flex-shrink: 0;
  max-width: 52%;
  padding: 7px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #ffb38a;
  text-align: right;
}
.wcl-title {
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 1.8vw, 2.05rem);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0;
  margin: 0;
}
.wcl-title::after {
  content: '';
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), #b16aff);
}
.wcl-excerpt {
  margin: 0;
  color: rgba(245,244,241,.62);
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wcl-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}
.wcl-stat {
  min-width: 0;
  padding: 12px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.045);
}
.wcl-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.45vw, 1.38rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, #ffb38a 45%, #b16aff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(10px);
  transition: transform .7s cubic-bezier(.16,1,.3,1), opacity .35s;
}
.wcl-stat-num.is-counted {
  opacity: 1;
  transform: translateY(0);
}
.wcl-stat-label {
  display: block;
  margin-top: 7px;
  color: rgba(245,244,241,.48);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.25;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════
   Management — portrait cards
════════════════════════════════════════════════════ */
.frwd-management-section {
  padding: 120px 0 140px;
  background: #08080a;
  position: relative;
  overflow: hidden;
}

.frwd-management-section::before {
  content: 'LEADERSHIP';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-size: clamp(6rem, 16vw, 18rem);
  font-weight: 900;
  letter-spacing: -.06em;
  -webkit-text-stroke: 1px rgba(255,255,255,.03);
  color: transparent;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.mgmt-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}

.mgmt-heading {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

/* ── 3-column card grid ── */
.mgmt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Card ── */
.mgmt-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: default;
  aspect-ratio: 3 / 4;
  background: #111;
}

/* Photo */
.mgmt-card-media {
  position: absolute;
  inset: 0;
}

.mgmt-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

.mgmt-card:hover .mgmt-card-media img {
  transform: scale(1.06);
}

/* Gradient overlay — dark at bottom for text */
.mgmt-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5,5,7,.05)  0%,
    rgba(5,5,7,.0)   35%,
    rgba(5,5,7,.55)  65%,
    rgba(5,5,7,.96)  100%
  );
  transition: background .5s;
}

.mgmt-card:hover .mgmt-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(5,5,7,.1)   0%,
    rgba(5,5,7,.0)   30%,
    rgba(5,5,7,.65)  60%,
    rgba(5,5,7,.98)  100%
  );
}

/* Card body — sits at bottom */
.mgmt-card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 32px;
  z-index: 2;
}

/* Ghost index number */
.mgmt-card-index {
  font-family: var(--font-head);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255,255,255,.08);
  color: transparent;
  user-select: none;
  pointer-events: none;
  margin-bottom: auto;
  align-self: flex-end;
  transition: opacity .4s;
}

.mgmt-card:hover .mgmt-card-index {
  opacity: 0;
}

/* Name + role */
.mgmt-card-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(8px);
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}

.mgmt-card:hover .mgmt-card-copy {
  transform: translateY(0);
}

.mgmt-card-copy h3 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -.03em;
  text-transform: uppercase;
  line-height: .95;
  color: #fff;
  margin: 0;
}

.mgmt-card-copy p {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0;
}

/* Animated bottom line */
.mgmt-card-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #b16aff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  z-index: 3;
}

.mgmt-card:hover .mgmt-card-hover-line {
  transform: scaleX(1);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .mgmt-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .mgmt-head { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 40px; }
}

@media (max-width: 560px) {
  .mgmt-grid { grid-template-columns: 1fr; }
  .frwd-management-section { padding: 80px 0 100px; }
}

/* ════════════════════════════════════════════════════
   Partners — infinite scroll rows
════════════════════════════════════════════════════ */
.frwd-partners-section {
  position: relative;
  padding: 104px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 40%, rgba(255,91,0,.07), transparent 30rem),
    linear-gradient(180deg, #09090b 0%, #101014 100%);
}
.partners-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
}
.partners-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.8vw, 4.2rem);
  font-weight: 800;
  line-height: .95;
  text-transform: uppercase;
  color: var(--text);
  max-width: 600px;
}

/* each scrolling row */
.partners-track-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.partners-track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}

/* individual card */
.partner-card {
  flex-shrink: 0;
  width: 160px;
  height: 80px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.03);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  transition: border-color .3s, background .3s, transform .3s;
  cursor: default;
  overflow: hidden;
}
.partner-card:hover {
  border-color: rgba(255,91,0,.3);
  background: rgba(255,91,0,.05);
  transform: scale(1.04);
}
.partner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(1.8) opacity(.48);
  transition: filter .35s;
}
.partner-card:hover img {
  filter: grayscale(0) brightness(1) opacity(1);
}

@media (max-width: 768px) {
  .frwd-partners-section { padding: 72px 0 80px; }
  .partners-head { flex-direction: column; gap: 16px; margin-bottom: 40px; }
  .partner-card { width: 160px; height: 72px; }
}

/* ── WORKS LIGHTBOX ───────────────────────────────────────────────────── */
.works-lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s;
}
.works-lb.is-open { opacity: 1; pointer-events: all; }
.works-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,5,8,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}
.works-lb-panel {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 960px;
  max-height: 88vh;
  border-radius: 24px;
  overflow: hidden;
  background: #0f0f13;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 60px 120px rgba(0,0,0,.7);
  transform: translateY(30px) scale(.96);
  transition: transform .4s var(--ease), opacity .35s;
}
.works-lb.is-open .works-lb-panel { transform: translateY(0) scale(1); opacity: 1; }
.works-lb-panel { opacity: 0; }
.works-lb-img-wrap {
  flex: 0 0 55%;
  position: relative;
  overflow: hidden;
}
.works-lb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: saturate(.95) brightness(.95);
}
.works-lb-video { display: block; width: 100%; height: 100%; border: 0; background: #050506; object-fit: contain; }
.works-lb-body {
  flex: 1;
  min-width: 0;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  overflow-y: auto;
}
.works-lb-client {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
}
.works-lb-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.works-lb-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin: 0;
}
.works-lb-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  margin: 8px 0 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.works-lb-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 26px;
  border-radius: 50px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  align-self: flex-start;
  transition: background .25s, transform .25s;
}
.works-lb-cta:hover { background: #e55a00; transform: translateX(3px); }
.works-lb-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background .25s, transform .25s;
}
.works-lb-close:hover { background: rgba(255,255,255,.14); transform: rotate(90deg); }
@media (max-width: 700px) {
  .works-lb { padding: 12px; overflow: hidden; }
  .works-lb-panel { flex-direction: column; width: 100%; max-width: calc(100vw - 24px); max-height: calc(100svh - 24px); overflow-x: hidden; overflow-y: auto; }
  .works-lb-img-wrap { flex: 0 0 auto; width: 100%; min-width: 0; aspect-ratio: 16 / 10; }
  .works-lb-body { flex: 0 0 auto; width: 100%; min-width: 0; padding: 30px 22px; overflow: visible; }
  .works-lb-title { padding-right: 34px; font-size: clamp(1.55rem,8vw,2.25rem); line-height: 1.02; }
  .works-lb-close { top: 14px; right: 14px; }
}

/* controls row: gradient line pagination */
.works-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(190px, calc(100vw - 48px));
  overflow: hidden;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}
.works-swiper-pagination {
  width: auto !important;
  min-width: max-content;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  transform: translateX(var(--works-page-offset, 0));
  transition: transform .45s var(--ease);
}
.works-swiper-pagination .swiper-pagination-bullet {
  appearance: none;
  padding: 0;
  border: 0;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  opacity: 1;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: width .35s var(--ease), background .3s, transform .3s;
}
.works-swiper-pagination .swiper-pagination-bullet span {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255,255,255,.22);
}
.works-swiper-pagination .swiper-pagination-bullet span::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), #ff9a5c 42%, #b16aff 100%);
  transform: scaleX(0);
  transform-origin: left center;
}
.works-swiper-pagination .swiper-pagination-bullet-active {
  width: 42px;
  background: rgba(255,255,255,.12);
  transform: translateY(-1px);
}
.works-swiper-pagination .swiper-pagination-bullet-active span::after {
  animation: worksLineFill 3.5s linear both;
}

@keyframes worksLineFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 900px) {
  .frwd-works-section { padding: 72px 0 80px; }
  .works-head { grid-template-columns: 1fr; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
  .works-title { justify-self: start; text-align: left; }
  .works-filters-row { margin-bottom: 28px; }
  .works-swiper-wrap { padding: 0 20px; }
  .works-controls { margin-top: 28px; }
  .works-card { min-height: 420px; }
  .works-slide.is-work-active .works-card { min-height: 470px; }
  .works-card-media { aspect-ratio: 4 / 3; }
  .wcl-body { min-height: 0; }
}

@media (max-width: 600px) {
  .works-card { min-height: 400px; }
  .works-slide.is-work-active .works-card { min-height: 440px; }
}

/* Content integration: retain the original FRWD component system. */
.works-card-media video.works-card-img { width: 100%; height: 100%; object-fit: cover; }
.frwd-story-card { grid-column: span 1; }
.frwd-story-card .service-card-body p { max-width: 36rem; }
.works-lb-placeholder { background: radial-gradient(circle at 70% 30%, rgba(255,91,0,.3), transparent 35%), radial-gradient(circle at 20% 75%, rgba(177,106,255,.25), transparent 40%), #0b0b0d; }
#blog .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 760px) { #blog .service-grid { grid-template-columns: 1fr; } }

/* Dedicated contact page */
.contact-page { background: #08080a; overflow: hidden; }
.contact-hero { position: relative; min-height: 78vh; display: flex; align-items: end; padding: 170px 0 90px; isolation: isolate; }
.contact-hero::after { content: ''; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, var(--orange), var(--lilac), transparent); opacity: .6; }
.contact-hero-inner { position: relative; z-index: 1; }
.contact-hero h1, .contact-offices-head h2 { font-family: var(--font-head); text-transform: uppercase; color: #fff; }
.contact-hero h1 { max-width: 1050px; font-size: clamp(3.6rem, 9vw, 9.5rem); line-height: .82; letter-spacing: .01em; }
.contact-hero h1 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.7); }
.contact-hero-inner > p:last-child { max-width: 540px; margin-top: 34px; color: rgba(245,244,241,.62); font-size: clamp(1rem, 1.4vw, 1.2rem); }
.contact-orb { position: absolute; border-radius: 50%; filter: blur(4px); z-index: -1; animation: contactFloat 9s ease-in-out infinite alternate; }
.contact-orb-one { width: 38vw; height: 38vw; right: -8vw; top: 4%; background: radial-gradient(circle at 32% 32%, rgba(255,91,0,.7), rgba(57,13,158,.22) 44%, transparent 69%); }
.contact-orb-two { width: 24vw; height: 24vw; right: 25vw; bottom: -16%; border: 1px solid rgba(177,106,255,.35); animation-delay: -3s; }
@keyframes contactFloat { to { transform: translate3d(-30px, 22px, 0) scale(1.05); } }
.contact-details-section { padding: 100px 0 130px; }
.contact-channels { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 130px; border-top: 1px solid var(--border); }
.contact-channels > a { position: relative; display: grid; gap: 7px; padding: 28px 54px 28px 0; border-bottom: 1px solid var(--border); transition: padding-left .35s var(--ease), color .35s; }
.contact-channels > a:nth-child(odd) { border-right: 1px solid var(--border); }
.contact-channels > a:nth-child(even) { padding-left: 32px; }
.contact-channels > a:hover { color: var(--orange); padding-left: 12px; }
.contact-channels > a:nth-child(even):hover { padding-left: 44px; }
.contact-channels small { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.contact-channels strong { font-size: clamp(1rem, 1.7vw, 1.45rem); font-weight: 700; }
.contact-channels span { position: absolute; right: 24px; top: 50%; font-size: 1.3rem; transform: translateY(-50%); }
.contact-offices-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 52px; }
.contact-offices-head h2 { font-size: clamp(2.3rem, 4.7vw, 5.2rem); line-height: .9; text-align: right; }
.contact-offices { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.office-card { position: relative; min-height: 320px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--border); border-radius: 16px; background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.012)); overflow: hidden; transition: transform .4s var(--ease), border-color .4s; }
.office-card::before { content: ''; position: absolute; inset: auto -25% -70% 25%; height: 100%; background: radial-gradient(circle, rgba(255,91,0,.2), transparent 67%); transition: transform .5s var(--ease); }
.office-card:hover { transform: translateY(-8px); border-color: rgba(255,91,0,.45); }
.office-card:hover::before { transform: translateY(-12%); }
.office-card > span { color: var(--orange); font-family: var(--font-head); font-size: 11px; }
.office-card h3 { margin-top: 55px; font-family: var(--font-head); font-size: clamp(1.55rem, 2.4vw, 2.5rem); text-transform: uppercase; }
.office-card p { max-width: 270px; margin-top: 14px; color: var(--muted); line-height: 1.65; }
.office-card a { position: relative; margin-top: auto; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
@media (max-width: 800px) {
  .contact-hero { min-height: 70vh; padding-bottom: 64px; }
  .contact-channels, .contact-offices { grid-template-columns: 1fr; }
  .contact-channels > a:nth-child(odd) { border-right: 0; }
  .contact-channels > a:nth-child(even) { padding-left: 0; }
  .contact-offices-head { display: block; }
  .contact-offices-head h2 { margin-top: 14px; text-align: left; }
  .office-card { min-height: 270px; }
}
@media (prefers-reduced-motion: reduce) { .contact-orb, .ceo-line-field { animation: none; } }

/* Homepage journal */
.frwd-journal-section { padding: 118px 0 130px; border-top: 1px solid var(--border); background: #09090b; }
.journal-head { display: flex; justify-content: space-between; align-items: end; gap: 48px; margin-bottom: 52px; }
.journal-head h2 { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 5.8rem); line-height: .88; text-transform: uppercase; }
.journal-head h2 { overflow: hidden; }
.journal-head h2 > span { display: inline-block; padding-bottom: .08em; margin-bottom: -.08em; will-change: transform; }
.journal-head > p { max-width: 390px; padding-bottom: 8px; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.journal-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 18px; align-items: stretch; }
.journal-card { min-width: 0; border-top: 1px solid rgba(255,255,255,.18); cursor: pointer; }
.journal-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; margin-top: 14px; background: #151519; }
.journal-card-featured .journal-media { aspect-ratio: 16 / 9; }
.journal-media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.78) saturate(.88); transition: transform .8s var(--ease), filter .5s; }
.journal-card:hover .journal-media img { transform: scale(1.035); filter: brightness(.94) saturate(1); }
.journal-media > span { position: absolute; top: 18px; left: 18px; min-width: 44px; padding: 9px; background: var(--orange); color: #fff; font-family: var(--font-head); font-size: 10px; text-align: center; }
.journal-copy { padding: 24px 0 0; }
.journal-copy > p { color: var(--orange); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.journal-copy h3 { margin-top: 11px; font-family: var(--font-head); font-size: clamp(1.35rem, 2.6vw, 3rem); line-height: 1; text-transform: uppercase; }
.journal-card:not(.journal-card-featured) .journal-copy h3 { font-size: clamp(1.2rem, 1.8vw, 2rem); }
.journal-copy > div { display: flex; justify-content: space-between; gap: 25px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); color: var(--muted); line-height: 1.65; }
.journal-copy b { color: #fff; font-size: 1.25rem; font-weight: 400; transition: transform .3s var(--ease), color .3s; }
.journal-card:hover .journal-copy b { color: var(--orange); transform: translate(4px,-4px); }
@media (max-width: 760px) {
  .frwd-journal-section { padding: 78px 0 86px; }
  .journal-head { display: block; margin-bottom: 34px; }
  .journal-head > p { margin-top: 20px; }
  .journal-grid { grid-template-columns: 1fr; gap: 54px; }
  .journal-card .journal-media, .journal-card-featured .journal-media { aspect-ratio: 4 / 3; }
}

/* Internal journal articles */
.article-page { background: #09090b; }
.article-hero { padding: 190px 0 90px; background: radial-gradient(circle at 78% 22%, rgba(177,106,255,.15), transparent 32rem), radial-gradient(circle at 15% 80%, rgba(255,91,0,.12), transparent 26rem); }
.article-hero p { color: var(--orange); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.article-hero h1 { max-width: 1150px; margin-top: 22px; font-family: var(--font-head); font-size: clamp(3rem, 7vw, 8rem); line-height: .9; text-transform: uppercase; text-wrap: balance; }
.article-hero span { display: block; margin-top: 38px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.article-cover { height: min(68vw, 760px); overflow: hidden; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-content { max-width: 1080px; padding-top: 100px; padding-bottom: 120px; }
.article-lead { max-width: 880px; margin: 0 0 110px auto; }
.article-lead p { font-size: clamp(1.45rem, 2.7vw, 2.7rem); line-height: 1.42; color: rgba(245,244,241,.9); }
.article-lead p + p { margin-top: 26px; }
.article-content > section { display: grid; grid-template-columns: 120px 1fr; gap: 35px; padding: 68px 0; border-top: 1px solid var(--border); }
.article-content > section > span { color: var(--orange); font-family: var(--font-head); font-size: 11px; }
.article-content section > div { max-width: 760px; }
.article-content h2 { margin-bottom: 30px; font-family: var(--font-head); font-size: clamp(1.75rem, 3.5vw, 3.8rem); line-height: 1; text-transform: uppercase; text-wrap: balance; }
.article-content section p { color: rgba(245,244,241,.67); font-size: 1.05rem; line-height: 1.9; }
.article-content section p + p { margin-top: 22px; }
.article-back { display: inline-flex; margin-top: 30px; padding: 14px 0; border-bottom: 1px solid var(--orange); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
@media (max-width: 760px) {
  .article-hero { padding: 145px 0 64px; }
  .article-cover { height: 62vw; }
  .article-content { padding-top: 68px; padding-bottom: 80px; }
  .article-lead { margin-bottom: 70px; }
  .article-content > section { grid-template-columns: 1fr; gap: 18px; padding: 48px 0; }
}

/* Case-study pages */
.case-page { background: #08080a; }
.case-hero { position: relative; min-height: 92vh; display: flex; align-items: end; overflow: hidden; background: #101014; }
.case-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.case-hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,5,7,.42), rgba(5,5,7,.55) 38%, rgba(5,5,7,.98) 100%), linear-gradient(90deg, rgba(5,5,7,.78), rgba(5,5,7,.25) 70%, rgba(5,5,7,.12)); }
.case-hero-copy { position: relative; z-index: 1; padding-bottom: 72px; }
.case-hero-copy p { margin-bottom: 18px; color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.case-hero-copy h1 { max-width: 1050px; font-family: var(--font-head); font-size: clamp(3rem, 7vw, 8rem); line-height: .88; text-transform: uppercase; text-wrap: balance; }
.case-hero-copy a { display: inline-flex; margin-top: 30px; padding-bottom: 7px; border-bottom: 1px solid rgba(255,255,255,.55); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.case-intro { padding: 105px 0; }
.case-intro-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: start; }
.case-intro-grid > p:last-child { max-width: 780px; font-size: clamp(1.3rem, 2.4vw, 2.35rem); line-height: 1.45; color: rgba(245,244,241,.86); }
.case-story { padding: 0 0 110px; }
.case-story-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.case-story article { min-height: 430px; padding: clamp(28px, 4vw, 58px); background: #0c0c0f; display: flex; flex-direction: column; }
.case-story article > span { color: var(--orange); font-family: var(--font-head); font-size: 11px; }
.case-story h2 { margin-top: 50px; font-family: var(--font-head); font-size: clamp(1.65rem, 3vw, 3.4rem); line-height: 1; text-transform: uppercase; }
.case-story p { margin-top: 28px; color: rgba(245,244,241,.65); font-size: 1rem; line-height: 1.85; }
.case-film { padding: 0 0 120px; }
.case-film video { width: 100%; max-height: 82vh; aspect-ratio: 16 / 9; object-fit: contain; background: #000; border-radius: 14px; box-shadow: 0 38px 90px rgba(0,0,0,.45); }
.case-next { display: block; padding: 76px 0 84px; border-top: 1px solid var(--border); background: linear-gradient(110deg, rgba(255,91,0,.12), rgba(57,13,158,.15)); transition: background .4s; }
.case-next:hover { background: linear-gradient(110deg, rgba(255,91,0,.22), rgba(57,13,158,.24)); }
.case-next .onepage-container { display: grid; gap: 14px; }
.case-next span { color: var(--orange); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.case-next strong { font-family: var(--font-head); font-size: clamp(1.8rem, 4.2vw, 4.7rem); line-height: 1; text-transform: uppercase; }
@media (max-width: 760px) {
  .case-hero { min-height: 78vh; }
  .case-hero-copy { padding-bottom: 48px; }
  .case-intro { padding: 72px 0; }
  .case-intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .case-story { padding-bottom: 76px; }
  .case-story-grid { grid-template-columns: 1fr; }
  .case-story article { min-height: auto; }
  .case-film { padding-bottom: 76px; }
}

/* Agency introduction and publication pages. */
/* Flowing linework stays behind the editorial content. */
.frwd-momentum-section { position: relative; isolation: isolate; overflow: hidden; padding: 110px 0 100px; scroll-margin-top: 90px; background: #0d0d0f; }
.momentum-lines { position: absolute; z-index: -1; inset: 0; pointer-events: none; opacity: .32; mask-image: linear-gradient(180deg, #000 0%, #000 40%, transparent 95%); }
.momentum-lines svg { width: 100%; height: 100%; }
.momentum-inner { position: relative; }
.momentum-opening { display: grid; grid-template-columns: 1.6fr 1fr; align-items: end; gap: 60px; padding-bottom: 64px; }
.momentum-heading .section-label { margin-bottom: 32px; letter-spacing: .24em; }
.momentum-title { margin: 0; font-family: var(--font-head); font-size: clamp(3.4rem, 7vw, 7.8rem); line-height: 1.04; letter-spacing: -.045em; }
.momentum-title-row { display: flex; align-items: baseline; gap: .2em; }
.momentum-title-row + .momentum-title-row { margin-top: 8px; }
.momentum-title small { min-width: 2.65em; font-family: var(--font-body, sans-serif); font-size: .28em; font-weight: 400; letter-spacing: -.035em; color: #b9b6c1; }
.momentum-title strong { font-weight: inherit; color: var(--text); }
.momentum-title em { font-style: normal; color: var(--orange); }
.momentum-lead { margin: 0 0 4px; font-size: clamp(1.6rem, 2.7vw, 3rem); font-weight: 500; line-height: 1.25; letter-spacing: -.035em; }
.momentum-lead span { color: var(--lilac); }
.momentum-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 7vw, 120px); }
.momentum-principles { padding: 44px 0 56px; border-top: 1px solid rgba(255,255,255,.16); }
.momentum-direction span { display: inline-block; font-size: 120px; line-height: 1; font-weight: 200; color: var(--orange); }
.momentum-copy { color: #b9b6c1; font-size: clamp(1rem, 1.15vw, 1.15rem); line-height: 1.8; }
.momentum-copy p + p { margin-top: 20px; }
.momentum-principles .momentum-copy p:first-child { color: var(--text); font-size: clamp(1.2rem, 1.6vw, 1.6rem); line-height: 1.55; }
.momentum-agency { padding-top: 48px; border-top: 1px solid rgba(255,255,255,.16); }
.momentum-agency h3 { max-width: 510px; font-family: var(--font-head); font-size: clamp(1.65rem, 2.7vw, 3rem); line-height: 1.16; letter-spacing: -.025em; }
@media (max-width: 1000px) {
  .momentum-opening { gap: 30px; grid-template-columns: 1.5fr 1fr; }
  .momentum-title { font-size: clamp(3rem, 7vw, 5rem); }
}
.publication-link { display: inline-block; margin-top: 24px; padding-bottom: 7px; color: var(--text); border-bottom: 1px solid var(--orange); }
.publications-page { padding-top: 170px; padding-bottom: 100px; min-height: 75vh; }
.publications-head h1 { font-family: var(--font-head); font-size: clamp(2.8rem, 6vw, 6.5rem); line-height: 1.08; margin: 20px 0 24px; overflow-wrap: anywhere; }
.publications-head > p:last-of-type { color: #bbb9c3; line-height: 1.7; }
.publication-tabs { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 48px; }
.publication-tabs a { padding: 12px 24px; border: 1px solid rgba(255,255,255,.25); border-radius: 30px; }
.publication-tabs a[aria-current="page"], .publication-tabs a:hover { background: var(--orange); border-color: var(--orange); color: #0d0d0f; }
.publications-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 40px 28px; }
.publication-card { display: flex; flex-direction: column; min-width: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.publication-media { aspect-ratio: 3 / 2; overflow: hidden; border-radius: 8px; background: #19151f; }
.publication-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.publication-card:hover img { transform: scale(1.04); }
.publications-grid-magazine .publication-media { position: relative; aspect-ratio: 3 / 4; }
.publications-grid-magazine .publication-media::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(135deg, rgba(255,91,0,.08) 0%, rgba(177,106,255,.05) 48%, rgba(57,13,158,.12) 100%); }
.publications-grid-magazine .publication-media img { object-fit: contain; }
.publication-placeholder { height: 100%; display: grid; place-items: center; color: var(--lilac); font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 3rem); background: linear-gradient(135deg, #311624, #19112e); }
.publication-copy { padding: 24px 0 28px; display: flex; flex: 1; flex-direction: column; gap: 14px; }
.publication-copy h2 { font-size: clamp(1.3rem, 2vw, 2rem); line-height: 1.2; overflow-wrap: anywhere; }
.publication-copy p { color: #bbb9c3; line-height: 1.7; }
.publication-copy p:first-child { color: var(--lilac); font-size: .8rem; }
.publication-copy > span { margin-top: auto; padding-top: 10px; }
.publication-pagination { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 56px; }
.publication-pagination .page-numbers { padding: 10px 16px; border: 1px solid rgba(255,255,255,.25); }
.publication-pagination .current { color: var(--orange); border-color: var(--orange); }
.publications-empty { padding: 40px 0; color: #bbb9c3; }
.magazine-reader { display: block; width: 100%; height: 80vh; min-height: 450px; margin: 28px 0; border: 1px solid rgba(255,255,255,.2); background: #19151f; }
.magazine-content { max-width: 900px; line-height: 1.8; }
.publication-card:focus-visible, .publication-tabs a:focus-visible, .publication-link:focus-visible { outline: 2px solid var(--lilac); outline-offset: 5px; }
@media (max-width: 1000px) { .publications-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 700px) {
  .frwd-momentum-section { padding: 80px 0; }
  .momentum-opening { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .momentum-title { font-size: clamp(2.8rem, 10.5vw, 4.6rem); }
  .momentum-lead br { display: none; }
  .momentum-lead { max-width: 340px; }
  .momentum-direction { display: none; }
  .momentum-principles { padding: 32px 0; }
  .momentum-lines { opacity: .2; }
  .momentum-grid, .publications-grid { grid-template-columns: 1fr; gap: 28px; }
  .momentum-agency { margin-top: 0; padding-top: 32px; }
  .publications-page { padding-top: 130px; padding-bottom: 70px; }
}
@media (prefers-reduced-motion: reduce) { .publication-media img { transition: none; } }

/* Homepage introduction links through to the full agency story. */
.frwd-about-teaser { position: relative; isolation: isolate; overflow: hidden; box-sizing: border-box; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; padding: 100px 0; scroll-margin-top: 90px; background: #0d0d0f; }
.about-teaser-lines { position: absolute; inset: 0; z-index: -1; opacity: .2; pointer-events: none; }
.about-teaser-lines svg { width: 100%; height: 100%; }
.about-teaser-lines path { stroke-dasharray: 1000; stroke-dashoffset: 1000; stroke-linecap: round; animation: teaserLinesDraw 9s ease-in-out infinite; animation-delay: calc(var(--strand, 0) * .12s); }
.about-teaser-grid { display: grid; grid-template-columns: 1.2fr 1fr; align-items: center; gap: clamp(32px, 7vw, 100px); }
.about-teaser-grid > div > h2, .about-teaser-grid h1 { margin-top: 24px; font-family: var(--font-head); font-size: clamp(2.8rem, 5vw, 5.5rem); line-height: 1.04; letter-spacing: -.04em; }
.about-teaser-grid > div > h2 span, .about-teaser-grid h1 span { color: var(--orange); }
/* Word masks for the teaser headline reveal (built by initAboutTeaser). */
.about-teaser-grid > div > h2 .st-word { display: inline-block; overflow: hidden; padding-bottom: .14em; margin-bottom: -.14em; vertical-align: top; }
.about-teaser-grid > div > h2 .st-inner { display: inline-block; padding-bottom: .03em; will-change: transform; }
.about-teaser-copy p { max-width: 540px; color: #c4c1cb; font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.75; }
.about-teaser-link { display: inline-flex; align-items: center; gap: 36px; margin-top: 30px; padding: 14px 0; border-bottom: 1px solid var(--orange); font-size: .9rem; font-weight: 700; }
.about-teaser-link span { color: var(--orange); font-size: 1.5rem; }
.about-teaser-link:hover { color: var(--orange); }
.about-teaser-link:focus-visible { outline: 2px solid var(--lilac); outline-offset: 6px; }
.frwd-about-page > .frwd-momentum-section { padding-top: 180px; }
@media (max-width: 700px) {
  .frwd-about-teaser { padding: 72px 0; }
  .about-teaser-grid { grid-template-columns: 1fr; gap: 28px; }
  .frwd-about-page > .frwd-momentum-section { padding-top: 140px; }
}

@keyframes teaserLinesDraw {
  0% { stroke-dashoffset: 1000; opacity: 0; }
  6% { opacity: 1; }
  65%, 80% { stroke-dashoffset: 0; opacity: 1; }
  94%, 100% { stroke-dashoffset: 0; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .about-teaser-lines path { animation: none; stroke-dashoffset: 0; opacity: 1; }
}

/* Full agency story uses the same visual treatment as the home introduction. */
.frwd-about-full { padding-top: 160px; }
.frwd-about-full .about-teaser-grid { align-items: start; }
.about-full-heading { position: sticky; top: 160px; }
.about-full-copy p { font-size: clamp(1rem, 1.2vw, 1.15rem); }
.about-full-copy p + p { margin-top: 22px; }
.about-full-copy .about-full-lead { color: var(--text); font-size: clamp(1.3rem, 1.8vw, 1.7rem); line-height: 1.4; }
.about-teaser-grid .about-full-copy h2 { margin: 42px 0 24px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.16); font-family: var(--font-head); font-size: clamp(1.35rem, 1.9vw, 1.9rem); line-height: 1.3; letter-spacing: -.02em; }
@media (max-width: 700px) {
  .frwd-about-full { padding-top: 130px; }
  .about-full-heading { position: static; }
}

/* About: quiet typography, consistent columns, and restrained brand accents. */
.about-clean { background: #0d0d0f; }
.about-clean-container { width: calc(100% - 80px); max-width: 1120px; margin: 0 auto; }
.about-clean-header { position: relative; isolation: isolate; overflow: hidden; padding: 160px 0 64px; }
.about-clean-header .section-label { margin-bottom: 44px; }
.about-clean-eyebrow { margin-bottom: 14px; color: #b2afb9; font-size: .95rem; }
.about-clean-header h1 { max-width: 850px; margin: 0; font-family: var(--font-head); font-size: clamp(2.6rem, 5.2vw, 5rem); line-height: 1.12; letter-spacing: -.04em; text-wrap: balance; }
.about-clean-header h1 span { color: var(--orange); }
.about-clean-intro { margin-top: 26px; color: #c3c0c9; font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.65; }
.about-clean-lines { position: absolute; right: -100px; bottom: 8px; width: 55%; max-width: 550px; color: var(--lilac); opacity: .1; z-index: -1; pointer-events: none; }
.about-clean-row { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 64px; padding: 52px 0; border-top: 1px solid rgba(255,255,255,.13); }
.about-clean-row > h2 { font-size: 1.1rem; font-weight: 500; line-height: 1.6; }
.about-clean-prose { max-width: 730px; color: #bdbac4; font-size: 1.05rem; line-height: 1.85; }
.about-clean-prose p + p { margin-top: 22px; }
.about-clean-prose h3 { margin-bottom: 24px; max-width: 680px; color: var(--text); font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 500; line-height: 1.4; letter-spacing: -.02em; }
@media (max-width: 760px) {
  .about-clean-container { width: calc(100% - 40px); }
  .about-clean-header { padding: 130px 0 44px; }
  .about-clean-header .section-label { margin-bottom: 30px; }
  .about-clean-row { grid-template-columns: 1fr; gap: 24px; padding-top: 36px; }
  .about-clean-row { padding-bottom: 36px; }
  .about-clean-prose { font-size: 1rem; }
}

/* Expressive details and motion for the About story. */
.about-expressive .about-clean-header { min-height: 88svh; display: flex; flex-direction: column; justify-content: center; padding-top: 150px; padding-bottom: 70px; }
.about-expressive .about-clean-header h1 { font-size: clamp(3rem, 6.8vw, 6.5rem); line-height: 1.04; position: relative; z-index: 1; }
.about-expressive .about-clean-header h1 span { color: var(--orange); }
.about-motion-art { position: absolute; width: 52%; height: 100%; right: -10%; top: 0; z-index: -1; pointer-events: none; mask-image: linear-gradient(90deg, transparent, #000 30%); }
.about-motion-art svg { width: 100%; height: 100%; opacity: .65; }
.about-motion-art path { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: teaserLinesDraw 11s ease-in-out infinite; animation-delay: calc(var(--strand) * .09s); }
.about-motion-arrow { position: absolute; top: 38%; left: 45%; font-size: clamp(6rem, 13vw, 12rem); color: var(--orange); animation: aboutArrowFloat 5s ease-in-out infinite alternate; }
.about-story-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.about-story-actions a, .about-story-cta > a { display: inline-flex; gap: 24px; align-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 100px; padding: 15px 22px; font-size: .85rem; transition: background .25s, border-color .25s, transform .25s; }
.about-story-actions a:first-child { background: var(--orange); border-color: var(--orange); color: #151115; }
.about-story-actions a:hover, .about-story-cta > a:hover { transform: translateY(-3px); border-color: var(--orange); }
.about-story-actions a:focus-visible, .about-story-cta > a:focus-visible { outline: 2px solid var(--lilac); outline-offset: 5px; }
.about-expressive .about-clean-row { scroll-margin-top: 110px; padding-top: 64px; padding-bottom: 64px; }
.about-chapter { display: block; color: var(--orange); font-size: .75rem; letter-spacing: .16em; margin-bottom: 16px; }
.about-principle-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-bottom: 32px; }
.about-principle-cards article { min-width: 0; padding: 24px 18px; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; background: linear-gradient(145deg, rgba(177,106,255,.07), rgba(255,91,0,.025)); transition: transform .3s, border-color .3s, background .3s; }
.about-principle-cards article:hover { transform: translateY(-6px); border-color: rgba(177,106,255,.6); background: rgba(177,106,255,.1); }
.about-principle-cards article > span { display: block; color: var(--orange); font-size: 2rem; line-height: 1; margin-bottom: 26px; }
.about-principle-cards article:nth-child(2) > span { color: var(--lilac); }
.about-principle-cards h3 { font-size: 1.05rem; margin-bottom: 10px; }
.about-principle-cards p { font-size: .88rem; line-height: 1.65; }
.about-story-cta { margin-top: 20px; margin-bottom: 90px; border-top: 1px solid rgba(255,255,255,.15); padding: 64px 0 0; }
.about-story-cta h2 { font-family: var(--font-head); font-size: clamp(2.3rem, 5vw, 5rem); line-height: 1.1; letter-spacing: -.04em; margin: 24px 0 30px; }
.about-story-cta h2 span { color: var(--lilac); }
.about-reveal-ready { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.about-reveal-ready.is-visible { opacity: 1; transform: none; }
@keyframes aboutArrowFloat { from { transform: translate(-8px, 8px); } to { transform: translate(8px, -8px); } }
@media (max-width: 760px) {
  .about-expressive .about-clean-header { min-height: 78svh; padding-top: 130px; }
  .about-motion-art { width: 80%; right: -35%; opacity: .5; }
  .about-motion-arrow { display: none; }
  .about-expressive .about-clean-row { padding-top: 40px; padding-bottom: 40px; }
}
@media (max-width: 480px) {
  .about-principle-cards { grid-template-columns: 1fr; }
  .about-principle-cards article { padding: 20px; }
  .about-principle-cards article > span { float: right; margin: 0 0 0 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .about-motion-art path { animation: none; stroke-dashoffset: 0; }
  .about-motion-arrow { animation: none; }
  .about-reveal-ready { opacity: 1; transform: none; transition: none; }
  .about-story-actions a, .about-story-cta > a, .about-principle-cards article { transition: none; }
}

/* Signed-in account menu replaces the floating staff strip. */
.nav-account { position: relative; }
.nav-account summary { display: flex; align-items: center; gap: 9px; padding: 5px 10px 5px 5px; border: 1px solid rgba(255,255,255,.2); border-radius: 30px; background: #19151f; cursor: pointer; list-style: none; font-size: .8rem; }
.nav-account summary::-webkit-details-marker { display: none; }
.nav-account summary > i { font-size: .6rem; color: #b6aabe; }
.nav-account-avatar { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--orange); color: #151115; font-weight: 700; }
.nav-account-name { max-width: 95px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-account-panel { position: absolute; right: 0; top: calc(100% + 14px); width: 300px; max-width: calc(100vw - 40px); padding: 22px; border: 1px solid #45334f; border-radius: 14px; background: #17121d; box-shadow: 0 20px 65px rgba(0,0,0,.5); color: #f5f4f1; text-align: left; }
.nav-account-panel > strong { display: block; font-size: 1rem; overflow-wrap: anywhere; }
.nav-account-panel > p { color: #bdb1c8; margin-top: 7px; font-size: .8rem; overflow-wrap: anywhere; }
.nav-account-panel dl { margin: 20px 0; padding: 16px 0; border-top: 1px solid #372b40; border-bottom: 1px solid #372b40; font-size: .78rem; }
.nav-account-panel dl > div + div { margin-top: 12px; }
.nav-account-panel dt { color: #a397ae; margin-bottom: 4px; }
.nav-account-panel dd { margin: 0; overflow-wrap: anywhere; }
.nav-account-panel a { display: flex; align-items: center; gap: 12px; padding: 11px 8px; border-radius: 7px; font-size: .85rem; }
.nav-account-panel a:hover { background: #2a1e33; }
.nav-account-panel a > i { width: 18px; color: var(--lilac); }
.nav-account-panel .nav-account-logout, .nav-account-panel .nav-account-logout > i { color: #ff9b62; }
.nav-account summary:focus-visible, .nav-account a:focus-visible { outline: 2px solid var(--lilac); outline-offset: 4px; }
@media (max-width: 1100px) { .logged-in .nav-inner { grid-template-columns: 1fr auto auto; gap: 14px; } }
@media (max-width: 500px) { .nav-account-name { display: none; } .nav-account-panel { position: fixed; top: 85px; right: 20px; } }

/* Global footer — editorial CTA, clear navigation and staff access. */
.site-footer { position: relative; isolation: isolate; overflow: hidden; background: #0a090c; border-top: 1px solid rgba(255,255,255,.1); }
.footer-glow { position: absolute; z-index: -1; top: -320px; right: -180px; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle, rgba(177,106,255,.17), rgba(57,13,158,.08) 42%, transparent 70%); pointer-events: none; }
.footer-cta { padding-top: clamp(70px, 9vw, 130px); padding-bottom: clamp(65px, 8vw, 110px); }
.footer-cta > .section-label { margin-bottom: 30px; }
.footer-cta > a { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.22); }
.footer-cta > a > span { font-family: var(--font-head); font-size: clamp(3rem, 7vw, 7.2rem); line-height: .96; letter-spacing: -.055em; }
.footer-cta > a > i { display: grid; flex: 0 0 auto; place-items: center; width: clamp(64px, 8vw, 110px); height: clamp(64px, 8vw, 110px); border-radius: 50%; background: var(--orange); color: #111014; font-family: var(--font-body); font-size: clamp(2rem, 4vw, 4rem); font-style: normal; transition: transform .35s ease, background .35s ease; }
.footer-cta > a:hover > i { transform: rotate(45deg) scale(1.04); background: var(--lilac); }
.footer-main { display: grid; grid-template-columns: minmax(260px, 1fr) 1.65fr; gap: clamp(50px, 9vw, 140px); padding-top: 64px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .footer-logo { display: block; width: auto; height: 40px; margin-bottom: 28px; }
.footer-brand > p { max-width: 370px; color: #a9a5af; font-size: .95rem; line-height: 1.75; }
.footer-email { display: inline-flex; gap: 24px; align-items: center; margin-top: 28px; padding-bottom: 7px; border-bottom: 1px solid var(--orange); font-size: .9rem; }
.footer-email span { color: var(--orange); }
.footer-nav { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(24px, 5vw, 70px); }
.site-footer .footer-col h2 { margin-bottom: 25px; color: #817b88; font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.site-footer .footer-col ul { display: flex; flex-direction: column; gap: 15px; margin: 0; padding: 0; list-style: none; }
.site-footer .footer-col a { display: inline-flex; align-items: center; gap: 10px; color: #d1cdd5; font-size: .9rem; line-height: 1.45; transition: color .25s ease, transform .25s ease; }
.site-footer .footer-col a:hover { color: var(--orange); transform: translateX(3px); }
.footer-col-staff a > i { width: 16px; color: var(--lilac); font-size: .78rem; text-align: center; }
.footer-lower { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.1); }
.site-footer .footer-social { display: flex; gap: 9px; }
.site-footer .footer-social a { display: grid; place-items: center; width: 38px; height: 38px; margin: 0; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: #b8b3be; }
.site-footer .footer-social a:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.footer-session { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 22px; color: #928c99; font-size: .78rem; }
.footer-session strong { color: #d8d3dc; font-weight: 500; }
.footer-session a, .footer-staff-login { display: inline-flex; align-items: center; gap: 8px; color: var(--lilac); font-size: .8rem; }
.footer-session a:hover, .footer-staff-login:hover { color: var(--orange); }
.footer-meta { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; padding-top: 24px; padding-bottom: 32px; color: #68636e; font-size: .68rem; letter-spacing: .04em; }
.footer-meta > div { display: flex; flex-wrap: wrap; gap: 15px 28px; }
.footer-meta a { color: #918a98; }
.site-footer a:focus-visible { outline: 2px solid var(--lilac); outline-offset: 5px; }
@media (max-width: 850px) {
  .footer-main { grid-template-columns: 1fr; gap: 55px; }
  .footer-brand > p { max-width: 470px; }
}
@media (max-width: 580px) {
  .footer-cta > a { align-items: center; }
  .footer-cta > a > i { width: 58px; height: 58px; font-size: 2rem; }
  .footer-nav { grid-template-columns: 1fr 1fr; row-gap: 45px; }
  .footer-col-staff { grid-column: 1 / -1; }
  .footer-lower, .footer-meta { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  .footer-cta > a > i, .site-footer .footer-col a, .site-footer .footer-social a { transition: none; }
}

/* Global search panel and results. */
.site-search-panel[hidden] { display: none; }
.site-search-panel { position: fixed; z-index: 100000; inset: 0; display: grid; align-items: start; padding: 90px 20px 20px; opacity: 0; transition: opacity .22s ease; }
.site-search-panel.is-open { opacity: 1; }
.site-search-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(4,3,6,.82); backdrop-filter: blur(12px); cursor: default; }
.site-search-dialog { position: relative; width: min(920px, 100%); margin: 0 auto; padding: clamp(25px, 5vw, 52px); border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: #121015; box-shadow: 0 30px 100px rgba(0,0,0,.6); transform: translateY(-18px); transition: transform .28s ease; }
.site-search-panel.is-open .site-search-dialog { transform: none; }
.site-search-topline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 38px; }
.site-search-close { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: transparent; color: #f5f4f1; cursor: pointer; }
.site-search-form { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,.28); }
.site-search-form input { min-width: 0; border: 0; outline: 0; background: transparent; color: #f5f4f1; font-family: var(--font-head); font-size: clamp(1.6rem, 4vw, 3.6rem); line-height: 1.2; }
.site-search-form input::placeholder { color: #69636f; }
.site-search-form button { display: grid; place-items: center; width: 52px; height: 52px; border: 0; border-radius: 50%; background: var(--orange); color: #121015; cursor: pointer; font-size: 1.1rem; }
.site-search-hint { margin-top: 18px; color: #8f8996; font-size: .8rem; }
.site-search-panel button:focus-visible, .site-search-panel input:focus-visible { outline: 2px solid var(--lilac); outline-offset: 5px; }
.search-results-page { min-height: 70vh; padding-top: 170px; padding-bottom: 100px; }
.search-results-head { padding-bottom: 55px; }
.search-results-head h1 { max-width: 980px; margin: 22px 0 36px; font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 5.3rem); line-height: 1.08; letter-spacing: -.045em; overflow-wrap: anywhere; }
.search-results-form { display: flex; gap: 12px; width: min(680px, 100%); }
.search-results-form input { min-width: 0; flex: 1; min-height: 50px; padding: 12px 16px; border: 1px solid #4c4253; border-radius: 8px; background: #151219; color: #f5f4f1; font: inherit; }
.search-results-form button { min-height: 50px; padding: 12px 22px; border: 0; border-radius: 8px; background: var(--orange); color: #141116; font-weight: 700; cursor: pointer; }
.search-results-list { border-top: 1px solid rgba(255,255,255,.15); }
.search-result-item { position: relative; display: grid; grid-template-columns: 120px minmax(180px, .85fr) 1fr 42px; gap: 28px; align-items: start; padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.search-result-item > p:first-child { color: var(--orange); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.search-result-item h2 { font-size: clamp(1.15rem, 2vw, 1.7rem); line-height: 1.3; overflow-wrap: anywhere; }
.search-result-item > p:not(:first-child) { color: #a9a3af; font-size: .9rem; line-height: 1.7; }
.search-result-arrow { color: var(--lilac); font-size: 1.5rem; }
.search-result-item:hover h2 a { color: var(--orange); }
.search-empty { padding: 65px 0; }
.search-empty h2 { margin-bottom: 12px; font-size: 1.8rem; }
.search-empty p { color: #a9a3af; }
.search-empty > div { display: flex; gap: 12px; margin-top: 24px; }
.search-empty a { padding: 11px 17px; border: 1px solid #4c4253; border-radius: 24px; }
@media (max-width: 760px) {
  .site-search-panel { padding-top: 75px; }
  .search-results-page { padding-top: 130px; }
  .search-result-item { grid-template-columns: 80px 1fr 32px; gap: 15px; }
  .search-result-item > p:not(:first-child) { grid-column: 2 / -1; }
  .search-result-arrow { grid-column: 3; grid-row: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .site-search-panel, .site-search-dialog { transition: none; }
}

/* Client survey — dedicated, focused Gravity Forms experience. */
.client-survey-page { background: #0d0d0f; }
.client-survey-hero { position: relative; isolation: isolate; overflow: hidden; padding: clamp(155px, 17vw, 230px) 0 clamp(75px, 9vw, 125px); border-bottom: 1px solid rgba(255,255,255,.11); }
.client-survey-hero::before { content: ''; position: absolute; z-index: -2; right: -10vw; top: -30vw; width: 75vw; height: 75vw; border-radius: 50%; background: radial-gradient(circle, rgba(177,106,255,.2), rgba(57,13,158,.08) 38%, transparent 67%); }
.client-survey-hero-inner { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.55fr); gap: clamp(45px, 8vw, 130px); align-items: end; }
.client-survey-hero h1 { max-width: 960px; margin-top: 27px; font-family: var(--font-head); font-size: clamp(3rem, 7.2vw, 7.4rem); line-height: .95; letter-spacing: -.055em; }
.client-survey-hero h1 span { color: var(--orange); }
.client-survey-intro { max-width: 440px; padding-bottom: 9px; color: #bcb7c2; font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.75; }
.client-survey-orbit { position: absolute; z-index: -1; right: -8vw; bottom: -23vw; width: 46vw; height: 46vw; border: 1px solid rgba(255,91,0,.3); border-radius: 50%; box-shadow: 0 0 0 6vw rgba(177,106,255,.025), 0 0 0 12vw rgba(255,91,0,.018); }
.client-survey-form-section { padding: clamp(70px, 9vw, 125px) 0; }
.client-survey-shell { display: grid; grid-template-columns: minmax(220px, .55fr) minmax(0, 1.35fr); gap: clamp(45px, 8vw, 125px); align-items: start; }
.client-survey-aside { position: sticky; top: 130px; }
.client-survey-kicker { margin-bottom: 22px; color: var(--orange); font-size: .72rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.client-survey-aside h2 { margin-bottom: 23px; font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 3.2rem); line-height: 1.05; letter-spacing: -.035em; }
.client-survey-aside > p:not(.client-survey-kicker) { max-width: 340px; margin-bottom: 38px; color: #9e98a5; }
.client-survey-detail { display: flex; align-items: center; gap: 16px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.11); color: #c7c2cc; font-size: .86rem; }
.client-survey-detail:last-child { border-bottom: 1px solid rgba(255,255,255,.11); }
.client-survey-detail span { color: var(--lilac); font-size: .68rem; letter-spacing: .08em; }
.client-survey-card { min-width: 0; padding: clamp(25px, 4.5vw, 58px); border: 1px solid #e3dee7; border-radius: 20px; background: #f5f4f1; color: #211b24; box-shadow: 0 35px 100px rgba(0,0,0,.32); }
.client-survey-card .gform_wrapper.gravity-theme { margin: 0; font-family: var(--font-body); }
.client-survey-card .gform_required_legend { margin-bottom: 32px; color: #756e79; font-size: .76rem; }
.client-survey-card .gfield_required { color: #d94a00; }
.client-survey-card .gf_progressbar_wrapper { margin: 0 0 clamp(34px,5vw,58px); padding-bottom: 28px; border-bottom: 1px solid #ddd7df; }
.client-survey-card .gf_progressbar_title { margin-bottom: 12px !important; color: #665f6a; font-size: .7rem !important; font-weight: 700 !important; letter-spacing: .12em !important; text-transform: uppercase; }
.client-survey-card .gf_progressbar { height: 7px; border-radius: 20px; background: #ded9e1; box-shadow: none; }
.client-survey-card .gf_progressbar_percentage { height: 7px; border-radius: 20px; background: linear-gradient(90deg, var(--orange), var(--lilac)); }
.client-survey-card .gf_progressbar_percentage span { position: absolute; overflow: hidden; width: 1px; height: 1px; clip: rect(0,0,0,0); }
.client-survey-card .gform_fields { row-gap: 30px !important; }
.client-survey-card .gfield_label { margin-bottom: 11px !important; color: #211b24 !important; font-size: .95rem !important; font-weight: 700 !important; line-height: 1.45 !important; }
.client-survey-card .gfield_description { padding-top: 8px !important; color: #746e77 !important; font-size: .8rem !important; }
.client-survey-card input[type=text], .client-survey-card input[type=email], .client-survey-card input[type=tel], .client-survey-card input[type=url], .client-survey-card input[type=number], .client-survey-card select, .client-survey-card textarea { width: 100%; border: 1px solid #cfc8d2 !important; border-radius: 9px !important; background: #fff !important; color: #211b24 !important; box-shadow: none !important; font: inherit !important; transition: border-color .2s, box-shadow .2s; }
.client-survey-card input[type=text], .client-survey-card input[type=email], .client-survey-card input[type=tel], .client-survey-card input[type=url], .client-survey-card input[type=number], .client-survey-card select { min-height: 52px; padding: 11px 14px !important; }
.client-survey-card textarea { min-height: 120px; padding: 14px !important; resize: vertical; }
.client-survey-card input:focus, .client-survey-card select:focus, .client-survey-card textarea:focus { outline: 0; border-color: var(--purple) !important; box-shadow: 0 0 0 3px rgba(57,13,158,.12) !important; }
.client-survey-card .gfield_radio { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 9px; }
.client-survey-card .gchoice { position: relative; min-width: 0; }
.client-survey-card .gchoice input[type=radio] { position: absolute; opacity: 0; pointer-events: none; }
.client-survey-card .gchoice label { display: grid !important; place-items: center; width: 100%; min-height: 49px; margin: 0 !important; padding: 8px 7px; border: 1px solid #d2cbd5; border-radius: 8px; background: #fff; color: #4e4752; font-size: .78rem !important; line-height: 1.2; text-align: center; cursor: pointer; transition: border-color .2s, background .2s, color .2s, transform .2s; }
.client-survey-card .gchoice label:hover { border-color: var(--lilac); transform: translateY(-2px); }
.client-survey-card .gchoice input:checked + label { border-color: var(--purple); background: var(--purple); color: #fff; }
.client-survey-card .gchoice input:focus-visible + label { outline: 3px solid rgba(177,106,255,.35); outline-offset: 2px; }
.client-survey-card .gform_page_footer { display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin-top: 44px !important; padding-top: 25px !important; border-top: 1px solid #ddd7df !important; }
.client-survey-card .gform_page_footer input.button, .client-survey-card .gform_footer input.button { min-width: 130px; min-height: 50px; margin: 0 !important; padding: 12px 24px !important; border: 1px solid #211b24 !important; border-radius: 28px !important; background: #211b24 !important; color: #fff !important; font: 700 .82rem var(--font-body) !important; cursor: pointer; transition: background .2s, border-color .2s, transform .2s; }
.client-survey-card .gform_page_footer input.button:hover, .client-survey-card .gform_footer input.button:hover { border-color: var(--orange) !important; background: var(--orange) !important; transform: translateY(-2px); }
.client-survey-card .gform_page_footer input.gform_previous_button { margin-right: auto !important; border-color: #bfb7c2 !important; background: transparent !important; color: #4d4650 !important; }
.client-survey-card .gform_validation_errors { margin-bottom: 28px; border: 1px solid #d94a00 !important; border-radius: 10px; background: #fff2eb; box-shadow: none !important; }
.client-survey-card .gform_validation_errors h2, .client-survey-card .validation_message { color: #a73800 !important; font-family: var(--font-body) !important; }
.client-survey-card .gfield_error [aria-invalid=true] { border-color: #d94a00 !important; }
.client-survey-card .gform_ajax_spinner { width: 24px; }
.client-survey-unavailable { padding: 30px; border: 1px solid #d6ced9; border-radius: 10px; text-align: center; }
@media (max-width: 900px) {
  .client-survey-hero-inner, .client-survey-shell { grid-template-columns: 1fr; }
  .client-survey-hero-inner { align-items: start; gap: 30px; }
  .client-survey-aside { position: static; }
  .client-survey-aside > p:not(.client-survey-kicker) { max-width: 540px; }
  .client-survey-detail { display: inline-flex; margin-right: 24px; border: 0 !important; }
}
@media (max-width: 600px) {
  .client-survey-hero { padding-top: 130px; }
  .client-survey-form-section { padding-top: 55px; }
  .client-survey-card { border-radius: 14px; }
  .client-survey-card .gfield_radio { grid-template-columns: 1fr 1fr; }
  .client-survey-card .gform_page_footer { flex-wrap: wrap; }
  .client-survey-card .gform_page_footer input.button { flex: 1; min-width: 115px; }
}

/* Survey refinement: match the contact page and make the form controls direct. */
.client-survey-page { background: #08080a; overflow: hidden; }
.client-survey-page .client-survey-hero { min-height: 78vh; display: flex; align-items: end; padding: 170px 0 90px; }
.client-survey-page .client-survey-hero::before { display: none; }
.client-survey-page .client-survey-hero::after { content: ''; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, var(--orange), var(--lilac), transparent); opacity: .6; }
.client-survey-page .client-survey-hero-inner { display: block; }
.client-survey-page .client-survey-hero h1 { max-width: 1100px; margin-top: 0; color: #fff; font-size: clamp(3.6rem, 9vw, 9.5rem); line-height: .82; letter-spacing: .01em; text-transform: uppercase; }
.client-survey-page .client-survey-hero h1 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.7); }
.client-survey-page .client-survey-hero-inner > p:last-child { max-width: 560px; margin-top: 34px; padding: 0; color: rgba(245,244,241,.62); font-size: clamp(1rem,1.4vw,1.2rem); line-height: 1.7; }
.client-survey-page .client-survey-form-section { padding: clamp(80px,9vw,125px) 0 clamp(95px,11vw,150px); }
.client-survey-page .client-survey-shell { display: block; }
.client-survey-form-head { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 38px; }
.client-survey-form-head > p:last-child { max-width: 420px; color: var(--muted); line-height: 1.7; text-align: right; }
.client-survey-page .client-survey-card { width: 100%; padding: clamp(28px,5vw,70px); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.012)); color: var(--text); box-shadow: none; }
.client-survey-card .gform_required_legend { color: #8f8996; }
.client-survey-card .gf_progressbar_wrapper { border-color: rgba(255,255,255,.12); }
.client-survey-card .gf_progressbar_title { color: #9b95a0; }
.client-survey-card .gf_progressbar { background: #252229; }
.client-survey-card .gf_progressbar_wrapper { margin-bottom: clamp(32px,4vw,48px) !important; padding-bottom: 26px; }
.client-survey-card .gf_progressbar_title { margin: 0 0 14px !important; color: #a8a2ad !important; line-height: 1 !important; }
.client-survey-card .gf_progressbar { position: relative; overflow: hidden; width: 100%; height: 6px !important; min-height: 6px !important; border-radius: 0 !important; background: rgba(255,255,255,.13) !important; box-shadow: none !important; }
.client-survey-card .gf_progressbar_percentage { display: block !important; height: 6px !important; min-height: 6px !important; border-radius: 0 !important; background: linear-gradient(90deg,var(--orange),var(--lilac)) !important; box-shadow: none !important; }
.client-survey-card .gf_progressbar_percentage span { display: none !important; }
.client-survey-card .gform_fields { row-gap: clamp(27px,4vw,40px) !important; }
.client-survey-card .gfield_label { color: #f5f4f1 !important; font-size: 1rem !important; }
.client-survey-card .gfield_description { color: #938d99 !important; }
.client-survey-card input[type=text], .client-survey-card input[type=email], .client-survey-card input[type=tel], .client-survey-card input[type=url], .client-survey-card input[type=number], .client-survey-card select, .client-survey-card textarea { border-color: #403a45 !important; background: #0d0d0f !important; color: #f5f4f1 !important; }
.client-survey-card input::placeholder, .client-survey-card textarea::placeholder { color: #706a75; }
.client-survey-card input:focus, .client-survey-card select:focus, .client-survey-card textarea:focus { border-color: var(--lilac) !important; box-shadow: 0 0 0 3px rgba(177,106,255,.13) !important; }
.client-survey-card .gchoice label { min-height: 54px; border-color: #403a45; border-radius: 7px; background: #111014; color: #bbb5c0; font-size: .82rem !important; }
.client-survey-card .gchoice label:hover { border-color: var(--orange); color: #fff; }
.client-survey-card .gchoice input:checked + label { border-color: var(--orange); background: var(--orange); color: #141116; font-weight: 700; }
.client-survey-card .gform_page_footer, .client-survey-card .gform_footer { gap: 14px; margin-top: 50px !important; padding-top: 28px !important; border-top: 1px solid rgba(255,255,255,.13) !important; }
.client-survey-card .gform_page_footer .button, .client-survey-card .gform_footer .button { display: inline-flex !important; align-items: center; justify-content: center; width: auto !important; min-width: 168px; min-height: 56px; margin: 0 !important; padding: 14px 30px !important; border: 1px solid var(--orange) !important; border-radius: 5px !important; background: var(--orange) !important; color: #141116 !important; box-shadow: none !important; font: 700 .76rem var(--font-body) !important; letter-spacing: .12em; line-height: 1 !important; text-transform: uppercase; cursor: pointer; transition: background .2s,border-color .2s,color .2s,transform .2s; }
.client-survey-card .gform_page_footer .button:hover, .client-survey-card .gform_footer .button:hover { border-color: var(--lilac) !important; background: var(--lilac) !important; color: #141116 !important; transform: translateY(-3px); }
.client-survey-card .gform_page_footer .gform_previous_button { margin-right: auto !important; border-color: #4a444f !important; background: transparent !important; color: #d3ced7 !important; }
.client-survey-card .gform_page_footer .gform_previous_button:hover { border-color: #f5f4f1 !important; background: #f5f4f1 !important; color: #141116 !important; }
.client-survey-card .gform_save_link { align-self: center; padding: 8px 2px !important; border: 0 !important; background: transparent !important; color: #96909c !important; font-size: .75rem !important; text-decoration: underline; text-underline-offset: 4px; }
.client-survey-card .gform_save_link:hover { color: var(--lilac) !important; }
.client-survey-card .gform_validation_errors { background: #301a16; }
.client-survey-card .gform_validation_errors h2, .client-survey-card .validation_message { color: #ffad82 !important; }
@media (max-width: 800px) {
  .client-survey-page .client-survey-hero { min-height: 70vh; padding-bottom: 64px; }
  .client-survey-form-head { display: block; }
  .client-survey-form-head > p:last-child { margin-top: 18px; text-align: left; }
}
@media (max-width: 520px) {
  .client-survey-card .gfield_radio { grid-template-columns: 1fr; }
  .client-survey-card .gform_page_footer, .client-survey-card .gform_footer { display: grid; grid-template-columns: 1fr 1fr; }
  .client-survey-card .gform_page_footer .button, .client-survey-card .gform_footer .button { width: 100% !important; min-width: 0; }
  .client-survey-card .gform_footer .button { grid-column: 1 / -1; }
  .client-survey-card .gform_save_link { grid-column: 1 / -1; justify-self: center; }
}

/* Homepage scroll position and continuous motion cue. */
.home-scroll-progress { position: fixed; z-index: 9990; top: 50%; right: 18px; width: 2px; height: 104px; background: rgba(255,255,255,.14); transform: translateY(-50%); pointer-events: none; }
.frwd-about-teaser, .frwd-services-section, .frwd-works-section, .frwd-journal-section, .frwd-manifesto-section { scroll-margin-top: 100px; }
.home-scroll-progress > span { display: block; width: 100%; height: 100%; background: linear-gradient(180deg,var(--orange),var(--lilac)); transform: scaleY(0); transform-origin: top; will-change: transform; }
@media (max-width: 760px) { .home-scroll-progress { right: 7px; height: 72px; } }
@media (prefers-reduced-motion: reduce) { .home-scroll-progress { display: none; } }
