@font-face {
  font-family: "League Spartan";
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url("assets/fonts/league-spartan-700-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "League Spartan";
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url("assets/fonts/league-spartan-700-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Mozilla Headline";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/mozilla-headline-700-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Mozilla Headline";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/mozilla-headline-700-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  color-scheme: light;
  --font-sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --font-brand: "League Spartan", "Arial Black", "Segoe UI", system-ui, sans-serif;
  --font-heading: "Mozilla Headline", "League Spartan", "Arial Black", "Segoe UI", system-ui, sans-serif;
  --paper: #f8f5ef;
  --paper-2: #e8e1d7;
  --ink: #28231f;
  --ink-soft: #57504a;
  --muted: #817870;
  --line: #d4cabd;
  --vidogar-red: #e2001a;
  --red: #e2001a;
  --red-dark: #960010;
  --graphite: #211d19;
  --graphite-2: #36302b;
  --white-soft: #fbfaf7;
  --max: 1160px;
  --gutter: clamp(18px, 4vw, 56px);
  --section: clamp(62px, 7vw, 92px);
  --section-tight: clamp(54px, 6vw, 78px);
  --heading-copy-gap: clamp(18px, 2.2vw, 28px);
  --intro-block-gap: clamp(44px, 5vw, 66px);
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --section-title-size: clamp(2.55rem, 4.65vw, 5rem);
  --section-title-width: 18.5ch;
  --section-copy-width: 72ch;
  --button-radius: 14px;
}

@supports (color: oklch(50% 0.1 40)) {
  :root {
    --paper: oklch(98% 0.006 78);
    --paper-2: oklch(93% 0.012 78);
    --ink: oklch(18% 0.012 72);
    --ink-soft: oklch(36% 0.012 72);
    --muted: oklch(52% 0.014 72);
    --line: oklch(84% 0.014 78);
    --red: oklch(56% 0.22 29);
    --red-dark: oklch(40% 0.18 29);
    --graphite: oklch(17% 0.014 72);
    --graphite-2: oklch(24% 0.015 72);
    --white-soft: oklch(98% 0.006 78);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

[id] {
  scroll-margin-top: 0;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--white-soft);
  color: var(--ink);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white-soft);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    backdrop-filter 260ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(28, 35, 41, 0.72);
  background: linear-gradient(
    180deg,
    oklch(22% 0.024 245 / 0.78),
    oklch(17% 0.014 72 / 0.66)
  );
  border-bottom: 0;
  box-shadow: 0 14px 34px rgba(8, 7, 6, 0.16);
  -webkit-backdrop-filter: blur(22px) saturate(1.16);
  backdrop-filter: blur(22px) saturate(1.16);
}

.nav-shell {
  width: min(100%, var(--max));
  min-height: 66px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.brand img {
  width: clamp(196px, 18vw, 232px);
  max-height: 42px;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.65vw, 22px);
  font-size: 0.76rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 900;
}

.site-nav a {
  text-decoration: none;
  color: oklch(98% 0.006 78 / 0.9);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white-soft);
}

.nav-portal {
  padding: 10px 13px;
  background: oklch(98% 0.006 78 / 0.14);
  border: 1px solid oklch(98% 0.006 78 / 0.28);
  border-radius: var(--button-radius);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
  color: var(--white-soft);
  overflow: hidden;
  overflow: clip;
}

@supports (height: 100dvh) {
  .hero {
    min-height: 100dvh;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, oklch(12% 0.012 72 / 0.72), oklch(14% 0.012 72 / 0.38) 42%, oklch(12% 0.012 72 / 0.78)),
    linear-gradient(90deg, oklch(12% 0.012 72 / 0.4), transparent 48%, oklch(12% 0.012 72 / 0.3));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 6px;
  background: var(--red);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video video,
.hero-video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video video,
.hero-video img {
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: oklch(12% 0.012 72 / 0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.hero-video.is-replay-fading::after {
  opacity: 1;
}

.hero-content {
  width: min(100%, 980px);
  padding: 100px var(--gutter) 56px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow,
.wide-band .eyebrow {
  color: oklch(82% 0.18 32);
}

.hero .eyebrow {
  color: oklch(96% 0.006 78 / 0.88);
  font-family: var(--font-brand);
  font-weight: 700;
  display: block;
  width: auto;
  margin-bottom: 18px;
  margin-inline: auto;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  font-size: clamp(0.88rem, 1vw, 1rem);
  line-height: 1.05;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 14px oklch(8% 0.01 72 / 0.5);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h3,
.image-tile span {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 {
  max-width: 11.6ch;
  margin: 0 auto 16px;
  font-family: var(--font-brand);
  font-size: clamp(4.1rem, 9.4vw, 8.9rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: 0;
}

h2 {
  max-width: var(--section-title-width);
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--section-title-size);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
}

.hero-content p:not(.eyebrow) {
  max-width: 58ch;
  margin: 0 auto 28px;
  color: var(--white-soft);
  font-size: clamp(1.22rem, 1.65vw, 1.48rem);
  line-height: 1.45;
  text-wrap: balance;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: var(--button-radius);
  text-decoration: none;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 260ms var(--motion-ease);
}

.button-light {
  color: var(--white-soft);
}

.button-primary {
  color: var(--white-soft);
  background: var(--red);
  border-color: var(--red);
}

.button-secondary {
  color: var(--ink-soft);
  background: transparent;
  border-color: var(--line);
}

.hero .button-light {
  background: oklch(16% 0.012 72 / 0.42);
  border-color: oklch(98% 0.006 78 / 0.58);
  box-shadow: 0 12px 32px oklch(8% 0.01 72 / 0.26);
  backdrop-filter: blur(8px);
}

.button:hover,
.button:focus-visible {
  background: var(--red);
  border-color: var(--red);
  color: var(--white-soft);
  transform: translateY(-1px);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.coming-page-body {
  min-height: 100vh;
  background: var(--white-soft);
  color: var(--ink);
}

.coming-page {
  min-height: 100vh;
}

.coming-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(28px, 5vw, 56px) var(--gutter);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.coming-shell {
  width: min(100%, var(--max));
  display: grid;
  gap: clamp(44px, 6vw, 76px);
  justify-items: center;
  text-align: center;
}

.coming-brand-stack {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
  justify-items: center;
}

.coming-status {
  margin: 0;
  color: var(--red);
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.coming-brand {
  width: clamp(216px, 23vw, 310px);
  display: inline-flex;
  align-items: center;
}

.coming-brand img {
  width: 100%;
  height: auto;
}

.coming-copy {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.coming-copy h1 {
  font-family: var(--font-heading);
  max-width: 10.8ch;
  margin: 0 auto clamp(24px, 3vw, 36px);
  color: var(--ink);
  font-size: clamp(3.15rem, 5.7vw, 5.4rem);
  text-shadow: none;
}

.coming-copy p:not(.eyebrow) {
  max-width: 50ch;
  margin: 0 auto 30px;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 1.6vw, 1.34rem);
  line-height: 1.5;
  text-wrap: balance;
}

.coming-copy .button-light {
  color: var(--ink);
  border-color: var(--line);
}

.coming-copy .button-light:hover,
.coming-copy .button-light:focus-visible {
  background: var(--red);
  border-color: var(--red);
  color: var(--white-soft);
}

.section {
  padding: var(--section) var(--gutter);
  overflow-x: clip;
}

.section > * {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: var(--intro-block-gap);
}

.section-intro-centered {
  max-width: 960px;
  display: block;
  text-align: center;
}

.section-intro-centered h2 {
  margin-inline: auto;
}

.section-intro p:not(.eyebrow) {
  max-width: var(--section-copy-width);
  margin: var(--heading-copy-gap) 0 0;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

.section-intro-centered p:not(.eyebrow) {
  margin: var(--heading-copy-gap) auto 0;
}

.rounded-media {
  border-radius: 20px;
  overflow: hidden;
}

.rounded-media picture,
.rounded-media img {
  width: 100%;
  height: 100%;
}

.rounded-media img {
  object-fit: cover;
}

[data-parallax] {
  transform: translate3d(0, 0, 0) scale(1.05);
  will-change: transform;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 920ms var(--motion-ease),
    transform 920ms var(--motion-ease);
  transition-delay: calc(var(--reveal-index, 0) * 70ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.company-copy.reveal {
  transform: translate3d(-22px, 0, 0);
}

.company-visuals.reveal {
  transform: translate3d(22px, 0, 0);
}

.company-copy.reveal,
.company-visuals.reveal {
  transition-duration: 1040ms;
}

.company-copy.reveal.is-visible,
.company-visuals.reveal.is-visible {
  transform: translate3d(0, 0, 0);
}

.company-section {
  background: var(--paper-2);
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
}

.company-copy,
.stat-card,
.bento-card,
.contact-form {
  border-radius: 20px;
}

.company-copy {
  display: grid;
  align-content: start;
  padding: 0;
}

.company-text {
  position: relative;
  max-width: 66ch;
  margin: 24px 0 0;
  padding-left: clamp(18px, 2vw, 24px);
}

.company-text::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 980ms var(--motion-ease);
  transition-delay: 360ms;
}

.company-copy.is-visible .company-text::before {
  transform: scaleY(1);
}

.company-text p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  font-weight: 550;
}

.company-text p + p {
  margin-top: 16px;
}

.company-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 66ch;
  margin-top: 28px;
}

.company-actions .button {
  width: 100%;
  background: var(--red);
  border-color: var(--red);
  color: var(--white-soft);
}

.company-visuals {
  display: block;
  min-height: 0;
}

.company-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
}

.company-photo-main {
  height: 100%;
  min-height: 420px;
}

.company-photo-link {
  position: absolute;
  inset: 0;
  display: block;
  color: var(--white-soft);
  text-decoration: none;
  isolation: isolate;
}

.company-photo-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 34%, oklch(12% 0.012 72 / 0.72));
}

.company-photo-link:focus-visible {
  outline: 2px solid var(--white-soft);
  outline-offset: -8px;
}

.company-photo picture {
  position: absolute;
  inset: 0;
  display: block;
}

.company-photo picture,
.company-photo img {
  width: 100%;
  height: 100%;
}

.company-photo img {
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transition:
    transform 900ms var(--motion-ease),
    filter 260ms ease;
}

.company-photo-link:hover img,
.company-photo-link:focus-visible img {
  transform: scale(1.025);
  filter: saturate(1.02) contrast(1.06);
}

.company-photo-caption {
  position: absolute;
  right: clamp(18px, 2.2vw, 28px);
  bottom: clamp(18px, 2.2vw, 28px);
  z-index: 2;
  max-width: min(72%, 30ch);
  font-family: var(--font-heading);
  font-size: clamp(1.34rem, 1.85vw, 2rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
  text-align: right;
  text-transform: uppercase;
  text-shadow: 0 8px 28px oklch(8% 0.01 72 / 0.55);
}

.inner-page {
  background: var(--paper);
}

.inner-hero {
  position: relative;
  min-height: min(74vh, 720px);
  display: grid;
  align-items: end;
  padding: clamp(132px, 16vw, 190px) var(--gutter) clamp(64px, 8vw, 98px);
  color: var(--white-soft);
  isolation: isolate;
  overflow: hidden;
  background: var(--graphite);
}

.inner-hero-centered {
  align-items: center;
  --inner-hero-center-pad: clamp(72px, 8vw, 112px);
  padding-top: calc(var(--inner-hero-center-pad) + 66px);
  padding-bottom: var(--inner-hero-center-pad);
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, oklch(11% 0.01 72 / 0.38), oklch(11% 0.01 72 / 0.78)),
    linear-gradient(90deg, oklch(11% 0.01 72 / 0.72), oklch(11% 0.01 72 / 0.16) 68%);
}

.inner-hero.inner-hero-centered::before {
  background:
    radial-gradient(ellipse 116% 92% at 50% 51%, oklch(11% 0.01 72 / 0.64) 0%, oklch(11% 0.01 72 / 0.56) 42%, oklch(11% 0.01 72 / 0.38) 74%, oklch(11% 0.01 72 / 0.24) 100%),
    linear-gradient(180deg, oklch(11% 0.01 72 / 0.36), oklch(11% 0.01 72 / 0.26) 48%, oklch(11% 0.01 72 / 0.4));
}

.inner-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.inner-hero-media picture,
.inner-hero-media img {
  width: 100%;
  height: 100%;
}

.inner-hero-media img {
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.inner-hero-content {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.inner-hero .eyebrow {
  color: oklch(96% 0.006 78 / 0.9);
}

.inner-hero-content-centered {
  max-width: 1040px;
  text-align: center;
}

.inner-hero h1 {
  max-width: 16ch;
  margin: 0 0 22px;
  font-family: var(--font-heading);
  color: oklch(96% 0.006 78);
  font-size: clamp(3.15rem, 6.35vw, 6rem);
  line-height: 0.9;
}

.inner-hero p:not(.eyebrow) {
  max-width: 64ch;
  margin: 0;
  color: oklch(94% 0.007 78 / 0.92);
  font-size: clamp(1.12rem, 1.55vw, 1.38rem);
  line-height: 1.48;
  font-weight: 500;
  text-wrap: balance;
}

.inner-hero-content-centered h1,
.inner-hero-content-centered p:not(.eyebrow) {
  margin-inline: auto;
}

.inner-section {
  padding: var(--section) var(--gutter);
}

.inner-section > * {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.inner-section-muted {
  background: var(--paper-2);
}

.inner-split {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(360px, 0.92fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}

.inner-copy {
  display: grid;
  gap: 18px;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  line-height: 1.62;
  font-weight: 520;
}

.inner-copy p {
  margin: 0;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-item {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px) clamp(14px, 2vw, 26px);
  border-right: 1px solid var(--line);
}

.fact-item:last-child {
  border-right: 0;
}

.fact-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.86;
  text-transform: uppercase;
  transition: opacity 180ms var(--motion-ease);
}

.fact-item > span:not(.sr-only) {
  display: block;
  min-height: 2.7em;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  transition: opacity 180ms var(--motion-ease);
}

.fact-item.is-fact-pending strong,
.fact-item.is-fact-pending > span:not(.sr-only) {
  opacity: 0;
}

.fact-item.is-typing > span:not(.sr-only)::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.95em;
  margin-left: 4px;
  background: currentColor;
  vertical-align: -0.12em;
  animation: factCaret 760ms steps(1, end) infinite;
}

@keyframes factCaret {
  50% {
    opacity: 0;
  }
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}

.proof-band-mirrored {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-band-media {
  min-height: 460px;
  border: 1px solid var(--line);
}

.proof-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-band-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  gap: 20px;
  min-width: 0;
}

.proof-band-copy > * {
  min-width: 0;
}

.proof-band-copy h2 {
  max-width: 100%;
  font-size: clamp(2.55rem, 4vw, 3.75rem);
}

.proof-band-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  line-height: 1.62;
  font-weight: 520;
}

.timeline-list,
.value-grid,
.awards-grid,
.press-archive {
  display: grid;
  gap: 16px;
}

.timeline-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-item,
.value-card,
.award-card,
.press-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white-soft);
}

.timeline-item {
  padding: clamp(24px, 3vw, 34px);
}

.timeline-item strong,
.award-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.timeline-item h3,
.value-card h3,
.award-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.15vw, 2.1rem);
  line-height: 0.98;
}

.timeline-item p,
.value-card p,
.award-card p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 520;
  line-height: 1.56;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card {
  padding: clamp(22px, 2.8vw, 32px);
}

.press-bridge {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 0.44fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  padding: clamp(30px, 5vw, 52px);
  border-radius: 20px;
  background: var(--red);
  color: var(--white-soft);
}

.press-bridge-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(30px, 3.8vw, 46px);
}

.press-bridge h2 {
  margin: 0;
}

.press-bridge p {
  max-width: 64ch;
  margin: 0;
  color: oklch(98% 0.006 78 / 0.9);
  font-weight: 520;
  line-height: 1.58;
}

.press-bridge-action {
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  gap: clamp(22px, 2.6vw, 30px);
}

.press-bridge-media {
  display: block;
  aspect-ratio: 1.72 / 1;
  overflow: hidden;
  border: 1px solid oklch(98% 0.006 78 / 0.22);
  border-radius: 16px;
  background: var(--white-soft);
}

.press-bridge-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.press-bridge .button {
  background: var(--white-soft);
  border-color: var(--white-soft);
  color: var(--red);
}

.press-bridge .button:hover,
.press-bridge .button:focus-visible {
  background: var(--graphite);
  border-color: var(--graphite);
  color: var(--white-soft);
}

.awards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.award-card {
  padding: clamp(24px, 3vw, 34px);
}

.press-archive {
  gap: 18px;
}

.press-archive-section {
  padding-top: clamp(42px, 5vw, 68px);
}

.press-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.22fr) minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 38px);
  align-items: stretch;
  padding: clamp(20px, 2.8vw, 30px);
}

.press-card-preview {
  overflow: hidden;
  height: 100%;
  min-height: clamp(102px, 11vw, 138px);
  border-radius: 14px;
  background: #fbfaf6;
  box-shadow: inset 0 0 0 1px rgba(17, 14, 10, 0.08);
}

.press-card-preview:empty {
  background: transparent;
  box-shadow: none;
}

.press-card-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.press-card-content {
  min-width: 0;
  align-self: center;
}

.press-card-source {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.74rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.press-card-content h2 {
  max-width: 34ch;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.25vw, 2.35rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.press-card-date {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.35;
}

.press-card-content > p:not(.press-card-source):not(.press-card-date) {
  max-width: 58ch;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-weight: 520;
  line-height: 1.52;
}

.press-card-actions {
  display: flex;
  align-self: center;
  justify-content: flex-end;
}

.press-note-section {
  min-height: 100vh;
  padding: clamp(132px, 14vw, 188px) var(--gutter) var(--section);
  background: var(--paper);
}

.press-note-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  gap: clamp(26px, 4vw, 42px);
}

.press-note-header {
  display: grid;
  gap: clamp(16px, 2.4vw, 24px);
  justify-items: center;
  text-align: center;
}

.press-note-header h1 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2.65rem, 5.6vw, 4.8rem);
  line-height: 0.95;
}

.press-note-header > p:not(.eyebrow, .press-note-meta) {
  max-width: 62ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  font-weight: 520;
  line-height: 1.58;
}

.press-note-meta {
  margin: 0;
  color: var(--red);
  font-size: 0.8rem;
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.press-note-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.press-note-document {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.press-note-page-image {
  margin: 0;
  padding: clamp(10px, 1.8vw, 18px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(16, 14, 12, 0.06);
}

.press-note-page-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.press-note-article {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white-soft);
  box-shadow: 0 18px 42px rgba(16, 14, 12, 0.05);
}

.press-note-article-kicker,
.press-note-article-byline {
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(0.84rem, 1.1vw, 0.95rem);
  font-weight: 800;
  line-height: 1.35;
}

.press-note-article h2 {
  max-width: 18ch;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
}

.press-note-article-body {
  display: grid;
  gap: 1.05em;
  max-width: 72ch;
  margin-top: clamp(8px, 1.4vw, 14px);
}

.press-note-article-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.2vw, 1.15rem);
  font-weight: 480;
  line-height: 1.68;
}

.press-note-missing {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white-soft);
}

.press-note-missing h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.press-note-missing p {
  max-width: 58ch;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 520;
  line-height: 1.56;
}

.press-note-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: clamp(28px, 5vw, 58px);
  border-top: 1px solid var(--line);
}

.press-note-nav a {
  color: inherit;
  text-decoration: none;
}

a.press-note-nav-card {
  min-width: 0;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  overflow: hidden;
  border: 1px solid var(--red);
  border-radius: 18px;
  background: var(--red);
  color: var(--white-soft);
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.press-note-nav-card:hover,
.press-note-nav-card:focus-visible {
  transform: translateY(-2px);
  filter: brightness(0.96);
  box-shadow: 0 10px 24px rgba(226, 0, 26, 0.22);
}

.press-note-nav-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.press-note-nav-card strong {
  min-width: 0;
  font-family: var(--font-heading);
  font-size: clamp(0.88rem, 1.05vw, 1.05rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.press-note-nav-previous,
.press-note-nav-next,
a.press-note-nav-card.press-note-nav-back {
  text-align: center;
}

.press-note-nav-label-short {
  display: none;
}

.areas-section {
  background: var(--paper);
  padding: var(--section) var(--gutter);
}

.areas-intro {
  margin-bottom: var(--intro-block-gap);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.45vw, 16px);
  align-items: stretch;
}

.area-card {
  position: relative;
  min-height: clamp(210px, 22vw, 275px);
  display: grid;
  align-items: end;
  color: var(--white-soft);
  text-decoration: none;
  isolation: isolate;
  background: var(--graphite);
}

.area-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 28%, oklch(12% 0.012 72 / 0.78));
}

.area-card picture,
.area-card img {
  position: absolute;
  inset: 0;
}

.area-card img {
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
  transition:
    transform 900ms var(--motion-ease),
    filter 260ms ease;
}

.area-card-restoration img {
  object-position: 42% center;
}

.area-card:hover img,
.area-card:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1.08);
}

.area-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.area-card span {
  position: relative;
  z-index: 2;
  padding: clamp(16px, 1.8vw, 22px);
  font-family: var(--font-heading);
  font-size: clamp(1.02rem, 1.22vw, 1.34rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 8px 24px oklch(8% 0.01 72 / 0.5);
}

.stat-card span {
  color: var(--red);
  font-family: var(--font-heading);
  font-size: clamp(1.95rem, 3.6vw, 3.65rem);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
}

.stat-card p {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-weight: 650;
}

.stat-card-red {
  color: var(--ink);
  background: var(--white-soft);
  border-color: var(--line);
}

.stat-card-red span {
  color: var(--red);
}

.capabilities-section {
  background: var(--paper);
}

.experience-intro {
  max-width: 1060px;
  margin-bottom: var(--intro-block-gap);
  text-align: center;
}

.experience-intro .eyebrow {
  color: var(--red);
}

.experience-intro h2 {
  margin: 0 auto;
}

.experience-intro p:not(.eyebrow) {
  max-width: var(--section-copy-width);
  margin: var(--heading-copy-gap) auto 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.55vw, 1.34rem);
  font-weight: 560;
  line-height: 1.5;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 880px);
  justify-content: center;
}

.experience-rail {
  --rail-gap: 16px;
  --rail-gutter: 38px;
  --rail-axis: 18px;
  --rail-dot: 14px;
  position: relative;
  display: grid;
  gap: var(--rail-gap);
  padding-left: var(--rail-gutter);
}

.experience-rail::before {
  content: none;
}

.experience-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  background: oklch(98% 0.006 78 / 0.82);
  border: 1px solid oklch(80% 0.014 78 / 0.82);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.experience-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc((var(--rail-gutter) * -1) + var(--rail-axis));
  z-index: 2;
  width: var(--rail-dot);
  height: var(--rail-dot);
  border: 4px solid var(--paper);
  border-radius: 999px;
  background: var(--vidogar-red);
  box-shadow: 0 0 0 1px oklch(18% 0.012 72 / 0.08);
  transform: translate(-50%, -50%);
}

.experience-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc((var(--rail-gutter) * -1) + var(--rail-axis));
  z-index: 1;
  width: 2px;
  height: calc(100% + var(--rail-gap));
  background: var(--vidogar-red);
  transform: translateX(-50%);
}

.experience-item h3 {
  margin: 0;
  font-size: clamp(1.75rem, 2.45vw, 2.75rem);
  line-height: 0.98;
}

.experience-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.15vw, 1.06rem);
  font-weight: 560;
  line-height: 1.5;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.bento-card {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  grid-column: span 4;
  padding: clamp(22px, 2.6vw, 34px);
  background: oklch(98% 0.006 78 / 0.9);
  border: 1px solid var(--line);
}

.bento-card > span {
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
}

.bento-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
}

.bento-card p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 560;
}

.bento-card-featured {
  grid-column: span 8;
  min-height: 500px;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.8fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: stretch;
  background: var(--graphite);
  color: var(--white-soft);
  border-color: transparent;
}

.bento-card-featured .eyebrow,
.bento-card-featured p {
  color: oklch(91% 0.01 78);
}

.bento-card-featured h3 {
  font-size: clamp(2rem, 3.6vw, 3.7rem);
}

.bento-media {
  min-height: 100%;
}

.bento-card-image {
  padding: 0;
  overflow: hidden;
}

.bento-card-image picture {
  min-height: 220px;
}

.bento-card-image h3 {
  padding: 22px;
}

.works-section {
  background: var(--paper);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  align-items: stretch;
}

.work-card {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 390px;
  display: grid;
  align-items: end;
  color: var(--white-soft);
  text-decoration: none;
  isolation: isolate;
  background: var(--graphite);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: clamp(150px, 46%, 210px);
  background: linear-gradient(180deg, oklch(12% 0.012 72 / 0), oklch(12% 0.012 72 / 0.72));
}

.work-card picture,
.work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.work-card img {
  object-fit: cover;
  transition: transform 900ms var(--motion-ease);
}

.work-card:hover img:not([data-parallax]),
.work-card:focus-visible img:not([data-parallax]) {
  transform: scale(1.03);
}

.work-card-adif img {
  object-position: 42% center;
}

.work-card-unlz img {
  object-position: 28% center;
}

.work-card span {
  position: relative;
  z-index: 2;
  padding: 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.42rem, 2vw, 2.12rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-shadow: 0 8px 28px oklch(8% 0.01 72 / 0.48);
}

.work-card-tall {
  min-height: 520px;
}

.work-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(26px, 4vw, 48px);
}

.method-band {
  position: relative;
  min-height: clamp(380px, 38vw, 500px);
  display: grid;
  grid-template-columns: minmax(0, var(--max));
  justify-content: center;
  align-items: center;
  padding: var(--section-tight) var(--gutter);
  color: var(--white-soft);
  background: var(--graphite);
  isolation: isolate;
  overflow: hidden;
}

.method-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, oklch(12% 0.012 72 / 0.02), oklch(12% 0.012 72 / 0.3) 56%, oklch(12% 0.012 72 / 0.58));
}

.method-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.method-bg img {
  position: absolute;
  inset: -34% 0;
  width: 100%;
  height: 168%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.04);
}

.method-band > :not(.method-bg) {
  width: 100%;
}

.method-copy {
  width: min(100%, 560px);
  justify-self: end;
  text-align: right;
}

.method-copy h2 {
  margin-left: auto;
  color: var(--white-soft);
}

.method-copy .eyebrow {
  color: oklch(90% 0.008 78 / 0.82);
}

.method-copy p:not(.eyebrow) {
  max-width: 50ch;
  margin: var(--heading-copy-gap) 0 0 auto;
  color: var(--white-soft);
  font-weight: 560;
}

.value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.value-list li {
  padding: 18px 20px;
  border: 1px solid oklch(98% 0.006 78 / 0.18);
  border-radius: 20px;
  background: oklch(98% 0.006 78 / 0.08);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.image-tile {
  position: relative;
  display: grid;
  min-height: 260px;
  color: var(--white-soft);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  background: var(--graphite);
}

.image-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: oklch(12% 0.012 72 / 0.46);
}

.image-tile picture,
.image-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.image-tile img {
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.image-tile span {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: center;
  width: min(100%, 19ch);
  padding: 18px 16px;
  text-align: center;
  font-size: clamp(1.55rem, 2.1vw, 2.35rem);
  overflow-wrap: anywhere;
  text-shadow: 0 2px 18px oklch(10% 0.012 72 / 0.55);
}

@media (hover: hover) {
  .image-tile:hover img {
    transform: scale(1.055);
  }
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.6vw, 30px);
}

.service-tile {
  aspect-ratio: 0.72;
}

.service-tile span {
  font-size: clamp(1.45rem, 1.9vw, 2rem);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.featured-tile {
  aspect-ratio: 0.78;
}

.category-section {
  padding-top: clamp(20px, 4vw, 44px);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}

.category-tile {
  min-height: 230px;
}

.category-tile span {
  font-size: clamp(1.4rem, 2vw, 2.08rem);
}

.wide-band {
  position: relative;
  min-height: clamp(360px, 48vw, 560px);
  display: grid;
  align-items: center;
  padding: var(--section) var(--gutter);
  isolation: isolate;
  color: var(--white-soft);
  overflow: hidden;
}

.wide-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: oklch(15% 0.012 72 / 0.58);
}

.wide-band picture,
.wide-band img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.wide-band img {
  object-fit: cover;
}

.wide-band-copy {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.wide-band-copy > * {
  max-width: 590px;
}

.wide-band-copy p:not(.eyebrow) {
  color: oklch(93% 0.008 78);
  font-weight: 650;
}

.clients-section {
  background: var(--paper-2);
  overflow: hidden;
}

@keyframes client-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.client-marquee {
  position: relative;
  overflow: hidden;
  padding-block: clamp(14px, 2vw, 22px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: oklch(98% 0.006 78 / 0.46);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.client-marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
}

.client-marquee-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(12px, 1.8vw, 20px);
  padding-right: clamp(12px, 1.8vw, 20px);
  animation: client-marquee-scroll 96s linear infinite;
}

.client-marquee li {
  width: clamp(160px, 17vw, 222px);
  height: clamp(86px, 9vw, 112px);
  display: grid;
  place-items: center;
  padding: clamp(10px, 1.4vw, 16px);
  background: transparent;
  border: 0;
}

.client-marquee img {
  width: auto;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
  filter: none;
  transition: transform 180ms ease;
}

.client-marquee li:hover img {
  transform: translateY(-1px);
}

.clients-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(26px, 4vw, 44px);
}

.clients-actions .button {
  min-width: min(100%, 280px);
}

.client-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.client-directory-card {
  min-width: 0;
  min-height: 172px;
  display: grid;
  grid-template-rows: 92px auto;
  align-items: center;
  gap: 18px;
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white-soft);
  text-align: center;
}

.client-directory-logo {
  min-height: 88px;
  display: grid;
  place-items: center;
}

.client-directory-logo img {
  width: auto;
  max-width: min(100%, 210px);
  max-height: 78px;
  object-fit: contain;
}

.client-directory-card h3 {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-section {
  background: var(--paper-2);
}

.contact-page .contact-section {
  padding-top: calc(var(--section) + 66px);
}

.contact-page-title {
  max-width: none;
  margin: 0 auto clamp(44px, 6vw, 78px);
  color: var(--ink);
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
}

.contact-copy {
  position: static;
  display: flex;
  flex-direction: column;
}

.contact-copy p:not(.eyebrow) {
  max-width: 48ch;
  margin: var(--heading-copy-gap) 0 0;
  color: var(--ink-soft);
  font-weight: 560;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: clamp(18px, 2.4vw, 24px);
  color: var(--white-soft);
  font-style: normal;
  font-weight: 750;
  background: var(--red);
  border-radius: 18px;
  box-shadow: 0 20px 46px oklch(18% 0.012 72 / 0.14);
}

.contact-detail {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  color: inherit;
  text-align: left;
}

.contact-details a,
.contact-detail {
  text-decoration: none;
}

a.contact-detail {
  transition: color 220ms ease;
}

a.contact-detail:hover,
a.contact-detail:focus-visible {
  color: var(--white-soft);
  opacity: 0.88;
}

.contact-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: rgba(251, 250, 247, 0.7);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail small {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.95em;
  font-weight: 700;
}

.contact-map {
  flex: 1 1 auto;
  min-height: clamp(210px, 24vw, 270px);
  margin-top: clamp(22px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 18px 46px oklch(18% 0.012 72 / 0.1);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto minmax(240px, 1fr) auto;
  gap: 18px;
  height: 100%;
  padding: clamp(22px, 3vw, 34px);
  background: oklch(98% 0.006 78 / 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px oklch(18% 0.012 72 / 0.12);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form-wide {
  grid-column: 1 / -1;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid oklch(76% 0.014 78);
  border-radius: 10px;
  padding: 11px 12px;
  background: var(--white-soft);
  color: var(--ink);
  font: 500 1rem / 1.35 var(--font-sans);
}

.contact-form textarea {
  height: 100%;
  min-height: 190px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid oklch(56% 0.22 29 / 0.28);
  border-color: var(--red);
}

.contact-submit {
  width: 100%;
  min-height: 44px;
  justify-content: center;
  border-color: var(--red);
  background: var(--red);
  color: var(--white-soft);
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: var(--section-tight) var(--gutter);
  background: var(--graphite);
  color: var(--white-soft);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(160px, 0.34fr) minmax(310px, 0.62fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.site-footer img {
  width: min(100%, 282px);
  margin-bottom: 20px;
}

.site-footer p {
  margin: 0;
  color: oklch(83% 0.012 78);
  max-width: 42ch;
}

.footer-contact {
  display: grid;
  gap: 12px;
  justify-self: end;
  color: var(--white-soft);
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 500;
}

.footer-contact a,
.footer-contact span {
  min-height: 20px;
  display: flex;
  align-items: center;
  color: var(--white-soft);
  font-size: inherit;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer nav {
  display: grid;
  gap: 12px;
  justify-self: center;
  line-height: 1.35;
}

.site-footer a {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

.site-footer .footer-contact a,
.site-footer .footer-contact span {
  color: var(--white-soft);
  font-size: inherit;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer nav a {
  min-height: 20px;
  display: flex;
  align-items: center;
  color: oklch(76% 0.012 78);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, var(--max));
  margin-top: clamp(20px, 3vw, 34px);
  margin-inline: auto;
  padding-top: 20px;
  border-top: 1px solid oklch(98% 0.006 78 / 0.16);
  color: oklch(78% 0.012 78);
  font-size: 0.84rem;
  font-weight: 650;
}

.footer-bottom a {
  color: var(--white-soft);
  font-size: inherit;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 1040px) {
  .menu-toggle {
    position: relative;
    width: 48px;
    height: 48px;
    padding: 0;
    display: inline-grid;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--white-soft);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 180ms ease;
  }

  .menu-toggle:focus-visible {
    outline: 2px solid rgba(251, 250, 247, 0.74);
    outline: 2px solid oklch(98% 0.006 78 / 0.74);
    outline-offset: 2px;
  }

  .menu-toggle:active {
    transform: scale(0.94);
  }

  .menu-toggle-icon {
    width: 28px;
    height: 22px;
    display: grid;
    grid-area: 1 / 1;
    place-items: center;
    pointer-events: none;
  }

  .menu-toggle-icon span {
    width: 28px;
    height: 3px;
    display: block;
    grid-area: 1 / 1;
    background: currentColor;
    border-radius: 999px;
    transform-origin: center;
    transition:
      opacity 160ms ease,
      transform 220ms var(--motion-ease);
  }

  .menu-toggle-icon span:nth-child(1) {
    transform: translateY(-7px);
  }

  .menu-toggle-icon span:nth-child(3) {
    transform: translateY(7px);
  }

  .menu-toggle.is-open .menu-toggle-icon span:nth-child(1) {
    transform: rotate(45deg);
  }

  .menu-toggle.is-open .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.2);
  }

  .menu-toggle.is-open .menu-toggle-icon span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 66px 0 auto;
    display: grid;
    gap: 0;
    padding: 6px var(--gutter) 12px;
    background: rgba(33, 29, 25, 0.62);
    background: oklch(17% 0.014 72 / 0.64);
    border-top: 1px solid rgba(251, 250, 247, 0.07);
    border-top: 1px solid oklch(98% 0.006 78 / 0.07);
    border-bottom: 1px solid rgba(251, 250, 247, 0.12);
    border-bottom: 1px solid oklch(98% 0.006 78 / 0.12);
    box-shadow: 0 16px 30px rgba(8, 7, 6, 0.18);
    -webkit-backdrop-filter: blur(18px) saturate(1.08);
    backdrop-filter: blur(18px) saturate(1.08);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 300ms ease,
      transform 360ms var(--motion-ease),
      visibility 0s linear 360ms;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
    transition:
      opacity 320ms ease,
      transform 380ms var(--motion-ease),
      visibility 0s;
  }

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(251, 250, 247, 0.1);
    border-bottom: 1px solid oklch(98% 0.006 78 / 0.1);
    color: rgba(251, 250, 247, 0.86);
    color: oklch(98% 0.006 78 / 0.86);
    font-size: 0.74rem;
    font-weight: 800;
  }

  .nav-portal {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(251, 250, 247, 0.1);
    border-bottom: 1px solid oklch(98% 0.006 78 / 0.1);
    border-radius: 0;
    padding: 12px 0;
  }

  .section-intro {
    grid-template-columns: 1fr;
  }

  .company-grid,
  .inner-split,
  .proof-band,
  .press-bridge,
  .contact-layout,
  .experience-layout,
  .method-band {
    grid-template-columns: 1fr;
  }

  .proof-band {
    grid-template-areas:
      "copy"
      "media";
  }

  .proof-band-copy {
    grid-area: copy;
  }

  .proof-band-media {
    grid-area: media;
  }

  .company-copy,
  .company-copy h2,
  .company-text,
  .company-actions {
    width: 100%;
    max-width: 100%;
  }

  .proof-band-media {
    min-height: 360px;
  }

  .method-proof-band .proof-band-copy {
    justify-items: center;
    text-align: center;
  }

  .method-proof-band .proof-band-copy h2,
  .method-proof-band .proof-band-copy p {
    margin-inline: auto;
  }

  .fact-strip,
  .timeline-list,
  .value-grid,
  .client-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .fact-item:nth-child(2n) {
    border-right: 0;
  }

  .fact-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .press-card {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 0.36fr);
    grid-template-areas:
      "content preview"
      "actions preview";
    gap: 18px 24px;
    align-items: center;
  }

  .press-card-preview {
    grid-area: preview;
    display: block;
    min-height: 168px;
    align-self: stretch;
  }

  .press-card-content {
    grid-area: content;
    align-self: end;
  }

  .press-card-actions {
    grid-area: actions;
    align-self: start;
    justify-content: flex-start;
  }

  .areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .area-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    min-height: clamp(230px, 30vw, 320px);
  }

  .bento-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .bento-card,
  .bento-card-featured {
    grid-column: 1 / -1;
  }

  .bento-card-featured {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card,
  .work-card-tall {
    min-height: 360px;
  }

  .method-band > :not(.method-bg) {
    width: 100%;
    max-width: var(--max);
    justify-self: center;
  }

  .contact-copy {
    position: static;
  }

  .contact-page .contact-copy {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .contact-page .contact-copy h2,
  .contact-page .contact-copy p:not(.eyebrow) {
    margin-inline: auto;
  }

  .contact-page .contact-details,
  .contact-page .contact-map {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }

  .contact-page .contact-details {
    margin-top: clamp(30px, 4vw, 42px);
    padding: clamp(24px, 4vw, 34px);
  }

  .contact-page .contact-map {
    min-height: clamp(320px, 45vw, 390px);
  }

  .service-strip,
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
    grid-template-areas:
      "brand contact"
      "nav nav";
    gap: 32px;
  }

  .footer-brand {
    grid-area: brand;
  }

  .footer-contact {
    grid-area: contact;
    min-width: 0;
    justify-self: end;
  }

  .site-footer nav {
    grid-area: nav;
    grid-column: 1 / -1;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    justify-content: center;
    justify-self: center;
  }

  @media (min-width: 721px) {
    .work-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .work-card,
    .work-card-tall {
      min-height: clamp(320px, 42vw, 360px);
    }

    .contact-layout {
      align-items: stretch;
    }

    .contact-copy {
      height: 100%;
    }

    .contact-map {
      flex: 1 1 auto;
      min-height: 280px;
    }

    .site-footer nav {
      display: grid;
      grid-template-columns: repeat(3, auto);
      gap: 10px 28px;
      justify-content: center;
      justify-items: center;
    }
  }

}

@media (max-width: 720px) {
  :root {
    --gutter: clamp(22px, 6vw, 28px);
    --section: 56px;
    --heading-copy-gap: 16px;
    --intro-block-gap: 38px;
  }

  html {
    scroll-padding-top: 74px;
  }

  [id] {
    scroll-margin-top: 0;
  }

  .nav-shell {
    min-height: 58px;
  }

  .brand img {
    width: 174px;
    max-height: 34px;
  }

  .site-nav {
    inset: 58px 0 auto;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    place-items: center;
  }

  .hero-content {
    width: 100%;
    max-width: 100vw;
    padding: 96px var(--gutter) 58px;
    text-align: center;
  }

  h1 {
    max-width: 9.8ch;
    margin-inline: auto;
    font-size: clamp(3.45rem, 14.4vw, 4.45rem);
  }

  h2 {
    font-size: clamp(2.08rem, 8.4vw, 2.85rem);
    line-height: 0.98;
    letter-spacing: 0;
    text-align: center;
  }

  .hero-content p:not(.eyebrow) {
    margin-inline: auto;
    max-width: 31ch;
    font-size: clamp(1.05rem, 4.7vw, 1.22rem);
    line-height: 1.46;
  }

  .inner-hero {
    min-height: 68vh;
    padding: 108px var(--gutter) 58px;
    text-align: center;
  }

  .clients-page .inner-hero {
    min-height: 50vh;
    padding-top: 84px;
    padding-bottom: 38px;
  }

  .clients-page main > .inner-section {
    padding-top: 34px;
  }

  .inner-hero-centered {
    --inner-hero-center-pad: 76px;
    padding-top: calc(var(--inner-hero-center-pad) + 58px);
    padding-bottom: var(--inner-hero-center-pad);
  }

  .inner-hero::before {
    background:
      linear-gradient(180deg, oklch(11% 0.01 72 / 0.56), oklch(11% 0.01 72 / 0.82)),
      linear-gradient(90deg, oklch(11% 0.01 72 / 0.46), oklch(11% 0.01 72 / 0.24));
  }

  .inner-hero h1 {
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(2.45rem, 10.2vw, 3.45rem);
  }

  @media (max-width: 360px) {
    .hero-content h1 {
      max-width: 100%;
      font-size: 3.05rem;
      line-height: 0.88;
    }

    .inner-hero h1,
    .works-hero h1 {
      max-width: 100%;
      font-size: 2.2rem;
      line-height: 0.92;
    }
  }

  .inner-hero p:not(.eyebrow) {
    max-width: min(100%, 33ch);
    margin-inline: auto;
    font-size: clamp(1rem, 4.6vw, 1.17rem);
    line-height: 1.48;
  }

  .company-copy.reveal,
  .company-visuals.reveal {
    transform: translate3d(0, 16px, 0);
  }

  .section-intro-centered {
    text-align: center;
  }

  .section-intro,
  .experience-intro {
    text-align: center;
  }

  .section-intro h2,
  .section-intro-centered h2,
  .experience-intro h2 {
    margin-inline: auto;
  }

  .company-copy .eyebrow,
  .company-copy h2,
  .section-intro .eyebrow,
  .section-intro-centered .eyebrow,
  .experience-intro .eyebrow,
  .method-copy .eyebrow,
  .contact-copy .eyebrow {
    text-align: center;
  }

  .company-copy h2,
  .experience-intro h2,
  .experience-intro p:not(.eyebrow) {
    margin-inline: auto;
  }

  .section-intro p:not(.eyebrow),
  .section-intro-centered p:not(.eyebrow) {
    margin-inline: auto;
    max-width: min(100%, 44ch);
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .experience-intro p:not(.eyebrow) {
    max-width: min(100%, 44ch);
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .company-grid,
  .bento-grid,
  .areas-grid {
    gap: 16px;
    min-width: 0;
  }

  .company-text {
    width: 100%;
    max-width: 100%;
    margin: 32px auto 18px;
    padding: 24px 0 0;
    text-align: center;
  }

  .company-text::before {
    inset: 0 auto auto 50%;
    width: 100%;
    height: 3px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
  }

  .company-copy.is-visible .company-text::before {
    transform: translateX(-50%) scaleX(1);
  }

  .company-text p {
    max-width: min(100%, 620px);
    margin-inline: auto;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .company-actions {
    justify-content: center;
  }

  .company-actions .button {
    width: 100%;
  }

  .button {
    min-height: 44px;
  }

  .company-copy,
  .stat-card,
  .experience-item,
  .bento-card,
  .contact-form {
    border-radius: 16px;
  }

  .experience-rail {
    --rail-gutter: 30px;
    --rail-axis: 14px;
  }

  .experience-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 22px;
    text-align: center;
  }

  .experience-item h3 {
    font-size: clamp(1.42rem, 6.4vw, 1.9rem);
    line-height: 1;
  }

  .experience-item p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  #sistema {
    padding-bottom: 76px;
  }

  #clientes {
    padding-top: 76px;
  }

  .rounded-media,
  .work-card,
  .value-list li {
    border-radius: 20px;
  }

  .company-copy,
  .bento-card,
  .work-card,
  .work-card-tall {
    min-height: auto;
  }

  .company-visuals {
    grid-template-columns: 1fr;
  }

  .company-photo-main {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.42 / 1;
  }

  .company-photo-caption {
    display: none;
  }

  .inner-copy,
  .proof-band-copy {
    text-align: center;
  }

  .proof-band-copy h2 {
    font-size: clamp(2.05rem, 8.4vw, 2.75rem);
    line-height: 1;
  }

  @media (max-width: 360px) {
    .proof-band-copy h2 {
      font-size: 1.88rem;
      line-height: 1.02;
    }
  }

  .proof-band-media {
    min-height: 0;
    aspect-ratio: 1.18 / 1;
  }

  .fact-strip,
  .timeline-list,
  .value-grid,
  .awards-grid,
  .client-directory-grid {
    grid-template-columns: 1fr;
  }

  .fact-item {
    border-right: 0;
    border-top: 1px solid var(--line);
    text-align: center;
  }

  .fact-item:first-child {
    border-top: 0;
  }

  .press-bridge {
    padding: 28px 22px;
    text-align: center;
  }

  .press-bridge .button,
  .press-card-actions .button {
    width: 100%;
  }

  .press-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "preview"
      "content"
      "actions";
    gap: 18px;
    padding: 20px;
    border-radius: 16px;
  }

  .press-card-preview {
    grid-area: preview;
    display: block;
    width: 100%;
    min-height: 0;
    aspect-ratio: 1.85 / 1;
    align-self: stretch;
    border-radius: 14px;
  }

  .press-card-preview img {
    min-height: 0;
  }

  .press-card-content {
    text-align: left;
  }

  .press-card-content h2 {
    font-size: clamp(1.32rem, 6.2vw, 1.72rem);
    line-height: 0.98;
    text-align: left;
  }

  .press-note-section {
    padding-top: 96px;
  }

  .press-note-shell {
    gap: 24px;
  }

  .press-note-header h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 9vw, 2.95rem);
  }

  .press-note-meta {
    font-size: 0.72rem;
  }

  .press-note-actions .button {
    width: 100%;
  }

  .press-note-nav {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
    padding-top: 28px;
  }

  a.press-note-nav-card {
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 14px;
    gap: 8px;
  }

  .press-note-nav-previous,
  .press-note-nav-next {
    aspect-ratio: 1;
    padding: 0;
  }

  .press-note-nav-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .press-note-nav-note-title,
  .press-note-nav-label-full {
    display: none;
  }

  .press-note-nav-back strong {
    font-size: clamp(0.72rem, 3vw, 0.88rem);
    white-space: nowrap;
  }

  .press-note-nav-label-short {
    display: inline;
  }

  .press-note-page-image {
    padding: 6px;
    border-radius: 12px;
  }

  .press-note-page-image img {
    border-radius: 7px;
  }

  .bento-card-featured {
    min-height: 0;
  }

  .bento-media,
  .bento-card-image picture {
    min-height: 220px;
  }

  .work-card,
  .work-card-tall {
    aspect-ratio: 1 / 0.92;
  }

  .area-card span,
  .work-card span {
    width: 100%;
    padding: 20px 16px 22px;
    line-height: 1.02;
    text-align: center;
    justify-self: center;
    overflow-wrap: anywhere;
  }

  .area-card span {
    font-size: clamp(0.9rem, 4.05vw, 1.08rem);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  @media (max-width: 360px) {
    .areas-grid {
      gap: 12px;
    }

    .area-card span {
      padding-inline: 8px;
      font-size: 0.82rem;
      line-height: 1.05;
    }
  }

  @media (max-width: 340px) {
    .areas-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .area-card,
    .area-card:last-child:nth-child(odd) {
      grid-column: auto;
      width: 100%;
      min-height: 0;
      height: auto;
      aspect-ratio: 1.34 / 1;
      justify-self: stretch;
    }

    .area-card span {
      padding-inline: 16px;
      font-size: 1.05rem;
      line-height: 0.98;
    }
  }

  .work-card span {
    font-size: clamp(1.05rem, 5vw, 1.35rem);
  }

  .area-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: clamp(205px, 52vw, 230px);
    min-height: 0;
    justify-self: stretch;
  }

  @media (max-width: 340px) {
    .area-card:last-child:nth-child(odd) {
      grid-column: auto;
      width: 100%;
      height: auto;
      min-height: 0;
      aspect-ratio: 1.34 / 1;
      justify-self: stretch;
    }
  }

  .method-band {
    margin-inline: 16px;
    padding: var(--section) 20px;
    border-radius: 20px;
  }

  .method-band::before {
    background: oklch(12% 0.012 72 / 0.52);
  }

  .method-copy {
    justify-self: center;
    max-width: 100%;
    text-align: center;
  }

  .method-copy h2,
  .method-copy p:not(.eyebrow) {
    margin-inline: auto;
  }

  .method-copy p:not(.eyebrow) {
    max-width: min(100%, 44ch);
    font-size: 0.98rem;
    line-height: 1.55;
  }

  @media (max-width: 360px) {
    .method-copy h2 {
      font-size: 1.78rem;
      line-height: 1.02;
    }

    .method-copy p:not(.eyebrow) {
      font-size: 0.94rem;
      line-height: 1.52;
    }
  }

  .value-list li {
    padding: 16px 18px;
    font-size: 0.78rem;
    text-align: center;
  }

  .client-marquee {
    width: 100vw;
    max-width: none;
    margin-inline: calc(50% - 50vw);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .value-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-copy {
    display: contents;
    text-align: center;
  }

  .contact-layout {
    row-gap: 0;
    padding-bottom: 24px;
  }

  .contact-copy .eyebrow {
    order: 1;
  }

  .contact-copy p:not(.eyebrow) {
    order: 2;
  }

  .contact-copy h2,
  .contact-copy p:not(.eyebrow) {
    margin-inline: auto;
  }

  .contact-copy p:not(.eyebrow) {
    max-width: min(100%, 44ch);
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .contact-form {
    order: 4;
    margin-top: 30px;
    grid-template-rows: auto auto auto auto;
    gap: 16px;
    padding: 22px;
  }

  .contact-form-wide {
    grid-template-rows: auto auto;
  }

  .contact-form textarea {
    height: 160px;
    min-height: 150px;
  }

  .contact-details {
    order: 5;
    width: 100%;
    justify-self: stretch;
    justify-items: stretch;
    margin-top: 64px;
    padding: 20px;
    gap: 8px;
    text-align: left;
  }

  .contact-page .contact-details {
    margin-top: 64px;
  }

  .contact-detail {
    width: 100%;
    min-height: 38px;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 9px;
    justify-items: stretch;
    align-items: center;
  }

  .contact-detail > span:not(.contact-icon) {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }

  .contact-icon {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .contact-map {
    order: 6;
    min-height: clamp(250px, 76vw, 288px);
    margin-top: 20px;
  }

  .service-strip,
  .featured-grid,
  .category-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .service-tile,
  .featured-tile {
    aspect-ratio: 1 / 1.18;
  }

  .category-tile {
    min-height: 180px;
  }

  .wide-band {
    min-height: 430px;
    align-items: end;
  }

  .wide-band::before {
    background: oklch(15% 0.012 72 / 0.58);
  }

  .site-footer nav {
    grid-area: nav;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
  }

  .site-footer a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-footer nav a {
    min-height: 34px;
    font-size: 0.72rem;
  }

  .footer-main,
  .footer-bottom {
    text-align: center;
  }

  .footer-main {
    grid-template-areas:
      "brand"
      "contact"
      "nav";
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
  }

  .site-footer img,
  .site-footer p {
    margin-inline: auto;
  }

  .site-footer img {
    width: min(100%, 296px);
  }

  .footer-contact {
    width: min(100%, 42ch);
    display: grid;
    gap: 8px;
    justify-self: center;
    text-align: center;
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .footer-contact a,
  .footer-contact span {
    display: block;
    min-height: auto;
  }

  .footer-copyright {
    display: grid;
    gap: 4px;
  }
}

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

  .hero-video {
    background: url("assets/video/vidogar-hero-kling-v3-pro-15s-v9-loop-poster.jpg") center / cover no-repeat;
  }

  .hero-video video {
    display: none;
  }

  .client-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .client-marquee-list {
    animation: none;
  }

  .client-marquee-list[aria-hidden="true"] {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@supports not (color: oklch(50% 0.1 40)) {
  .site-header.is-scrolled,
  .site-header.is-menu-open {
    background: linear-gradient(180deg, rgba(28, 35, 41, 0.78), rgba(33, 29, 25, 0.66));
    border-bottom: 0;
  }

  .site-nav a {
    color: rgba(251, 250, 247, 0.9);
  }

  .nav-portal {
    background: rgba(251, 250, 247, 0.14);
    border-color: rgba(251, 250, 247, 0.28);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(18, 17, 15, 0.72), rgba(21, 19, 17, 0.38) 42%, rgba(18, 17, 15, 0.78)),
      linear-gradient(90deg, rgba(18, 17, 15, 0.4), transparent 48%, rgba(18, 17, 15, 0.3));
  }

  .hero-video::after {
    background: rgba(18, 17, 15, 0.82);
  }

  .hero .eyebrow {
    color: rgba(251, 250, 247, 0.88);
    text-shadow: 0 2px 14px rgba(12, 10, 9, 0.5);
  }

  .wide-band .eyebrow {
    color: #f5b2a4;
  }

  .hero .button-light {
    background: rgba(30, 27, 24, 0.42);
    border-color: rgba(251, 250, 247, 0.58);
    box-shadow: 0 12px 32px rgba(12, 10, 9, 0.26);
  }

  .company-photo-link::after {
    background: linear-gradient(180deg, transparent 34%, rgba(18, 17, 15, 0.72));
  }

  .work-card::after {
    background: linear-gradient(180deg, rgba(18, 17, 15, 0), rgba(18, 17, 15, 0.72));
  }

  .area-card::after {
    background: linear-gradient(180deg, transparent 28%, rgba(18, 17, 15, 0.78));
  }

  .company-photo-title,
  .area-card span,
  .work-card span {
    text-shadow: 0 8px 28px rgba(12, 10, 9, 0.52);
  }

  .experience-item {
    background: rgba(251, 250, 247, 0.82);
    border-color: rgba(204, 194, 181, 0.82);
  }

  .method-band::before {
    background: linear-gradient(90deg, rgba(18, 17, 15, 0.02), rgba(18, 17, 15, 0.3) 56%, rgba(18, 17, 15, 0.58));
  }

  .image-tile::before {
    background: rgba(18, 17, 15, 0.46);
  }

  .wide-band::before {
    background: rgba(25, 23, 20, 0.58);
  }

  .site-footer p,
  .site-footer nav a,
  .footer-bottom {
    color: rgba(251, 250, 247, 0.78);
  }

  .footer-bottom {
    border-top-color: rgba(251, 250, 247, 0.16);
  }
}
