:root {
  --paper: #f6f4ef;
  --paper-deep: #e9e7e0;
  --ink: #171816;
  --muted: #666a62;
  --line: rgba(23, 24, 22, 0.16);
  --soft-line: rgba(23, 24, 22, 0.1);
  --accent: #7c8374;
  --accent-light: #aeb6a8;
  --accent-dark: #5b6255;
  --forest: #171816;
  --forest-soft: #242622;
  --white: #f6f4ef;
  --sans: "Helvetica Neue", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --display: "Helvetica Neue", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --page: min(1240px, calc(100% - 80px));
  --header-height: 86px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

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

body::before {
  position: fixed;
  z-index: 10;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

body.menu-open {
  overflow: hidden;
}

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

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

:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 5px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.85rem;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

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

.section {
  position: relative;
  padding-block: clamp(110px, 13vw, 190px);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--ink);
  transition:
    background-color 300ms ease,
    border-color 300ms ease,
    transform 400ms var(--ease-out);
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(23, 25, 22, 0.1);
  background: rgba(246, 244, 239, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  width: var(--page);
  height: var(--header-height);
  margin-inline: auto;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
}

.brand-lockup {
  position: relative;
  display: inline-flex;
  width: clamp(126px, 10vw, 146px);
  aspect-ratio: 872 / 220;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.brand-logo-reversed {
  position: absolute;
  inset: 0;
  display: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 46px);
}

.desktop-nav a,
.nav-cta,
.mobile-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.desktop-nav a {
  position: relative;
  color: #40433e;
}

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

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

.nav-cta {
  justify-self: end;
  padding: 11px 17px;
  border: 1px solid rgba(23, 25, 22, 0.42);
  border-radius: 100px;
  transition:
    background-color 200ms ease,
    color 200ms ease,
    transform 200ms ease;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-1px);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: max(720px, 100svh);
  padding-top: var(--header-height);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  background:
    radial-gradient(circle at 82% 40%, rgba(124, 131, 116, 0.18), transparent 25%),
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(23, 25, 22, 0.045) 50%, transparent calc(50% + 1px));
}

.hero-grid {
  display: grid;
  flex: 1;
  align-items: center;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr);
  gap: clamp(30px, 5vw, 90px);
  padding-block: clamp(56px, 8vh, 100px) 36px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.eyebrow,
.section-kicker,
.statement-label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  color: var(--muted);
  align-items: center;
  gap: 9px;
}

.hero h1 {
  margin: clamp(30px, 4vh, 48px) 0 30px;
  font-family: var(--display);
  font-size: clamp(4.4rem, 7.7vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -0.068em;
  line-height: 0.91;
}

.hero h1 em,
.statement blockquote em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero-intro {
  max-width: 540px;
  margin: 0;
  color: #50534d;
  font-size: clamp(1rem, 1.2vw, 1.13rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  margin-top: 42px;
  align-items: center;
  gap: 34px;
}

.button {
  display: inline-flex;
  min-width: 158px;
  min-height: 52px;
  padding: 13px 16px 13px 20px;
  border-radius: 100px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 500;
  transition:
    transform 200ms ease,
    background-color 200ms ease;
}

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

.button-dark:hover {
  background: #30332e;
  transform: translateY(-2px);
}

.button-arrow {
  display: inline-grid;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  place-items: center;
  transition: transform 250ms var(--ease-out);
}

.button:hover .button-arrow {
  transform: rotate(-45deg);
}

.text-link {
  display: inline-flex;
  padding-block: 8px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: border-color 200ms ease;
}

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

.hero-visual {
  position: relative;
  width: min(39vw, 540px);
  aspect-ratio: 1;
  margin-inline: auto 0;
}

.visual-form {
  position: absolute;
  z-index: 2;
  display: grid;
  inset: 13%;
  overflow: visible;
  border: 1px solid rgba(23, 24, 22, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.78), transparent 44%),
    linear-gradient(145deg, rgba(174, 182, 168, 0.42), rgba(124, 131, 116, 0.1)),
    var(--paper-deep);
  box-shadow:
    0 38px 72px rgba(23, 24, 22, 0.12),
    inset -22px -28px 48px rgba(23, 24, 22, 0.08),
    inset 18px 18px 42px rgba(255, 255, 255, 0.56);
  place-items: center;
}

.visual-form::before {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(23, 24, 22, 0.12);
  border-radius: 50%;
  content: "";
}

.visual-form::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 16px rgba(23, 25, 22, 0.06);
  content: "";
}

.visual-brand-mark {
  position: relative;
  z-index: 2;
  display: block;
  width: 58%;
  height: auto;
  filter: drop-shadow(0 22px 24px rgba(23, 24, 22, 0.12));
}

.visual-index,
.visual-caption {
  position: absolute;
  z-index: 2;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visual-index {
  top: 8%;
  left: 9%;
}

.visual-caption {
  right: 9%;
  bottom: 7%;
  max-width: 140px;
  color: rgba(23, 25, 22, 0.62);
  text-align: right;
}

.visual-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(23, 25, 22, 0.13);
  border-radius: 0;
}

.visual-orbit-outer {
  inset: 15%;
  transform: rotate(45deg);
}

.visual-orbit-inner {
  inset: 27%;
  transform: rotate(45deg);
}

.visual-axis {
  position: absolute;
  z-index: 3;
  background: rgba(23, 25, 22, 0.16);
}

.visual-axis::before,
.visual-axis::after {
  position: absolute;
  width: 5px;
  height: 5px;
  border: 1px solid rgba(23, 25, 22, 0.35);
  border-radius: 50%;
  background: var(--paper);
  content: "";
}

.visual-axis-x {
  top: 50%;
  left: -5%;
  width: 110%;
  height: 1px;
}

.visual-axis-x::before {
  top: -3px;
  left: 0;
}

.visual-axis-x::after {
  top: -3px;
  right: 0;
}

.visual-axis-y {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.visual-axis-y::before {
  top: 0;
  left: -3px;
}

.visual-axis-y::after {
  bottom: 0;
  left: -3px;
}

.hero-foot {
  display: flex;
  padding-block: 20px 24px;
  color: #777a72;
  align-items: center;
  gap: 18px;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-foot-line {
  width: 58px;
  height: 1px;
  background: var(--line);
}

.section-heading {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 3fr;
}

.section-kicker {
  display: flex;
  padding-top: 14px;
  color: var(--muted);
  gap: 20px;
}

.section-kicker span {
  color: var(--ink);
}

.section-heading h2,
.contact-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.3vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.about-body {
  display: grid;
  margin-top: clamp(80px, 10vw, 145px);
  padding-top: 30px;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 10vw, 150px);
}

.about-lead {
  max-width: 480px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.5vw, 2.65rem);
  letter-spacing: -0.035em;
  line-height: 1.22;
}

.about-copy {
  max-width: 520px;
  color: #51544e;
  font-size: 1rem;
  line-height: 1.8;
}

.about-copy p {
  margin: 0 0 24px;
}

.values {
  display: grid;
  margin-top: clamp(80px, 10vw, 140px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.value-card {
  position: relative;
  display: flex;
  min-height: 340px;
  padding: 32px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  transition: background-color 350ms ease;
}

.value-card + .value-card {
  border-left: 1px solid var(--line);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.3);
}

.value-number {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.value-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.7vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.value-card p {
  position: relative;
  z-index: 2;
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.card-mark {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: url("assets/brand/veyama-mark-accent.svg") center / contain no-repeat;
  opacity: 0.58;
}

.card-mark::before,
.card-mark::after {
  content: none;
}

.approach {
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.approach::before {
  position: absolute;
  top: -360px;
  right: -120px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  box-shadow:
    0 0 0 100px rgba(255, 255, 255, 0.018),
    0 0 0 220px rgba(255, 255, 255, 0.012);
  content: "";
  transform: rotate(45deg);
}

.approach-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
}

.section-heading-light {
  display: block;
}

.section-heading-light .section-kicker {
  padding: 0;
  color: rgba(255, 255, 255, 0.5);
}

.section-heading-light .section-kicker span {
  color: var(--accent-light);
}

.section-heading-light h2 {
  margin-top: 44px;
  font-size: clamp(3.7rem, 6.4vw, 7rem);
}

.approach-summary {
  max-width: 370px;
  margin: auto 0 6px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.96rem;
  line-height: 1.8;
}

.process-list {
  position: relative;
  z-index: 1;
  margin: clamp(90px, 12vw, 160px) 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.process-item {
  display: grid;
  min-height: 150px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  align-items: center;
  grid-template-columns: 1fr 1.15fr 2fr auto;
  gap: 30px;
  transition: padding 350ms var(--ease-out);
}

.process-item:hover {
  padding-inline: 18px;
}

.process-number {
  color: var(--accent-light);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.process-item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.1vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.process-item p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.75;
}

.process-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--accent-light);
  place-items: center;
}

.statement {
  min-height: 780px;
  overflow: hidden;
  background: var(--accent);
  color: var(--ink);
}

.statement .page-shell {
  position: relative;
  z-index: 2;
}

.statement-label {
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(24, 32, 22, 0.25);
}

.statement blockquote {
  margin: clamp(80px, 10vw, 140px) 0 0;
  font-family: var(--display);
  font-size: clamp(3.9rem, 7.8vw, 8.4rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.statement-monogram {
  position: absolute;
  right: 0;
  bottom: -90px;
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.statement-monogram::before {
  position: absolute;
  top: 50%;
  right: calc(100% + 14px);
  width: 40px;
  height: 1px;
  background: rgba(24, 32, 22, 0.45);
  content: "";
}

.statement-shape {
  position: absolute;
  border: 1px solid rgba(24, 32, 22, 0.12);
  border-radius: 50%;
}

.statement-shape-one {
  right: -13vw;
  bottom: -35vw;
  width: 70vw;
  height: 70vw;
}

.statement-shape-two {
  right: 2vw;
  bottom: -20vw;
  width: 40vw;
  height: 40vw;
}

.statement-brand-mark {
  position: absolute;
  right: clamp(24px, 8vw, 140px);
  bottom: clamp(20px, 3vw, 48px);
  width: clamp(180px, 26vw, 380px);
  height: auto;
  opacity: 0.1;
  transform: rotate(8deg);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(70px, 12vw, 180px);
}

.contact-heading .section-kicker {
  padding: 0 0 50px;
}

.contact-copy {
  display: flex;
  max-width: 500px;
  flex-direction: column;
  justify-content: flex-end;
}

.contact-copy > p {
  margin: 0 0 50px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.email-link {
  display: flex;
  padding-block: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  letter-spacing: -0.025em;
  transition: padding 300ms var(--ease-out);
}

.email-link:hover {
  padding-inline: 10px;
}

.site-footer {
  padding-block: 34px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-grid {
  display: grid;
  color: var(--muted);
  align-items: center;
  grid-template-columns: 1.5fr 2fr 1fr auto;
  gap: 30px;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
}

.footer-grid p {
  margin: 0;
}

.brand-lockup-footer {
  width: 116px;
}

.footer-grid > a:last-child {
  color: var(--ink);
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 900ms var(--ease-out),
    transform 900ms var(--ease-out);
}

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

.has-js .reveal-delay-1 {
  transition-delay: 100ms;
}

.has-js .reveal-delay-2 {
  transition-delay: 200ms;
}

.has-js .reveal-delay-3 {
  transition-delay: 300ms;
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 48px, 860px);
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(4rem, 8.6vw, 6rem);
  }

  .hero-visual {
    width: min(41vw, 420px);
  }

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

  .value-card {
    min-height: 320px;
    padding: 26px;
  }

  .approach-intro {
    gap: 50px;
  }

  .process-item {
    grid-template-columns: 0.6fr 1fr 1.8fr auto;
  }

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

@media (max-width: 760px) {
  :root {
    --page: calc(100% - 36px);
    --header-height: 72px;
  }

  .section {
    padding-block: 96px;
  }

  .nav-shell {
    display: flex;
    justify-content: space-between;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    margin: 0;
    padding: 12px 9px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 280ms var(--ease-out);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    padding: calc(var(--header-height) + 44px) 18px 42px;
    visibility: hidden;
    background: var(--forest);
    color: var(--white);
    flex-direction: column;
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 300ms ease,
      transform 400ms var(--ease-out),
      visibility 300ms;
  }

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

  .mobile-nav a {
    padding: 22px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-family: var(--display);
    font-size: clamp(2.2rem, 11vw, 3.4rem);
    font-weight: 400;
    letter-spacing: -0.05em;
  }

  .site-header.menu-is-open {
    border-color: transparent;
    background: transparent;
    color: var(--white);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header.menu-is-open .brand-lockup {
    position: relative;
    z-index: 102;
  }

  .site-header.menu-is-open .brand-logo-default {
    display: none;
  }

  .site-header.menu-is-open .brand-logo-reversed {
    display: block;
  }

  .site-header.menu-is-open .menu-toggle {
    border-color: rgba(246, 244, 239, 0.3);
  }

  .hero {
    min-height: 780px;
    background: radial-gradient(circle at 90% 70%, rgba(124, 131, 116, 0.18), transparent 29%);
  }

  .hero-grid {
    display: block;
    padding-top: 64px;
  }

  .hero h1 {
    margin-top: 32px;
    font-size: clamp(3.75rem, 17vw, 5.8rem);
    line-height: 0.91;
  }

  .hero-intro {
    max-width: 460px;
    font-size: 0.98rem;
  }

  .hero-actions {
    margin-top: 34px;
  }

  .hero-visual {
    position: absolute;
    z-index: 0;
    right: -32vw;
    bottom: -1%;
    width: min(82vw, 440px);
    opacity: 0.42;
  }

  .visual-index,
  .visual-caption {
    display: none;
  }

  .hero-copy {
    z-index: 3;
  }

  .hero-foot {
    position: relative;
    z-index: 3;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-top: 42px;
  }

  .about-body {
    display: block;
    margin-top: 76px;
  }

  .about-lead {
    margin-bottom: 46px;
  }

  .values {
    display: block;
    margin-top: 84px;
  }

  .value-card {
    min-height: 270px;
    padding: 28px 4px;
  }

  .value-card + .value-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .card-mark {
    top: 26px;
    right: 4px;
  }

  .approach-intro {
    display: block;
  }

  .approach-summary {
    margin-top: 50px;
  }

  .process-list {
    margin-top: 82px;
  }

  .process-item {
    display: grid;
    min-height: auto;
    padding: 30px 0 34px;
    align-items: start;
    grid-template-columns: 44px 1fr auto;
    gap: 18px;
  }

  .process-item:hover {
    padding-inline: 0;
  }

  .process-item h3 {
    font-size: 1.7rem;
  }

  .process-item p {
    padding-top: 8px;
    grid-column: 2 / 4;
  }

  .process-symbol {
    width: 38px;
    height: 38px;
  }

  .statement {
    display: flex;
    min-height: 650px;
    align-items: center;
  }

  .statement blockquote {
    margin-top: 72px;
    font-size: clamp(3.4rem, 15vw, 5.2rem);
  }

  .statement-monogram {
    bottom: -80px;
  }

  .contact-grid {
    display: block;
  }

  .contact-heading .section-kicker {
    padding-bottom: 42px;
  }

  .contact-copy {
    margin-top: 66px;
  }

  .contact-copy > p {
    margin-bottom: 36px;
  }

  .footer-grid {
    display: grid;
    align-items: start;
    grid-template-columns: 1fr auto;
    gap: 20px 30px;
  }

  .footer-grid p:nth-of-type(1) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-grid p:nth-of-type(2) {
    grid-column: 1;
    grid-row: 3;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(3.15rem, 14.5vw, 4rem);
  }

  .hero-actions {
    gap: 22px;
  }

  .button {
    min-width: 145px;
  }

  .hero-foot span:last-child {
    display: none;
  }

  .hero-foot-line {
    flex: 1;
  }

  .section-heading h2,
  .contact-heading h2 {
    font-size: clamp(2.9rem, 14vw, 4rem);
  }

  .section-heading-light h2 {
    font-size: clamp(3.25rem, 15vw, 4.5rem);
  }

  .email-link {
    font-size: 1rem;
  }
}

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

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

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
