:root {
  --ink: #101010;
  --muted: #666a72;
  --paper: #f5f4f1;
  --white: #ffffff;
  --blue: #607fba;
  --blue-deep: #4e6fae;
  --blue-dark: #2b4b84;
  --blue-pale: #dbe4f5;
  --line: rgba(16, 16, 16, 0.16);
  --radius: 18px;
  --shell: 1380px;
  --shadow: 0 28px 70px rgba(21, 37, 68, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 11px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.section { padding: clamp(78px, 9vw, 140px) 0; }
.eyebrow {
  margin: 0 0 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow--light { color: rgba(255, 255, 255, 0.78); }

h1, h2, h3, p { margin-top: 0; }
h2 {
  margin-bottom: 0;
  max-width: 900px;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.065em;
}
h3 { font-size: 1.15rem; }
p { line-height: 1.6; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 244, 241, 0.88);
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
  backdrop-filter: blur(18px);
}
.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
  min-height: 78px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 150px; height: auto; }

.primary-nav { display: flex; justify-content: center; gap: 28px; }
.primary-nav a { font-size: 0.78rem; font-weight: 700; }
.primary-nav a::after {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 5px;
  content: "";
  background: var(--ink);
  transition: width 0.25s ease;
}
.primary-nav a:hover::after { width: 100%; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px 11px 17px;
  color: var(--white);
  background: var(--blue);
  border-radius: 7px;
  font-size: 0.76rem;
  font-weight: 700;
}
.header-cta span:last-child {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--blue);
  background: var(--white);
  border-radius: 4px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: 0.25s ease; }

.hero { padding-top: clamp(56px, 6vw, 92px); }
.hero__topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 14px;
}
.hero__topline p { max-width: 500px; margin-bottom: 0; color: var(--muted); font-size: 0.86rem; }
.hero__controls { display: flex; gap: 6px; }
.icon-button {
  width: 34px;
  height: 34px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}
.icon-button:hover { background: var(--ink); color: var(--white); }
.hero__headline {
  position: relative;
  z-index: 2;
  height: 1.04em;
  margin: 0 0 -0.065em;
  overflow: hidden;
  font-size: clamp(4.1rem, 10.4vw, 10.4rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.088em;
  white-space: nowrap;
}
.word-rotator { position: relative; display: block; height: 100%; }
.word-rotator__word {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(112%);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.18, 1), opacity 0.35s ease;
}
.word-rotator__word.is-active { opacity: 1; transform: translateY(0); }
.word-rotator__word.is-exiting { opacity: 0; transform: translateY(-112%); }
.word-rotator__word.is-entering-from-top { transform: translateY(-112%); }

.hero-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
}
.hero-card__copy {
  position: relative;
  z-index: 3;
  width: 43%;
  padding: clamp(42px, 6vw, 90px);
}
.hero-card__copy h2 { margin-bottom: 26px; max-width: 600px; color: var(--white); font-size: clamp(2.4rem, 4.3vw, 4.8rem); }
.hero-card__copy > p:last-of-type { max-width: 540px; color: rgba(255, 255, 255, 0.78); }
.text-link { display: inline-flex; gap: 10px; align-items: center; margin-top: 18px; font-size: 0.78rem; font-weight: 700; }
.text-link--light { color: var(--white); }
.hero-card__portrait-wrap { position: absolute; inset: 0 16% 0 38%; }
.hero-card__portrait {
  position: absolute;
  z-index: 2;
  right: 4%;
  bottom: -15%;
  width: min(43vw, 530px);
  height: auto;
  object-fit: contain;
  filter: saturate(0.9) contrast(1.02);
}
.hero-card__shape {
  position: absolute;
  right: 9%;
  bottom: -38%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}
.hero-card__shape::before,
.hero-card__shape::after {
  position: absolute;
  inset: 13%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}
.hero-card__shape::after { inset: 28%; }
.hero-card__note {
  position: absolute;
  z-index: 4;
  right: 34px;
  bottom: 30px;
  width: 230px;
  padding: 18px;
  background: rgba(45, 75, 131, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  backdrop-filter: blur(12px);
}
.hero-card__note span { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.hero-card__note p { margin: 8px 0 0; color: rgba(255, 255, 255, 0.74); font-size: 0.74rem; line-height: 1.5; }
.client-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 19px;
  padding: 28px 4px 0;
  color: #7c8086;
  font-size: 0.72rem;
}
.client-strip strong { color: var(--ink); font-size: 0.72rem; }
.client-strip i { width: 4px; height: 4px; background: var(--blue); border-radius: 50%; }

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 80px;
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 100px);
}
.section-intro > p { margin-bottom: 4px; color: var(--muted); font-size: 0.98rem; }
.section-intro--wide { grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr); }
.section-intro--light { color: var(--white); }
.section-intro--light > p { color: rgba(255, 255, 255, 0.7); }

.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr 0.95fr;
  gap: 22px;
  align-items: end;
}
.about-grid figure { margin: 0; }
.about-grid__portrait { position: relative; height: 560px; overflow: hidden; border-radius: 12px; }
.about-grid__portrait img { height: 100%; object-fit: cover; object-position: center 15%; }
.about-grid__portrait figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(16, 16, 16, 0.72);
  border-radius: 7px;
  font-size: 0.72rem;
  backdrop-filter: blur(10px);
}
.about-grid__architecture { height: 350px; overflow: hidden; border-radius: 12px; }
.about-grid__architecture img { height: 100%; object-fit: cover; }
.insight-card {
  min-height: 410px;
  padding: 22px;
  background: #f1f2f3;
  border-radius: 12px;
  box-shadow: 0 20px 44px rgba(31, 40, 61, 0.12);
}
.insight-card__header { display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; font-weight: 700; }
.insight-card__header button { width: 30px; height: 30px; color: var(--white); background: var(--blue); border: 0; border-radius: 6px; }
.insight-card__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 28px 0; }
.insight-card__metrics span { padding: 12px; background: var(--white); border-radius: 8px; font-size: 0.64rem; }
.insight-card__metrics b { display: block; margin-bottom: 12px; color: var(--blue); font-size: 0.82rem; }
.insight-card__chart { display: flex; align-items: flex-end; gap: 9px; height: 130px; padding: 16px; background: var(--white); border-radius: 8px; }
.insight-card__chart i { flex: 1; height: var(--bar); background: linear-gradient(to top, var(--blue), #a9bce0); border-radius: 4px 4px 0 0; transform-origin: bottom; animation: chart-grow 1.1s ease both; }
.insight-card__line { height: 95px; margin-top: 12px; padding: 14px; color: var(--blue); background: var(--white); border-radius: 8px; }
.insight-card__line svg { width: 100%; height: 100%; }
@keyframes chart-grow { from { transform: scaleY(0); } }

.services { background: var(--paper); }
.services-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr); gap: clamp(48px, 7vw, 110px); align-items: start; }
.services-feature { position: sticky; top: 114px; height: 610px; margin: 0; overflow: hidden; border-radius: 14px; }
.services-feature img { height: 100%; object-fit: cover; }
.services-feature::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(16,16,16,.66), transparent 55%); }
.services-feature__overlay { position: absolute; z-index: 2; right: 28px; bottom: 28px; left: 28px; color: var(--white); }
.services-feature__overlay span { display: block; margin-bottom: 10px; font-size: 0.66rem; letter-spacing: 0.15em; text-transform: uppercase; }
.services-feature__overlay strong { display: block; max-width: 460px; font-size: 1.6rem; line-height: 1.15; }
.service-list { border-top: 1px solid var(--line); }
.service-item { border-bottom: 1px solid var(--line); }
.service-item__trigger { display: grid; grid-template-columns: 44px 1fr 32px; gap: 14px; align-items: center; width: 100%; padding: 24px 0; text-align: left; background: transparent; border: 0; cursor: pointer; }
.service-item__index { color: var(--blue); font-size: 0.72rem; }
.service-item__title { font-size: clamp(1.18rem, 2vw, 1.85rem); letter-spacing: -0.035em; }
.service-item__icon { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; }
.service-item__panel { padding: 0 46px 28px 58px; }
.service-item__panel p { margin-bottom: 14px; color: var(--muted); font-size: 0.9rem; }
.service-item__panel a { font-size: 0.74rem; font-weight: 700; }

.approach { color: var(--white); background: var(--blue); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-grid article { min-height: 315px; padding: 28px 28px 28px 0; border-top: 1px solid rgba(255,255,255,.38); border-right: 1px solid rgba(255,255,255,.22); }
.process-grid article + article { padding-left: 28px; }
.process-grid article:last-child { border-right: 0; }
.process-grid article > span { font-size: 0.7rem; color: rgba(255,255,255,.62); }
.process-icon { display: grid; place-items: center; width: 44px; height: 44px; margin: 42px 0 54px; color: var(--blue); background: var(--white); border-radius: 7px; font-size: 1.15rem; }
.process-grid h3 { margin-bottom: 12px; font-size: 1.18rem; }
.process-grid p { margin-bottom: 0; color: rgba(255,255,255,.68); font-size: 0.82rem; }

.engagements { background: var(--white); }
.project-mosaic { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; align-items: start; }
.project-card { position: relative; min-height: 320px; overflow: hidden; background: #eef0f2; border-radius: 12px; }
.project-card img { height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-card:hover img { transform: scale(1.035); }
.project-card::after { position: absolute; inset: 40% 0 0; content: ""; background: linear-gradient(to top, rgba(16,16,16,.74), transparent); }
.project-card > div { position: absolute; z-index: 2; right: 22px; bottom: 20px; left: 22px; color: var(--white); }
.project-card span { display: block; margin-bottom: 8px; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; }
.project-card h3 { margin-bottom: 5px; font-size: 1.2rem; }
.project-card p { margin-bottom: 0; color: rgba(255,255,255,.72); font-size: 0.7rem; }
.project-card--portrait { grid-column: span 4; height: 540px; }
.project-card--wide { grid-column: span 8; height: 430px; }
.project-card--wide img { object-position: center 28%; }
.project-card--landscape { grid-column: 5 / span 4; height: 440px; margin-top: -90px; }
.project-card--square { grid-column: 9 / span 4; height: 340px; }
.project-card--wide-bottom { grid-column: 1 / span 8; height: 400px; }

.testimonial-section { padding-top: 0; background: var(--white); }
.testimonial { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 58px; min-height: 430px; padding: clamp(34px, 5vw, 72px); color: var(--white); background: var(--blue); border-radius: var(--radius); }
.testimonial__meta { display: flex; flex-direction: column; }
.testimonial__meta h2 { font-size: clamp(2.2rem, 3.6vw, 4.2rem); color: var(--white); }
.testimonial__controls { display: flex; gap: 8px; margin-top: auto; }
.testimonial__controls button { width: 38px; height: 38px; color: var(--blue); background: var(--white); border: 0; border-radius: 7px; cursor: pointer; }
.testimonial__slides { position: relative; min-height: 280px; overflow: hidden; background: var(--white); border-radius: 12px; color: var(--ink); }
.testimonial__slide { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; margin: 0; padding: clamp(30px, 5vw, 72px); opacity: 0; transform: translateX(30px); transition: 0.5s ease; }
.testimonial__slide.is-active { opacity: 1; transform: translateX(0); }
.quote-mark { position: absolute; top: 22px; left: 28px; color: var(--blue); font-size: 3.4rem; line-height: 1; }
.testimonial__slide p { max-width: 700px; margin-bottom: 30px; font-size: clamp(1.25rem, 2.3vw, 2rem); line-height: 1.16; letter-spacing: -0.035em; }
.testimonial__slide footer { color: var(--muted); font-size: 0.72rem; }

.intelligence { background: var(--paper); }
.intelligence__grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.intelligence__copy h2 { margin-bottom: 26px; }
.intelligence__copy > p:last-of-type { max-width: 580px; color: var(--muted); }
.audience-tabs { display: grid; gap: 8px; margin-top: 42px; }
.audience-tabs button { padding: 14px 16px; text-align: left; background: transparent; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; }
.audience-tabs button.is-active { color: var(--white); background: var(--ink); border-color: var(--ink); }
.intelligence-card { position: relative; min-height: 520px; overflow: hidden; border-radius: 14px; box-shadow: var(--shadow); }
.intelligence-card > img { height: 100%; min-height: 520px; object-fit: cover; }
.intelligence-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(135deg, rgba(26,48,89,.1), rgba(16,16,16,.25)); }
.floating-metric { position: absolute; z-index: 2; padding: 16px 18px; background: rgba(255,255,255,.92); border-radius: 9px; box-shadow: 0 12px 32px rgba(16,16,16,.16); backdrop-filter: blur(8px); }
.floating-metric span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.12em; }
.floating-metric strong { font-size: 0.86rem; }
.floating-metric--one { top: 50px; left: 36px; }
.floating-metric--two { right: 32px; bottom: 38px; }
.mini-dashboard { position: absolute; z-index: 2; top: 42px; right: 40px; display: flex; align-items: end; gap: 7px; width: 150px; height: 96px; padding: 18px; background: rgba(255,255,255,.94); border-radius: 9px; }
.mini-dashboard span { flex: 1; background: var(--blue); border-radius: 3px 3px 0 0; }
.mini-dashboard span:nth-child(1) { height: 35%; }
.mini-dashboard span:nth-child(2) { height: 70%; }
.mini-dashboard span:nth-child(3) { height: 52%; }
.mini-dashboard span:nth-child(4) { height: 88%; }

.faq { background: var(--white); }
.faq__grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(60px, 9vw, 140px); }
.faq__intro { position: sticky; top: 116px; align-self: start; }
.faq__intro h2 { margin-bottom: 24px; }
.faq__intro > p:last-of-type { max-width: 430px; color: var(--muted); }
.button { display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; padding: 14px 18px; color: var(--white); background: var(--blue); border: 0; border-radius: 7px; font-size: 0.76rem; font-weight: 700; }
.button--light { color: var(--blue); background: var(--white); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { display: flex; justify-content: space-between; gap: 24px; width: 100%; padding: 24px 0; text-align: left; background: transparent; border: 0; cursor: pointer; }
.faq-item button span { font-size: clamp(1rem, 1.6vw, 1.35rem); }
.faq-item button b { font-size: 1.1rem; font-weight: 400; }
.faq-item__answer { padding: 0 44px 24px 0; }
.faq-item__answer p { margin-bottom: 0; color: var(--muted); font-size: 0.9rem; }

.contact-band { padding: 80px 0; color: var(--white); background: var(--blue); }
.contact-band__inner { display: flex; justify-content: space-between; gap: 60px; align-items: flex-end; }
.contact-band h2 { max-width: 900px; color: var(--white); font-size: clamp(2.5rem, 5vw, 5.2rem); }
.contact-band .button { flex: 0 0 auto; }

.site-footer { color: var(--white); background: var(--blue-deep); }
.site-footer__top { display: grid; grid-template-columns: 1.4fr 0.7fr 1fr; gap: 70px; padding: 68px 0 54px; }
.brand--footer .brand__mark { color: var(--blue-deep); background: var(--white); }
.site-footer__top p { max-width: 430px; margin: 20px 0 0; color: rgba(255,255,255,.68); font-size: 0.84rem; }
.site-footer__links { display: flex; flex-direction: column; gap: 12px; }
.site-footer__links a { font-size: 0.76rem; color: rgba(255,255,255,.82); }
.site-footer__links a:hover { color: var(--white); }
.site-footer__wordmark {
  overflow: hidden;
  padding: 40px 0 10px;
  border-top: 1px solid rgba(255,255,255,.24);
  font-size: clamp(4.4rem, 13.7vw, 13rem);
  font-weight: 700;
  line-height: 0.83;
  letter-spacing: -0.085em;
  white-space: nowrap;
}
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding: 30px 0; color: rgba(255,255,255,.68); border-top: 1px solid rgba(255,255,255,.2); font-size: 0.7rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .site-header__inner { grid-template-columns: auto auto 1fr auto; }
  .menu-toggle { display: block; order: 3; justify-self: end; }
  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 24px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.25s ease;
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .header-cta { order: 4; }
  .menu-toggle.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

  .hero-card__copy { width: 54%; }
  .hero-card__portrait-wrap { left: 43%; }
  .hero-card__note { display: none; }
  .about-grid { grid-template-columns: 0.9fr 1.1fr; }
  .insight-card { grid-column: 1 / -1; }
  .services-layout { grid-template-columns: 1fr; }
  .services-feature { position: relative; top: auto; height: 520px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid article:nth-child(2) { border-right: 0; }
  .process-grid article:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.22); }
  .project-card--portrait { grid-column: span 5; }
  .project-card--wide { grid-column: span 7; }
  .project-card--landscape { grid-column: span 6; margin-top: 0; }
  .project-card--square { grid-column: span 6; }
  .project-card--wide-bottom { grid-column: span 12; }
  .testimonial, .intelligence__grid, .faq__grid { grid-template-columns: 1fr; }
  .faq__intro { position: static; }
}

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .section { padding: 72px 0; }
  .site-header__inner { grid-template-columns: auto 1fr auto; min-height: 68px; gap: 14px; }
  .menu-toggle { order: initial; }
  .header-cta { display: none; }
  .brand__mark { min-width: 68px; height: 38px; }
  .hero__topline { align-items: flex-start; }
  .hero__topline p { max-width: 280px; font-size: 0.74rem; }
  .hero__headline { height: 1.08em; font-size: clamp(3rem, 13.9vw, 5.4rem); letter-spacing: -0.08em; }
  .hero-card { min-height: 690px; }
  .hero-card__copy { width: 100%; padding: 34px 28px; }
  .hero-card__copy h2 { font-size: 2.6rem; }
  .hero-card__portrait-wrap { inset: 43% 0 0 0; }
  .hero-card__portrait { right: 50%; bottom: -13%; width: 320px; transform: translateX(50%); }
  .hero-card__shape { right: 50%; bottom: -34%; width: 330px; transform: translateX(50%); }
  .client-strip { gap: 11px; }
  .client-strip i { display: none; }
  .section-intro, .section-intro--wide { grid-template-columns: 1fr; gap: 26px; margin-bottom: 52px; }
  h2 { font-size: 3rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid__portrait { height: 500px; }
  .about-grid__architecture { height: 300px; }
  .insight-card { min-height: 360px; }
  .services-feature { height: 430px; }
  .service-item__panel { padding-left: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article, .process-grid article + article { min-height: auto; padding: 26px 0; border-right: 0; }
  .process-icon { margin: 28px 0 34px; }
  .project-mosaic { grid-template-columns: 1fr; }
  .project-card, .project-card--portrait, .project-card--wide, .project-card--landscape, .project-card--square, .project-card--wide-bottom { grid-column: auto; height: 400px; }
  .testimonial { grid-template-columns: 1fr; min-height: 660px; padding: 28px; }
  .testimonial__meta h2 { font-size: 2.7rem; }
  .testimonial__controls { margin-top: 24px; }
  .testimonial__slides { min-height: 320px; }
  .intelligence-card, .intelligence-card > img { min-height: 450px; }
  .floating-metric--one { top: 20px; left: 16px; }
  .floating-metric--two { right: 16px; bottom: 18px; }
  .mini-dashboard { top: 110px; right: 16px; width: 124px; }
  .contact-band__inner { align-items: flex-start; flex-direction: column; }
  .site-footer__top { grid-template-columns: 1fr; gap: 34px; }
  .site-footer__wordmark { font-size: 19vw; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
