:root {
  --dark: #27282e;
  --dark-2: #1f2025;
  --black: #111111;
  --text: #202020;
  --muted: #5f6268;
  --gold: #c5a059;
  --gold-dark: #7f3b22;
  --gold-soft: #f5efe2;
  --white: #ffffff;
  --line: #e9e3d7;
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.12);
  --shadow-strong: 0 30px 80px rgba(17, 17, 17, 0.18);

  --font-heading: "Marcellus", serif;
  --font-body: "Tenor Sans", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================
   HEADER
========================= */

.site-header {
  width: 100%;
  background: var(--dark);
  position: relative;
  z-index: 20;
}

.header-inner {
  width: min(1280px, calc(100% - 48px));
  min-height: 128px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--white);
  min-width: 170px;
  min-height: 128px;
  padding: 20px 16px;
}

.brand-logo {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  flex: 1 1 auto;
}

.nav-link {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link.active {
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 15px 20px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 212px;
  min-height: 48px;
  padding: 15px 24px;
  border: 1px solid var(--gold);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.header-cta:hover {
  background: var(--gold);
  color: var(--dark-2);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* =========================
   HERO
========================= */

.hero-section {
  position: relative;
  min-height: calc(100vh - 128px);
  padding: 86px 0 70px;
  background: var(--white);
  overflow: hidden;
}

.hero-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 58px;
}

.hero-content {
  max-width: 585px;
  position: relative;
  z-index: 3;
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: clamp(17px, 1.5vw, 22px);
  letter-spacing: 0.02em;
}

.hero-title {
  color: #131313;
  font-family: var(--font-heading);
  font-size: clamp(46px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 400;
  max-width: 620px;
  margin-bottom: 26px;
}

.hero-copy {
  max-width: 575px;
  color: #171717;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.62;
  letter-spacing: 0.01em;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 48px;
  padding: 15px 28px;
  background: linear-gradient(180deg, #9a4e2d 0%, #b7774f 100%);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 30px rgba(127, 59, 34, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(127, 59, 34, 0.27);
  filter: brightness(1.04);
}

.text-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: gap 0.25s ease, color 0.25s ease;
}

.text-btn:hover {
  gap: 16px;
  color: var(--gold-dark);
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.blueprint-bg {
  position: absolute;
  width: 48%;
  height: 78%;
  right: -5%;
  top: 8%;
  opacity: 0.38;
  background:
    linear-gradient(28deg, transparent 0 17%, #9aa6b7 17.2% 17.6%, transparent 17.8% 100%),
    linear-gradient(154deg, transparent 0 24%, #9aa6b7 24.2% 24.8%, transparent 25% 100%),
    linear-gradient(90deg, transparent 0 14%, #9aa6b7 14.2% 14.6%, transparent 14.8% 100%),
    linear-gradient(0deg, transparent 0 18%, #9aa6b7 18.2% 18.6%, transparent 18.8% 100%);
  pointer-events: none;
}

.blueprint-bg::before,
.blueprint-bg::after {
  content: "";
  position: absolute;
  border: 2px solid #9aa6b7;
  opacity: 0.9;
}

.blueprint-bg::before {
  width: 68%;
  height: 54%;
  right: 12%;
  top: 22%;
  transform: skewY(-8deg);
}

.blueprint-bg::after {
  width: 42%;
  height: 26%;
  right: 22%;
  top: 42%;
  transform: skewY(-8deg);
  border-left: none;
}

.image-stack {
  position: relative;
  width: min(620px, 100%);
  margin-left: auto;
  padding-top: 26px;
  z-index: 2;
}

.hero-main-img {
  width: 560px;
  height: 620px;
  object-fit: cover;
  object-position: center;
  margin-left: 20px;
}

.planning-card {
  position: absolute;
  width: 238px;
  height: 170px;
  left: -22px;
  top: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(17,17,17,0.16);
  border: 10px solid var(--white);
  background: var(--white);
}

.planning-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-card {
  position: absolute;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 4;
}

.stat-card-top {
  width: 188px;
  min-height: 172px;
  top: 74px;
  right: -26px;
  padding: 26px 28px 24px;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin-left: auto;
  margin-bottom: 8px;
}

.stat-number {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #7f3b22;
  font-family: var(--font-heading);
  font-size: 62px;
  line-height: 0.88;
}

.stat-card p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.2;
}

.stat-card-bottom {
  width: 226px;
  min-height: 172px;
  left: -34px;
  bottom: 74px;
  padding: 22px 25px 24px;
}

.rating-number {
  color: #7f3b22;
  font-family: var(--font-heading);
  font-size: 62px;
  line-height: 0.95;
  margin-bottom: 8px;
}

.stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 15px;
  line-height: 1;
  margin-bottom: 22px;
}

/* =========================
   SERVICES
========================= */

.services-section {
  position: relative;
  padding: 88px 0 110px;
  background: var(--white);
}

.section-heading {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto 58px;
  text-align: center;
}

.section-kicker {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.8vw, 66px);
  line-height: 1.05;
  color: #111;
  font-weight: 400;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.section-heading p {
  max-width: 900px;
  margin: 0 auto;
  color: #1f2025;
  font-size: 18px;
  line-height: 1.62;
}

.services-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 44px;
  row-gap: 76px;
}

.service-card {
  position: relative;
  min-width: 0;
}

.service-image-link {
  display: block;
  margin-bottom: 22px;
}

.service-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f4f1eb;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition:
    transform 0.45s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.45s cubic-bezier(.2,.8,.2,1);
}

.service-image-wrap::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(197, 160, 89, 0);
  z-index: 2;
  transition:
    border-color 0.45s ease,
    inset 0.45s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}

.service-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17,17,17,0) 0%,
    rgba(17,17,17,0.08) 100%
  );
  opacity: 0;
  z-index: 1;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.75s cubic-bezier(.2,.8,.2,1),
    filter 0.45s ease;
}

.service-card:hover .service-image-wrap {
  transform: translateY(-10px) scale(1.025);
  box-shadow: var(--shadow-strong);
}

.service-card:hover .service-image-wrap::before {
  inset: 20px;
  border-color: rgba(197, 160, 89, 0.78);
}

.service-card:hover .service-image-wrap::after {
  opacity: 1;
}

.service-card:hover .service-image-wrap img {
  transform: scale(1.11);
  filter: saturate(1.05) contrast(1.04);
}

.service-number {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 12px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-number {
  transform: translateX(8px);
  color: var(--gold-dark);
}

.service-card h3 {
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: clamp(30px, 2.35vw, 42px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
  min-height: 88px;
}

.service-copy {
  color: #171717;
  font-size: 18px;
  line-height: 1.56;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: gap 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.service-link span {
  display: inline-block;
  transition: transform 0.25s ease;
}

.service-link:hover {
  gap: 16px;
  color: var(--gold-dark);
  transform: translateX(2px);
}

.service-link:hover span {
  transform: translateX(4px);
}

/* Image-specific crop adjustments */
.service-card:nth-child(1) .service-image-wrap img {
  object-position: center center;
}

.service-card:nth-child(2) .service-image-wrap img {
  object-position: center center;
}

.service-card:nth-child(3) .service-image-wrap img {
  object-position: center center;
}

.service-card:nth-child(4) .service-image-wrap img {
  object-position: center center;
}

.service-card:nth-child(5) .service-image-wrap img {
  object-position: center center;
}

.service-card:nth-child(6) .service-image-wrap img {
  object-position: center center;
}

/* =========================
   ANIMATIONS
========================= */

.reveal-up,
.reveal-left,
.reveal-fade,
.reveal-pop {
  opacity: 0;
  will-change: transform, opacity;
}

.reveal-up.is-visible {
  animation: fadeUp 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

.reveal-left.is-visible {
  animation: fadeLeft 0.95s cubic-bezier(.22,.61,.36,1) forwards;
}

.reveal-fade.is-visible {
  animation: fadeOnly 0.8s ease forwards;
}

.reveal-pop.is-visible {
  animation: popIn 0.72s cubic-bezier(.17,.84,.44,1) forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(54px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeOnly {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(0.92);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1180px) {
  .header-inner {
    gap: 22px;
  }

  .main-nav {
    gap: 24px;
  }

  .hero-shell {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .hero-main-img {
    width: 500px;
  }

  .stat-card-top {
    right: -10px;
  }

  .services-grid {
    column-gap: 30px;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    min-height: 92px;
  }

  .brand {
    min-height: 92px;
    min-width: 138px;
    padding: 14px 12px;
  }

  .brand-logo {
    width: 120px;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    background: var(--dark-2);
    padding: 14px 24px 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link,
  .nav-link.active {
    border: 0;
    padding: 16px 0;
  }

  .hero-section {
    padding-top: 64px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 590px;
  }

  .image-stack {
    margin: 0 auto;
  }

  .hero-main-img {
    width: 100%;
    height: 560px;
    margin-left: 0;
  }

  .planning-card {
    left: 18px;
  }

  .stat-card-top {
    right: 18px;
  }

  .stat-card-bottom {
    left: 18px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 64px;
  }

  .service-card h3 {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .hero-shell,
  .section-heading,
  .services-grid {
    width: min(100% - 28px, 1280px);
  }

  .hero-section {
    min-height: auto;
    padding: 48px 0 44px;
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-main-img {
    height: 500px;
  }

  .planning-card {
    width: 188px;
    height: 132px;
    border-width: 7px;
    top: 8px;
    left: 10px;
  }

  .stat-card-top {
    width: 145px;
    min-height: 142px;
    padding: 18px;
    right: 8px;
    top: 56px;
  }

  .stat-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .stat-number,
  .rating-number {
    font-size: 46px;
  }

  .stat-card-bottom {
    width: 188px;
    min-height: 142px;
    left: 8px;
    bottom: 42px;
    padding: 18px;
  }

  .stars {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }

  .services-section {
    padding: 62px 0 82px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .section-heading p {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    row-gap: 54px;
  }

  .service-image-wrap {
    aspect-ratio: 1 / 0.92;
  }

  .service-card h3 {
    font-size: 34px;
    margin-bottom: 18px;
  }

  .service-copy {
    font-size: 16px;
  }
}
/* =========================
   PROCESS SECTION
========================= */

.process-section {
  position: relative;
  padding: 118px 0 128px;
  background: var(--white);
  overflow: hidden;
}

.process-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 78px;
}

.process-visual {
  position: relative;
}

.process-collage {
  position: relative;
  min-height: 690px;
}

.process-accent {
  position: absolute;
  display: block;
  background: var(--gold);
  z-index: 0;
}

.process-accent-top {
  width: 92px;
  height: 46px;
  top: 22px;
  left: 36px;
}

.process-accent-bottom {
  width: 70px;
  height: 52px;
  left: 36px;
  bottom: 34px;
}

.process-main-frame {
  position: absolute;
  top: 34px;
  right: 0;
  width: min(100%, 540px);
  height: 610px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.10);
  z-index: 1;
}

.process-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition:
    transform 0.6s cubic-bezier(.2,.8,.2,1),
    filter 0.35s ease;
}

.process-main-frame:hover .process-main-image {
  transform: scale(1.025);
  filter: contrast(1.02) saturate(1.03);
}

.process-overlap-card {
  position: absolute;
  top: 120px;
  left: 0;
  width: 205px;
  padding: 18px;
  background: var(--white);
  border: 1px solid #eadfce;
  box-shadow: 0 20px 55px rgba(17, 17, 17, 0.14);
  z-index: 3;
}

.process-overlap-frame {
  border: 1px solid #efe5d7;
  background: var(--white);
  overflow: hidden;
}

.process-overlap-image {
  width: 100%;
  aspect-ratio: 4 / 5.7;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}

.process-overlap-card:hover .process-overlap-image {
  transform: scale(1.03);
}

.process-stat-card {
  position: absolute;
  left: 18px;
  bottom: 48px;
  width: 184px;
  padding: 18px 16px 16px;
  background: var(--white);
  border: 1px solid #eadfce;
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.12);
  z-index: 4;
}

.process-stat-number {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  color: #0f0f0f;
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.process-stat-number span:last-child {
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1;
  margin-bottom: 5px;
}

.process-stat-card p {
  color: #101010;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.08;
  margin: 0;
}

.process-content {
  max-width: 570px;
}

.process-kicker {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1;
  margin-bottom: 32px;
}

.process-title {
  color: #111111;
  font-family: var(--font-heading);
  font-size: clamp(48px, 4.6vw, 68px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.process-copy {
  color: #2b2b2b;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.52;
  margin-bottom: 34px;
}

.process-steps {
  display: grid;
  gap: 22px;
  margin-bottom: 34px;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 16px;
}

.process-step span {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

.process-step p {
  color: #151515;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0;
}

.process-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 48px;
  padding: 15px 30px;
  background: linear-gradient(180deg, #1f2025 0%, #7f3b22 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 38px rgba(127, 59, 34, 0.22);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.process-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(127, 59, 34, 0.30);
  filter: brightness(1.06);
}

@media (max-width: 1100px) {
  .process-shell {
    gap: 58px;
  }

  .process-collage {
    min-height: 640px;
  }

  .process-main-frame {
    width: min(100%, 500px);
    height: 560px;
  }

  .process-overlap-card {
    width: 215px;
  }
}

@media (max-width: 980px) {
  .process-section {
    padding: 84px 0 96px;
  }

  .process-shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-content {
    max-width: 720px;
  }

  .process-collage {
    min-height: 600px;
  }

  .process-main-frame {
    width: calc(100% - 42px);
    max-width: none;
    height: 520px;
    top: 28px;
    right: 0;
  }

  .process-overlap-card {
    top: 86px;
    left: 0;
    width: 210px;
  }

  .process-stat-card {
    left: 0;
    bottom: 0;
  }
}

@media (max-width: 640px) {
  .process-section {
    padding: 68px 0 78px;
  }

  .process-shell {
    width: min(100% - 28px, 1180px);
    gap: 42px;
  }

  .process-collage {
    min-height: 470px;
  }

  .process-accent-top {
    width: 70px;
    height: 34px;
    top: 8px;
    left: 18px;
  }

  .process-accent-bottom {
    width: 52px;
    height: 38px;
    left: 18px;
    bottom: 10px;
  }

  .process-main-frame {
    top: 24px;
    width: calc(100% - 18px);
    height: 390px;
  }

  .process-overlap-card {
    top: 74px;
    width: 145px;
    padding: 10px;
  }

  .process-stat-card {
    width: 136px;
    padding: 12px 10px 12px;
    left: 0;
    bottom: 0;
  }

  .process-stat-number {
    font-size: 34px;
    margin-bottom: 6px;
  }

  .process-stat-number span:last-child {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .process-stat-card p {
    font-size: 14px;
  }

  .process-kicker {
    font-size: 20px;
    margin-bottom: 22px;
  }

  .process-title {
    font-size: clamp(42px, 12vw, 56px);
  }

  .process-copy {
    font-size: 17px;
  }

  .process-step p {
    font-size: 17px;
  }
}