@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/SourceSans3.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ground: #101A28;
  --surface: #1B2838;
  --ink: #F4EEE1;
  --accent: #E5601F;
  --accent-deep: #E5601F;
  --plum-ink: #3B2233;
  --taupe: #6E5A48;
  --void: #1A0F16;
  --t-1: clamp(12px, 1.1vw, 14px);
  --t0: clamp(16px, 1.4vw, 18px);
  --t1: clamp(21px, 2vw, 24px);
  --t2: clamp(28px, 3.2vw, 42px);
  --t3: clamp(44px, 6.5vw, 92px);
  --grid-cols: 12;
  --gutter: 24px;
  --space: 8px;
  --phi: 1.618;
  --container-max: 1200px;
  --page-inset: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ground);
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ground);
  color: var(--ink);
  font-family: "Source Sans 3", -apple-system, 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--t0);
  font-weight: 400;
  line-height: 1.5;
}

body::after {
  position: fixed;
  z-index: 30;
  inset: 0;
  content: "";
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.72'/%3E%3C/svg%3E");
  pointer-events: none;
}

body.is-loading {
  height: 100%;
  overflow: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: "Source Sans 3", -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a,
button,
input,
select,
textarea,
.service-card {
  cursor: pointer;
}

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Archivo", Arial Black, sans-serif;
  font-weight: 600;
  line-height: 1.02;
}

p {
  margin-bottom: calc(2 * var(--space));
}

::selection {
  background: var(--accent);
  color: var(--void);
}

.skip-link {
  position: fixed;
  z-index: 1200;
  top: var(--space);
  left: var(--space);
  padding: calc(1.5 * var(--space)) calc(2 * var(--space));
  transform: translateY(-200%);
  border: 1px solid var(--accent);
  background: var(--void);
  color: var(--ink);
}

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

.preloader {
  display: none;
  position: fixed;
  z-index: 1100;
  inset: 0;
  place-items: center;
  overflow: hidden;
  background: var(--void);
}

.js:not(.is-capture) .preloader {
  display: grid;
}

.preloader__lockup {
  display: grid;
  width: min(62vw, 300px);
  gap: calc(3 * var(--space));
  place-items: center;
}

.preloader__logo {
  width: min(62vw, 260px);
}

.preloader__line {
  width: min(48vw, 220px);
  height: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--accent);
}

.cursor-dot {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
  mix-blend-mode: difference;
  pointer-events: none;
  will-change: transform;
}

.has-custom-cursor .cursor-dot {
  display: block;
}

.has-custom-cursor,
.has-custom-cursor a,
.has-custom-cursor button,
.has-custom-cursor input,
.has-custom-cursor select,
.has-custom-cursor textarea,
.has-custom-cursor .service-card {
  cursor: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(229, 96, 31, 0.62);
  background: var(--ground);
  padding: calc(2 * var(--space)) var(--page-inset);
  transition: padding 280ms ease, background-color 280ms ease, box-shadow 280ms ease;
}

.site-header.is-scrolled {
  padding-block: var(--space);
  background: rgba(27, 40, 56, 0.72);
  box-shadow: 0 12px 36px rgba(16, 26, 40, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header__inner,
.section-inner,
.site-footer__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: calc(2 * var(--space));
}

.site-brand {
  display: grid;
  width: max-content;
  color: var(--ink);
  line-height: 1;
  text-decoration: none;
}

.site-brand__name {
  font-family: "Archivo", Arial Black, sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.site-brand__studio {
  margin-top: 3px;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav__list,
.service-list,
.trust-strip,
.stat-strip__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space) calc(2 * var(--space));
}

.site-nav__item {
  display: flex;
}

.site-nav__link,
.site-footer__nav a {
  position: relative;
  min-height: 44px;
  color: var(--ink);
  font-size: var(--t-1);
  text-decoration: none;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
}

.site-nav__link::after,
.site-footer__nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  background: var(--accent);
  transition: transform 240ms ease;
}

.site-nav__link:hover,
.site-nav__link.is-active,
.site-footer__nav a:hover {
  color: var(--accent);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after,
.site-footer__nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* Mobile navigation - hamburger + full-screen overlay (reset to inline nav at >=768px) */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(229, 96, 31, 0.55);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  transition: border-color 220ms ease, background-color 220ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--accent);
}

.nav-toggle:active {
  background: rgba(229, 96, 31, 0.12);
}

.nav-toggle__icon {
  width: 24px;
  height: 24px;
  color: var(--ink);
}

.nav-toggle__icon--close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon--open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon--close {
  display: inline-block;
}

.site-nav {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: calc(12 * var(--space)) var(--page-inset) calc(6 * var(--space));
  background: var(--ground);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 340ms ease, transform 340ms ease, visibility 0s linear 340ms;
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 340ms ease, transform 340ms ease, visibility 0s;
}

.site-nav .site-nav__list {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  gap: calc(3 * var(--space));
  width: 100%;
}

.site-nav__item {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.site-nav.is-open .site-nav__item {
  opacity: 1;
  transform: translateY(0);
}

.site-nav.is-open .site-nav__item:nth-child(1) { transition-delay: 0.10s; }
.site-nav.is-open .site-nav__item:nth-child(2) { transition-delay: 0.16s; }
.site-nav.is-open .site-nav__item:nth-child(3) { transition-delay: 0.22s; }
.site-nav.is-open .site-nav__item:nth-child(4) { transition-delay: 0.28s; }
.site-nav.is-open .site-nav__item:nth-child(5) { transition-delay: 0.34s; }

.site-nav .site-nav__link {
  min-height: 56px;
  font-family: "Archivo", Arial Black, sans-serif;
  font-size: var(--t2);
  letter-spacing: -0.01em;
}

.site-nav__link:active {
  color: var(--accent);
}

html.nav-open,
html.nav-open body {
  overflow: hidden;
}

html.nav-open .site-header {
  background: var(--ground);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-main {
  display: block;
}

.site-section {
  position: relative;
  overflow: hidden;
  padding: calc(11 * var(--space)) var(--page-inset);
}

.site-section > .section-inner,
.stat-strip > .section-inner,
.site-footer__inner,
.marquee__track {
  position: relative;
  z-index: 50;
}

.section-header {
  margin-bottom: calc(6 * var(--space));
}

.section-title {
  max-width: 18ch;
  margin-bottom: 0;
  font-size: var(--t2);
  letter-spacing: -0.018em;
}

.eyebrow {
  margin-bottom: calc(2 * var(--space));
  color: var(--accent);
  font-size: var(--t-1);
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section-media {
  overflow: hidden;
  max-width: 100%;
  margin-bottom: 0;
  background: var(--surface);
}

.section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  display: flex;
  min-height: max(900px, calc(100svh - 96px));
  align-items: flex-end;
  background: var(--ground);
}

.hero::before {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(48px, 9vw, 120px);
  content: "";
  background: linear-gradient(to bottom, rgba(16, 26, 40, 0), var(--void));
  pointer-events: none;
}

.hero__media {
  position: absolute;
  z-index: 0;
  inset: -9% 0;
  width: 100%;
  max-width: none;
  height: 118%;
}

.hero__media .section-image {
  object-position: 50% 50%;
  transform: scale(1.04);
  will-change: transform;
}

.hero__brand-material {
  position: absolute;
  z-index: 1;
  bottom: -8%;
  left: -9%;
  width: min(86vw, 760px);
  height: 76%;
  opacity: 0.34;
  background: url("../brand/card-art.webp") left bottom / cover no-repeat;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(35deg, #000 0%, rgba(0, 0, 0, 0.88) 38%, transparent 76%);
  mask-image: linear-gradient(35deg, #000 0%, rgba(0, 0, 0, 0.88) 38%, transparent 76%);
  pointer-events: none;
  will-change: transform;
}

.hero__shield {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(32deg, rgba(27, 40, 56, 0.92) 10%, rgba(27, 40, 56, 0.76) 53%, rgba(27, 40, 56, 0.35) 100%);
  pointer-events: none;
}

.hero > .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: calc(6 * var(--space));
  align-items: end;
  min-width: 0;
  padding-bottom: calc(3 * var(--space));
}

.hero__content,
.start-here,
.contact__content,
.about__copy {
  min-width: 0;
}

.hero__headline {
  max-width: 14ch;
  margin-bottom: calc(3 * var(--space));
  font-size: var(--t3);
  letter-spacing: -0.028em;
  line-height: 0.9;
  text-wrap: balance;
}

.hero-line,
.word,
.word__text {
  display: inline-block;
}

.hero-line {
  white-space: nowrap;
}

.word {
  overflow: hidden;
  vertical-align: bottom;
}

.word__text {
  transform-origin: left bottom;
  will-change: transform, opacity;
}

.js:not(.is-capture) .hero-headline .word__text {
  opacity: 0;
  transform: translateY(0.85em);
}

.accent-word {
  color: var(--accent);
  text-shadow: 0 0 22px rgba(229, 96, 31, 0.34);
}

.br--mobile {
  display: block;
}

.hero__supporting {
  max-width: 52ch;
  margin-bottom: calc(3 * var(--space));
  font-size: var(--t1);
  line-height: 1.45;
}

.hero__cta,
.form-submit,
.whatsapp-link {
  will-change: transform;
}

.hero__cta,
.form-submit {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: calc(1 * var(--space));
  justify-content: center;
  padding: calc(1.5 * var(--space)) calc(3 * var(--space));
  border: 1px solid var(--accent);
  border-radius: 0;
  font-size: var(--t0);
  line-height: 1.5;
  text-align: center;
  transition: color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.cta-primary,
.cta-primary:visited {
  background: var(--accent);
  color: var(--void);
  text-decoration: none;
}

.cta-primary:hover {
  background: var(--ink);
  color: var(--ground);
  box-shadow: 0 12px 32px rgba(229, 96, 31, 0.24);
}

.icon {
  width: 18px;
  height: 18px;
  flex: none;
  display: inline-block;
  vertical-align: middle;
  color: var(--accent);
}

.icon--card {
  width: 22px;
  height: 22px;
}

.cta-primary .icon {
  color: inherit;
  transition: transform 220ms ease;
}

.cta-primary:hover .icon,
.cta-primary:focus-visible .icon {
  transform: translateX(4px);
}

.start-here {
  max-width: 100%;
  padding: calc(3 * var(--space));
  border: 1px solid rgba(229, 96, 31, 0.78);
  background: rgba(49, 32, 44, 0.92);
  box-shadow: 0 30px 70px rgba(16, 26, 40, 0.36), inset 0 1px 0 rgba(244, 238, 225, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.start-here__title {
  margin-bottom: calc(2 * var(--space));
  font-size: var(--t2);
}

.start-here__intro {
  margin-bottom: calc(3 * var(--space));
}

.start-here-form,
.contact-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: calc(2 * var(--space));
}

.form-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space);
}

.form-field--honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.form-field__label {
  color: var(--ink);
  font-size: var(--t-1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field__control {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: calc(1.5 * var(--space)) calc(2 * var(--space));
  border: 1px solid rgba(229, 96, 31, 0.72);
  border-radius: 0;
  background: var(--ground);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.form-field__control:focus,
.form-field__control:focus-visible {
  border-color: var(--accent);
  background: var(--void);
  box-shadow: 0 0 0 3px rgba(229, 96, 31, 0.22), 0 0 24px rgba(229, 96, 31, 0.12);
}

textarea.form-field__control {
  resize: vertical;
}

.form-actions {
  display: flex;
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: calc(3 * var(--space));
  margin-bottom: 0;
  color: var(--ink);
}

.scroll-indicator {
  position: absolute;
  z-index: 50;
  bottom: calc(1.5 * var(--space));
  left: 50%;
  width: 24px;
  height: 48px;
  transform: translateX(-50%);
  border: 1px solid rgba(244, 238, 225, 0.58);
  border-radius: 24px;
}

.scroll-indicator__line {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 2px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 2px;
  background: var(--accent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% {
    opacity: 0.35;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 15px);
  }
}

.stat-strip {
  max-width: 100%;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  background: var(--surface);
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(229, 96, 31, 0.7);
  background: var(--void);
  color: var(--accent);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-loop 30s linear infinite;
  will-change: transform;
}

.marquee__group {
  display: flex;
  flex-shrink: 0;
}

.marquee__group span {
  display: block;
  padding: calc(1.5 * var(--space)) calc(3 * var(--space));
  font-size: var(--t-1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee-loop {
  to {
    transform: translateX(-50%);
  }
}

.stat-strip > .section-inner,
.proof > .section-inner {
  max-width: calc(var(--container-max) + (2 * var(--page-inset)));
  padding-inline: var(--page-inset);
}

.stat-strip__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.stat-strip__item {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: var(--space) calc(2 * var(--space));
  align-items: baseline;
  padding: calc(3 * var(--space)) 0;
}

.stat-strip__item + .stat-strip__item {
  border-top: 1px solid var(--accent);
}

.stat-strip__value {
  color: var(--ink);
  font-family: "Archivo", Arial Black, sans-serif;
  font-size: var(--t2);
  font-weight: 600;
  line-height: 1.02;
}

.stat-strip__suffix {
  color: var(--accent);
  font-size: var(--t-1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-strip__label {
  grid-column: 1 / -1;
  font-size: var(--t0);
}

.about {
  background: linear-gradient(to bottom, var(--surface) 0, transparent 96px), linear-gradient(to top, var(--surface) 0, transparent 96px), var(--ground);
}

.about__copy {
  max-width: 62ch;
}

.about__copy p:last-child {
  margin-bottom: 0;
}

.about__media {
  position: relative;
  max-width: 100%;
  margin-top: calc(5 * var(--space));
}

.about .section-media {
  aspect-ratio: 4 / 3;
  box-shadow: 0 26px 68px rgba(16, 26, 40, 0.3);
}

.about .section-image {
  height: 116%;
  object-position: 50% 35%;
  transform: translateY(-8%);
  will-change: transform;
}

.about__accent {
  position: absolute;
  z-index: 2;
  height: 2px;
  background: var(--accent);
  pointer-events: none;
  will-change: transform;
}

.about__accent--top {
  top: calc(-2 * var(--space));
  right: calc(-1 * var(--space));
  width: 42%;
  transform-origin: right center;
}

.about__accent--bottom {
  bottom: calc(-2 * var(--space));
  left: calc(-1 * var(--space));
  width: 62%;
  transform-origin: left center;
}

.services {
  background: linear-gradient(to bottom, var(--ground) 0, transparent 96px), linear-gradient(to top, var(--ground) 0, transparent 96px), var(--surface);
}

.service-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: calc(3 * var(--space));
}

.service-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: calc(4 * var(--space)) calc(3 * var(--space));
  border: 1px solid rgba(229, 96, 31, 0.72);
  background: linear-gradient(145deg, rgba(27, 40, 56, 0.46), rgba(27, 40, 56, 0.96)), var(--ground);
  box-shadow: 0 14px 32px rgba(16, 26, 40, 0.14);
  transform: translateY(0) rotate(0deg);
  transform-origin: center bottom;
  transition: transform 280ms cubic-bezier(0.2, 0.78, 0.24, 1), box-shadow 280ms ease, border-color 280ms ease;
  will-change: transform;
}

.service-card::after {
  position: absolute;
  right: -48px;
  bottom: -72px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(229, 96, 31, 0.2);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 20px rgba(229, 96, 31, 0.025), 0 0 0 40px rgba(229, 96, 31, 0.018);
  pointer-events: none;
}

.service-card:hover {
  z-index: 2;
  border-color: var(--accent);
  box-shadow: 0 28px 56px rgba(16, 26, 40, 0.34), 0 0 28px rgba(229, 96, 31, 0.09);
  transform: translateY(-6px) rotate(var(--card-tilt, 1.5deg));
}

.service-card__number {
  display: block;
  margin-bottom: calc(4 * var(--space));
  color: var(--accent);
  font-size: var(--t-1);
  letter-spacing: 0.18em;
}

.service-card > .icon {
  display: block;
  margin-bottom: calc(2 * var(--space));
}

.service-card__title {
  margin-bottom: calc(3 * var(--space));
  font-size: var(--t1);
}

.service-card__description {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.brand-divider {
  position: relative;
  z-index: 45;
  width: 100%;
  height: clamp(64px, 8vw, 112px);
  border-top: 1px solid rgba(229, 96, 31, 0.65);
  border-bottom: 1px solid rgba(229, 96, 31, 0.65);
  background-image: linear-gradient(90deg, rgba(27, 40, 56, 0.08), rgba(16, 26, 40, 0.18)), url("../brand/letterhead-art.webp");
  background-position: center top;
  background-size: cover, 100% auto;
  box-shadow: inset 0 14px 34px rgba(16, 26, 40, 0.12);
}

.proof {
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  background: linear-gradient(to bottom, var(--surface) 0, transparent 96px), linear-gradient(to top, var(--surface) 0, transparent 96px), var(--ground);
}

.proof__intro {
  max-width: 62ch;
  margin-bottom: calc(6 * var(--space));
  font-size: var(--t1);
}

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

.trust-strip__item {
  display: flex;
  align-items: flex-start;
  gap: calc(1.5 * var(--space));
  padding: calc(3 * var(--space)) 0;
}

.trust-strip__item .icon {
  margin-top: 3px;
}

.trust-strip__item + .trust-strip__item {
  border-top: 1px solid var(--accent);
}

.proof-band {
  position: relative;
  width: 100%;
  max-width: none;
  aspect-ratio: 21 / 9;
  margin-top: 0;
  background: var(--ground);
}

.brand-divider--band {
  margin-top: calc(9 * var(--space));
}

.proof-band::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(27, 40, 56, 0.2) 12%, rgba(27, 40, 56, 0.18) 45%, rgba(27, 40, 56, 0.66) 100%);
  pointer-events: none;
}

.proof-band .section-image {
  position: absolute;
  z-index: 0;
  inset: -10% 0;
  width: 100%;
  height: 120%;
  object-position: 50% 50%;
  transform: scale(1.04);
  will-change: transform;
}

.proof-band__accent {
  position: absolute;
  z-index: 1;
  bottom: -26%;
  left: -5%;
  width: min(52vw, 740px);
  height: 126%;
  opacity: 0.25;
  background: url("../brand/card-art.webp") left bottom / cover no-repeat;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(58deg, #000 0%, transparent 75%);
  mask-image: linear-gradient(58deg, #000 0%, transparent 75%);
  pointer-events: none;
}

.proof-band__quote {
  position: absolute;
  z-index: 50;
  top: 50%;
  right: var(--page-inset);
  width: min(52vw, 560px);
  margin: 0;
  padding: calc(2.5 * var(--space)) calc(3 * var(--space));
  transform: translateY(-50%);
  border-left: 2px solid var(--accent);
  background: rgba(27, 40, 56, 0.72);
  box-shadow: 0 18px 48px rgba(16, 26, 40, 0.28);
  color: var(--ink);
  font-family: "Archivo", Arial Black, sans-serif;
  font-size: clamp(24px, 4.2vw, 58px);
  font-weight: 600;
  line-height: 1.02;
  text-wrap: balance;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact {
  background: linear-gradient(to bottom, var(--ground) 0, transparent 96px), linear-gradient(to top, var(--void) 0, transparent 96px), var(--surface);
}

.contact .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: calc(7 * var(--space));
}

.contact__lead {
  max-width: 48ch;
}

.contact-details,
.site-footer__contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: calc(2 * var(--space));
  font-style: normal;
}

.contact-details {
  margin-top: calc(4 * var(--space));
}

.contact-details__item {
  display: flex;
  align-items: center;
  gap: calc(1 * var(--space));
  min-width: 0;
  margin-bottom: 0;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: calc(1 * var(--space));
}

.site-footer__contact .icon {
  color: var(--ink);
}

.contact-details__item a,
.site-footer__contact a {
  color: var(--accent);
  overflow-wrap: anywhere;
}

.whatsapp-link {
  display: inline-block;
}

.contact-form {
  position: relative;
  max-width: 100%;
  padding: calc(3 * var(--space));
  border: 1px solid var(--accent);
  background: linear-gradient(150deg, rgba(27, 40, 56, 0.5), rgba(27, 40, 56, 0.96)), var(--ground);
  box-shadow: 0 32px 72px rgba(16, 26, 40, 0.28);
}

.contact-form h3 {
  margin-bottom: calc(3 * var(--space));
  font-size: var(--t2);
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--accent);
  background: var(--void);
  padding: calc(8 * var(--space)) var(--page-inset);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: calc(4 * var(--space));
}

.site-footer__brand {
  display: grid;
  gap: calc(3 * var(--space));
}

.site-footer__logo {
  height: 52px;
  width: auto;
}

.site-footer__descriptor {
  max-width: 52ch;
  margin-bottom: 0;
  font-family: "Archivo", Arial Black, sans-serif;
  font-size: var(--t0);
  font-weight: 600;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space) calc(3 * var(--space));
}

.site-footer__nav a {
  display: inline-flex;
  align-items: center;
}

.site-footer__legal {
  margin-bottom: 0;
  padding-top: calc(3 * var(--space));
  border-top: 1px solid rgba(229, 96, 31, 0.42);
  font-size: var(--t-1);
  text-align: center;
}

@media (min-width: 768px) {
  :root {
    --page-inset: 32px;
  }

  .site-section {
    padding-block: calc(14 * var(--space));
  }

  .site-header__inner {
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
    align-items: center;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    z-index: auto;
    justify-self: end;
    display: block;
    overflow: visible;
    padding: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .site-nav .site-nav__list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space) calc(2 * var(--space));
    width: auto;
  }

  .site-nav__item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .site-nav .site-nav__link {
    min-height: 44px;
    font-family: "Source Sans 3", -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-size: var(--t-1);
    letter-spacing: normal;
  }

  .br--mobile {
    display: none;
  }

  .hero {
    min-height: max(820px, calc(100svh - 96px));
  }

  .hero > .section-inner {
    padding-bottom: calc(4 * var(--space));
  }

  .stat-strip__list,
  .service-list,
  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stat-strip__item {
    padding: calc(4 * var(--space)) calc(3 * var(--space));
  }

  .stat-strip__item:first-child {
    padding-left: 0;
  }

  .stat-strip__item:last-child {
    padding-right: 0;
  }

  .stat-strip__item + .stat-strip__item {
    border-top: 0;
    border-left: 1px solid var(--accent);
  }

  .trust-strip__item {
    padding: calc(3 * var(--space));
  }

  .trust-strip__item:first-child {
    padding-left: 0;
  }

  .trust-strip__item:last-child {
    padding-right: 0;
  }

  .trust-strip__item + .trust-strip__item {
    border-top: 0;
    border-left: 1px solid var(--accent);
  }

  .proof-band__quote {
    right: max(var(--page-inset), calc((100vw - var(--container-max)) / 2));
  }

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

  .contact-form h3,
  .contact-form .form-field--honeypot,
  .contact-form .form-field:last-of-type,
  .contact-form .form-actions,
  .contact-form .form-status {
    grid-column: 1 / -1;
  }

  .site-footer__legal {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  :root {
    --page-inset: 48px;
  }

  .site-section {
    padding-block: calc(16 * var(--space));
  }

  .hero {
    min-height: min(92svh, 920px);
  }

  .hero > .section-inner {
    grid-template-columns: minmax(0, 0.618fr) minmax(0, 0.382fr);
    gap: calc(6 * var(--space));
  }

  .hero__brand-material {
    width: min(58vw, 760px);
  }

  .about .section-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.382fr) minmax(0, 0.618fr);
    column-gap: calc(7 * var(--space));
    align-items: start;
  }

  .about .section-header,
  .about__copy {
    grid-column: 2;
  }

  .about .section-header {
    grid-row: 1;
  }

  .about__copy {
    grid-row: 2;
  }

  .about__media {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-top: 0;
  }

  .contact .section-inner {
    grid-template-columns: minmax(0, 0.382fr) minmax(0, 0.618fr);
    gap: calc(7 * var(--space));
    align-items: start;
  }

  .contact-form {
    padding: calc(4 * var(--space));
  }

  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    column-gap: calc(6 * var(--space));
    align-items: start;
  }

  .site-footer__legal {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1440px) {
  :root {
    --page-inset: 64px;
  }

  .site-section {
    padding-block: calc(18 * var(--space));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
  }

  .hero-headline .word__text,
  .section-image,
  .hero__brand-material,
  .about__accent,
  .service-card {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__media {
    inset: 0;
    height: 100%;
  }

  .about .section-image,
  .proof-band .section-image {
    inset: 0;
    height: 100%;
  }

  .proof-band__quote {
    opacity: 1 !important;
    transform: translateY(-50%) !important;
  }
}

.is-capture *,
.is-capture *::before,
.is-capture *::after {
  transition-duration: 0s !important;
  animation-duration: 0s !important;
  animation-delay: 0s !important;
}

.is-capture .preloader {
  display: none !important;
}

.is-capture .hero-headline .word__text,
.is-capture .section-image,
.is-capture .hero__brand-material,
.is-capture .about__accent,
.is-capture .service-card,
.is-capture .section-header,
.is-capture .about__copy p,
.is-capture .stat-strip__item,
.is-capture .trust-strip__item,
.is-capture .contact__content,
.is-capture .contact-form {
  opacity: 1 !important;
  transform: none !important;
}

.is-capture .hero__media {
  inset: 0;
  height: 100%;
}

.is-capture .about .section-image,
.is-capture .proof-band .section-image {
  inset: 0;
  height: 100%;
}

.is-capture .proof-band__quote {
  opacity: 1 !important;
  transform: translateY(-50%) !important;
}

.is-capture .marquee__track {
  animation: none !important;
  transform: translateX(0) !important;
}

/* capture-mode hero heights: svh units inflate in the tall capture viewport; pin to real sizes */
.is-capture .hero { min-height: 900px; }
@media (max-width: 1024px) { .is-capture .hero { min-height: 920px; } }
@media (max-width: 768px) { .is-capture .hero { min-height: 820px; } }

/* the REAL brand mark in the header - never typed text (founder law) */
.site-brand__logo { height: 46px; width: auto; display: block; }
@media (max-width: 768px) { .site-brand__logo { height: 38px; } }

/* FOOTER RECOMPOSED (founder: clean this section) - one decisive layout at every width */
.site-footer { padding: calc(9 * var(--space)) var(--page-inset) calc(5 * var(--space)); }
.site-footer__inner { display: grid; grid-template-columns: minmax(0, 1fr); gap: calc(5 * var(--space)); }
.site-footer__brand { display: grid; gap: calc(2 * var(--space)); align-content: start; }
.site-footer__logo { height: 48px; width: auto; }
.site-footer__descriptor { max-width: 38ch; opacity: 0.85; }
.site-footer__nav { display: flex; flex-wrap: wrap; align-content: start; gap: calc(1.5 * var(--space)) calc(4 * var(--space)); }
.site-footer__contact { display: grid; gap: calc(1.5 * var(--space)); align-content: start; }
@media (min-width: 900px) {
  .site-footer__inner { grid-template-columns: minmax(0, 1.1fr) minmax(0, auto) minmax(0, auto); column-gap: calc(7 * var(--space)); }
  .site-footer__nav { gap: calc(1.5 * var(--space)) calc(3 * var(--space)); }
  .site-footer__nav { justify-content: flex-start; }
  .site-footer__contact { justify-items: start; }
}
.site-footer__legal { grid-column: 1 / -1; margin-top: calc(2 * var(--space)); }
/* the cursor dot must never linger over content when the pointer leaves the window */
.cursor-dot { transition: opacity 0.2s ease; }
body:not(:hover) .cursor-dot { opacity: 0; }

/* ---- Mobile rhythm, touch targets and layout tuning (phones, <=767px) ---- */
@media (max-width: 767px) {
  html {
    scroll-padding-top: 84px;
  }

  .site-section {
    padding-block: calc(9 * var(--space));
  }

  .section-header {
    margin-bottom: calc(4 * var(--space));
  }

  /* hero fills one phone screen without forcing a 900px giant / top void */
  .hero {
    min-height: max(600px, calc(100svh - 64px));
  }

  /* comfortable 44px touch rows for contact + footer links */
  .contact-details__item,
  .footer-contact-row {
    min-height: 44px;
  }

  .contact-details__item a,
  .footer-contact-row a {
    padding-block: calc(0.5 * var(--space));
  }

  /* proof band: give the pull-quote real room instead of a cramped right sliver */
  .proof-band {
    aspect-ratio: 4 / 5;
  }

  .proof-band__quote {
    right: var(--page-inset);
    left: var(--page-inset);
    width: auto;
    padding: calc(2 * var(--space)) calc(2.5 * var(--space));
    font-size: clamp(28px, 8vw, 44px);
  }

  .service-list {
    gap: calc(2.5 * var(--space));
  }
}

/* ---- Small phones (<=430px): keep the nowrap hero lines inside the viewport ---- */
@media (max-width: 430px) {
  :root {
    --t3: clamp(34px, 10vw, 46px);
  }

  .hero__headline {
    letter-spacing: -0.02em;
  }
}

/* tap feedback for primary actions on touch (magnetic/cursor are pointer:fine only) */
.cta-primary:active {
  background: var(--ink);
  color: var(--ground);
}

/* Split hero override - media owns its column; text and form never sit over
   the subject at any width (founder law: no face/text overlap, 13 Jul 2026). */
@media (max-width: 1023.98px) {
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }

  .hero__media {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
  }

  .hero__media .section-image {
    transform: none;
  }

  .hero__shield,
  .hero::before {
    display: none;
  }

  .hero > .section-inner {
    padding-top: calc(2 * var(--space));
  }

  .is-capture .hero__media {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (min-width: 1024px) {
  .hero {
    align-items: center;
    min-height: min(96svh, 980px);
  }

  .hero__media {
    inset: 0;
    left: 56%;
    width: 44%;
    height: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 14%);
    mask-image: linear-gradient(to right, transparent 0, #000 14%);
  }

  .hero__media .section-image {
    object-position: 38% 22%;
    transform: none;
  }

  .hero__shield {
    background: linear-gradient(90deg, rgba(16, 26, 40, 0.96) 42%, rgba(16, 26, 40, 0.55) 56%, rgba(16, 26, 40, 0) 72%);
  }

  .hero > .section-inner {
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    justify-items: start;
  }

  .hero__content,
  .start-here {
    max-width: 600px;
  }

  .hero__cta {
    display: none;
  }

  .start-here {
    width: 100%;
    margin-top: calc(3 * var(--space));
  }

  .is-capture .hero__media {
    inset: 0;
    left: 56%;
    width: 44%;
    height: 100%;
  }
}

/* READY SYSTEM - Uber: monochrome dispatch board and route-card architecture. */
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("../fonts/WorkSans.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ground: #FFFFFF;
  --surface: #F3F3F3;
  --ink: #000000;
  --accent: #000000;
  --accent-deep: #000000;
  --plum-ink: #000000;
  --taupe: #4B4B4B;
  --void: #000000;
  --container-max: 1360px;
  --t3: clamp(46px, 6.6vw, 96px);
}

.design-uber,
.design-uber button,
.design-uber input,
.design-uber select,
.design-uber textarea {
  font-family: "Work Sans", -apple-system, "Helvetica Neue", Arial, sans-serif;
}

.design-uber {
  background: #FFFFFF;
  color: #000000;
}

.design-uber::after {
  opacity: 0.012;
  mix-blend-mode: multiply;
}

.design-uber h1,
.design-uber h2,
.design-uber h3 {
  color: #000000;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
}

.design-uber .site-header {
  border-bottom: 1px solid #E2E2E2;
  background: rgba(255, 255, 255, 0.97);
  color: #000000;
}

.design-uber .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.995);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.design-uber .site-brand {
  min-height: 46px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #000000;
}

.design-uber .site-brand__logo {
  height: 32px;
}

.design-uber .site-nav__link,
.design-uber .nav-toggle {
  color: #000000;
}

.design-uber .site-nav__link {
  padding: 9px 13px;
  border-radius: 999px;
}

.design-uber .site-nav__link:hover,
.design-uber .site-nav__link.is-active {
  background: #EFEFEF;
}

.design-uber .site-nav__link::after {
  display: none;
}

.design-uber .preloader {
  background: #000000;
}

.design-uber .preloader__line {
  background: #FFFFFF;
}

.design-uber .cursor-dot {
  background: #000000;
  mix-blend-mode: difference;
}

.design-uber .hero {
  display: flex;
  min-height: 0;
  padding: 0;
  flex-direction: column;
  background: #FFFFFF;
  color: #000000;
}

.design-uber .hero::before,
.design-uber .hero__shield {
  display: none;
}

.design-uber .hero__media {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  -webkit-mask-image: none;
  mask-image: none;
}

.design-uber .hero__media .section-image {
  position: absolute;
  inset: -7% 0;
  width: 100%;
  height: 114%;
  object-position: 43% 28%;
}

.design-uber .hero__brand-material {
  z-index: 2;
  inset: auto 1.5rem 1.5rem auto;
  width: 11rem;
  height: 4.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9) url("../brand/letterhead-art.webp") center / cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
  opacity: 0.92;
  mix-blend-mode: normal;
}

.design-uber .hero > .section-inner {
  display: grid;
  width: 100%;
  max-width: none;
  padding: calc(5 * var(--space)) var(--page-inset) calc(9 * var(--space));
  gap: calc(4 * var(--space));
  grid-template-columns: minmax(0, 1fr);
  background: #FFFFFF;
}

.design-uber .hero__headline {
  max-width: 9ch;
  color: #000000;
  font-size: clamp(44px, 12vw, 78px);
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.design-uber .hero__headline .accent-word {
  display: inline-block;
  padding-inline: 0.12em;
  border-radius: 999px;
  background: #000000;
  color: #FFFFFF;
}

.design-uber .eyebrow {
  color: #4B4B4B;
  letter-spacing: 0;
  text-transform: none;
}

.design-uber .hero__supporting,
.design-uber .start-here__intro,
.design-uber .service-card__description,
.design-uber .proof__intro {
  color: #4B4B4B;
}

.design-uber .start-here {
  border: 0;
  border-radius: 12px;
  background: #F3F3F3;
  color: #000000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.design-uber .form-field__control {
  border: 1px solid #000000;
  border-radius: 8px;
  background: #FFFFFF;
  color: #000000;
}

.design-uber .cta-primary {
  min-height: 48px;
  border: 1px solid #000000;
  border-radius: 999px;
  background: #000000;
  color: #FFFFFF;
}

.design-uber .cta-primary:hover {
  border-color: #000000;
  background: #E2E2E2;
  color: #000000;
}

.design-uber .stat-strip {
  border-block: 0;
  background: #000000;
  color: #FFFFFF;
}

.design-uber .marquee {
  border-bottom: 1px solid #2D2D2D;
  background: #000000;
  color: #FFFFFF;
}

.design-uber .stat-strip__item + .stat-strip__item {
  border-color: #2D2D2D;
}

.design-uber .stat-strip__value,
.design-uber .stat-strip__suffix,
.design-uber .stat-strip__label {
  color: #FFFFFF;
}

.design-uber .about {
  background: #FFFFFF;
}

.design-uber .about .section-inner {
  position: relative;
  --route-progress: 1;
}

.design-uber .about .section-inner::before {
  position: absolute;
  z-index: 0;
  top: calc(2 * var(--space));
  bottom: calc(2 * var(--space));
  left: calc(var(--page-inset) + 10px);
  width: 2px;
  content: "";
  background: #000000;
  transform: scaleY(var(--route-progress));
  transform-origin: top;
}

.design-uber .about .section-inner::after {
  position: absolute;
  z-index: 1;
  top: calc(2 * var(--space));
  left: calc(var(--page-inset) + 4px);
  width: 14px;
  height: 14px;
  content: "";
  border: 3px solid #000000;
  border-radius: 50%;
  background: #FFFFFF;
}

.design-uber .about .section-header,
.design-uber .about__copy,
.design-uber .about__media {
  position: relative;
  z-index: 2;
}

.design-uber .about__media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.design-uber .about__accent {
  display: none;
}

.design-uber .services {
  background: #F3F3F3;
}

.design-uber .service-list {
  display: grid;
  gap: calc(2 * var(--space));
  grid-template-columns: minmax(0, 1fr);
}

.design-uber .service-card {
  min-height: 20rem;
  border: 0;
  border-radius: 12px;
  background: #FFFFFF;
  color: #000000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.design-uber .service-card::before {
  background: linear-gradient(135deg, transparent 70%, rgba(0, 0, 0, 0.05));
}

.design-uber .service-card .icon--card {
  color: #000000;
}

.design-uber .service-card__number {
  display: inline-grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 50%;
  background: #000000;
  color: #FFFFFF;
}

.design-uber .service-card__title {
  color: #000000;
  font-size: clamp(30px, 3.6vw, 50px);
}

.design-uber .proof {
  background: #FFFFFF;
  color: #000000;
}

.design-uber .trust-strip {
  border: 0;
  border-radius: 12px;
  background: #F3F3F3;
}

.design-uber .trust-strip__item + .trust-strip__item {
  border-color: #D5D5D5;
}

.design-uber .proof-band {
  border: 0;
}

.design-uber .proof-band__quote {
  right: var(--page-inset);
  left: auto;
  border-radius: 12px;
  background: #000000;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.design-uber .contact {
  background: #000000;
  color: #FFFFFF;
}

.design-uber .contact h2,
.design-uber .contact h3,
.design-uber .contact .eyebrow {
  color: #FFFFFF;
}

.design-uber .contact-form {
  border: 0;
  border-radius: 12px;
  background: #FFFFFF;
  color: #000000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.design-uber .contact-form :focus-visible {
  outline-color: #000000;
}

.design-uber .site-footer {
  border-top: 1px solid #2D2D2D;
  background: #000000;
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .design-uber .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .design-uber .service-card:first-child {
    min-height: 16rem;
    grid-column: 1 / -1;
  }

  .design-uber .about .section-header {
    grid-column: 1 / span 5;
  }

  .design-uber .about__copy {
    grid-column: 1 / span 5;
  }

  .design-uber .about__media {
    grid-column: 7 / -1;
    grid-row: 1 / span 2;
  }
}

@media (min-width: 1024px) {
  .design-uber .hero {
    position: relative;
    display: block;
    min-height: min(100svh, 1020px);
    padding-top: 78px;
  }

  .design-uber .hero__media {
    position: absolute;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 38.2%;
    width: 61.8%;
    height: auto;
    aspect-ratio: auto;
  }

  .design-uber .hero__media .section-image {
    object-position: 43% 30%;
  }

  .design-uber .hero > .section-inner {
    position: relative;
    z-index: 3;
    width: 38.2%;
    min-height: calc(min(100svh, 1020px) - 78px);
    margin: 0;
    padding: calc(6 * var(--space)) clamp(28px, 3vw, 56px);
    align-content: center;
  }

  .design-uber .hero__headline {
    font-size: clamp(56px, 5.1vw, 84px);
  }

  .design-uber .hero__brand-material {
    right: 2rem;
    bottom: 2rem;
  }

  .design-uber .is-capture .hero__media {
    top: 78px;
    right: 0;
    bottom: 0;
    left: 38.2%;
    width: 61.8%;
    height: auto;
  }
}

@media (max-width: 767px) {
  .design-uber .site-nav {
    border: 1px solid #D5D5D5;
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  .design-uber .hero__brand-material {
    display: none;
  }
}

/* Hallmark - genre: modern-minimal - macrostructure: Narrative Workflow - theme: Uber - nav: N10 - footer: Ft2 */
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/IBMPlexMono.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

html,
body {
  overflow-x: clip;
}

.design-uber,
.design-uber button,
.design-uber input,
.design-uber select,
.design-uber textarea {
  font-family: "Manrope", sans-serif;
}

.design-uber h1,
.design-uber h2,
.design-uber h3 {
  font-family: "Sora", sans-serif;
}

.design-uber .eyebrow,
.design-uber .service-card__number,
.design-uber .form-field__label {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

.parallax-field {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.parallax-field__layer {
  position: absolute;
  display: block;
  will-change: transform;
}

.design-uber .parallax-field__layer:first-child {
  top: 12%;
  right: 5%;
  width: clamp(70px, 10vw, 150px);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
}

.design-uber .parallax-field__layer:first-child::after {
  position: absolute;
  inset: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000000;
  content: "";
  transform: translate(-50%, -50%);
}

.design-uber .parallax-field__layer:nth-child(2) {
  bottom: 18%;
  left: 3%;
  width: clamp(160px, 24vw, 360px);
  height: 2px;
  background: rgba(0, 0, 0, 0.14);
}

.design-uber .parallax-field__layer:nth-child(3) {
  right: 19%;
  bottom: 7%;
  width: 16px;
  aspect-ratio: 1;
  border: 4px solid #000000;
  border-radius: 50%;
  background: #FFFFFF;
}

.design-uber .site-header {
  min-height: 72px;
  padding: 0;
  border-bottom-color: #E2E2E2;
  background: rgba(255, 255, 255, 0.97);
  transition: background-color 520ms cubic-bezier(0.16, 1, 0.3, 1), border-color 520ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.design-uber .site-header__inner {
  min-height: 72px;
  padding-inline: clamp(16px, 3vw, 36px);
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  transform: translateY(0);
  transition: max-width 520ms cubic-bezier(0.16, 1, 0.3, 1), min-height 520ms cubic-bezier(0.16, 1, 0.3, 1), border-color 520ms cubic-bezier(0.16, 1, 0.3, 1), border-radius 520ms cubic-bezier(0.16, 1, 0.3, 1), background-color 520ms cubic-bezier(0.16, 1, 0.3, 1), transform 520ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.design-uber .site-header.is-scrolled {
  border-bottom-color: transparent;
  background: transparent;
  box-shadow: none;
}

.design-uber .site-header.is-scrolled .site-header__inner {
  min-height: 58px;
  max-width: 58rem;
  border-color: #2D2D2D;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.94);
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  transform: translateY(7px);
}

.design-uber .site-header.is-scrolled .site-nav__link,
.design-uber .site-header.is-scrolled .nav-toggle {
  color: #FFFFFF;
}

.design-uber .site-header.is-scrolled .site-brand {
  background: #FFFFFF;
}

.design-uber .site-header.is-scrolled .site-brand__logo {
  filter: brightness(0);
}

.design-uber .site-nav__link,
.design-uber .site-footer__nav a,
.design-uber .hero__cta,
.design-uber .form-submit {
  white-space: nowrap;
}

.design-uber .hero {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F8F8 100%);
}

.design-uber .services {
  position: relative;
  background: linear-gradient(180deg, #F8F8F8 0%, #FFFFFF 100%);
}

.design-uber .service-list {
  position: relative;
  gap: 0;
}

.design-uber .service-card {
  position: relative;
  min-height: 18rem;
  border-top: 2px solid #000000;
  border-radius: 0;
  box-shadow: none;
}

.design-uber .service-card::after {
  position: absolute;
  top: -8px;
  left: 0;
  width: 14px;
  height: 14px;
  border: 3px solid #000000;
  border-radius: 50%;
  background: #FFFFFF;
  content: "";
}

.design-uber .service-card:first-child {
  grid-column: auto;
}

.design-uber .service-card__number {
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #000000;
}

.design-uber .site-footer {
  padding-block: calc(5 * var(--space));
}

.design-uber .site-footer__inner {
  grid-template-columns: minmax(0, 1fr);
  gap: calc(2 * var(--space));
}

.design-uber .site-footer__nav,
.design-uber .site-footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space) calc(3 * var(--space));
}

@media (min-width: 768px) {
  .design-uber .service-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .design-uber .service-card {
    border-right: 1px solid #D5D5D5;
  }

  .design-uber .service-card:last-child {
    border-right: 0;
  }

  .design-uber .site-footer__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
  }

  .design-uber .site-footer__legal {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .design-uber .hero__media {
    left: 44%;
    width: 56%;
  }

  .design-uber .hero > .section-inner {
    width: 44%;
  }

  .design-uber .hero .parallax-field {
    width: 44%;
  }
}

@media (max-width: 767px) {
  .design-uber .site-header.is-scrolled .site-header__inner {
    margin-inline: var(--space);
  }

  .design-uber .site-nav {
    background: #FFFFFF;
  }

  .design-uber .site-header.is-scrolled .site-nav {
    background: #000000;
  }

  .design-uber .hero .parallax-field {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .parallax-field__layer {
    transform: none !important;
    will-change: auto;
  }
}
/* Image-slot fallback: keeps composition complete if a local bitmap is unavailable. */
.hero__media,
.about__media,
.proof-band {
  background-color: var(--surface);
  background-image:
    radial-gradient(circle at 72% 26%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 34%),
    linear-gradient(135deg, color-mix(in srgb, var(--void) 88%, var(--accent)), var(--surface));
}
