@font-face {
  font-family: "Alte Haas Grotesk";
  src: url("../fonts/AlteHaasGrotesk-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Alte Haas Grotesk";
  src: url("../fonts/AlteHaasGrotesk-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans Sundanese";
  src: url("../fonts/NotoSansSundanese-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+1B80-1BBF;
}

:root {
  color-scheme: light;
  --paper: #efede6;
  --paper-deep: #e4e1d8;
  --ink: #171716;
  --ink-soft: #242321;
  --muted: #6a6862;
  --red: #e83b36;
  --red-bright: #f34b45;
  --line: rgba(23, 23, 22, 0.18);
  --line-light: rgba(239, 237, 230, 0.22);
  --shell: min(92vw, 1440px);
  --radius: 18px;
  --pill: 999px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --layer-media: 2;
  --layer-copy: 5;
  --layer-menu: 70;
  --layer-header: 80;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Alte Haas Grotesk", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

::selection {
  background: var(--red);
  color: var(--ink);
}

.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;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 11px 16px;
  border-radius: var(--pill);
  background: var(--paper);
  color: var(--ink);
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

section[id] {
  scroll-margin-top: 92px;
}

.section-pad {
  padding-block: clamp(88px, 8vw, 124px) clamp(104px, 9vw, 140px);
}

.site-header {
  position: fixed;
  top: 24px;
  right: auto;
  left: 50%;
  z-index: var(--layer-header);
  width: min(93.6vw, 1440px);
  height: 58px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 180px;
  align-items: center;
  gap: 24px;
  padding: 0 10px;
  color: var(--paper);
  transform: translateX(-50%);
  transition: color 240ms ease, background 240ms ease, border 240ms ease, padding 240ms ease;
}

.site-header .menu-toggle {
  justify-self: end;
}

.site-header.is-scrolled {
  top: 12px;
  padding: 0 12px 0 16px;
  border: 1px solid rgba(23, 23, 22, 0.13);
  border-radius: var(--pill);
  background: rgba(239, 237, 230, 0.96);
  color: var(--ink);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.brand {
  width: 166px;
  height: 56px;
  display: grid;
  place-items: center start;
  overflow: visible;
}

.brand img {
  width: 124px;
  max-width: none;
  height: auto;
  filter: invert(1) grayscale(1) brightness(2.2);
  transition: width 240ms var(--ease), filter 240ms ease;
}

.site-header.is-scrolled .brand img {
  width: 106px;
  filter: none;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
}

.desktop-nav a {
  font-size: 0.92rem;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  color: inherit;
  opacity: 0.78;
  transition: opacity 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  opacity: 1;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--pill);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 220ms var(--ease), background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button:active {
  transform: translateY(1px) scale(0.985);
}

.button-red {
  background: var(--red);
  color: var(--ink);
}

.button-red:hover {
  background: var(--red-bright);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-content: center;
  gap: 6px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform 220ms var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero-scroll-stage {
  position: relative;
  height: 185dvh;
}

.hero {
  position: sticky;
  top: 12px;
  height: calc(100dvh - 24px);
  min-height: calc(100dvh - 24px);
  margin: 12px;
  isolation: isolate;
  overflow: clip;
  border-radius: 30px;
  background: var(--ink);
  color: var(--paper);
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 92% 4%, rgba(232, 59, 54, 0.54), transparent 32%),
    radial-gradient(circle at 8% 72%, rgba(125, 35, 31, 0.38), transparent 30%),
    linear-gradient(135deg, #2a1210 0%, #100e0d 48%, #481816 100%);
}

.hero-guides {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-guides::before {
  content: "";
  position: absolute;
  top: 86px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line-light);
}

.hero-guides span {
  position: absolute;
  top: 86px;
  bottom: 0;
  width: 1px;
  background: var(--line-light);
}

.hero-guides span:first-child {
  left: 33.333%;
}

.hero-guides span:last-child {
  left: 66.666%;
}

.hero-heading-stage {
  --hero-reel-half: min(14.3vw, 183px);
  --hero-close-gap: 18px;
  position: absolute;
  z-index: 3;
  top: 48%;
  right: 2.4vw;
  left: 2.4vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 1.6vw, 24px);
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-heading-half {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  color: var(--paper);
  font-size: clamp(2.75rem, 5.5vw, 6.2rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
  will-change: transform, opacity;
}

.hero-heading-left {
  text-align: left;
  transform-origin: right center;
}

.hero-heading-right {
  text-align: left;
  transform-origin: left center;
}

.hero-heading-close {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(var(--hero-reel-half) + var(--hero-close-gap)));
  color: var(--red-bright);
  font-size: clamp(1.6rem, 2.55vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  will-change: transform, opacity;
}

.hero-reel {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: min(22vw, 282px);
  aspect-ratio: 0.77;
  overflow: visible;
  transform: translate(-50%, -50%);
}

.hero-reel::after {
  content: none;
}

.hero-reel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-reel-frame {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(239, 237, 230, 0.28);
  border-radius: 10px;
  background: #1f1715;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  transform-origin: center center;
  will-change: transform;
}

.hero-reel-frame:nth-child(2) {
  z-index: 1;
}

.hero-reel-frame:nth-child(3) {
  z-index: 2;
}

.hero-reel-frame:nth-child(4) {
  z-index: 3;
}

.hero-reel-frame:nth-child(5) {
  z-index: 4;
}

.hero-reel-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.hero-reel-frame:nth-child(even) img {
  transform: scale(1.04);
}

.hero-reel-frame:nth-child(2) img,
.hero-reel-frame-rider img {
  object-position: 60% center;
}

.hero-reel-frame:nth-child(3) img {
  object-position: 57% center;
}

.hero-reel-frame-alt img {
  object-position: 72% center;
}

.hero-lower {
  position: absolute;
  z-index: 5;
  right: 2.8vw;
  bottom: 28px;
  left: 2.8vw;
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(250px, 300px);
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  will-change: transform, opacity;
}

.hero-intro p {
  max-width: 430px;
  margin: 0;
  color: rgba(239, 237, 230, 0.76);
  font-size: clamp(0.96rem, 1.25vw, 1.16rem);
}

.hero-intro .button {
  margin-top: 22px;
}

.hero-talk-button {
  min-width: 160px;
  min-height: 48px;
  justify-content: space-between;
  gap: 18px;
  padding: 0 19px 0 21px;
  background: var(--paper);
  color: var(--ink);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  letter-spacing: -0.025em;
}

.hero-talk-button::after {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  transition: transform 220ms var(--ease), background 220ms ease;
}

.hero-talk-button:hover {
  background: var(--paper-deep);
}

.hero-talk-button:hover::after,
.hero-talk-button:focus-visible::after {
  transform: scale(1.35);
  background: var(--red-bright);
}

.hero-services {
  display: grid;
}

.hero-services a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-light);
  font-weight: 700;
  text-decoration: none;
  transition: padding 220ms var(--ease), color 220ms ease;
}

.hero-services a:hover,
.hero-services a:focus-visible {
  padding-left: 10px;
  color: var(--red-bright);
}

.logo-section {
  padding-block: clamp(98px, 10vw, 148px) clamp(104px, 10vw, 150px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle, rgba(23, 23, 22, 0.1) 1px, transparent 1.2px) 0 0 / 16px 16px,
    var(--paper);
}

.logo-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
  align-items: start;
}

.logo-intro {
  grid-column: 1 / span 3;
  display: flex;
  justify-content: space-between;
  margin: 8px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.logo-heading > div {
  grid-column: 7 / -1;
}

.logo-heading h2 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-wrap: balance;
}

.logo-heading > div > p {
  max-width: 550px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  text-wrap: pretty;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  gap: clamp(9px, 0.85vw, 13px);
  margin-top: clamp(70px, 8vw, 116px);
}

.logo-card {
  position: relative;
  grid-column: span 2;
  min-height: clamp(88px, 7.4vw, 108px);
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 22, 0.06);
  border-radius: clamp(10px, 1vw, 16px);
  background: rgba(248, 247, 243, 0.92);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease), background 220ms ease, border-color 220ms ease;
}

.logo-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 320ms var(--ease);
}

.logo-card img {
  width: min(78%, 140px);
  height: clamp(40px, 3.8vw, 54px);
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.35) brightness(0.9);
  opacity: 0.94;
  transition: filter 220ms ease, opacity 220ms ease, transform 220ms var(--ease);
}

.logo-card:hover {
  border-color: rgba(23, 23, 22, 0.14);
  background: var(--paper-deep);
  transform: translateY(-3px);
}

.logo-card:hover::after {
  transform: scaleX(1);
}

.logo-card:hover img {
  filter: grayscale(0) brightness(1) contrast(1.05);
  opacity: 1;
  transform: scale(1.035);
}

.motion-ready .logo-grid.reveal .logo-card {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}

.motion-ready .logo-grid.reveal.is-visible .logo-card {
  opacity: 1;
  transform: none;
}

.motion-ready .logo-grid.reveal.is-visible .logo-card:nth-child(n + 8):nth-child(-n + 14) {
  transition-delay: 70ms;
}

.motion-ready .logo-grid.reveal.is-visible .logo-card:nth-child(n + 15) {
  transition-delay: 140ms;
}

.office-section {
  padding-block: clamp(102px, 10vw, 150px) clamp(110px, 11vw, 164px);
  background: var(--paper-deep);
}

.office-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
  align-items: start;
}

.office-label {
  grid-column: 1 / span 3;
  display: flex;
  justify-content: space-between;
  margin: 8px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.office-heading > div {
  grid-column: 7 / -1;
}

.office-heading h2 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-wrap: balance;
}

.office-heading > div > p {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  text-wrap: pretty;
}

.office-map {
  position: relative;
  aspect-ratio: 1983 / 793;
  margin: clamp(64px, 7vw, 104px) 0 0;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 22, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
}

.office-map img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 720ms var(--ease), opacity 520ms ease;
}

.motion-ready .office-map.reveal img {
  opacity: 0.72;
  transform: scale(1.025);
}

.motion-ready .office-map.reveal.is-visible img {
  opacity: 1;
  transform: scale(1);
}

.office-map-pin {
  position: absolute;
  z-index: 2;
  width: 0;
  height: 0;
  pointer-events: none;
}

.office-map-pin-jakarta {
  left: 22%;
  top: 34.2%;
}

.office-map-pin-bogor {
  left: 21.7%;
  top: 40.8%;
}

.office-map-pin-bandung {
  left: 29.4%;
  top: 46.3%;
}

.office-map-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(241, 239, 232, 0.92);
  transform: translate(-50%, -50%);
}

.office-map-pulse::after {
  position: absolute;
  inset: -5px;
  border: 1.5px solid var(--red);
  border-radius: inherit;
  content: "";
  animation: office-pulse 2.2s var(--ease) infinite;
}

.office-map-pin-bogor .office-map-pulse::after {
  animation-delay: 0.7s;
}

.office-map-pin-bandung .office-map-pulse::after {
  animation-delay: 1.4s;
}

.office-map-tag {
  position: absolute;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 10px 6px;
  border: 1px solid rgba(23, 23, 22, 0.13);
  border-radius: var(--pill);
  background: rgba(241, 239, 232, 0.94);
  color: var(--ink);
  font-size: clamp(0.7rem, 0.9vw, 0.88rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.office-map-tag strong {
  font: inherit;
}

.office-map-tag small {
  color: var(--red);
  font-size: 0.67em;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.office-map-pin-jakarta .office-map-tag {
  transform: translate(-50%, calc(-100% - 20px));
}

.office-map-pin-bogor .office-map-tag {
  transform: translate(-50%, 20px);
}

.office-map-pin-bandung .office-map-tag {
  transform: translate(20px, -50%);
}

@keyframes office-pulse {
  0%,
  18% {
    opacity: 0.95;
    transform: scale(0.65);
  }

  72%,
  100% {
    opacity: 0;
    transform: scale(2.15);
  }
}

.office-locations {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
  margin-top: clamp(32px, 4vw, 54px);
}

.office-location {
  grid-column: span 3;
  display: grid;
  align-content: start;
  gap: 24px;
  min-height: 190px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  transition: opacity 440ms var(--ease), transform 520ms var(--ease);
}

.office-location-primary {
  grid-column: span 6;
  border-color: var(--red);
}

.office-location p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
}

.office-location p span:first-child {
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  letter-spacing: -0.045em;
}

.office-location p span:last-child,
.office-status {
  color: var(--muted);
  font-size: 0.82rem;
}

.office-location-primary p span:last-child {
  color: var(--red);
  font-weight: 700;
}

.office-location address {
  max-width: 610px;
  color: var(--muted);
  font-style: normal;
}

.office-location .text-link {
  width: fit-content;
  margin-top: auto;
}

.motion-ready .office-locations.reveal .office-location {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

.motion-ready .office-locations.reveal.is-visible .office-location {
  opacity: 1;
  transform: none;
}

.motion-ready .office-locations.reveal.is-visible .office-location:nth-child(2) {
  transition-delay: 90ms;
}

.motion-ready .office-locations.reveal.is-visible .office-location:nth-child(3) {
  transition-delay: 180ms;
}

.manifesto {
  position: relative;
  min-height: max(960px, 150svh);
}

.manifesto.section-pad {
  padding-block: 0;
}

.manifesto-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: clip;
  padding-block: clamp(100px, 9vw, 132px) clamp(64px, 6vw, 88px);
}

.manifesto-layout {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 1.6vw, 26px);
  align-items: center;
}

.manifesto-copy {
  grid-column: 1 / span 7;
  grid-row: 1;
  position: relative;
  z-index: 1;
}

.manifesto-kicker {
  max-width: 560px;
  display: flex;
  justify-content: space-between;
  margin: 0 0 clamp(24px, 2.5vw, 38px);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.manifesto-copy h2,
.contact-intro h2 {
  margin: 0;
  font-size: clamp(3.4rem, 7.6vw, 8.1rem);
  font-weight: 400;
  letter-spacing: -0.068em;
  line-height: 0.95;
  text-wrap: balance;
}

.manifesto-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.065em;
  margin-bottom: -0.065em;
}

.manifesto-line > span {
  display: block;
  transform-origin: 50% 100%;
}

.manifesto-detail {
  max-width: 560px;
  margin: 34px 0 28px;
}

.manifesto-detail > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.text-link {
  position: relative;
  display: inline-flex;
  padding-bottom: 8px;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(var(--red), var(--red)) left bottom / 30% 2px no-repeat;
  transition: background-size 180ms var(--ease), transform 180ms var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .text-link:hover {
    background-size: 100% 2px;
    transform: translateX(2px);
  }
}

.manifesto-media {
  grid-column: 9 / span 4;
  grid-row: 1;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  transform-origin: 50% 50%;
}

.manifesto-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: 50% 50%;
}

.manifesto-quote {
  grid-column: 8 / span 4;
  grid-row: 1;
  align-self: end;
  justify-self: start;
  z-index: 2;
  width: min(100%, 430px);
  margin: 0;
  padding: clamp(30px, 3vw, 38px);
  border-radius: var(--radius);
  background: var(--red);
  transform-origin: 60% 60%;
}

.manifesto-quote p {
  margin: 0;
  font-size: clamp(2.5rem, 3.6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.motion-ready .manifesto.is-motion-ready .manifesto-line > span {
  opacity: 0.12;
  transform: translate3d(0, 110%, 0);
}

.motion-ready .manifesto.is-motion-ready .manifesto-kicker,
.motion-ready .manifesto.is-motion-ready .manifesto-detail,
.motion-ready .manifesto.is-motion-ready .manifesto-media,
.motion-ready .manifesto.is-motion-ready .manifesto-quote {
  opacity: 0;
}

.manifesto.is-motion-ready .manifesto-line > span,
.manifesto.is-motion-ready .manifesto-kicker,
.manifesto.is-motion-ready .manifesto-detail,
.manifesto.is-motion-ready .manifesto-media,
.manifesto.is-motion-ready .manifesto-media img,
.manifesto.is-motion-ready .manifesto-quote {
  will-change: transform, opacity;
}

.statement {
  overflow: hidden;
  padding-block: clamp(34px, 4vw, 54px);
  background: var(--paper);
}

.statement-track {
  width: max-content;
  display: flex;
  animation: statement-move 28s linear infinite;
  will-change: transform;
}

.statement-sequence {
  display: flex;
  align-items: center;
  gap: clamp(32px, 3.5vw, 56px);
  padding-right: clamp(32px, 3.5vw, 56px);
}

.statement-sequence span {
  font-size: clamp(5rem, 10.5vw, 10.5rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.78;
  text-transform: uppercase;
  white-space: nowrap;
}

.statement-sequence strong {
  color: var(--red);
  font: inherit;
}

.statement-sequence img {
  width: clamp(86px, 9vw, 148px);
  flex: 0 0 auto;
}

@keyframes statement-move {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.services {
  padding-block: clamp(102px, 10vw, 150px) clamp(112px, 11vw, 164px);
  background: var(--paper-deep);
}

.services-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
  align-items: start;
  margin-bottom: clamp(64px, 7vw, 104px);
}

.services-label {
  grid-column: 1 / span 3;
  display: flex;
  justify-content: space-between;
  margin: 8px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.services-heading > div {
  grid-column: 7 / -1;
}

.services-heading h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-wrap: balance;
}

.services-heading > div > p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  text-wrap: pretty;
}

.service-feature {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  min-height: clamp(680px, 58vw, 760px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}

.service-feature-media {
  grid-column: 1 / span 7;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.service-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms var(--ease);
}

.motion-ready .service-feature.reveal .service-feature-media img {
  transform: scale(1.07);
}

.motion-ready .service-feature.reveal.is-visible .service-feature-media img {
  transform: scale(1);
}

.service-feature-copy {
  grid-column: 8 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(36px, 4.5vw, 66px);
}

.service-feature-meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(239, 237, 230, 0.62);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.service-feature-copy h3 {
  margin: clamp(34px, 4vw, 54px) 0 0;
  font-size: clamp(3.3rem, 5.5vw, 6rem);
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.service-feature-lead {
  max-width: 420px;
  margin: 30px 0 0;
  font-size: clamp(1.18rem, 1.7vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.service-feature-body {
  max-width: 470px;
  margin: 18px 0 0;
  color: rgba(239, 237, 230, 0.66);
}

.service-capabilities {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.service-capabilities li {
  padding: 11px 0;
  border-top: 1px solid var(--line-light);
  color: rgba(239, 237, 230, 0.78);
  font-size: 0.83rem;
  line-height: 1.25;
}

.service-feature-copy .button {
  margin-top: auto;
}

.service-index {
  margin-top: clamp(68px, 7vw, 104px);
  border-top: 1px solid var(--line);
}

.service-row {
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease;
}

.service-row-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 68px minmax(260px, 1.05fr) minmax(240px, 0.75fr) 36px;
  gap: clamp(18px, 2vw, 32px);
  align-items: center;
  min-height: 126px;
  padding: 28px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.service-row-number {
  align-self: start;
  padding-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.055em;
}

.service-row-title {
  font-size: clamp(2.2rem, 4.3vw, 4.65rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
  transition: color 220ms ease, transform 260ms var(--ease);
}

.service-row-summary {
  max-width: 360px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.35;
}

.service-row-arrow {
  justify-self: end;
  color: var(--red);
  font-size: 1.45rem;
  transition: transform 300ms var(--ease);
}

.service-row:hover,
.service-row:focus-within,
.service-row.is-open {
  background: linear-gradient(90deg, rgba(232, 59, 54, 0.065), transparent 62%);
}

.service-row:hover .service-row-title,
.service-row:focus-within .service-row-title,
.service-row.is-open .service-row-title {
  color: var(--red);
  transform: translateX(6px);
}

.service-row.is-open .service-row-number {
  color: var(--red);
}

.service-row.is-open .service-row-arrow {
  transform: rotate(-90deg);
}

.service-row-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 520ms var(--ease), opacity 280ms ease;
}

.service-row-panel-clip {
  overflow: hidden;
}

.service-row-panel-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 90px);
  padding: 0 0 clamp(42px, 5vw, 72px) 100px;
}

.service-row-panel figure {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.service-row-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.055);
  transition: transform 620ms var(--ease);
}

.service-row-panel-inner > div {
  display: grid;
  align-content: start;
  gap: 28px;
  padding-right: clamp(20px, 4vw, 60px);
}

.service-row-panel-inner p {
  max-width: 610px;
  margin: 0;
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.35;
}

.service-row-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-row-panel li {
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.service-row.is-open .service-row-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.service-row.is-open .service-row-panel img {
  transform: scale(1);
}

.contact {
  position: relative;
  overflow: hidden;
  margin: 12px 12px 0;
  padding: clamp(82px, 8vw, 124px) 4vw clamp(88px, 9vw, 136px);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 14% 86%, rgba(232, 59, 54, 0.34), transparent 38%),
    var(--ink);
  color: var(--paper);
}

.contact-mark {
  position: absolute;
  left: -6%;
  bottom: -18%;
  width: min(42vw, 640px);
  opacity: 0.075;
  transform: rotate(8deg);
}

.contact-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 1240px);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(540px, 1.2fr);
  gap: clamp(52px, 8vw, 118px);
  align-items: start;
  margin-inline: auto;
}

.contact-intro {
  display: grid;
  align-content: start;
  gap: 0;
  padding-top: 8px;
}

.contact-intro h2 {
  max-width: 590px;
  margin: clamp(62px, 7vw, 96px) 0 0;
  font-size: clamp(4rem, 6.6vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.88;
  text-wrap: balance;
}

.contact-intro > p:not(.contact-kicker) {
  max-width: 500px;
  margin: 36px 0 0;
  color: rgba(239, 237, 230, 0.66);
  font-size: 1.05rem;
}

.contact-kicker {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.contact-direct {
  display: grid;
  justify-items: start;
  gap: 10px;
  margin-top: clamp(52px, 6vw, 86px);
}

.contact-direct a {
  color: rgba(239, 237, 230, 0.82);
  text-decoration-color: rgba(239, 237, 230, 0.35);
  text-underline-offset: 6px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.contact-direct a:hover,
.contact-direct a:focus-visible {
  color: var(--red-bright);
  text-decoration-color: var(--red-bright);
}

.contact-form-panel {
  position: relative;
  min-width: 0;
  padding: clamp(26px, 3vw, 42px);
  border-radius: calc(var(--radius) - 4px);
  background: var(--paper);
  color: var(--ink);
}

.contact-tabs {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 0 36px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
}

.contact-tabs button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--pill);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 140ms var(--ease);
}

.contact-tabs button[aria-selected="true"] {
  background: var(--ink);
  color: var(--paper);
}

.contact-tabs button:active {
  transform: scale(0.985);
}

.lead-form[hidden] {
  display: none;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 22px;
  animation: contact-panel-in 180ms var(--ease) both;
}

@keyframes contact-panel-in {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.field {
  display: grid;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  color: var(--muted);
  font-size: 0.9rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  outline: 0;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 2px rgba(232, 59, 54, 0.16);
}

.form-end {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.form-end p {
  margin: 0;
  max-width: 230px;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-success {
  padding: 16px 18px;
  border: 1px solid rgba(232, 59, 54, 0.42);
  border-radius: 10px;
  background: rgba(232, 59, 54, 0.08);
  animation: contact-panel-in 260ms var(--ease) both;
}

.form-success[data-status="error"] {
  border-color: rgba(166, 30, 25, 0.5);
  background: rgba(166, 30, 25, 0.1);
}

.site-footer {
  position: relative;
  padding: clamp(94px, 10vw, 150px) 4vw 28px;
  background: var(--paper);
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
  align-items: start;
}

.footer-brand {
  grid-column: 1 / span 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
}

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

.footer-brand p {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.8rem, 5.2vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-wrap: balance;
}

.footer-nav,
.footer-social,
.footer-contact {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.footer-nav {
  grid-column: 6 / span 2;
}

.footer-social {
  grid-column: 8 / span 2;
}

.footer-contact {
  grid-column: 10 / -1;
}

.footer-nav > span,
.footer-social > span,
.footer-contact > span {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.footer-contact address {
  max-width: 360px;
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
}

.footer-main a,
.back-to-top {
  text-underline-offset: 5px;
  transition: color 180ms ease, transform 180ms var(--ease);
}

.footer-main a:hover,
.footer-main a:focus-visible,
.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--red);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  margin-top: clamp(80px, 10vw, 148px);
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-bottom > :nth-child(2) {
  justify-self: center;
}

.footer-legal {
  display: grid;
  gap: 5px;
}

.back-to-top {
  justify-self: end;
}

.back-to-top span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 180ms var(--ease);
}

.back-to-top:hover span,
.back-to-top:focus-visible span {
  transform: translateY(-3px);
}

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

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 360ms var(--ease), transform 420ms var(--ease);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 154px minmax(0, 1fr) 154px;
  }

  .brand {
    width: 146px;
  }

  .brand img {
    width: 116px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .logo-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .logo-card {
    grid-column: auto;
  }

}

@media (max-width: 820px) {
  :root {
    --shell: min(92vw, 720px);
    --radius: 14px;
  }

  .section-pad {
    padding-block: 68px 82px;
  }

  .site-header {
    top: 18px;
    right: 6vw;
    left: 6vw;
    width: auto;
    grid-template-columns: 1fr auto;
    height: 56px;
    transform: none;
  }

  .site-header.is-scrolled {
    top: 10px;
  }

  .desktop-nav {
    display: none;
  }

  .brand img {
    width: 122px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 19px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 220ms var(--ease);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: var(--layer-menu);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    padding: 108px 6vw 48px;
    background: var(--ink);
    color: var(--paper);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu > a:not(.button) {
    font-size: clamp(2.7rem, 12vw, 5.2rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 0.9;
    text-decoration: none;
  }

  .mobile-menu .button {
    margin-top: 24px;
  }

  .hero {
    position: relative;
    top: auto;
    height: min(700px, calc(100dvh - 16px));
    min-height: 620px;
    margin: 8px;
    border-radius: 20px;
  }

  .hero-scroll-stage {
    height: auto;
  }

  .hero-guides::before,
  .hero-guides span {
    top: 74px;
  }

  .hero-heading-stage {
    --hero-reel-half: 72px;
    --hero-close-gap: 12px;
    top: 27%;
    right: 3vw;
    left: 3vw;
    gap: 10px;
  }

  .hero-heading-half {
    font-size: clamp(1.55rem, 6.6vw, 2.25rem);
    letter-spacing: -0.055em;
  }

  .hero-heading-left {
    padding-right: 0;
  }

  .hero-heading-right {
    padding-left: 0;
  }

  .hero-heading-close {
    font-size: clamp(1.25rem, 5.6vw, 1.75rem);
  }

  .hero-reel {
    top: calc(50% + clamp(128px, 20vh, 168px));
    display: block;
    width: 88px;
    aspect-ratio: 0.72;
  }

  .hero.is-mobile-scroll .hero-reel-frame {
    opacity: 1;
    transition: none;
  }

  .hero.is-mobile-scroll .hero-reel-frame:nth-child(1) {
    transform: translate3d(0, 10px, 0) rotate(-1deg) scale(1.04);
  }

  .hero.is-mobile-scroll .hero-reel-frame:nth-child(2) {
    transform: translate3d(-32px, -5px, 0) rotate(-12deg) scale(0.92);
  }

  .hero.is-mobile-scroll .hero-reel-frame:nth-child(3) {
    transform: translate3d(32px, -2px, 0) rotate(11deg) scale(0.93);
  }

  .hero.is-mobile-scroll .hero-reel-frame:nth-child(4) {
    transform: translate3d(-17px, 7px, 0) rotate(-6deg) scale(0.98);
  }

  .hero.is-mobile-scroll .hero-reel-frame:nth-child(5) {
    transform: translate3d(17px, 9px, 0) rotate(5deg) scale(1);
  }

  .hero-lower {
    right: 5vw;
    bottom: 24px;
    left: 5vw;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-intro p {
    max-width: 100%;
    font-size: 0.96rem;
  }

  .hero-intro .button {
    margin-top: 16px;
  }

  .hero-services a {
    padding: 10px 0;
  }

  .logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .logo-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .logo-intro,
  .logo-heading > div {
    grid-column: 1;
  }

  .office-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .office-label,
  .office-heading > div {
    grid-column: 1;
  }

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

  .office-location,
  .office-location-primary {
    grid-column: auto;
  }

  .office-location-primary {
    grid-column: 1 / -1;
  }

  .services {
    padding-block: 84px 104px;
  }

  .services-heading {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 54px;
  }

  .services-label,
  .services-heading > div {
    grid-column: 1;
  }

  .services-heading h2 {
    font-size: clamp(3rem, 11vw, 5rem);
  }

  .service-feature {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-feature-media,
  .service-feature-copy {
    grid-column: 1;
  }

  .service-feature-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .service-feature-copy {
    padding: clamp(30px, 7vw, 52px);
  }

  .service-feature-copy h3 {
    font-size: clamp(3.2rem, 10vw, 5rem);
  }

  .service-feature-copy .button {
    margin-top: 34px;
  }

  .service-index {
    margin-top: 60px;
  }

  .service-row-trigger {
    grid-template-columns: 48px minmax(0, 1fr) 32px;
    gap: 14px;
    min-height: 0;
    padding: 26px 0;
  }

  .service-row-number {
    grid-column: 1;
    grid-row: 1;
  }

  .service-row-title {
    grid-column: 2;
    grid-row: 1;
    font-size: clamp(2.15rem, 7vw, 3.65rem);
  }

  .service-row-summary {
    grid-column: 2 / -1;
    grid-row: 2;
    max-width: 520px;
    font-size: 0.94rem;
  }

  .service-row-arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .service-row-panel-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 0 48px 62px;
  }

  .service-row-panel-inner > div {
    gap: 24px;
    padding-right: 20px;
  }

  .manifesto {
    min-height: auto;
  }

  .manifesto-sticky {
    position: relative;
    top: auto;
    min-height: 0;
    align-items: start;
    padding-block: 52px 96px;
  }

  .manifesto-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .manifesto-copy,
  .manifesto-media,
  .manifesto-quote {
    grid-column: 1;
  }

  .manifesto-copy {
    position: relative;
    top: auto;
  }

  .manifesto-media {
    grid-row: auto;
    width: 86%;
    justify-self: end;
    margin-top: 42px;
  }

  .manifesto-quote {
    grid-row: auto;
    width: min(86%, 430px);
    justify-self: start;
    margin: -34px 0 0;
  }

  .manifesto-kicker {
    margin-bottom: 26px;
  }

  .motion-ready .manifesto.is-mobile-motion:not(.is-visible) .manifesto-kicker,
  .motion-ready .manifesto.is-mobile-motion:not(.is-visible) .manifesto-detail,
  .motion-ready .manifesto.is-mobile-motion:not(.is-visible) .manifesto-media,
  .motion-ready .manifesto.is-mobile-motion:not(.is-visible) .manifesto-quote {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }

  .motion-ready .manifesto.is-mobile-motion:not(.is-visible) .manifesto-line > span {
    opacity: 0.12;
    transform: translate3d(0, 105%, 0);
  }

  .manifesto.is-mobile-motion .manifesto-kicker,
  .manifesto.is-mobile-motion .manifesto-detail,
  .manifesto.is-mobile-motion .manifesto-media,
  .manifesto.is-mobile-motion .manifesto-quote,
  .manifesto.is-mobile-motion .manifesto-line > span {
    transition: opacity 480ms var(--ease), transform 620ms var(--ease);
  }

  .manifesto.is-mobile-motion .manifesto-line:nth-child(2) > span {
    transition-delay: 60ms;
  }

  .manifesto.is-mobile-motion .manifesto-line:nth-child(3) > span {
    transition-delay: 120ms;
  }

  .manifesto.is-mobile-motion .manifesto-line:nth-child(4) > span {
    transition-delay: 180ms;
  }

  .manifesto.is-mobile-motion .manifesto-detail {
    transition-delay: 220ms;
  }

  .manifesto.is-mobile-motion .manifesto-media {
    transition-delay: 280ms;
  }

  .manifesto.is-mobile-motion .manifesto-quote {
    transition-delay: 360ms;
  }

  .statement-sequence span {
    font-size: clamp(4.8rem, 16vw, 7rem);
  }

  .statement-sequence img {
    width: clamp(78px, 17vw, 112px);
  }

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .contact-intro h2 {
    max-width: 720px;
  }

  .contact-direct {
    margin-top: 42px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: 1;
  }

  .footer-brand,
  .footer-nav,
  .footer-social,
  .footer-contact {
    grid-column: 1;
  }

  .footer-nav,
  .footer-social,
  .footer-contact {
    margin-top: 48px;
  }
}

@media (max-width: 520px) {
  .section-pad {
    padding-block: 56px 70px;
  }

  .brand {
    width: 142px;
  }

  .brand img {
    width: 118px;
  }

  .hero-heading-stage {
    top: 25%;
    gap: 8px;
  }

  .hero-heading-half {
    font-size: clamp(1.42rem, 6.4vw, 1.8rem);
  }

  .hero-heading-close {
    font-size: clamp(1.1rem, 5.2vw, 1.55rem);
  }

  .hero-lower {
    gap: 14px;
  }

  .hero-intro p {
    max-width: 330px;
  }

  .hero-intro .button {
    min-height: 46px;
  }

  .hero-talk-button {
    min-width: 148px;
    min-height: 46px;
    gap: 16px;
    padding-inline: 19px 16px;
    font-size: 0.96rem;
  }

  .hero-talk-button::after {
    width: 8px;
    height: 8px;
  }

  .logo-section {
    padding-block: 70px 76px;
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 52px;
  }

  .logo-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .logo-heading > div > p {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .office-section {
    padding-block: 70px 76px;
  }

  .office-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .office-heading > div > p {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .office-map {
    margin-top: 48px;
  }

  .services {
    padding-block: 72px 88px;
  }

  .services-heading {
    gap: 28px;
    margin-bottom: 44px;
  }

  .services-heading h2 {
    font-size: clamp(2.8rem, 12vw, 4.15rem);
  }

  .services-heading > div > p {
    margin-top: 20px;
    font-size: 0.98rem;
  }

  .service-feature-copy {
    padding: 28px 24px 30px;
  }

  .service-feature-copy h3 {
    margin-top: 30px;
    font-size: clamp(2.9rem, 13vw, 4.1rem);
  }

  .service-feature-lead {
    margin-top: 24px;
  }

  .service-capabilities {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .service-row-trigger {
    grid-template-columns: 36px minmax(0, 1fr) 28px;
    gap: 10px;
    padding: 24px 0;
  }

  .service-row-number {
    padding-top: 5px;
  }

  .service-row-title {
    font-size: clamp(1.9rem, 8vw, 2.75rem);
  }

  .service-row-summary {
    font-size: 0.9rem;
  }

  .service-row-panel-inner {
    gap: 24px;
    padding: 0 0 42px;
  }

  .service-row-panel-inner > div {
    padding-right: 0;
  }

  .service-row-panel ul {
    grid-template-columns: 1fr;
  }

  .logo-card {
    min-height: 82px;
  }

  .logo-card img {
    width: min(68%, 90px);
    height: 48px;
  }

  .manifesto-copy h2,
  .contact-intro h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .manifesto-quote {
    padding: 28px;
  }

  .statement {
    padding-block: 28px 34px;
  }

  .statement-sequence {
    gap: 28px;
    padding-right: 28px;
  }

  .statement-sequence span {
    font-size: 4.8rem;
  }

  .statement-sequence img {
    width: 78px;
  }

  .contact-tabs {
    width: 100%;
  }

  .contact-tabs button {
    min-width: 0;
    padding-inline: 12px;
  }

  .contact {
    margin: 8px;
    padding: 70px 5vw 78px;
  }

  .contact-intro h2 {
    margin-top: 48px;
  }

  .contact-intro > p:not(.contact-kicker) {
    margin-top: 26px;
    font-size: 0.98rem;
  }

  .contact-form-panel {
    padding: 22px 18px 24px;
  }

  .contact-tabs {
    margin-bottom: 28px;
  }

  .office-map-pulse {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 2px rgba(241, 239, 232, 0.92);
  }

  .office-map-pulse::after {
    inset: -3px;
  }

  .office-map-tag {
    gap: 4px;
    padding: 5px 7px 4px;
    font-size: 0.58rem;
    backdrop-filter: none;
  }

  .office-map-tag small {
    display: none;
  }

  .office-map-pin-jakarta .office-map-tag {
    transform: translate(-82%, calc(-100% - 13px));
  }

  .office-map-pin-bogor .office-map-tag {
    transform: translate(-76%, 13px);
  }

  .office-map-pin-bandung .office-map-tag {
    transform: translate(13px, -50%);
  }

  .office-locations {
    grid-template-columns: 1fr;
  }

  .office-location,
  .office-location-primary {
    grid-column: 1;
    min-height: 160px;
  }

  .form-end {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-bottom > :nth-child(2),
  .back-to-top {
    justify-self: start;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

  .office-map-pulse::after {
    opacity: 0.3;
    animation: none;
    transform: scale(1.25);
  }

  .statement-track {
    width: 100%;
    animation: none;
    transform: none;
  }

  .statement-sequence:first-child {
    width: 100%;
    display: grid;
    gap: 28px;
    padding-inline: 4vw;
  }

  .statement-sequence:first-child span {
    white-space: normal;
  }

  .statement-sequence[aria-hidden="true"] {
    display: none;
  }

  .hero-scroll-stage {
    height: auto;
  }

  .hero {
    position: relative;
    top: auto;
  }

  .manifesto {
    min-height: auto;
  }

  .manifesto-sticky {
    position: relative;
    top: auto;
  }

  .manifesto-line > span,
  .manifesto-kicker,
  .manifesto-detail,
  .manifesto-media,
  .manifesto-media img,
  .manifesto-quote {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
