:root {
  --ink: #18372e;
  --ink-deep: #0e2f24;
  --green: #164f3e;
  --green-soft: #dce8dd;
  --paper: #f7f4ec;
  --paper-deep: #ede9de;
  --white: #fffdf8;
  --gold: #735f24;
  --burgundy: #7a3340;
  --blue: #567785;
  --line: rgba(24, 55, 46, 0.18);
  --line-light: rgba(255, 253, 248, 0.24);
  --shadow: 0 18px 50px rgba(24, 55, 46, 0.12);
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --header-height: 78px;
  --shell: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button {
  border: 0;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--burgundy);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink-deep);
  transform: translateY(-160%);
}

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

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

.page {
  min-height: 100vh;
  overflow-x: clip;
}

.section-shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(247, 244, 236, 0.94);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.page--home .site-header {
  position: fixed;
  right: 0;
  left: 0;
  color: var(--white);
  background: rgba(14, 47, 36, 0.14);
  text-shadow: 0 1px 7px rgba(14, 47, 36, 0.46);
}

.site-header.is-scrolled,
.page--home .site-header.is-scrolled,
body.nav-open .site-header {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(247, 244, 236, 0.97);
  box-shadow: 0 8px 28px rgba(24, 55, 46, 0.08);
  backdrop-filter: blur(14px);
  text-shadow: none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
}

.brand__mark {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 253, 248, 0.35);
  border-radius: 50%;
  object-fit: cover;
}

.site-header.is-scrolled .brand__mark,
body.nav-open .brand__mark {
  border-color: var(--line);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}

.site-nav > a,
.nav-dropdown__toggle {
  position: relative;
  padding: 10px 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.site-nav > a::after,
.nav-dropdown__toggle::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after,
.nav-dropdown__toggle:hover::after,
.nav-dropdown:focus-within .nav-dropdown__toggle::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown__toggle::before {
  order: 2;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown__toggle::before {
  transform: translateY(2px) rotate(225deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: -20px;
  width: 260px;
  padding: 12px;
  visibility: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown__menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 12px 10px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.nav-dropdown__menu a:last-child {
  border-bottom: 0;
}

.nav-dropdown__menu a:hover {
  color: var(--burgundy);
  background: var(--paper);
}

.nav-contact {
  padding: 11px 18px !important;
  color: var(--white) !important;
  background: var(--burgundy) !important;
}

.nav-contact::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 23px;
  height: 1px;
  margin: 5px auto;
  content: "";
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  height: 100svh;
  align-items: flex-end;
  color: var(--white);
  background: var(--ink-deep);
  overflow: hidden;
}

.hero__media,
.hero__scrim {
  position: absolute;
  inset: 0;
}

.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero__media video.is-unavailable {
  opacity: 0;
}

.hero__scrim {
  z-index: 1;
  background: rgba(14, 47, 36, 0.28);
  pointer-events: none;
}

.hero--inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  min-height: 100%;
  align-items: center;
  padding-top: calc(var(--header-height) + 32px);
  padding-bottom: 32px;
}

.hero__content {
  max-width: 760px;
}

.hero__content .display {
  margin-bottom: 18px;
}

.hero__content .lede {
  max-width: 620px;
  font-size: 20px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 600px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  background: var(--paper-deep);
}

.page-hero__content {
  display: flex;
  justify-content: flex-end;
  padding: 110px 70px 76px max(32px, calc((100vw - var(--shell)) / 2));
  flex-direction: column;
}

.page-hero__content .display {
  max-width: 630px;
}

.page-hero__content .lede {
  max-width: 550px;
}

.page-hero__media {
  height: 600px;
  min-height: 600px;
  margin: 0;
  overflow: hidden;
}

.page-hero__media img,
.page-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero .eyebrow {
  color: var(--white);
}

.display {
  margin: 0;
  font-size: 78px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: 56px;
}

.section-intro,
.lede {
  max-width: 720px;
  color: inherit;
  font-size: 19px;
  line-height: 1.55;
}

.kicker {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.prose {
  max-width: 660px;
}

.prose p {
  margin-bottom: 1.2em;
}

.muted {
  color: rgba(24, 55, 46, 0.68);
}

.section--green .muted,
.contact-band .muted,
.site-footer .muted {
  color: rgba(255, 253, 248, 0.7);
}

.accent {
  color: var(--burgundy);
}

.section {
  padding: 108px 0;
}

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

.section--green {
  color: var(--white);
  background: var(--green);
}

.section--flush {
  padding: 0;
}

.section--compact {
  padding: 72px 0;
}

.editorial-grid {
  display: grid;
  align-items: start;
  gap: 70px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
}

.editorial-grid--reverse {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.08fr);
}

.editorial-copy {
  padding-top: 24px;
}

.media-frame {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-deep);
}

.media-frame--wide {
  aspect-ratio: 16 / 9;
}

.media-frame--tall {
  aspect-ratio: 4 / 5;
}

.media-frame--portrait {
  aspect-ratio: 3 / 4;
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

a.media-frame:hover img,
.case-card:hover .media-frame img,
.case-feature:hover .media-frame img {
  transform: scale(1.025);
}

.image-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-strip .media-frame:nth-child(2) {
  margin-top: 42px;
}

.image-strip .media-frame:nth-child(3) {
  margin-top: 84px;
}

.advantage-grid {
  display: grid;
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.advantage-item {
  min-height: 250px;
  padding: 38px 32px;
  border-right: 1px solid var(--line);
}

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

.advantage-item__number,
.service-link__number {
  display: block;
  margin-bottom: 42px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 18px;
}

.advantage-item h3 {
  margin-bottom: 14px;
  font-size: 31px;
}

.service-index {
  border-top: 1px solid var(--line-light);
}

.service-link {
  display: grid;
  align-items: center;
  min-height: 180px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 90px minmax(0, 1fr) minmax(250px, 0.52fr) 42px;
  transition:
    color 180ms ease,
    padding 180ms ease,
    background 180ms ease;
}

.service-link:hover {
  padding-right: 18px;
  padding-left: 18px;
  color: var(--ink-deep);
  background: var(--paper);
}

.service-link h3 {
  margin: 0;
  font-size: 46px;
}

.service-link p {
  max-width: 390px;
  margin: 0;
}

.service-link__arrow,
.text-link__arrow {
  font-size: 28px;
  line-height: 1;
}

.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  position: relative;
  display: grid;
  min-width: 220px;
  min-height: 112px;
  padding: 24px;
  place-items: center;
  border-right: 1px solid var(--line);
  white-space: nowrap;
}

.marquee__link {
  color: inherit;
  isolation: isolate;
  transition:
    box-shadow 220ms ease,
    filter 220ms ease;
}

.marquee__link::after {
  position: absolute;
  right: 10px;
  bottom: 8px;
  padding: 4px 7px;
  color: var(--green);
  background: rgba(255, 253, 248, 0.94);
  content: "Learn more";
  font-size: 9px;
  font-weight: 700;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(5px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.marquee__link:hover,
.marquee__link:focus-visible {
  box-shadow: inset 0 -3px var(--gold);
  filter: brightness(1.04);
}

.marquee__link:hover::after,
.marquee__link:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.marquee__link .partner-mark,
.marquee__link .partner-wordmark {
  transition: transform 220ms ease;
}

.marquee__link:hover .partner-mark,
.marquee__link:hover .partner-wordmark,
.marquee__link:focus-visible .partner-mark,
.marquee__link:focus-visible .partner-wordmark {
  transform: translateY(-5px);
}

.marquee__item--azuki {
  color: #d7c59d;
  background: #221f1b;
}

.marquee__item--dram5 {
  background: #171717;
}

.partner-mark {
  display: block;
  width: auto;
  height: auto;
  max-width: 150px;
  max-height: 48px;
}

.partner-mark--joybuy {
  max-width: 136px;
}

.partner-mark--hazzys {
  max-width: 142px;
}

.partner-mark--khao-soi {
  max-width: 164px;
  max-height: 55px;
}

.partner-mark--dram5 {
  max-width: 160px;
  max-height: 44px;
}

.partner-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-deep);
  line-height: 1;
}

.partner-wordmark strong,
.partner-wordmark small {
  font: inherit;
}

.partner-wordmark--sensen {
  gap: 3px;
  flex-direction: column;
  font-family: Arial, sans-serif;
  font-size: 23px;
  font-weight: 800;
}

.partner-wordmark--sensen small {
  color: var(--burgundy);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.partner-wordmark--azuki {
  gap: 10px;
  color: inherit;
  font-family: var(--serif);
  font-size: 17px;
  text-transform: uppercase;
}

.partner-wordmark--azuki > span {
  font-size: 25px;
}

.partner-wordmark--lotus {
  gap: 8px;
  color: var(--green);
  font-family: var(--serif);
  font-size: 22px;
}

.partner-wordmark--lotus > span {
  color: var(--gold);
  font-size: 25px;
}

.partner-wordmark--vclub {
  gap: 7px;
  color: var(--blue);
  font-family: var(--serif);
  text-transform: uppercase;
}

.partner-wordmark--vclub strong {
  font-size: 36px;
  font-weight: 400;
}

.partner-wordmark--vclub small {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
}

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

.selected-work {
  display: grid;
  gap: 70px;
}

.case-feature {
  display: grid;
  align-items: center;
  gap: 54px;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.68fr);
}

.case-feature:nth-child(even) {
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.22fr);
}

.case-feature:nth-child(even) .media-frame {
  order: 2;
}

.case-feature h3 {
  margin-bottom: 16px;
  font-size: 46px;
}

.case-grid {
  display: grid;
  gap: 50px 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card {
  min-width: 0;
  border-top: 1px solid var(--line);
}

.case-card[hidden] {
  display: none;
}

.case-card__media {
  display: block;
  margin-top: 14px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-deep);
}

.case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.case-card:hover .case-card__media img {
  transform: scale(1.025);
}

.case-card__body {
  padding: 22px 0 0;
}

.case-card__body h2,
.case-card__body h3 {
  margin-bottom: 12px;
  font-size: 34px;
}

.case-card__meta {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.metric-row {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section--green .metric-row {
  border-color: var(--line-light);
}

.metric {
  min-height: 150px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.section--green .metric {
  border-color: var(--line-light);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.section--green .metric strong {
  color: #e2cd86;
}

.founder-grid {
  display: grid;
  gap: 70px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.founder-card {
  display: grid;
  align-items: end;
  gap: 30px;
  grid-template-columns: minmax(180px, 0.62fr) minmax(0, 1fr);
}

.founder-card .media-frame {
  aspect-ratio: 3 / 4;
}

.founder-card h3 {
  margin-bottom: 8px;
  font-size: 36px;
}

.founder-card__role {
  display: block;
  margin-bottom: 22px;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.quote-band {
  padding: 92px 0;
  text-align: center;
}

.quote-band blockquote {
  max-width: 980px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: 56px;
  font-style: italic;
  line-height: 1.08;
}

.filter-bar {
  display: inline-flex;
  margin: 34px 0 52px;
  border: 1px solid var(--line);
}

.filter-button {
  min-height: 44px;
  padding: 10px 18px;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.filter-button:last-child {
  border-right: 0;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--white);
  background: var(--green);
}

.process-grid {
  display: grid;
  margin-top: 46px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step {
  min-height: 220px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step:nth-child(3n) {
  border-right: 0;
}

.process-step strong {
  display: block;
  margin-bottom: 32px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 30px;
}

.phone-collage {
  display: grid;
  align-items: end;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.phone-frame {
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
  border: 6px solid var(--ink-deep);
  border-radius: 6px;
  background: var(--ink-deep);
  box-shadow: var(--shadow);
}

.phone-frame:nth-child(2) {
  transform: translateY(34px);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  color: var(--white);
  border: 1px solid var(--ink-deep);
  background: var(--ink-deep);
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  color: var(--ink-deep);
  background: transparent;
}

.button--light {
  color: var(--ink-deep);
  border-color: var(--white);
  background: var(--white);
}

.button--light:hover {
  color: var(--white);
  background: transparent;
}

.button--ghost {
  color: inherit;
  border-color: currentColor;
  background: transparent;
}

.button--ghost:hover {
  color: var(--white);
  border-color: var(--burgundy);
  background: var(--burgundy);
}

.hero .button--ghost {
  color: var(--white);
}

.hero .button--light {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.hero .button--light:hover {
  color: var(--white);
  border-color: var(--white);
  background: var(--ink-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.text-link:hover {
  color: var(--burgundy);
}

.stack {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.contact-band {
  padding: 88px 0;
  color: var(--white);
  background: var(--burgundy);
}

.contact-band__inner {
  display: grid;
  align-items: end;
  gap: 60px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.contact-band h2 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: 58px;
}

.contact-band__actions {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.site-footer {
  padding: 58px 0 30px;
  color: var(--white);
  background: var(--ink-deep);
}

.footer-grid {
  display: grid;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: minmax(280px, 1.2fr) repeat(2, minmax(150px, 0.4fr));
}

.footer-grid .brand {
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.footer-links strong {
  margin-bottom: 6px;
  color: #e2cd86;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: #e2cd86;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 12px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 680ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

html.motion-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
}

html.motion-ready .case-card.reveal:not(.is-visible),
html.motion-ready .founder-card.reveal:not(.is-visible),
html.motion-ready .process-step.reveal:not(.is-visible) {
  transform: translate3d(0, 42px, 0) scale(0.975);
}

html.motion-ready figure.reveal:not(.is-visible),
html.motion-ready .social-case-media.reveal:not(.is-visible) {
  transform: translate3d(-22px, 28px, 0) scale(0.985);
}

html.motion-ready .home-intro__copy.reveal:not(.is-visible) {
  transform: translate3d(-24px, 38px, 0);
}

html.motion-ready .home-intro__gallery.reveal:not(.is-visible) {
  transform: translate3d(24px, 38px, 0) scale(0.985);
}

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

html.motion-ready .stagger-group.is-visible > * {
  animation: reveal-child 620ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: calc(var(--stagger-index, 0) * 85ms);
}

html.motion-ready .hero__content > * {
  animation: hero-enter 760ms cubic-bezier(0.16, 0.72, 0.24, 1) both;
}

html.motion-ready .hero__content > :nth-child(1) {
  animation-delay: 80ms;
}

html.motion-ready .hero__content > :nth-child(2) {
  animation-delay: 150ms;
}

html.motion-ready .hero__content > :nth-child(3) {
  animation-delay: 220ms;
}

html.motion-ready .hero__content > :nth-child(4) {
  animation-delay: 290ms;
}

html.motion-ready .hero__content > :nth-child(5) {
  animation-delay: 360ms;
}

@keyframes reveal-child {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.case-card.filter-enter {
  animation: filter-enter 420ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes filter-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.case-card,
.founder-card,
.process-step,
.advantage-item {
  transition:
    background-color 220ms ease,
    box-shadow 320ms ease,
    transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.case-card:hover,
.case-card:focus-within {
  transform: translateY(-7px);
}

.process-step:hover,
.process-step:focus-within,
.advantage-item:hover,
.advantage-item:focus-within {
  background: rgba(190, 154, 61, 0.08);
  transform: translateY(-4px);
}

.section--green .process-step:hover,
.section--green .process-step:focus-within,
.section--green .advantage-item:hover,
.section--green .advantage-item:focus-within {
  background: rgba(255, 253, 248, 0.07);
}

section[id],
article[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

section:target .section-heading,
section:target .case-title,
article:target .section-heading,
article:target .case-title {
  animation: proof-focus 900ms ease both;
}

@keyframes proof-focus {
  0% {
    opacity: 0.45;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__media--poster {
  background:
    #18372e url("/assets/media/zeeman-loop-higgsfield-poster.webp") center / cover
      no-repeat;
}

.home-intro {
  padding: 40px 0 88px;
  background: var(--paper);
}

.home-intro__layout {
  display: grid;
  align-items: center;
  gap: 82px;
  grid-template-columns: minmax(330px, 0.7fr) minmax(0, 1.3fr);
}

.home-intro__copy {
  position: relative;
  z-index: 2;
}

.home-intro__copy .section-heading {
  max-width: 560px;
}

.home-intro__copy .prose {
  max-width: 560px;
}

.home-intro__pull {
  max-width: 480px;
  margin: 36px 0 0;
  padding: 24px 0 0 30px;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  line-height: 1.2;
}

.home-intro__cities {
  display: grid;
  align-items: center;
  gap: 14px;
  max-width: 390px;
  margin-top: 38px;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 700;
  grid-template-columns: auto minmax(50px, 1fr) auto;
  text-transform: uppercase;
}

.home-intro__cities span:nth-child(2) {
  height: 1px;
  background: var(--burgundy);
}

.home-intro__gallery {
  position: relative;
  min-height: 670px;
}

.home-intro__gallery::before {
  position: absolute;
  top: 38px;
  right: 8%;
  width: 58%;
  height: 82%;
  content: "";
  background: var(--green);
}

.home-intro__image {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.home-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-intro__image--primary {
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 58%;
  height: 610px;
}

.home-intro__image--primary img {
  object-position: 52% 46%;
}

.home-intro__image--secondary {
  top: 0;
  right: 0;
  z-index: 2;
  width: 49%;
  height: 500px;
  border: 12px solid var(--paper);
}

.home-intro__image--secondary img {
  object-position: 54% 62%;
}

.home-intro__caption {
  position: absolute;
  right: 2px;
  bottom: 48px;
  z-index: 3;
  margin: 0;
  padding: 12px 16px;
  color: var(--white);
  background: var(--burgundy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.advantage-showcase {
  color: var(--white);
  background: var(--green);
}

.advantage-showcase__layout {
  display: grid;
  align-items: center;
  gap: 72px;
  grid-template-columns: minmax(0, 1.12fr) minmax(370px, 0.88fr);
}

.advantage-showcase__media {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
}

.advantage-showcase__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    to top,
    rgba(8, 37, 28, 0.82) 0,
    rgba(8, 37, 28, 0) 54%
  );
  pointer-events: none;
}

.advantage-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantage-showcase__media figcaption {
  position: absolute;
  right: 34px;
  bottom: 32px;
  left: 34px;
  z-index: 1;
  display: grid;
  align-items: end;
  gap: 22px;
  grid-template-columns: auto minmax(0, 1fr);
}

.advantage-showcase__media figcaption strong {
  color: #e2cd86;
  font-family: var(--serif);
  font-size: 62px;
  font-weight: 400;
  line-height: 0.9;
}

.advantage-showcase__media figcaption span {
  max-width: 310px;
  color: rgba(255, 253, 248, 0.84);
  font-size: 13px;
}

.advantage-showcase .eyebrow {
  color: #e2cd86;
}

.advantage-showcase .section-heading {
  max-width: 610px;
  margin-bottom: 42px;
}

.advantage-stack {
  border-top: 1px solid var(--line-light);
}

.advantage-showcase .advantage-item {
  display: grid;
  align-items: start;
  gap: 18px;
  min-height: 0;
  padding: 24px 0;
  border-right: 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 48px minmax(0, 1fr);
}

.advantage-showcase .advantage-item__number {
  margin: 5px 0 0;
  color: #e2cd86;
  font-size: 14px;
}

.advantage-showcase .advantage-item h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 30px;
}

.advantage-showcase .advantage-item p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
}

.service-gallery {
  display: grid;
  gap: 2px;
  margin-top: 46px;
  background: rgba(255, 253, 248, 0.2);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

.service-panel > img,
.service-panel__shade {
  position: absolute;
  inset: 0;
}

.service-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-panel:nth-child(1) > img {
  object-position: 53% center;
}

.service-panel:nth-child(2) > img {
  object-position: 52% center;
}

.service-panel:nth-child(3) > img {
  object-position: 48% center;
}

.service-panel__shade {
  background: linear-gradient(
    to top,
    rgba(8, 37, 28, 0.94) 0,
    rgba(8, 37, 28, 0.2) 70%
  );
  transition: background 400ms ease;
}

.service-panel__content {
  position: absolute;
  inset: auto 30px 30px;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.service-panel__number,
.service-panel__description {
  grid-column: 1 / -1;
}

.service-panel__number {
  color: #e2cd86;
  font-family: var(--serif);
  font-size: 15px;
}

.service-panel__title {
  max-width: 320px;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.02;
}

.service-panel__description {
  max-width: 290px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 14px;
}

.service-panel__arrow {
  align-self: end;
  font-size: 28px;
  line-height: 1;
  transition: transform 180ms ease;
}

.service-panel:hover > img,
.service-panel:focus-visible > img {
  transform: scale(1.04);
}

.service-panel:hover .service-panel__shade,
.service-panel:focus-visible .service-panel__shade {
  background: linear-gradient(
    to top,
    rgba(8, 37, 28, 0.96) 0,
    rgba(8, 37, 28, 0.08) 78%
  );
}

.service-panel:hover .service-panel__arrow,
.service-panel:focus-visible .service-panel__arrow {
  transform: translateX(6px);
}

.case-card__media--phones {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10%;
  padding: 22px 28px;
  background:
    linear-gradient(145deg, rgba(14, 47, 36, 0.08), transparent 58%),
    var(--paper-deep);
}

.case-card__media--phones img {
  width: auto;
  height: 92%;
  border: 5px solid var(--ink-deep);
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 14px 28px rgba(14, 47, 36, 0.16);
}

.case-card__media--phones img:nth-child(2) {
  transform: translateY(12px);
}

.case-card:hover .case-card__media--phones img:first-child {
  transform: translateY(-4px);
}

.case-card:hover .case-card__media--phones img:nth-child(2) {
  transform: translateY(8px);
}

.city-story {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--green);
}

.city-story__image,
.city-story__shade {
  position: absolute;
  inset: 0;
}

.city-story__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-story__shade {
  background: linear-gradient(
    90deg,
    rgba(8, 37, 28, 0.9) 0,
    rgba(8, 37, 28, 0.58) 38%,
    rgba(8, 37, 28, 0.06) 76%
  );
}

.city-story__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 520px;
  justify-content: flex-end;
  padding-top: 84px;
  padding-bottom: 64px;
  flex-direction: column;
}

.city-story .eyebrow {
  color: #e2cd86;
}

.city-story h2 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: 72px;
  font-style: italic;
}

.city-story__content > p:last-child {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 253, 248, 0.84);
  font-size: 18px;
}

.founder-grid--compact {
  gap: 22px;
}

.social-hero .page-hero__media {
  position: relative;
}

.social-hero .page-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(14, 47, 36, 0.14);
  pointer-events: none;
}

.social-hero .page-hero__media img {
  object-position: 56% center;
}

.social-hero .display {
  margin-bottom: 18px;
}

.scope-list {
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.scope-list li {
  display: grid;
  align-items: baseline;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 48px minmax(0, 1fr);
}

.scope-list span {
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 18px;
}

.scope-list strong {
  font-size: 17px;
  font-weight: 500;
}

.social-method .advantage-grid,
.social-method .advantage-item {
  border-color: var(--line-light);
}

.social-method .advantage-item__number,
.section--green .eyebrow,
.section--green .case-label {
  color: #e2cd86;
}

.social-case-media {
  position: relative;
  min-height: 610px;
}

.social-case-media .media-frame {
  position: absolute;
  inset: 0 20% 0 0;
  aspect-ratio: auto;
}

.social-case-media .phone-frame {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -24px;
  width: min(44%, 270px);
}

.social-case-media--single .media-frame {
  inset: 0 30% 0 0;
}

.social-case-media--single .phone-frame {
  width: min(48%, 290px);
}

.case-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.case-title {
  margin-bottom: 20px;
  font-size: 54px;
}

.case-stat {
  padding: 32px 0;
  margin: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-stat strong {
  display: block;
  margin-bottom: 7px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
}

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

.section--green .case-stat {
  border-color: var(--line-light);
}

.section--green .case-stat strong {
  color: #e2cd86;
}

.trend-formula {
  margin: 34px 0 48px;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.25;
}

.trend-strip {
  display: grid;
  align-items: start;
  gap: 22px;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.12fr);
}

.trend-strip .media-frame:first-child {
  margin-top: 78px;
}

.cross-link {
  display: grid;
  align-items: center;
  gap: 30px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(0, 1fr) auto;
}

.cross-link h3 {
  margin-bottom: 8px;
  font-size: 32px;
}

.related-services {
  border-top: 1px solid var(--line);
}

.related-service {
  display: grid;
  align-items: center;
  gap: 30px;
  min-height: 126px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 46px minmax(0, 1fr) auto;
}

.related-service span:first-child {
  color: var(--burgundy);
  font-family: var(--serif);
}

.related-service h3 {
  margin: 0;
  font-size: 34px;
}

.related-service:hover {
  color: var(--burgundy);
}

.about-engine .service-link {
  min-height: 150px;
  column-gap: 18px;
  grid-template-columns: 48px minmax(130px, 0.55fr) minmax(0, 1fr);
}

.about-engine .service-link:hover {
  padding-right: 0;
  padding-left: 0;
  color: inherit;
  background: transparent;
}

.about-engine .service-link__number {
  margin-bottom: 0;
}

.about-engine .service-link h3 {
  font-size: 40px;
}

@media (max-width: 1020px) {
  :root {
    --header-height: 70px;
  }

  .section-shell {
    width: min(calc(100% - 44px), var(--shell));
  }

  .display {
    font-size: 62px;
  }

  .section-heading {
    font-size: 48px;
  }

  .site-nav {
    gap: 20px;
  }

  .page-hero {
    min-height: 560px;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .page-hero__content {
    padding-right: 42px;
    padding-left: 22px;
  }

  .page-hero__media {
    height: 560px;
    min-height: 560px;
  }

  .editorial-grid,
  .editorial-grid--reverse {
    gap: 44px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  }

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

  .founder-grid {
    gap: 54px;
  }

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

  .founder-card .media-frame {
    max-width: 360px;
  }

  .home-intro__layout {
    gap: 48px;
    grid-template-columns: minmax(310px, 0.82fr) minmax(0, 1.18fr);
  }

  .home-intro__gallery {
    min-height: 600px;
  }

  .home-intro__image--primary {
    height: 550px;
  }

  .home-intro__image--secondary {
    height: 430px;
  }

  .advantage-showcase__layout {
    gap: 44px;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  }

  .advantage-showcase__media {
    min-height: 480px;
  }

  .service-panel {
    min-height: 440px;
  }

  .service-panel__content {
    inset: auto 22px 24px;
  }

  .service-panel__title {
    font-size: 31px;
  }
}

@media (max-width: 820px) {
  body.nav-open .site-header {
    backdrop-filter: none;
  }

  .lotus-metrics {
    grid-template-columns: 1fr;
  }

  .social-case-media {
    min-height: 540px;
  }

  .social-case-media .media-frame {
    inset: 0 16% 0 0;
  }

  .social-case-media--single .media-frame {
    inset: 0 26% 0 0;
  }

  .case-title {
    font-size: 45px;
  }

  .about-engine .service-link {
    gap: 10px 18px;
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .about-engine .service-link p {
    grid-column: 2;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    align-items: stretch;
    padding: 28px 22px 40px;
    color: var(--ink);
    background: var(--paper);
    opacity: 0;
    transform: translateY(-10px);
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

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

  .site-nav > a,
  .nav-dropdown__toggle {
    display: flex;
    width: 100%;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
  }

  .nav-contact {
    width: max-content !important;
    min-height: 48px !important;
    margin-top: 24px;
    padding: 11px 18px !important;
    justify-content: center !important;
    border-bottom: 0 !important;
  }

  .nav-dropdown__menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 0 0 18px;
    visibility: hidden;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    overflow: hidden;
    transition: max-height 200ms ease;
  }

  .site-nav .nav-dropdown.is-open .nav-dropdown__menu {
    max-height: 240px;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav .nav-dropdown:not(.is-open) .nav-dropdown__menu {
    visibility: hidden;
    pointer-events: none;
  }

  .hero {
    min-height: 100svh;
    height: 100svh;
  }

  .hero--inner {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 24px;
  }

  .hero__content {
    max-width: 650px;
  }

  .page-hero {
    display: flex;
    min-height: 0;
    flex-direction: column-reverse;
  }

  .page-hero__content {
    padding: 58px 22px 64px;
  }

  .page-hero__media {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .section {
    padding: 82px 0;
  }

  .home-intro {
    padding: 44px 0 74px;
  }

  .home-intro__layout {
    gap: 46px;
    grid-template-columns: 1fr;
  }

  .home-intro__copy {
    max-width: 650px;
  }

  .home-intro__gallery {
    min-height: 610px;
  }

  .home-intro__image--primary {
    width: 64%;
    height: 560px;
  }

  .home-intro__image--secondary {
    width: 48%;
    height: 440px;
  }

  .advantage-showcase__layout {
    gap: 52px;
    grid-template-columns: 1fr;
  }

  .advantage-showcase__media {
    min-height: 480px;
  }

  .advantage-showcase__content {
    max-width: 680px;
  }

  .service-gallery {
    grid-template-columns: 1fr;
  }

  .service-panel {
    min-height: 330px;
  }

  .service-panel__content {
    inset: auto 28px 28px;
  }

  .service-panel__title {
    font-size: 38px;
  }

  .city-story {
    min-height: 0;
    padding-top: 33.35%;
  }

  .city-story__image {
    height: auto;
    object-fit: contain;
  }

  .city-story__shade {
    background: linear-gradient(
      to bottom,
      rgba(8, 37, 28, 0) 0,
      rgba(8, 37, 28, 0) 25vw,
      var(--green) 33vw
    );
  }

  .city-story__content {
    min-height: 350px;
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .city-story h2 {
    font-size: 58px;
  }

  .editorial-grid,
  .editorial-grid--reverse {
    grid-template-columns: 1fr;
  }

  .editorial-grid--reverse .editorial-copy {
    order: 2;
  }

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

  .advantage-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .advantage-item:last-child {
    border-bottom: 0;
  }

  .service-link {
    min-height: 0;
    gap: 14px 22px;
    grid-template-columns: 52px minmax(0, 1fr) 32px;
  }

  .service-link p {
    grid-column: 2 / -1;
  }

  .case-feature,
  .case-feature:nth-child(even) {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .case-feature:nth-child(even) .media-frame {
    order: 0;
  }

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

  .metric-row,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .metric,
  .process-step {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .contact-band__inner {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }
}

@media (max-width: 620px) {
  .social-hero .page-hero__media img {
    object-position: 54% center;
  }

  .social-case-media {
    min-height: 450px;
  }

  .social-case-media .media-frame,
  .social-case-media--single .media-frame {
    inset: 0 18% 0 0;
  }

  .social-case-media .phone-frame,
  .social-case-media--single .phone-frame {
    right: 0;
    bottom: -12px;
    width: 43%;
    border-width: 3px;
  }

  .case-title {
    font-size: 38px;
  }

  .case-stat strong {
    font-size: 42px;
  }

  .trend-formula {
    font-size: 27px;
  }

  .trend-strip {
    gap: 9px;
  }

  .trend-strip .media-frame:first-child {
    margin-top: 36px;
  }

  .cross-link {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .related-service {
    gap: 16px;
    grid-template-columns: 32px minmax(0, 1fr) 24px;
  }

  .related-service h3 {
    font-size: 28px;
  }

  .section-shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .brand {
    font-size: 16px;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .display {
    font-size: 46px;
  }

  .section-heading {
    font-size: 39px;
  }

  .section-intro,
  .lede,
  .hero__content .lede {
    font-size: 17px;
  }

  .hero {
    min-height: 100svh;
    height: 100svh;
  }

  .hero__media video,
  .hero__media img {
    object-position: 50% 50%;
  }

  .hero__scrim {
    background: rgba(14, 47, 36, 0.36);
  }

  .hero--inner {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 20px;
  }

  .hero__content {
    max-width: calc(100% - 26px);
  }

  .hero__meta {
    align-items: stretch;
    gap: 10px;
    flex-direction: column;
  }

  .hero__meta .button {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .section--compact {
    padding: 54px 0;
  }

  .home-intro {
    padding: 34px 0 60px;
  }

  .home-intro__pull {
    margin-top: 28px;
    padding-top: 20px;
    padding-left: 22px;
    font-size: 23px;
  }

  .home-intro__cities {
    margin-top: 30px;
  }

  .home-intro__gallery {
    min-height: 500px;
  }

  .home-intro__gallery::before {
    right: 5%;
    width: 64%;
  }

  .home-intro__image--primary {
    width: 68%;
    height: 450px;
  }

  .home-intro__image--secondary {
    width: 54%;
    height: 350px;
    border-width: 8px;
  }

  .home-intro__caption {
    right: 0;
    bottom: 22px;
  }

  .advantage-showcase {
    padding: 60px 0;
  }

  .advantage-showcase__layout {
    gap: 42px;
  }

  .advantage-showcase__media {
    min-height: 380px;
  }

  .advantage-showcase__media figcaption {
    right: 22px;
    bottom: 22px;
    left: 22px;
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .advantage-showcase__media figcaption strong {
    font-size: 52px;
  }

  .advantage-showcase .section-heading {
    margin-bottom: 26px;
  }

  .advantage-showcase .advantage-item {
    padding: 21px 0;
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .advantage-showcase .advantage-item h3 {
    font-size: 27px;
  }

  .service-gallery {
    margin-top: 32px;
  }

  .service-panel {
    min-height: 310px;
  }

  .service-panel__content {
    inset: auto 22px 22px;
  }

  .service-panel__title {
    font-size: 32px;
  }

  .case-card__media--phones {
    padding: 18px 22px;
  }

  .case-card__media--phones img {
    border-width: 4px;
    border-radius: 14px;
  }

  .city-story__content {
    min-height: 310px;
    padding-top: 48px;
    padding-bottom: 50px;
  }

  .city-story h2 {
    font-size: 44px;
  }

  .city-story__content > p:last-child {
    font-size: 16px;
  }

  .editorial-grid,
  .editorial-grid--reverse {
    gap: 30px;
  }

  .image-strip {
    gap: 7px;
  }

  .image-strip .media-frame:nth-child(2) {
    margin-top: 22px;
  }

  .image-strip .media-frame:nth-child(3) {
    margin-top: 44px;
  }

  .advantage-item {
    padding: 30px 10px;
  }

  .advantage-item__number {
    margin-bottom: 24px;
  }

  .service-link {
    padding: 26px 0;
    grid-template-columns: 36px minmax(0, 1fr) 28px;
  }

  .service-link:hover {
    padding-right: 8px;
    padding-left: 8px;
  }

  .service-link h3 {
    font-size: 34px;
  }

  .marquee__item {
    min-width: 170px;
    min-height: 92px;
    padding: 20px;
  }

  .partner-mark {
    max-width: 126px;
    max-height: 42px;
  }

  .partner-mark--khao-soi {
    max-width: 142px;
  }

  .partner-wordmark--sensen {
    font-size: 20px;
  }

  .partner-wordmark--azuki {
    gap: 7px;
    font-size: 14px;
  }

  .partner-wordmark--lotus {
    font-size: 19px;
  }

  .case-grid {
    gap: 46px;
    grid-template-columns: 1fr;
  }

  .case-feature h3,
  .case-card__body h2,
  .case-card__body h3 {
    font-size: 33px;
  }

  .phone-collage {
    gap: 8px;
  }

  .phone-frame {
    border-width: 3px;
  }

  .phone-frame:nth-child(2) {
    transform: translateY(18px);
  }

  .quote-band {
    padding: 68px 0;
  }

  .quote-band blockquote {
    font-size: 38px;
  }

  .filter-bar {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-button {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .filter-button:nth-child(2n) {
    border-right: 0;
  }

  .contact-band {
    padding: 66px 0;
  }

  .contact-band h2 {
    font-size: 41px;
  }

  .contact-band__actions {
    width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

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

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

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

  html.motion-ready .stagger-group.is-visible > *,
  html.motion-ready .hero__content > *,
  .case-card.filter-enter {
    animation: none;
  }

  .marquee__track {
    animation: none;
  }
}
