:root {
  --page-bg: #fafaf8;
  --ink: #070707;
  --muted: #5e5e5e;
  --amber: #f59f2d;
  --amber-deep: #e08b1a;
  --sage: #b9ddc4;
  --surface: #f1f0ea;
  --charcoal: #101113;
  --panel-shift-x: 0px;
  --panel-shift-y: 0px;
  --panel-offset-x: -44px;
  --title-shift-x: 0px;
  --title-shift-y: 0px;
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: "Manrope", "Aptos", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.16;
  background-image: radial-gradient(rgba(16, 17, 19, 0.16) 0.55px, transparent 0.65px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
}

a {
  color: inherit;
}

::selection {
  background: #ffbd58;
  color: #101113;
}

:focus-visible {
  outline: 2px solid var(--amber-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 8px;
  padding: 11px 14px;
  color: #f7f4ed;
  background: var(--charcoal);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(16, 17, 19, 0.22);
  transition: transform 240ms var(--ease-out);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 54px clamp(28px, 6.1vw, 103px) 58px;
  isolation: isolate;
  background:
    radial-gradient(circle at 25% 72%, rgba(255, 180, 76, 0.17), transparent 17%),
    radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.95), transparent 43%),
    linear-gradient(180deg, #fdfdfc 0%, #f7f7f4 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(16, 17, 19, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 19, 0.024) 1px, transparent 1px),
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.8), transparent 56%),
    radial-gradient(circle at 12% 75%, rgba(255, 180, 73, 0.08), transparent 18%);
  background-size:
    56px 56px,
    56px 56px,
    auto,
    auto;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8%;
  height: 31%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 48% 20%, rgba(12, 15, 17, 0.09), transparent 48%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.62) 74%);
}

.hero__glow {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 178, 64, 0.16), transparent 62%);
  opacity: 0;
  transition: opacity 420ms ease;
  will-change: transform;
}

.hero.is-glowing .hero__glow {
  opacity: 1;
}

.site-brand {
  position: absolute;
  top: clamp(30px, 5.3vh, 52px);
  left: clamp(28px, 6.1vw, 103px);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #151516;
  text-decoration: none;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition:
    opacity 520ms ease 80ms,
    transform 480ms var(--ease-out),
    color 220ms ease;
}

.site-brand:hover,
.site-brand:focus-visible {
  color: var(--amber-deep);
}

.site-brand__mark {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.36)),
    #f3f1e9;
  box-shadow:
    inset 0 0 0 1px rgba(16, 17, 19, 0.08),
    0 12px 28px rgba(39, 29, 8, 0.12);
}

.site-brand__mark::before,
.site-brand__mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(245, 159, 45, 0.14);
}

.site-brand__mark::after {
  inset: auto 6px 6px;
  height: 5px;
  border-radius: 2px;
  background: #202123;
  box-shadow: none;
  transform: skewX(-18deg);
}

.site-nav {
  position: absolute;
  top: clamp(32px, 5.6vh, 54px);
  right: clamp(28px, 5.2vw, 86px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: clamp(27px, 3.45vw, 58px);
}

.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: clamp(15px, 1.24vw, 21px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  transition:
    opacity 480ms ease,
    transform 480ms var(--ease-out),
    color 220ms ease;
}

.site-nav a:hover {
  color: var(--amber-deep);
}

.site-nav a[aria-current="page"] {
  color: var(--amber-deep);
}

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

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

body:not(.is-ready) .site-nav a {
  opacity: 0;
  transform: translateY(-10px);
}

.is-ready .site-nav a:nth-child(1) {
  transition-delay: 100ms, 100ms, 0ms;
}

.is-ready .site-nav a:nth-child(2) {
  transition-delay: 180ms, 180ms, 0ms;
}

.is-ready .site-nav a:nth-child(3) {
  transition-delay: 260ms, 260ms, 0ms;
}

.is-ready .site-nav a:nth-child(4) {
  transition-delay: 340ms, 340ms, 0ms;
}

.hero__kicker {
  position: absolute;
  z-index: 6;
  top: clamp(118px, 16.25vh, 154px);
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.22vw, 20px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero__kicker--left {
  left: clamp(28px, 6.1vw, 103px);
}

.hero__kicker--left::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: #ffab30;
  box-shadow: 0 0 0 0 rgba(255, 171, 48, 0.55);
  animation: kicker-pulse 2.6s ease-out infinite;
}

@keyframes kicker-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 171, 48, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 171, 48, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 171, 48, 0);
  }
}

.hero__kicker--right {
  right: clamp(28px, 5.8vw, 98px);
}

.hero__title {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: clamp(144px, 18.4vh, 174px);
  margin: 0;
  color: #18191b;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: clamp(10.5rem, 25.6vw, 27rem);
  font-weight: 800;
  line-height: 0.72;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  transform: translateX(calc(-50% + var(--title-shift-x))) translateY(var(--title-shift-y)) scaleX(0.88);
  transform-origin: center top;
  filter: drop-shadow(0 19px 18px rgba(0, 0, 0, 0.08));
  user-select: none;
  white-space: nowrap;
}

.hero__title span {
  display: inline-block;
  transition:
    transform 340ms var(--ease-out),
    color 340ms ease;
}

.hero__title span:hover {
  transform: translateY(-0.055em);
  color: var(--amber);
}

.panel-scene {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: clamp(238px, 26.9vh, 254px);
  width: min(69vw, 1160px);
  aspect-ratio: 1672 / 941;
  transform: translateX(calc(-50% + var(--panel-offset-x) + var(--panel-shift-x))) translateY(var(--panel-shift-y));
  transform-origin: center;
  pointer-events: none;
}

.panel-scene picture,
.panel-scene img {
  display: block;
  width: 100%;
  height: 100%;
}

.panel-scene img {
  position: relative;
  z-index: 2;
  object-fit: contain;
  filter:
    saturate(1.08)
    contrast(1.06)
    drop-shadow(0 28px 20px rgba(11, 16, 20, 0.2));
}

.panel-shadow {
  position: absolute;
  z-index: 1;
  left: 13%;
  right: 5%;
  bottom: 19%;
  height: 18%;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 20% 52%, rgba(255, 174, 55, 0.45), transparent 32%),
    radial-gradient(ellipse at 55% 48%, rgba(20, 26, 31, 0.28), transparent 67%);
  filter: blur(14px);
  transform: rotate(-1deg);
}

.hero__copy {
  position: absolute;
  z-index: 8;
  left: clamp(28px, 6.1vw, 103px);
  bottom: clamp(56px, 8.4vh, 80px);
  max-width: 780px;
  margin: 0;
  color: #050505;
  font-size: clamp(18px, 1.34vw, 22.5px);
  font-weight: 600;
  line-height: 1.27;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
  text-wrap: pretty;
}

.mobile-copy-break {
  display: none;
}

.hero__cta {
  position: absolute;
  z-index: 9;
  right: clamp(28px, 7.6vw, 128px);
  bottom: clamp(56px, 8.7vh, 82px);
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 17px;
  overflow: hidden;
  border-radius: 999px;
  padding: 7px 12px 7px 29px;
  color: #f5f4f0;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.13), transparent 28%),
    linear-gradient(135deg, #151516 0%, #202123 48%, #111112 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 35px rgba(0, 0, 0, 0.13);
  text-decoration: none;
  font-size: clamp(16px, 1.31vw, 22px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  transition:
    box-shadow 260ms ease,
    transform 260ms ease;
}

.hero__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 32%, rgba(255, 255, 255, 0.16) 50%, transparent 68%);
  transform: translateX(-130%);
}

.hero__cta:hover::after,
.hero__cta:focus-visible::after {
  animation: cta-shine 900ms ease;
}

@keyframes cta-shine {
  to {
    transform: translateX(130%);
  }
}

.hero__cta:hover,
.hero__cta:focus-visible {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 22px 44px rgba(0, 0, 0, 0.18);
}

.hero__cta:active {
  transform: translateY(1px) scale(0.99);
}

.hero__cta-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: #181818;
  background: #f6f6f0;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.13);
  transition:
    transform 260ms ease,
    background 260ms ease;
}

.hero__cta svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  transition: transform 300ms var(--ease-out);
}

.hero__cta:hover .hero__cta-icon,
.hero__cta:focus-visible .hero__cta-icon {
  transform: translate(2px, -2px);
  background: #ffbd58;
}

.hero__cta:hover svg,
.hero__cta:focus-visible svg {
  transform: translate(1px, -1px);
}

.hero__scroll {
  position: absolute;
  z-index: 9;
  left: 50%;
  bottom: clamp(52px, 8vh, 76px);
  width: 30px;
  height: 52px;
  transform: translateX(-50%);
  border: 1.5px solid rgba(7, 7, 7, 0.28);
  border-radius: 999px;
  transition: border-color 260ms ease;
}

.hero__scroll span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 10px;
  margin-left: -2px;
  border-radius: 999px;
  background: #0a0a0a;
  animation: scroll-hint 2.2s ease-in-out infinite;
}

.hero__scroll:hover {
  border-color: var(--amber-deep);
}

.hero__scroll:hover span {
  background: var(--amber-deep);
}

.hero__metric {
  position: absolute;
  z-index: 7;
  top: clamp(416px, 47.5vh, 466px);
  right: clamp(32px, 8vw, 136px);
  display: grid;
  min-width: 154px;
  gap: 6px;
  border: 1px solid rgba(16, 17, 19, 0.09);
  border-radius: 8px;
  padding: 15px 17px 16px;
  color: #111214;
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 18px 46px rgba(33, 24, 6, 0.11);
  backdrop-filter: blur(16px);
}

.hero__metric span,
.hero__metric small {
  color: #74726b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.hero__metric strong {
  color: #111214;
  font-size: 44px;
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: 0;
}

@keyframes scroll-hint {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  55% {
    transform: translateY(16px);
    opacity: 0.15;
  }
  70% {
    transform: translateY(0);
    opacity: 0;
  }
}

/* ---------- sections ---------- */

.section {
  position: relative;
  padding: clamp(86px, 9vw, 150px) clamp(24px, 6.1vw, 103px);
  overflow: hidden;
  background: #fafaf8;
}

.section::before {
  content: "";
  position: absolute;
  left: clamp(24px, 6.1vw, 103px);
  right: clamp(24px, 6.1vw, 103px);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.14), transparent 72%);
}

.section__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: #74726b;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section__eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: linear-gradient(135deg, #ffc264, var(--amber-deep));
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.6fr);
  gap: clamp(30px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(42px, 5.5vw, 78px);
}

.section__head--split {
  align-items: start;
}

.section h2,
.site-footer h2 {
  max-width: 860px;
  margin: 0;
  color: #101113;
  font-size: clamp(42px, 6.6vw, 106px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

.section__head p,
.process-layout > div > p,
.faq-layout > div > p {
  max-width: 540px;
  margin: 0;
  color: #56544e;
  font-size: clamp(17px, 1.24vw, 21px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
}

/* staggered child reveals */

.reveal .services-grid > *,
.reveal .project-grid > *,
.reveal .process-list > li,
.reveal .faq-list > * {
  opacity: 0;
}

.reveal.is-visible .services-grid > *,
.reveal.is-visible .project-grid > *,
.reveal.is-visible .process-list > li,
.reveal.is-visible .faq-list > * {
  opacity: 1;
  animation: rise-in 760ms var(--ease-out) backwards;
}

.reveal.is-visible .services-grid > *:nth-child(1),
.reveal.is-visible .project-grid > *:nth-child(1),
.reveal.is-visible .process-list > li:nth-child(1),
.reveal.is-visible .faq-list > *:nth-child(1) {
  animation-delay: 80ms;
}

.reveal.is-visible .services-grid > *:nth-child(2),
.reveal.is-visible .project-grid > *:nth-child(2),
.reveal.is-visible .process-list > li:nth-child(2),
.reveal.is-visible .faq-list > *:nth-child(2) {
  animation-delay: 180ms;
}

.reveal.is-visible .services-grid > *:nth-child(3),
.reveal.is-visible .project-grid > *:nth-child(3),
.reveal.is-visible .process-list > li:nth-child(3),
.reveal.is-visible .faq-list > *:nth-child(3) {
  animation-delay: 280ms;
}

.reveal.is-visible .services-grid > *:nth-child(4),
.reveal.is-visible .faq-list > *:nth-child(4) {
  animation-delay: 380ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-tile {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  padding: clamp(24px, 2.6vw, 38px);
  background:
    linear-gradient(140deg, rgba(255, 188, 76, 0.12), transparent 43%),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition:
    transform 480ms var(--ease-out),
    box-shadow 480ms ease,
    border-color 480ms ease;
}

.services-grid .service-tile:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 139, 26, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 26px 52px rgba(30, 22, 4, 0.11);
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: 22px 22px auto auto;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, rgba(20, 20, 20, 0.16) 48% 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(20, 20, 20, 0.16) 48% 52%, transparent 53%);
  opacity: 0.58;
  transition:
    transform 900ms var(--ease-out),
    opacity 420ms ease;
}

.service-tile:hover::before {
  transform: rotate(90deg);
  opacity: 1;
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 82% 4%, rgba(255, 178, 64, 0.22), transparent 44%);
  opacity: 0;
  transition: opacity 480ms ease;
}

.service-tile:hover::after {
  opacity: 1;
}

.service-tile--wide {
  grid-column: span 2;
  background:
    radial-gradient(circle at 13% 18%, rgba(255, 184, 69, 0.34), transparent 25%),
    linear-gradient(135deg, #f7f5ec 0%, #ecebe6 100%);
}

.service-tile--dark {
  color: #f5f3ea;
  background:
    radial-gradient(circle at 82% 11%, rgba(255, 182, 64, 0.34), transparent 24%),
    linear-gradient(135deg, #111214 0%, #202123 100%);
}

.services-grid .service-tile--dark:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 26px 56px rgba(255, 160, 40, 0.16);
}

.service-tile--dark::before {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(90deg, transparent 47%, rgba(255, 255, 255, 0.18) 48% 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(255, 255, 255, 0.18) 48% 52%, transparent 53%);
}

.tile-index,
.project-meta {
  color: #858177;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 320ms ease;
}

.service-tile:hover .tile-index,
.project-card:hover .project-meta {
  color: var(--amber-deep);
}

.service-tile--dark .tile-index {
  color: rgba(245, 243, 234, 0.66);
}

.service-tile--dark:hover .tile-index {
  color: #ffbd58;
}

.service-tile h3,
.project-card h3 {
  position: relative;
  max-width: 530px;
  margin: 0;
  font-size: clamp(25px, 2.8vw, 45px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.service-tile p,
.project-card p,
.proof-band p,
.process-list p,
.faq-answer p,
.site-footer p {
  position: relative;
  max-width: 460px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

.service-tile p {
  color: #605d55;
}

.service-tile--dark p {
  color: rgba(245, 243, 234, 0.72);
}

/* proof band */

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(24px, 6.1vw, 103px);
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #f9f7ef;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.08);
}

.proof-band div {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 3.2vw, 48px);
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 186, 70, 0.28), transparent 28%),
    linear-gradient(135deg, #111214, #1b1d1f);
}

.proof-band div::before {
  content: "";
  position: absolute;
  left: clamp(26px, 3.2vw, 48px);
  top: 0;
  height: 3px;
  width: 0;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, #ffc264, #ff8a2a);
  transition: width 1100ms var(--ease-out) 320ms;
}

.proof-band.is-visible div::before {
  width: 52px;
}

.proof-band div > span {
  color: rgba(249, 247, 239, 0.58);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-band strong {
  font-size: clamp(48px, 7.3vw, 116px);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: 0;
  background: linear-gradient(125deg, #fdfbf4 30%, #ffce85 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #f9f7ef;
}

.proof-band p {
  color: rgba(249, 247, 239, 0.72);
}

/* projects */

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

.project-card {
  min-height: 384px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  padding: clamp(24px, 2.6vw, 38px);
  background: #f0eee8;
  transition:
    transform 520ms var(--ease-out),
    box-shadow 520ms ease,
    border-color 520ms ease;
}

.project-grid .project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 139, 26, 0.4);
  box-shadow: 0 28px 60px rgba(30, 22, 4, 0.1);
}

.project-card--feature {
  grid-column: span 7;
  min-height: 620px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 186, 64, 0.2), transparent 26%),
    linear-gradient(135deg, #f6f3eb, #e6e5df);
}

.project-card:not(.project-card--feature) {
  grid-column: span 5;
}

.project-visual {
  position: relative;
  height: 250px;
  transform: skewY(-8deg) translateY(10px);
  transform-origin: left center;
}

.project-card--feature .project-visual {
  height: 340px;
}

.project-visual::after {
  content: "";
  position: absolute;
  top: -8px;
  right: 10%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffd98f, #ff9c2e);
  box-shadow:
    0 0 0 10px rgba(255, 170, 60, 0.12),
    0 0 42px rgba(255, 150, 40, 0.42);
  transform: skewY(8deg);
  transition:
    transform 620ms var(--ease-out),
    box-shadow 620ms ease;
}

.project-card:hover .project-visual::after {
  transform: skewY(8deg) translateY(-6px) scale(1.1);
  box-shadow:
    0 0 0 14px rgba(255, 170, 60, 0.16),
    0 0 58px rgba(255, 150, 40, 0.55);
}

.project-visual span {
  position: absolute;
  inset: auto auto 0 0;
  width: 82%;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    repeating-linear-gradient(90deg, transparent 0 47px, rgba(255, 255, 255, 0.16) 48px 50px),
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(255, 255, 255, 0.12) 25px 26px),
    linear-gradient(145deg, #171a1d, #282b2f 52%, #0f1012);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
  transition:
    transform 600ms var(--ease-out),
    box-shadow 600ms ease;
}

.project-card:hover .project-visual span:nth-child(1) {
  transform: translateY(-5px);
}

.project-card:hover .project-visual span:nth-child(2) {
  transform: translateY(-10px);
  transition-delay: 60ms;
}

.project-card:hover .project-visual span:nth-child(3) {
  transform: translateY(-15px);
  transition-delay: 120ms;
}

.project-card:hover .project-visual span:nth-child(4) {
  transform: translateY(-20px);
  transition-delay: 180ms;
}

.project-visual span:nth-child(2) {
  left: 9%;
  bottom: 72px;
}

.project-visual span:nth-child(3) {
  left: 18%;
  bottom: 144px;
}

.project-visual span:nth-child(4) {
  left: 27%;
  bottom: 216px;
}

.project-visual--small span,
.project-visual--warm span {
  height: 58px;
}

.project-visual--small span:nth-child(2),
.project-visual--warm span:nth-child(2) {
  bottom: 56px;
}

.project-visual--small span:nth-child(3),
.project-visual--warm span:nth-child(3) {
  bottom: 112px;
}

.project-visual--warm span {
  background:
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.16) 43px 45px),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(255, 255, 255, 0.12) 23px 24px),
    linear-gradient(145deg, #18130d, #332517 52%, #11100f);
}

.project-card p {
  color: #626058;
}

/* process */

.process {
  background:
    radial-gradient(circle at 92% 16%, rgba(255, 185, 69, 0.14), transparent 20%),
    #f5f3ed;
}

.process-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.95fr);
  gap: clamp(40px, 7vw, 116px);
  align-items: start;
}

.process-layout h2,
.faq-layout h2 {
  margin-bottom: 24px;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(16, 17, 19, 0.14);
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(160px, 0.7fr) minmax(220px, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(16, 17, 19, 0.14);
  transition: padding-left 420ms var(--ease-out);
}

.process-list li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, var(--amber-deep), rgba(224, 139, 26, 0));
  transition: width 560ms var(--ease-out);
}

.process-list li:hover {
  padding-left: 14px;
}

.process-list li:hover::after {
  width: 100%;
}

.process-list span {
  color: #8a8579;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  transition: color 300ms ease;
}

.process-list li:hover span {
  color: var(--amber-deep);
}

.process-list strong {
  color: #111214;
  font-size: clamp(20px, 1.55vw, 26px);
  font-weight: 800;
  line-height: 1.08;
}

.process-list p {
  color: #605d55;
}

/* faq */

.faq {
  background: #fbfaf6;
}

.faq-list {
  border-top: 1px solid rgba(16, 17, 19, 0.14);
}

.faq-item {
  border-bottom: 1px solid rgba(16, 17, 19, 0.14);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  padding: 28px 0;
  color: #101113;
  background: transparent;
  font: inherit;
  font-size: clamp(20px, 1.65vw, 28px);
  font-weight: 800;
  line-height: 1.14;
  text-align: left;
  cursor: pointer;
}

.faq-question > span:first-child {
  transition:
    transform 380ms var(--ease-out),
    color 260ms ease;
}

.faq-question:hover > span:first-child {
  transform: translateX(6px);
  color: var(--amber-deep);
}

.faq-icon {
  flex: 0 0 auto;
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(16, 17, 19, 0.18);
  border-radius: 50%;
  transition:
    background 300ms ease,
    border-color 300ms ease,
    transform 420ms var(--ease-out);
}

.faq-question:hover .faq-icon {
  background: #ffbd58;
  border-color: #ffbd58;
  transform: scale(1.1);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  height: 2px;
  background: #101113;
  transform: translateY(-50%);
  transition: transform 320ms var(--ease-out);
}

.faq-icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 520ms var(--ease-out);
}

.faq-answer p {
  overflow: hidden;
  min-height: 0;
  max-width: 720px;
  padding: 0 68px 0 0;
  color: #5c5952;
  font-size: clamp(16px, 1.12vw, 19px);
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 380ms ease,
    transform 420ms var(--ease-out),
    padding 520ms var(--ease-out);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 30px;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 120ms, 120ms, 0ms;
}

/* ticker */

.ticker {
  overflow: hidden;
  padding: clamp(26px, 3vw, 42px) 0;
  border-top: 1px solid rgba(8, 8, 8, 0.08);
  background: #f5f3ed;
}

.ticker__track {
  display: flex;
  width: max-content;
}

.ticker__group {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 52px);
  padding-right: clamp(28px, 3vw, 52px);
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: clamp(30px, 3.6vw, 58px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #101113;
  animation: ticker-scroll 30s linear infinite;
}

.ticker:hover .ticker__group {
  animation-play-state: paused;
}

.ticker__group .is-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(16, 17, 19, 0.5);
}

.ticker__star {
  color: var(--amber);
  font-size: 0.5em;
}

@keyframes ticker-scroll {
  to {
    transform: translateX(-100%);
  }
}

/* footer */

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: clamp(58px, 6.6vw, 112px) clamp(24px, 6.1vw, 103px) 30px;
  color: #f7f4ed;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 186, 66, 0.2), transparent 22%),
    radial-gradient(circle at 16% 96%, rgba(185, 221, 196, 0.15), transparent 26%),
    linear-gradient(135deg, #0f1011 0%, #1a1b1c 100%);
}

.site-footer > :not(.footer-watermark) {
  position: relative;
  z-index: 1;
}

.footer-watermark {
  position: absolute;
  left: 50%;
  bottom: -0.34em;
  z-index: 0;
  transform: translateX(-50%);
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: clamp(140px, 24vw, 380px);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(247, 244, 237, 0.11);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  padding-bottom: clamp(58px, 7vw, 108px);
  border-bottom: 1px solid rgba(247, 244, 237, 0.14);
}

.footer-mark {
  display: inline-block;
  margin-bottom: 20px;
  color: rgba(247, 244, 237, 0.54);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-footer h2 {
  color: #f7f4ed;
}

.footer-cta {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(247, 244, 237, 0.2);
  border-radius: 999px;
  padding: 0 30px;
  color: #101113;
  background: #f7f4ed;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  transition:
    background 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.footer-cta::after {
  content: "\2192";
  font-weight: 800;
  transition: transform 300ms var(--ease-out);
}

.footer-cta:hover,
.footer-cta:focus-visible {
  transform: translateY(-2px);
  background: #ffbd58;
  box-shadow: 0 16px 40px rgba(255, 170, 60, 0.24);
}

.footer-cta:active {
  transform: translateY(0) scale(0.99);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  gap: 28px;
  padding: clamp(36px, 4vw, 58px) 0;
  border-bottom: 1px solid rgba(247, 244, 237, 0.14);
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: rgba(247, 244, 237, 0.5);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 8px;
  color: rgba(247, 244, 237, 0.82);
  text-decoration: none;
}

.footer-grid a {
  width: fit-content;
  position: relative;
  transition: color 220ms ease;
}

.footer-grid a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: #ffbd58;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #ffbd58;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  color: rgba(247, 244, 237, 0.52);
  font-size: 14px;
}

/* reveal on scroll */

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

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

.hero__kicker,
.hero__title,
.panel-scene,
.hero__copy,
.hero__cta,
.hero__metric,
.hero__scroll,
.site-brand,
.site-nav {
  opacity: 0;
}

.is-ready .site-brand,
.is-ready .site-nav,
.is-ready .hero__kicker,
.is-ready .hero__title,
.is-ready .panel-scene,
.is-ready .hero__copy,
.is-ready .hero__cta,
.is-ready .hero__metric,
.is-ready .hero__scroll {
  opacity: 1;
}

.site-nav {
  transition: opacity 520ms ease 80ms;
}

.hero__kicker {
  transition: opacity 560ms ease 160ms;
}

.hero__title {
  transition:
    opacity 720ms ease 240ms,
    transform 720ms var(--ease-out) 240ms;
}

.panel-scene {
  transition:
    opacity 720ms ease 380ms,
    transform 780ms var(--ease-out) 380ms;
}

.hero__copy,
.hero__cta,
.hero__metric {
  transition:
    opacity 560ms ease 520ms,
    transform 260ms ease;
}

.hero__scroll {
  transition:
    opacity 560ms ease 660ms,
    border-color 260ms ease;
}

body:not(.is-ready) .hero__title {
  --title-shift-y: 22px;
}

body:not(.is-ready) .panel-scene {
  --panel-shift-y: 26px;
}

body:not(.is-ready) .site-brand {
  transform: translateY(-10px);
}

body:not(.is-ready) .hero__metric {
  transform: translateY(14px);
}

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

@media (max-width: 1180px) {
  :root {
    --panel-offset-x: 0px;
  }

  .hero {
    min-height: 820px;
  }

  .hero__title {
    top: 185px;
    font-size: clamp(10rem, 29vw, 21rem);
    transform: translateX(calc(-50% + var(--title-shift-x))) translateY(var(--title-shift-y)) scaleX(0.88);
  }

  .panel-scene {
    top: 260px;
    width: min(94vw, 1040px);
  }

  .hero__copy {
    bottom: 84px;
    max-width: 620px;
  }

  .hero__cta {
    right: 44px;
  }

  .hero__scroll {
    display: none;
  }

  .section__head,
  .process-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

  .service-tile--wide {
    grid-column: span 2;
  }

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

  .project-card--feature,
  .project-card:not(.project-card--feature) {
    grid-column: span 12;
  }

  .project-card--feature {
    min-height: 560px;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 790px;
    padding: 31px 24px 34px;
  }

  .site-brand,
  .hero__metric {
    display: none;
  }

  .site-nav {
    top: 32px;
    right: 24px;
    left: 24px;
    justify-content: flex-start;
    gap: clamp(18px, 5.6vw, 24px);
  }

  .site-nav a {
    font-size: 14px;
  }

  .hero__kicker {
    top: 104px;
    font-size: 13px;
  }

  .hero__kicker--left {
    left: 24px;
    max-width: 260px;
  }

  .hero__kicker--right {
    right: 24px;
  }

  .hero__title {
    top: 164px;
    font-size: 34vw;
    transform: translateX(calc(-50% + var(--title-shift-x))) translateY(var(--title-shift-y)) scaleX(0.9);
  }

  .panel-scene {
    top: 214px;
    width: 142vw;
  }

  .hero__copy {
    right: 24px;
    bottom: 112px;
    left: 24px;
    width: calc(100vw - 48px);
    max-width: none;
    font-size: 17.5px;
    line-height: 1.32;
    overflow-wrap: break-word;
  }

  .hero__copy br {
    display: none;
  }

  .hero__copy .mobile-copy-break,
  .hero__copy .copy-break {
    display: block;
  }

  .hero__cta {
    right: auto;
    bottom: 36px;
    left: 24px;
    min-height: 52px;
    padding-left: 24px;
    font-size: 16px;
  }

  .hero__cta-icon {
    width: 38px;
    height: 38px;
  }

  .section {
    padding: 76px 24px;
  }

  .section::before {
    left: 24px;
    right: 24px;
  }

  .section__head {
    margin-bottom: 36px;
  }

  .section h2,
  .site-footer h2 {
    font-size: clamp(39px, 12vw, 64px);
    line-height: 0.98;
  }

  .services-grid,
  .proof-band,
  .footer-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .service-tile,
  .service-tile--wide {
    grid-column: auto;
    min-height: 260px;
  }

  .proof-band {
    margin: 0 24px;
  }

  .proof-band div {
    min-height: 220px;
  }

  .project-card,
  .project-card--feature {
    min-height: 430px;
  }

  .project-card--feature .project-visual {
    height: 260px;
  }

  .project-visual {
    height: 205px;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-question {
    gap: 18px;
    padding: 24px 0;
  }

  .faq-answer p {
    padding-right: 0;
  }

  .footer-watermark {
    font-size: clamp(110px, 34vw, 220px);
  }

  .site-footer {
    padding: 68px 24px 28px;
  }

  .footer-top {
    align-items: start;
  }

  .footer-cta {
    width: fit-content;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 760px;
  }

  .hero__kicker--right {
    display: none;
  }

  .hero__title {
    top: 178px;
    font-size: 6rem;
    transform: translateX(calc(-50% + var(--title-shift-x))) translateY(var(--title-shift-y)) scaleX(0.84);
  }

  .panel-scene {
    top: 174px;
    width: 146vw;
  }
}
