/* =========================================================
   Kuza Ventures — Premium redesign
   Warm charcoal + ivory + copper
   ========================================================= */

:root {
  --ink: #141311;
  --ink-soft: #1e1c19;
  --ink-mid: #2a2723;
  --paper: #f4f1eb;
  --paper-2: #eae5dc;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(20, 19, 17, 0.1);
  --text: #1c1a16;
  --text-muted: #6b655c;
  --text-on-dark: #f4f1eb;
  --text-muted-dark: rgba(244, 241, 235, 0.72);
  --brand: #9c5a32;
  --brand-deep: #7a4526;
  --brand-soft: rgba(156, 90, 50, 0.14);
  --brand-light: #e0c3a4;
  --accent-warm: #d7c4a8;
  --glow: rgba(156, 90, 50, 0.22);
  --radius: 18px;
  --radius-sm: 10px;
  --header-h: 76px;
  --container: 1180px;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-num: "Syne", var(--font-sans);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 60px rgba(20, 19, 17, 0.18);
}

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.page-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 1002;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transform-origin: left;
}

.has-cursor,
.has-cursor a,
.has-cursor button {
  cursor: none;
}

.cursor {
  display: none;
}

.has-cursor .cursor {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 10050;
  pointer-events: none;
}

.cursor__dot,
.cursor__ring {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  will-change: transform;
}

.cursor__dot {
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: #fff;
  mix-blend-mode: difference;
}

.cursor__ring {
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  mix-blend-mode: difference;
  transition: width 0.25s var(--ease), height 0.25s var(--ease),
    margin 0.25s var(--ease), background 0.25s var(--ease);
}

.cursor.is-hover .cursor__ring {
  width: 68px;
  height: 68px;
  margin: -34px 0 0 -34px;
  background: rgba(156, 90, 50, 0.18);
}

.spotlight {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
    420px circle at var(--spot-x, 50%) var(--spot-y, 20%),
    rgba(156, 90, 50, 0.12),
    transparent 55%
  );
}

.page-blur {
  position: fixed;
  inset: 0;
  z-index: 10030;
  pointer-events: none;
  opacity: 0;
  background: rgba(244, 241, 235, 0.28);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: opacity 0.36s var(--ease);
}

.page-blur.is-on {
  opacity: 1;
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: page-blur-out 0.4s var(--ease) both;
}

::view-transition-new(root) {
  animation: page-blur-in 0.45s var(--ease) both;
}

@keyframes page-blur-out {
  to {
    opacity: 0;
    filter: blur(16px);
  }
}

@keyframes page-blur-in {
  from {
    opacity: 0;
    filter: blur(16px);
  }
}

.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.split-word > span {
  display: inline-block;
  animation: wordUp 0.9s var(--ease) both;
  animation-delay: calc(var(--i) * 0.045s);
}

@keyframes wordUp {
  from {
    transform: translateY(110%);
  }
  to {
    transform: translateY(0);
  }
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* ---------- Logo (unchanged lettermark) ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.logo__letter {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #fff;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-sans);
  letter-spacing: 0;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.logo:hover .logo__letter:nth-child(1) {
  transform: translateY(-3px);
}
.logo:hover .logo__letter:nth-child(2) {
  transform: translateY(3px);
}
.logo:hover .logo__letter:nth-child(3) {
  transform: translateY(-3px);
}
.logo:hover .logo__letter:nth-child(4) {
  transform: translateY(3px);
}

.logo--hero .logo__letter {
  width: 56px;
  height: 56px;
  font-size: 28px;
}

.logo--cta .logo__letter {
  width: 44px;
  height: 44px;
  font-size: 22px;
}

/* ---------- Header ---------- */
main {
  position: relative;
  z-index: 1;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1001;
  height: var(--header-h);
  color: #fff;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease),
    border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: rgba(20, 19, 17, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}

.header__inner {
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__trigger,
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.7rem;
  color: var(--text-on-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.has-dropdown.is-current > .nav__trigger,
.nav__item.is-current > .nav__link {
  background: rgba(255, 255, 255, 0.1);
}

.nav__trigger:hover,
.nav__link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav__chevron {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.25s var(--ease);
  opacity: 0.7;
}

.has-dropdown.is-open .nav__chevron {
  transform: rotate(225deg) translateY(-1px);
}

.nav__item {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  padding: 0.65rem;
  border-radius: 14px;
  background: rgba(23, 16, 34, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease),
    visibility 0.25s;
  display: grid;
  gap: 0.15rem;
}

.has-dropdown.is-open .nav__dropdown,
.has-dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  color: var(--text-muted-dark);
  font-size: 0.84rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav__dropdown a:hover {
  background: var(--brand-soft);
  color: #fff;
}

.nav__view-all {
  margin-top: 0.25rem;
  color: #fff !important;
  font-weight: 600;
  border-top: 1px solid var(--line);
  border-radius: 0 0 10px 10px !important;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  margin-left: 0.35rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.nav__cta:hover,
.nav__cta.is-current {
  background: var(--brand-deep);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: #fff;
  transition: 0.3s var(--ease);
}

.menu-toggle span:nth-child(1) {
  top: 15px;
}
.menu-toggle span:nth-child(2) {
  top: 21px;
}
.menu-toggle span:nth-child(3) {
  top: 27px;
}

.menu-toggle.is-open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
    color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 30px rgba(156, 90, 50, 0.35);
}

.btn--primary:hover {
  background: var(--brand-deep);
  transform: translateY(-2px);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline {
  border: 1px solid var(--line-dark);
  color: var(--text);
  background: #fff;
  gap: 0.55rem;
}

.btn--outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--text-on-dark);
  overflow: hidden;
}

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

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.06);
  animation: heroZoom 18s var(--ease) forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(20, 19, 17, 0.55) 0%,
      rgba(20, 19, 17, 0.35) 35%,
      rgba(20, 19, 17, 0.78) 70%,
      rgba(20, 19, 17, 0.94) 100%
    ),
    radial-gradient(
      80% 60% at 70% 20%,
      rgba(156, 90, 50, 0.28),
      transparent 60%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  padding: calc(var(--header-h) + 4rem) 0 5.5rem;
  max-width: 820px;
}

.hero__brand {
  margin-bottom: 1.75rem;
}

.hero__kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: 1.25rem;
}

.hero__lede {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted-dark);
  max-width: 48ch;
  margin-bottom: 0.85rem;
}

.hero__emphasis {
  font-weight: 600;
  color: #fff;
  margin-bottom: 2rem;
  max-width: 62ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
  z-index: 2;
}

.hero__scroll span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  animation: scrollDot 1.6s var(--ease) infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(16px);
    opacity: 0;
  }
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  position: relative;
}

.section__head {
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.65rem;
}

.section__head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section__lede {
  margin-top: 1rem;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section__action {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- About ---------- */
.about {
  background: var(--paper);
  overflow: hidden;
}

.about__wrap {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  gap: clamp(1.75rem, 5vw, 4.5rem);
  align-items: center;
}

.about__visual {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}

.about__photo {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 50px rgba(20, 19, 17, 0.12);
}

.about__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.about__poster {
  position: relative;
  z-index: 1;
  margin: -3.25rem 1.15rem 0;
  border-radius: 28px;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  background:
    radial-gradient(80% 70% at 100% 0%, rgba(156, 90, 50, 0.1), transparent 60%),
    #fff;
  border: 1px solid var(--line-dark);
  box-shadow: 0 24px 50px rgba(20, 19, 17, 0.08);
}

.poster {
  display: grid;
  gap: 0.1rem;
}

.poster__word {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.4rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--text);
}

.poster__word:last-child {
  color: var(--brand);
}

.poster__caption {
  margin-top: 1.35rem;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 28ch;
  line-height: 1.55;
}

.poster--row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.1rem;
}

.poster--row .poster__word {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
}

.poster--on-dark .poster__word {
  color: #fff;
}

.poster--on-dark .poster__word:last-child {
  color: var(--brand-light);
}

.about__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.about__socials {
  display: flex;
  flex-direction: row;
  gap: 0.55rem;
}

.about__socials .social {
  background: var(--paper);
}

.social {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line-dark);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(20, 19, 17, 0.12);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
    color 0.3s var(--ease);
}

.social:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-3px);
}

.about__copy {
  display: grid;
  gap: 1.15rem;
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 54ch;
}

.about__copy p:first-child {
  color: var(--text);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-family: var(--font-display);
  line-height: 1.4;
}

/* ---------- Services ---------- */
.services {
  background: var(--ink);
  color: var(--text-on-dark);
}

.services .eyebrow {
  color: var(--brand-light);
}

.services__grid,
.services__mosaic {
  display: grid;
  gap: 1rem;
}

.services__mosaic {
  grid-template-columns: repeat(6, 1fr);
}

.services__mosaic .service-link:nth-child(1) {
  grid-column: span 4;
}
.services__mosaic .service-link:nth-child(2),
.services__mosaic .service-link:nth-child(3) {
  grid-column: span 3;
}
.services__mosaic .service-link:nth-child(4),
.services__mosaic .service-link:nth-child(5) {
  grid-column: span 3;
}

.services__mosaic--full {
  grid-template-columns: repeat(3, 1fr);
}

.services__mosaic--full .service-link:nth-child(n) {
  grid-column: span 1;
}

.service-link,
.listing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 1.6rem 1.5rem 1.4rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.02)
  );
  overflow: hidden;
  color: var(--text-on-dark);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.listing-card {
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line-dark);
  min-height: 280px;
}

.flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0.85rem 0 1rem;
}

.flow__node {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(224, 195, 164, 0.45);
  background: rgba(224, 195, 164, 0.08);
  color: var(--brand-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.flow__arrow {
  width: 18px;
  height: 1px;
  background: rgba(224, 195, 164, 0.7);
  position: relative;
}

.flow__arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid rgba(224, 195, 164, 0.9);
  border-top: 1px solid rgba(224, 195, 164, 0.9);
  transform: translateY(-50%) rotate(45deg);
}

.listing-card .flow__node {
  color: var(--brand-deep);
  border-color: rgba(156, 90, 50, 0.28);
  background: rgba(156, 90, 50, 0.08);
}

.listing-card .flow__arrow,
.about__diagram .flow__arrow {
  background: rgba(156, 90, 50, 0.45);
}

.listing-card .flow__arrow::after,
.about__diagram .flow__arrow::after {
  border-color: rgba(156, 90, 50, 0.7);
}

.about__diagram .flow__node {
  color: var(--brand-deep);
  border-color: rgba(156, 90, 50, 0.3);
  background: #fff;
}

.flow--xl {
  margin: 1.25rem 0 0;
}

.flow--xl .flow__node {
  min-height: 46px;
  padding: 0.55rem 1.1rem;
  font-size: 0.92rem;
}

.listing-card__icon,
.page-hero__icon {
  display: grid;
  place-items: start;
  color: var(--brand);
  margin: 0.35rem 0 0.85rem;
}

.listing-card__icon svg,
.page-hero__icon svg,
.industry__icon svg {
  width: 42px;
  height: 42px;
}

.page-hero__icon {
  color: var(--brand-light);
}

.page-hero__icon svg {
  width: 56px;
  height: 56px;
}

.service-link__index,
.listing-card__index {
  font-family: var(--font-num);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 1.1rem;
}

.listing-card__index {
  color: var(--ink);
}

.service-link h3,
.listing-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.service-link p,
.listing-card p {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  margin-bottom: auto;
}

.listing-card p {
  color: var(--text-muted);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.link-arrow::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}

.service-link:hover .link-arrow::after,
.listing-card:hover .link-arrow::after,
.text-link:hover::after {
  transform: translateX(5px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-weight: 700;
  color: #fff;
}

.text-link::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}

.tilt-card {
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(0) rotateY(0);
  transition: transform 0.35s var(--ease), border-color 0.3s var(--ease);
}

.tilt-card__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    420px circle at var(--mx, 50%) var(--my, 0%),
    rgba(156, 90, 50, 0.22),
    transparent 42%
  );
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.tilt-card:hover .tilt-card__glow {
  opacity: 1;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  overflow: hidden;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.service-card.is-open,
.service-card:hover {
  border-color: rgba(156, 90, 50, 0.55);
  background: linear-gradient(
    120deg,
    rgba(156, 90, 50, 0.16),
    rgba(255, 255, 255, 0.03)
  );
}

.service-card__hit {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.4rem;
  text-align: left;
}

.service-card__index {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--brand-light);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 400;
}

.service-card__plus {
  width: 28px;
  height: 28px;
  position: relative;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.service-card__plus::before,
.service-card__plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  transition: transform 0.3s var(--ease);
}

.service-card__plus::before {
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.service-card__plus::after {
  width: 1.5px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.service-card.is-open .service-card__plus::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}

.service-card__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}

.service-card.is-open .service-card__body {
  grid-template-rows: 1fr;
}

.service-card__body > p {
  overflow: hidden;
  padding: 0 1.4rem;
  color: var(--text-muted-dark);
  max-width: 70ch;
}

.service-card.is-open .service-card__body > p {
  padding-bottom: 1.4rem;
}

/* ---------- Benefits ---------- */
.benefits {
  background: var(--ink);
  color: var(--text-on-dark);
  overflow: hidden;
}

.benefits .eyebrow,
.clients--ink .eyebrow {
  color: var(--brand-light);
}

.benefits__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.drag-hint {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-light);
  white-space: nowrap;
}

.benefits__scroller {
  margin-top: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  padding: 0.5rem 0 1.5rem;
}

.benefits__scroller::-webkit-scrollbar {
  display: none;
}

.benefits__scroller.is-dragging {
  cursor: grabbing;
}

.benefits__rail {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding-inline: max(1.25rem, calc((100vw - var(--container)) / 2));
}

.benefit-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(78vw, 380px);
  min-height: 420px;
  padding: 1.8rem 1.6rem;
  border-radius: 24px;
  color: var(--text-on-dark);
  background: var(--ink);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.35s var(--ease),
    background 0.35s var(--ease);
}

.benefit-slide:hover {
  transform: translateY(-10px) rotate(-0.6deg);
  border-color: rgba(224, 195, 164, 0.55);
  background: linear-gradient(
    160deg,
    rgba(156, 90, 50, 0.28),
    rgba(255, 255, 255, 0.04)
  );
}

.benefit-slide .benefit__num {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-num);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 1.4rem;
}

.benefit-slide h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.benefit-slide p {
  color: var(--text-muted-dark);
  font-size: 0.98rem;
  margin-bottom: auto;
}

.scrub {
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 0.25rem;
}

.scrub__fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--brand-light);
  transition: width 0.12s linear;
}

/* ---------- Clients ---------- */
.clients {
  background: #fff;
  padding-bottom: 3rem;
  overflow: hidden;
}

.clients--ink {
  background: var(--ink);
  color: var(--text-on-dark);
  padding-bottom: 4rem;
}

.clients--ink .marquee__group img {
  background: rgba(255, 255, 255, 0.92);
}

.marquee {
  display: grid;
  gap: 1.25rem;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

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

.marquee__track--reverse {
  animation-direction: reverse;
  animation-duration: 56s;
}

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

.marquee__group {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem;
}

.marquee__group img {
  height: 64px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  padding: 0.85rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  filter: grayscale(0.2);
  opacity: 0.9;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.marquee__group img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}

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

/* ---------- Recruitment workflow ---------- */
.workflow {
  background:
    radial-gradient(50% 40% at 100% 0%, rgba(156, 90, 50, 0.12), transparent),
    var(--paper);
}

.wf {
  display: grid;
  gap: 1.5rem;
}

.wf__map {
  position: relative;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line-dark);
  box-shadow: 0 20px 50px rgba(20, 19, 17, 0.06);
}

.wf__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.wf__legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.wf__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
}

.wf__role {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wf__role--you {
  background: rgba(156, 90, 50, 0.12);
  color: var(--brand-deep);
}

.wf__role--kuza {
  background: var(--ink);
  color: #fff;
}

.wf__node.is-on .wf__role--you {
  background: rgba(224, 195, 164, 0.22);
  color: var(--brand-light);
}

.wf__node.is-on .wf__role--kuza {
  background: #fff;
  color: var(--ink);
}

.wf__panel .wf__role--you {
  background: rgba(224, 195, 164, 0.18);
  color: var(--brand-light);
}

.wf__panel .wf__role--kuza {
  background: #fff;
  color: var(--ink);
}

.wf__grid {
  display: grid;
  grid-template-columns: 1fr 64px 1fr 64px 1fr;
  grid-template-rows: auto 48px auto 48px auto;
  grid-template-areas:
    "n0 e0 n1 e1 n2"
    ".  .  .  .  e2"
    "n5 e4 n4 e3 n3"
    "e5 .  .  .  ."
    "n6 e6 n7 e7 n8";
  align-items: center;
  justify-items: stretch;
  gap: 0.35rem 0.4rem;
}

.wf__grid--six {
  grid-template-rows: auto 48px auto;
  grid-template-areas:
    "n0 e0 n1 e1 n2"
    ".  .  .  .  e2"
    "n5 e4 n4 e3 n3";
}

.wf__node[data-wf="0"] { grid-area: n0; }
.wf__node[data-wf="1"] { grid-area: n1; }
.wf__node[data-wf="2"] { grid-area: n2; }
.wf__node[data-wf="3"] { grid-area: n3; }
.wf__node[data-wf="4"] { grid-area: n4; }
.wf__node[data-wf="5"] { grid-area: n5; }
.wf__node[data-wf="6"] { grid-area: n6; }
.wf__node[data-wf="7"] { grid-area: n7; }
.wf__node[data-wf="8"] { grid-area: n8; }
.wf__arrow[data-edge="0"] { grid-area: e0; }
.wf__arrow[data-edge="1"] { grid-area: e1; }
.wf__arrow[data-edge="2"] { grid-area: e2; }
.wf__arrow[data-edge="3"] { grid-area: e3; }
.wf__arrow[data-edge="4"] { grid-area: e4; }
.wf__arrow[data-edge="5"] { grid-area: e5; }
.wf__arrow[data-edge="6"] { grid-area: e6; }
.wf__arrow[data-edge="7"] { grid-area: e7; }

.wf__node {
  min-height: 108px;
  padding: 0.95rem 1.05rem;
  border-radius: 18px;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  color: var(--text);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
    border-color 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.wf__name {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.wf__node:hover {
  transform: translateY(-3px);
  border-color: rgba(156, 90, 50, 0.35);
}

.wf__node.is-on {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 16px 36px rgba(20, 19, 17, 0.18);
  transform: translateY(-4px);
}

.wf__arrow {
  justify-self: center;
  align-self: center;
  width: 56px;
  height: 28px;
  padding: 0;
  color: rgba(20, 19, 17, 0.28);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.wf__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.wf__arrow--down {
  width: 28px;
  height: 56px;
}

.wf__track,
.wf__draw {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
}

.wf__track {
  opacity: 0.35;
}

.wf__draw {
  stroke-dasharray: 42;
  stroke-dashoffset: 42;
  transition: stroke-dashoffset 0.45s var(--ease), stroke 0.3s var(--ease);
}

.wf__head {
  fill: currentColor;
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}

.wf__bead {
  fill: currentColor;
  opacity: 0;
}

.wf__arrow:hover {
  color: var(--brand);
  transform: scale(1.12);
}

.wf__arrow:hover .wf__head {
  transform: translateX(2px);
}

.wf__arrow--left:hover .wf__head {
  transform: translateX(-2px);
}

.wf__arrow--down:hover .wf__head {
  transform: translateY(2px);
}

.wf__arrow.is-done,
.wf__arrow.is-now {
  color: var(--brand);
}

.wf__arrow.is-done .wf__draw,
.wf__arrow.is-now .wf__draw {
  stroke-dashoffset: 0;
}

.wf__arrow.is-now .wf__bead {
  opacity: 1;
}

.wf__arrow--right.is-now .wf__bead {
  animation: wfBeadX 1.25s var(--ease) infinite;
}

.wf__arrow--left.is-now .wf__bead {
  animation: wfBeadXLeft 1.25s var(--ease) infinite;
}

.wf__arrow--down.is-now .wf__bead {
  animation: wfBeadY 1.25s var(--ease) infinite;
}

@keyframes wfBeadX {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(28px);
  }
}

@keyframes wfBeadXLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-28px);
  }
}

@keyframes wfBeadY {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(28px);
  }
}

.wf__detail {
  position: relative;
  min-height: 340px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(156, 90, 50, 0.14), transparent 42%),
    var(--ink);
  color: var(--text-on-dark);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.wf__panel {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 0.85rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease),
    visibility 0.4s;
}

.wf__panel.is-on {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wf__panel h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.wf__panel p {
  color: var(--text-muted-dark);
  max-width: 58ch;
  font-size: 1.02rem;
}

@media (max-width: 860px) {
  .wf__grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }

  .wf__node {
    min-height: 0;
    grid-area: auto !important;
  }

  .wf__arrow {
    grid-area: auto !important;
    width: 28px;
    height: 48px;
    margin-inline: auto;
  }

  .wf__arrow--right svg {
    transform: rotate(90deg);
  }

  .wf__arrow--left svg {
    transform: rotate(-90deg);
  }
}

/* ---------- Process ---------- */
.process {
  background:
    radial-gradient(50% 40% at 100% 0%, rgba(156, 90, 50, 0.12), transparent),
    var(--paper);
}

.process__layout {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.process__track {
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 0.9rem;
  align-items: stretch;
}

.process__line {
  position: relative;
  border-radius: 999px;
  background: rgba(20, 19, 17, 0.1);
  overflow: hidden;
}

.process__line-fill {
  position: absolute;
  inset: 0 0 auto;
  height: 12%;
  background: var(--brand);
  transition: height 0.45s var(--ease);
}

.process__steps {
  display: grid;
  gap: 0.35rem;
  max-height: 560px;
  overflow: auto;
  padding-right: 0.35rem;
}

.process__tab {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  text-align: left;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.process__tab::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.3;
}

.process__step.is-active .process__tab::before {
  opacity: 1;
}

.process__step.is-active .process__tab,
.process__tab:hover {
  background: #fff;
  border-color: rgba(156, 90, 50, 0.25);
}

.process__step.is-active .process__tab {
  box-shadow: 0 10px 28px rgba(70, 42, 22, 0.08);
  transform: translateX(4px);
}

.process__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-num);
  font-size: 0.95rem;
  font-weight: 800;
}

.process__step.is-active .process__num {
  background: var(--ink);
  color: #fff;
}

.process__label {
  font-size: 0.95rem;
  font-weight: 500;
}

.process__panels {
  position: relative;
  min-height: 360px;
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(145deg, rgba(156, 90, 50, 0.12), transparent 40%),
    var(--ink);
  color: var(--text-on-dark);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.process__panel {
  position: absolute;
  inset: 0;
  display: grid;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease),
    visibility 0.4s;
}

.process__panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.process__copy {
  padding: clamp(1.5rem, 4vw, 2.75rem);
  display: grid;
  align-content: center;
  gap: 1rem;
}

.board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 0 0 1.5rem;
}

.board__node {
  display: block;
  text-align: left;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line-dark);
  background: #fff;
  color: var(--text);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease),
    background 0.3s var(--ease), color 0.3s var(--ease);
}

.board__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-num);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
}

.board__node span {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
}

.board__node.is-on,
.board__node:hover {
  background: var(--ink);
  color: var(--text-on-dark);
  border-color: transparent;
  transform: translateY(-3px);
}

.board__node.is-on .board__num,
.board__node:hover .board__num {
  background: #fff;
  color: var(--ink);
}

.page-hero .board {
  margin-top: 1.5rem;
}

.page-hero .board__node {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  color: var(--text-on-dark);
}

.page-hero .board__num {
  background: #fff;
  color: var(--ink);
}

.page-hero .board__node.is-on,
.page-hero .board__node:hover {
  background: #fff;
  color: var(--text);
}

.page-hero .board__node.is-on .board__num,
.page-hero .board__node:hover .board__num {
  background: var(--brand);
  color: #fff;
}

.process__panel-num {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--brand-light);
}

.process__panel h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
}

.process__panel p {
  color: var(--text-muted-dark);
  max-width: 42ch;
  font-size: 1.05rem;
}

/* ---------- Industries ---------- */
.industries {
  background: var(--ink);
  color: var(--text-on-dark);
}

.industries .eyebrow {
  color: var(--brand-light);
}

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

.industry {
  position: relative;
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0.25rem;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease);
}

.industry__icon {
  color: var(--brand-light);
  display: grid;
  place-items: center;
}

.industry__icon svg {
  width: 28px;
  height: 28px;
}

.industry::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.industry:hover {
  padding-left: 1rem;
  background: linear-gradient(
    90deg,
    rgba(156, 90, 50, 0.16),
    transparent 55%
  );
}

.industry:hover::after {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.25);
}

.industry__num {
  color: var(--brand-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.industry__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.15;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(60% 80% at 50% 120%, rgba(156, 90, 50, 0.22), transparent),
    linear-gradient(180deg, var(--paper), #fff);
}

.cta-band--photo,
.cta-band--diagram {
  position: relative;
  isolation: isolate;
  background: var(--ink);
  color: var(--text-on-dark);
  padding: 0;
  min-height: 70vh;
  display: grid;
  align-items: center;
}

.cta-band__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.cta-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

.cta-band__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 19, 17, 0.55), rgba(20, 19, 17, 0.78)),
    radial-gradient(
      500px circle at var(--spot-x, 50%) var(--spot-y, 40%),
      rgba(156, 90, 50, 0.28),
      transparent 55%
    );
}

.cta-band__inner {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1.1rem;
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 50px rgba(70, 42, 22, 0.08);
}

.cta-band--photo .cta-band__inner,
.cta-band--diagram .cta-band__inner {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: clamp(5rem, 10vw, 8rem) 1rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 400;
}

.cta-band p {
  max-width: 42ch;
  color: var(--text-muted);
}

.cta-band--photo p,
.cta-band--diagram p {
  color: var(--text-muted-dark);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--text-on-dark);
  padding: 4rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.85fr 1.2fr;
  gap: 2rem;
}

.footer__copy,
.footer__contact p,
.footer__links p,
.footer__about p {
  color: var(--text-muted-dark);
}

.footer__tagline {
  margin-top: 1rem;
  color: var(--text-muted-dark);
  max-width: 36ch;
}

.footer__copy {
  margin-top: 1.25rem;
  font-size: 0.9rem;
}

.footer__service-line {
  line-height: 1.8;
}

.footer__service-line a:hover {
  color: #fff;
}

.footer__contact {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  padding-top: 0.35rem;
}

.footer__contact a:hover,
.footer__links a:hover {
  color: #fff;
}

.footer__links {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  padding-top: 0.35rem;
}

.footer__about-label {
  color: #fff !important;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.footer__socials {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.footer__socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.footer__socials a:hover {
  background: var(--brand);
  border-color: var(--brand);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.hero .reveal {
  transition-delay: 0s;
}

.hero .reveal:nth-child(1) {
  transition-delay: 0.05s;
}
.hero .reveal:nth-child(2) {
  transition-delay: 0.18s;
}
.hero .reveal:nth-child(3) {
  transition-delay: 0.3s;
}
.hero .reveal:nth-child(4) {
  transition-delay: 0.4s;
}
.hero .reveal:nth-child(5) {
  transition-delay: 0.5s;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav__list {
    gap: 0;
  }

  .nav__trigger,
  .nav__link {
    padding: 0.5rem 0.55rem;
    font-size: 0.76rem;
  }

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

  .about__photo {
    max-width: 560px;
  }

  .about__poster {
    min-height: 0;
    margin-top: -2.25rem;
  }
}

@media (max-width: 1080px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 auto;
    width: min(100%, 360px);
    height: calc(100dvh - var(--header-h));
    background: rgba(20, 19, 17, 0.97);
    border-left: 1px solid var(--line);
    transform: translateX(105%);
    transition: transform 0.4s var(--ease);
    overflow: auto;
    padding: 1rem;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    min-width: 0;
    margin-top: 0.35rem;
    box-shadow: none;
  }

  .has-dropdown.is-open .nav__dropdown {
    display: grid;
  }

  .nav__cta {
    margin: 0.75rem 0 0;
    justify-content: center;
  }

  .process__layout,
  .process__track {
    grid-template-columns: 1fr;
  }

  .process__line {
    display: none;
  }

  .process__steps {
    max-height: none;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .process__tab {
    white-space: nowrap;
  }

  .process__panels {
    min-height: 300px;
  }

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

  .footer__grid,
  .page-hero__grid,
  .contact__grid,
  .listing__grid,
  .services__mosaic,
  .services__mosaic--full {
    grid-template-columns: 1fr;
  }

  .contact__visual,
  .contact__info,
  .contact__form {
    grid-column: auto;
    grid-row: auto;
  }

  .services__mosaic .service-link:nth-child(n) {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .about__socials {
    flex-direction: row;
  }

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

  .benefit-slide {
    min-height: 360px;
  }

  .logo--hero .logo__letter {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .hero__content {
    padding-bottom: 4.5rem;
  }

  .industry {
    grid-template-columns: 2.5rem 1fr auto;
  }
}

/* ---------- Inner pages ---------- */
.page-hero {
  position: relative;
  z-index: 1;
  background:
    radial-gradient(60% 80% at 80% 0%, rgba(156, 90, 50, 0.28), transparent 55%),
    var(--ink);
  color: var(--text-on-dark);
  padding: calc(var(--header-h) + 4.5rem) 0 4.75rem;
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

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

.page-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 19, 17, 0.72), rgba(20, 19, 17, 0.45)),
    linear-gradient(180deg, rgba(20, 19, 17, 0.35), rgba(20, 19, 17, 0.7));
}

.page-hero .eyebrow a {
  color: var(--brand-light);
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.page-hero__lede {
  margin-top: 1.35rem;
  max-width: 48ch;
  color: var(--text-muted-dark);
  font-size: 1.08rem;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.page-hero .hero__actions {
  margin-top: 2rem;
}

.siblings {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.siblings__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-light);
  padding: 0.35rem 0.75rem 0.7rem;
}

.sibling {
  display: block;
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  color: var(--text-muted-dark);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.sibling span {
  font-family: var(--font-num);
  font-size: 0.78rem;
  color: var(--brand-light);
}

.sibling:hover,
.sibling.is-current {
  background: rgba(156, 90, 50, 0.22);
  color: #fff;
}

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

.listing__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.listing-card {
  flex: 1 1 calc(50% - 0.5rem);
  min-width: min(100%, 280px);
  transition: flex 0.45s var(--ease), transform 0.45s var(--ease),
    border-color 0.35s var(--ease);
}

@media (min-width: 900px) {
  .listing-card:hover {
    flex: 1.35 1 calc(50% - 0.5rem);
    transform: translateY(-8px);
  }
}

.pager-section {
  padding-top: 0;
  background: var(--paper);
}

.pager {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.pager__link {
  display: grid;
  gap: 0.3rem;
  min-width: min(100%, 260px);
  padding: 1.2rem 1.35rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line-dark);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.pager__link span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.pager__link strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.pager__link--next {
  margin-left: auto;
  text-align: right;
}

.pager__link:hover {
  transform: translateY(-4px);
  border-color: rgba(156, 90, 50, 0.35);
}

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

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.page-hero__diagram {
  margin: 1.35rem 0 0.5rem;
}

.contact__photo {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 1.6rem;
  box-shadow: 0 18px 40px rgba(20, 19, 17, 0.1);
}

.contact__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.contact__info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact__info > p {
  color: var(--text-muted);
  max-width: 42ch;
}

.contact__details {
  display: grid;
  gap: 1.1rem;
  margin: 1.75rem 0 1.25rem;
}

.contact__details li {
  display: grid;
  gap: 0.2rem;
}

.contact__details span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.contact__details a,
.contact__details strong {
  font-size: 1.1rem;
}

.contact__form {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line-dark);
  box-shadow: 0 18px 40px rgba(70, 42, 22, 0.08);
}

.contact__form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.contact__form input,
.contact__form textarea {
  font: inherit;
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line-dark);
  background: var(--paper);
  color: var(--text);
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(156, 90, 50, 0.12);
}

.contact .footer__socials a {
  border-color: var(--line-dark);
  color: var(--ink);
}

/* ---------- Who We Are / Careers ---------- */
.profile-section {
  background: var(--paper);
  padding-top: 0;
}

.page-about .about,
.page-careers .openings {
  padding-bottom: 3rem;
}

.profile-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line-dark);
  box-shadow: 0 24px 50px rgba(20, 19, 17, 0.08);
}

.profile-card__mark {
  display: flex;
  gap: 0.4rem;
}

.profile-card__mark span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-sans);
}

.profile-card__body .eyebrow {
  margin-bottom: 0.35rem;
}

.profile-card__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.profile-card__body p {
  color: var(--text-muted);
  max-width: 62ch;
  margin-bottom: 1.35rem;
}

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

.openings__empty {
  display: grid;
  justify-items: center;
  gap: 1.25rem;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line-dark);
}

.openings__empty p {
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

@media (max-width: 720px) {
  .profile-card {
    grid-template-columns: 1fr;
  }
}

.header {
  color: #fff;
}

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

.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.split-card,
.content-list,
.note-block,
.why-card {
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line-dark);
}

.split-card h3,
.content-list h3,
.note-block h3,
.why-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.split-card p,
.note-block p,
.why-card p,
.prose {
  color: var(--text-muted);
  max-width: 58ch;
}

.content-list ul,
.split-card ul,
.help-list {
  display: grid;
  gap: 0.55rem;
}

.content-list li,
.split-card li,
.help-list li {
  padding-left: 1rem;
  position: relative;
}

.content-list li::before,
.split-card li::before,
.help-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 820px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  padding: 0.35rem 1.25rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 1rem 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  color: var(--text-muted);
  padding-bottom: 1.1rem;
}

.detail-body {
  background: var(--paper);
}

.detail-body__inner {
  display: grid;
  gap: 1.25rem;
}

.help-list {
  margin: 1rem 0 1.5rem;
  color: var(--text-muted);
}

.contact__form select {
  font: inherit;
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line-dark);
  background: var(--paper);
  color: var(--text);
  outline: none;
}

.form-success {
  color: var(--brand-deep);
  font-weight: 600;
}

@media (max-width: 860px) {
  .split-cards,
  .why-grid,
  .services__mosaic--full {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .listing__grid,
  .contact__grid,
  .page-hero__grid {
    grid-template-columns: 1fr;
  }

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

  .contact__info,
  .contact__form {
    grid-column: auto;
    grid-row: auto;
  }

  .pager {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  @view-transition {
    navigation: none;
  }

  html {
    scroll-behavior: auto;
  }

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

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

  .wf__arrow.is-now .wf__bead {
    animation: none;
    opacity: 1;
  }
}
