@font-face {
  font-family: "Alexandria";
  src: url("/assets/fonts/Alexandria-wght.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-Variable.ttf") format("truetype");
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --yellow: #e9a600;
  --yellow-bright: #f2b600;
  --amber: #c97000;
  --deep: #7a3900;
  --ink: #10100f;
  --graphite: #2a2925;
  --muted: #716c61;
  --ivory: #fffaee;
  --mist: #f4efe4;
  --sand: #e8dfc9;
  --white: #fff;
  --shell: 1180px;
  --gutter: clamp(18px, 4vw, 58px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ivory); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Alexandria", "Geeza Pro", Tahoma, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::selection { color: var(--ink); background: var(--yellow); }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p, figure { margin: 0; }
bdi { font-family: "Manrope", Arial, sans-serif; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--amber); outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; clip-path: inset(50%); }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  inset-inline-start: 10px;
  padding: 9px 12px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.site-header.is-scrolled {
  border-color: rgba(16, 16, 15, 0.1);
  background: rgba(255, 250, 238, 0.93);
  backdrop-filter: blur(14px);
}
.header-inner {
  display: grid;
  min-height: 74px;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 36px;
}
.brand { position: relative; display: inline-flex; width: 154px; padding-bottom: 8px; }
.brand img { width: 100%; height: auto; }
.brand-ar {
  position: absolute;
  bottom: 0;
  left: 36%;
  width: 32%;
  color: var(--amber);
  font-size: 7px;
  font-weight: 750;
  line-height: 1;
  text-align: center;
}
.nav { display: flex; justify-content: center; gap: clamp(22px, 3vw, 42px); }
.nav a {
  position: relative;
  color: var(--graphite);
  font-size: 11px;
  font-weight: 600;
}
.nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--amber);
  content: "";
  transition: width 180ms ease;
}
.nav a:hover::after { width: 100%; }
.header-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 700;
}
.header-cta svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 74px;
  background:
    radial-gradient(circle at 10% 24%, rgba(233, 166, 0, 0.08), transparent 29%),
    var(--ivory);
}
.hero-grid {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(56px, 8vw, 118px);
  padding-block: 72px 64px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--amber);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.kicker i { width: 30px; height: 1px; background: var(--sand); }
.hero h1 {
  max-width: 760px;
  margin-top: 28px;
  font-size: clamp(56px, 6.3vw, 82px);
  font-weight: 730;
  line-height: 1.15;
  letter-spacing: -0.045em;
}
.hero h1 em { color: var(--amber); font-style: normal; }
.hero-lead {
  max-width: 650px;
  margin-top: 28px;
  color: var(--graphite);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.9;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 38px; }
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding-inline: 20px;
  font-size: 11px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}
.button-primary { color: var(--white); background: var(--ink); }
.button-primary:hover { background: var(--amber); transform: translateY(-2px); }
.text-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--sand);
  padding-block: 8px;
  color: var(--graphite);
  font-size: 10px;
  font-weight: 700;
}
.text-action:hover { color: var(--amber); }

.hero-stage {
  position: relative;
  display: grid;
  min-height: 540px;
  grid-template-rows: auto 1fr auto auto;
  border: 1px solid rgba(16, 16, 15, 0.16);
  padding: 24px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 24px 24px 0 rgba(122, 57, 0, 0.09);
}
.hero-stage::after {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 67%;
  aspect-ratio: 1;
  border: 1px solid rgba(16, 16, 15, 0.15);
  border-radius: 50%;
  content: "";
  transform: translate(50%, -50%);
}
.stage-top, .stage-bottom { position: relative; z-index: 2; display: flex; align-items: flex-start; justify-content: space-between; }
.stage-top bdi, .stage-top span, .stage-bottom bdi { font-family: "Manrope", Arial, sans-serif; font-size: 8px; font-weight: 800; letter-spacing: 0.14em; }
.hero-stage > img {
  position: relative;
  z-index: 2;
  width: min(62%, 265px);
  place-self: center;
  filter: brightness(0) saturate(100%);
}
.stage-rail { position: relative; z-index: 2; display: flex; align-items: center; gap: 9px; padding-block: 20px; font-size: 8px; font-weight: 700; }
.stage-rail i { flex: 1; height: 1px; background: rgba(16, 16, 15, 0.24); }
.stage-bottom { align-items: flex-end; border-top: 1px solid rgba(16, 16, 15, 0.22); padding-top: 18px; }
.stage-bottom strong { font-size: 19px; line-height: 1.4; }
.hero-ticker { overflow: hidden; border-block: 1px solid var(--sand); background: var(--white); direction: ltr; }
.hero-ticker div { display: flex; width: max-content; align-items: center; gap: 22px; padding-block: 13px; animation: ticker 30s linear infinite; }
.hero-ticker div::after { content: "STRATEGY  —  PERFORMANCE  —  CONTENT  —  TECHNOLOGY  —  GROWTH"; padding-inline-start: 22px; color: var(--muted); font: 700 9px/1 "Manrope", Arial, sans-serif; letter-spacing: 0.18em; }
.hero-ticker span { color: var(--muted); font: 700 9px/1 "Manrope", Arial, sans-serif; letter-spacing: 0.18em; }
.hero-ticker i { width: 5px; height: 5px; background: var(--yellow); transform: rotate(45deg); }

.section { padding-block: clamp(82px, 10vw, 128px); }
.editorial-grid { display: grid; grid-template-columns: 145px minmax(0, 1fr); gap: clamp(32px, 6vw, 86px); align-items: start; }
.section-index { display: flex; align-items: center; gap: 15px; color: var(--amber); font-size: 9px; font-weight: 700; white-space: nowrap; }
.section-index bdi { font-size: 8px; }
.section-index::after { width: 32px; height: 1px; background: currentColor; content: ""; opacity: 0.55; }
.about-copy h2, .section-heading h2, .team-intro h2 {
  font-size: clamp(40px, 4.7vw, 60px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.035em;
}
.about-copy > p { max-width: 720px; margin-top: 24px; color: var(--muted); font-size: 15px; line-height: 2; }
.services { overflow-anchor: none; border-block: 1px solid var(--sand); background: var(--white); }
.section-heading { display: grid; grid-template-columns: 145px 1fr; gap: clamp(34px, 6vw, 86px); }
.section-heading h2 em, .team-intro h2 em { color: var(--amber); font-style: normal; }
.section-heading > div > p { margin-top: 15px; color: var(--muted); font-size: 12px; }
.performance-stack {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  margin-top: 58px;
  border-block: 1px solid var(--sand);
}
.performance-stack-summary { border-inline-end: 1px solid var(--sand); padding: 42px 0 44px clamp(34px, 5vw, 70px); }
.performance-stack-summary > span { color: var(--amber); font-size: 8px; font-weight: 700; }
.performance-stack-summary h3 { margin-top: 16px; font-size: clamp(30px, 3.5vw, 45px); font-weight: 700; line-height: 1.35; letter-spacing: -0.035em; }
.performance-stack-summary p { max-width: 470px; margin-top: 20px; color: var(--muted); font-size: 12px; line-height: 1.95; }
.performance-stack-list { margin: 0; padding: 0; list-style: none; }
.performance-stack-list li { display: grid; min-height: 94px; grid-template-columns: 44px 1fr; align-items: center; border-bottom: 1px solid var(--sand); padding-inline: clamp(24px, 4vw, 54px); }
.performance-stack-list li:last-child { border-bottom: 0; }
.performance-stack-list bdi { color: var(--amber); font-size: 8px; font-weight: 700; }
.performance-stack-list div { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; }
.performance-stack-list strong { font-size: 14px; font-weight: 700; }
.performance-stack-list span { color: var(--muted); font-size: 9px; text-align: end; }
.journey { display: grid; overflow-anchor: none; grid-template-columns: minmax(265px, 0.8fr) minmax(0, 1.2fr); margin-top: 58px; border-top: 1px solid var(--sand); }
.journey-nav { position: relative; }
.journey-tab {
  display: grid;
  width: 100%;
  min-height: 54px;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 10px;
  border: 0;
  border-bottom: 1px solid var(--sand);
  padding: 0;
  color: var(--muted);
  background: transparent;
  text-align: start;
  cursor: pointer;
  transition: color 180ms ease, padding 180ms ease;
}
.journey-tab bdi { font-size: 8px; }
.journey-tab span { font-size: 11px; font-weight: 600; }
.journey-tab::after { width: 0; height: 2px; background: var(--yellow); content: ""; transition: width 180ms ease; }
.journey-tab:hover, .journey-tab.is-active { color: var(--ink); }
.journey-tab.is-active { padding-inline-start: 12px; }
.journey-tab.is-active::after { width: 28px; }
.journey-progress { position: absolute; right: -1px; bottom: 0; left: auto; width: 2px; height: 100%; background: var(--mist); }
.journey-progress span { display: block; width: 100%; height: 12.5%; background: var(--yellow); transition: height 260ms ease; }
.journey-panel {
  display: grid;
  min-height: 432px;
  grid-template-columns: 82px 1fr;
  align-content: center;
  border-bottom: 1px solid var(--sand);
  border-inline-start: 1px solid var(--sand);
  padding: 48px clamp(34px, 6vw, 78px);
}
.journey-panel.is-changing .journey-copy { animation: panel-in 280ms ease both; }
.journey-mark { display: flex; flex-direction: column; gap: 8px; color: var(--amber); }
.journey-mark span { font-size: 8px; font-weight: 700; }
.journey-mark bdi { font-size: 22px; font-weight: 700; }
.journey-copy > p:first-child { color: var(--amber); font-size: 8px; font-weight: 700; }
.journey-copy h3 { max-width: 610px; margin-top: 10px; font-size: clamp(28px, 3.4vw, 42px); font-weight: 700; line-height: 1.35; }
.journey-copy > p:not(:first-child) { max-width: 670px; margin-top: 17px; color: var(--muted); font-size: 13px; line-height: 1.95; }
.journey-tags { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 26px; }
.journey-tags span { display: inline-flex; align-items: center; gap: 8px; color: var(--graphite); font-size: 9px; font-weight: 700; }
.journey-tags span::before { width: 5px; height: 5px; background: var(--yellow); content: ""; transform: rotate(45deg); }
.journey-controls { display: flex; grid-column: 2; align-items: center; gap: 14px; margin-top: 42px; border-top: 1px solid var(--sand); padding-top: 14px; color: var(--muted); font-size: 8px; }
.journey-controls button { display: grid; width: 27px; height: 27px; place-items: center; border: 0; padding: 0; color: var(--ink); background: transparent; cursor: pointer; }

.clients { overflow: hidden; background: var(--ivory); }
.clients-heading { margin-bottom: 58px; }
.client-group { display: grid; gap: 10px; margin-top: 34px; }
.client-group-head { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--sand); padding-bottom: 10px; }
.client-group-head h3 { font-size: 13px; font-weight: 700; }
.client-group-head span { color: var(--muted); font-size: 8px; }
.logo-marquee { position: relative; overflow: hidden; direction: ltr; touch-action: pan-y; }
.logo-marquee::before, .logo-marquee::after { position: absolute; z-index: 3; top: 0; bottom: 0; width: clamp(24px, 6vw, 100px); pointer-events: none; content: ""; }
.logo-marquee::before { left: 0; background: linear-gradient(90deg, var(--ivory), transparent); }
.logo-marquee::after { right: 0; background: linear-gradient(270deg, var(--ivory), transparent); }
.logo-track { display: flex; width: max-content; animation: logo-scroll 42s linear infinite; will-change: transform; }
.logo-marquee-reverse .logo-track { animation-direction: reverse; animation-duration: 34s; }
.logo-set { display: flex; flex: none; }
.logo-set figure { display: grid; width: 190px; min-height: 112px; flex: none; grid-template-rows: 1fr auto; border-inline-end: 1px solid var(--sand); padding: 15px 22px 10px; background: rgba(255, 255, 255, 0.45); }
.logo-set figure > img { width: min(100%, 136px); height: 62px; place-self: center; object-fit: contain; mix-blend-mode: multiply; }
.logo-set figcaption { color: var(--muted); font-size: 8px; font-weight: 600; text-align: center; direction: rtl; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }

.team { color: var(--ink); background: var(--white); }
.team-grid { display: grid; grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr); gap: clamp(55px, 9vw, 126px); }
.team-intro { position: sticky; top: 126px; align-self: start; }
.team-intro h2 { margin-top: 40px; }
.team .team-intro h2 em { color: var(--graphite); }
.team-list { margin: 0; padding: 0; list-style: none; counter-reset: team; }
.team-list li { display: grid; min-height: 91px; grid-template-columns: 45px 1fr; align-items: center; border-top: 1px solid var(--sand); }
.team-list li:last-child { border-bottom: 1px solid var(--sand); }
.team-list bdi { color: var(--amber); font-size: 8px; }
.team-list div { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.team-list strong { font-size: clamp(17px, 2vw, 23px); font-weight: 620; }
.team-list span { max-width: 330px; color: var(--muted); font-size: 9px; text-align: end; }

.contact { border-top: 1px solid var(--sand); color: var(--ink); background: var(--mist); }
.contact-grid { display: grid; min-height: 550px; grid-template-columns: 145px 1fr minmax(260px, 0.7fr); align-items: center; gap: clamp(36px, 6vw, 86px); padding-block: 92px; }
.section-index-dark { color: var(--amber); }
.contact-copy > span { font-size: 9px; font-weight: 700; }
.contact-copy h2 { margin-top: 14px; font-size: clamp(23px, 2.7vw, 32px); font-weight: 720; line-height: 1.45; letter-spacing: -0.025em; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-actions a {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid var(--sand);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(122, 57, 0, 0.06);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.contact-actions a:hover { border-color: var(--yellow); color: var(--white); background: var(--yellow); transform: translateY(-4px); }
.contact-actions svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-actions .icon-fill { fill: currentColor; stroke: none; }

.footer { border-top: 1px solid var(--sand); padding-block: 36px 20px; color: var(--ink); background: var(--white); }
.footer-main { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 48px; }
.footer-brand { display: flex; align-items: center; gap: 26px; }
.footer-brand img { width: 145px; height: auto; }
.footer-brand > span { border-inline-start: 1px solid var(--sand); padding-inline-start: 24px; color: var(--muted); font-size: 8px; }
.footer-registry { display: flex; align-items: center; gap: 10px; font-size: 8px; }
.footer-registry span { color: var(--muted); }
.footer-registry bdi { color: var(--amber); font-size: 10px; font-weight: 700; }
.footer-top { display: inline-flex; align-items: center; gap: 10px; font-size: 8px; }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid var(--sand); margin-top: 28px; padding-top: 16px; color: var(--muted); font-size: 7px; }

.not-found { display: grid; min-height: 100vh; place-content: center; justify-items: center; gap: 24px; padding: 30px; text-align: center; }
.not-found img { width: 180px; }
.not-found bdi { color: var(--yellow); font-size: 82px; font-weight: 800; line-height: 1; }
.not-found h1 { font-size: clamp(26px, 5vw, 44px); }

.reveal { opacity: 1; transform: none; }
.reveal.is-visible { animation: reveal-rise 650ms cubic-bezier(.22,1,.36,1) both; }

@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes logo-scroll { to { transform: translateX(-50%); } }
@keyframes panel-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes reveal-rise { from { opacity: 0.35; transform: translateY(18px); } to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  .header-inner { grid-template-columns: 145px 1fr auto; gap: 24px; }
  .nav { gap: 22px; }
  .hero-grid { min-height: 690px; grid-template-columns: minmax(0, 1fr) 310px; gap: 46px; }
  .hero-stage { min-height: 460px; }
  .editorial-grid { grid-template-columns: 120px 1fr; }
  .section-heading { grid-template-columns: 120px 1fr; }
  .journey { grid-template-columns: 245px 1fr; }
  .contact-grid { grid-template-columns: 110px 1fr; }
  .contact-actions { grid-column: 2; width: min(100%, 620px); }
}

@media (max-width: 760px) {
  :root { --gutter: 20px; }
  body { font-size: 13px; }
  .site-header { background: rgba(255, 250, 238, 0.94); backdrop-filter: blur(12px); }
  .header-inner { min-height: 62px; grid-template-columns: 128px 1fr; }
  .brand { width: 124px; }
  .nav { display: none; }
  .header-cta { justify-self: end; font-size: 9px; }
  .hero { padding-top: 62px; }
  .hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 46px; padding-block: 70px 52px; }
  .hero h1 { margin-top: 22px; font-size: clamp(41px, 12vw, 58px); line-height: 1.2; }
  .hero-lead { margin-top: 22px; font-size: 13px; line-height: 1.9; }
  .hero-actions { gap: 17px; margin-top: 30px; }
  .button { min-height: 42px; padding-inline: 16px; font-size: 10px; }
  .text-action { font-size: 9px; }
  .hero-stage { min-height: 390px; box-shadow: 13px 13px 0 rgba(122, 57, 0, 0.1); }
  .hero-stage > img { width: 52%; }
  .stage-bottom strong { font-size: 16px; }
  .section { padding-block: 76px; }
  .editorial-grid, .section-heading { grid-template-columns: 1fr; gap: 34px; }
  .about-copy h2, .section-heading h2, .team-intro h2 { font-size: 36px; }
  .about-copy > p { margin-top: 18px; font-size: 13px; }
  .performance-stack { grid-template-columns: 1fr; margin-top: 42px; }
  .performance-stack-summary { border-inline-end: 0; border-bottom: 1px solid var(--sand); padding: 34px 0; }
  .performance-stack-summary h3 { font-size: 32px; }
  .performance-stack-list li { min-height: 82px; padding-inline: 0; }
  .performance-stack-list div { align-items: flex-start; flex-direction: column; justify-content: center; gap: 3px; }
  .performance-stack-list strong { font-size: 13px; }
  .performance-stack-list span { font-size: 8px; text-align: start; }
  .journey { grid-template-columns: 1fr; margin-top: 42px; }
  .journey-nav { display: flex; overflow-x: auto; border-bottom: 1px solid var(--sand); scrollbar-width: none; scroll-snap-type: x proximity; }
  .journey-nav::-webkit-scrollbar { display: none; }
  .journey-tab { width: 176px; min-width: 176px; min-height: 62px; grid-template-columns: 28px 1fr; border-bottom: 0; border-inline-end: 1px solid var(--sand); padding-inline: 12px; scroll-snap-align: start; }
  .journey-tab span { font-size: 10px; }
  .journey-tab::after { display: none; }
  .journey-tab.is-active { color: var(--ink); background: var(--yellow); }
  .journey-progress { display: none; }
  .journey-panel { min-height: 375px; grid-template-columns: 52px 1fr; border-inline-start: 0; padding: 36px 22px; }
  .journey-copy h3 { font-size: 27px; }
  .journey-copy > p:not(:first-child) { font-size: 12px; }
  .journey-controls { margin-top: 30px; }
  .clients-heading { margin-bottom: 42px; }
  .logo-set figure { width: 145px; min-height: 93px; padding: 11px 16px 8px; }
  .logo-set figure > img { width: min(100%, 108px); height: 49px; }
  .team-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-intro { position: static; }
  .team-intro h2 { margin-top: 28px; }
  .team-list li { min-height: 82px; grid-template-columns: 35px 1fr; }
  .team-list div { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; }
  .team-list strong { font-size: 17px; }
  .team-list span { font-size: 8px; text-align: start; }
  .contact-grid { min-height: 0; grid-template-columns: 1fr; gap: 38px; padding-block: 76px; }
  .contact-copy h2 { font-size: 24px; }
  .contact-actions { grid-column: auto; }
  .contact-actions a { width: 58px; height: 58px; }
  .footer { padding-block: 30px 18px; }
  .footer-main { grid-template-columns: 1fr auto; gap: 26px; }
  .footer-brand { align-items: flex-start; flex-direction: column; gap: 10px; }
  .footer-brand img { width: 124px; }
  .footer-brand > span { border-inline-start: 0; padding-inline-start: 0; }
  .footer-registry { justify-self: end; flex-direction: column; align-items: flex-end; gap: 2px; }
  .footer-top { display: none; }
}

@media (max-width: 380px) {
  :root { --gutter: 16px; }
  .header-inner { grid-template-columns: 114px 1fr; }
  .brand { width: 110px; }
  .header-cta { gap: 6px; }
  .header-cta svg { width: 13px; }
  .hero h1 { font-size: 38px; }
  .hero-stage { min-height: 355px; padding: 20px; }
  .about-copy h2, .section-heading h2, .team-intro h2 { font-size: 32px; }
  .journey-panel { grid-template-columns: 40px 1fr; padding-inline: 17px; }
  .journey-mark bdi { font-size: 17px; }
  .journey-copy h3 { font-size: 24px; }
  .contact-copy h2 { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .logo-marquee { overflow-x: auto; }
  .logo-marquee::before, .logo-marquee::after { display: none; }
  .logo-set[aria-hidden="true"] { display: none; }
}
