:root {
  /* Brand */
  --orange: #fd5e00;
  --orange-dim: rgba(253, 94, 0, 0.15);
  --orange-hover: #e05200;

  /* Light surfaces */
  --light: #f8f6f2;
  --light2: #f0ede8;
  --light-border: #e2ddd8;

  /* Dark surfaces */
  --dark: #0f0f0f;
  --dark2: #161616;

  /* Text */
  --text-on-light: #1a1816;
  --text-muted-on-light: #6b6560;
  --text-on-dark: #f0ede8;
  --text-muted-on-dark: rgba(255, 255, 255, 0.78);

  /* Typography */
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Overpass', system-ui, sans-serif;

  /* Layout */
  --max-width: 1100px;
  --narrow: 640px;
  --radius: 3px;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  background-color: var(--light);
  color: var(--text-on-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
}

p {
  margin-bottom: 1.5em;
  line-height: 1.75;
}

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

a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--orange-hover);
}

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

ul, ol {
  padding-left: 1.5em;
}

li {
  margin-bottom: 0.75em;
  line-height: 1.6;
}

li::marker {
  color: var(--orange);
}

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.narrow {
  max-width: var(--narrow);
}

.section-light {
  background-color: var(--light);
  padding: clamp(80px, 10vw, 140px) 0;
}

.section-dark {
  background-color: var(--dark);
  padding: clamp(80px, 10vw, 140px) 0;
}

@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}

/* ─── Accessibility utilities ────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background-color: var(--orange);
  color: #ffffff;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
  color: #ffffff;
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

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

/* ─── Typography utilities ───────────────────────────────── */
.label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px 12px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  min-height: 44px;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background: var(--orange);
  color: #ffffff;
  border-color: var(--orange);
}

.btn--primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: #ffffff;
}

.btn--outline-dark {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}

.btn--outline-dark:hover {
  background: var(--orange);
  color: #ffffff;
}

.btn--outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
}

.btn--outline-light:hover {
  background: #ffffff;
  color: var(--text-on-light);
  border-color: #ffffff;
}

/* ─── Tags ───────────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
  padding: 4px 7px 3px;
}

.tag--industry {
  background: var(--orange);
  color: #ffffff;
}

.tag--service {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}

/* ─── Reveal animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Nav ────────────────────────────────────────────────── */
.nav-sentinel {
  height: 0;
}

.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 24px;
  transition: padding 0.3s ease;
}

.nav-wrap.is-scrolled {
  padding: 10px 24px;
}

.nav {
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  max-width: var(--max-width);
  margin: 0 auto;
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-wrap.is-scrolled .nav {
  background-color: #111111;
  border-color: transparent;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 56px;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__logo-img {
  max-height: 36px;
  width: auto;
  display: block;
}

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__item {
  position: relative;
  padding: 0;
  margin: 0;
}

.nav__link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 8px 14px;
  display: block;
  border-radius: 6px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav__link:hover {
  color: #ffffff;
  background-color: rgba(255,255,255,0.08);
}

button.nav__link,
.nav__link--toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  font: inherit;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
}

.nav__item--cta {
  margin-left: 8px;
}

.nav__cta {
  font-size: 12px;
  padding: 8px 20px 7px;
  min-height: 0;
  border-radius: 6px;
}

.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  min-width: 260px;
  list-style: none;
  padding: 8px;
  margin: 0;
  z-index: 200;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.nav__item:hover .nav__dropdown,
.nav__dropdown:hover {
  display: block;
}

.nav__item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.nav__sublink {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 6px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav__sublink:hover {
  color: #ffffff;
  background-color: rgba(255,255,255,0.08);
}

.nav__toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 36px;
  height: 36px;
  position: relative;
  align-items: center;
  justify-content: center;
}

.nav__toggle-bar,
.nav__toggle-bar::before,
.nav__toggle-bar::after {
  display: block;
  width: 20px;
  height: 2px;
  background-color: rgba(255,255,255,0.85);
  position: absolute;
  transition: all 0.2s ease;
}

.nav__toggle-bar::before {
  content: '';
  top: -6px;
}

.nav__toggle-bar::after {
  content: '';
  top: 6px;
}

@media (max-width: 1023px) {
  .nav-wrap {
    padding: 12px 16px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background-color: #111111;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    padding: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  }

  .nav[data-open="true"] .nav__menu {
    display: block;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .nav__item {
    width: 100%;
  }

  .nav__link {
    padding: 12px 14px;
  }

  .nav__item--cta {
    margin-left: 0;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #2a2a2a;
  }

  .nav__cta {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  .nav__dropdown {
    position: static;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
    padding: 0 0 0 12px;
    min-width: 0;
  }

  .has-dropdown:hover .nav__dropdown {
    display: none;
  }

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

  .nav__sublink {
    color: rgba(255,255,255,0.6);
    padding: 8px 12px;
  }
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer-minimal {
  background-color: #000000;
  padding: 60px 0 0;
}

.footer-minimal__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 60px;
  align-items: start;
  padding-bottom: 60px;
  border-bottom: 1px solid #1e1e1e;
}

.footer-minimal__logo img {
  max-height: 36px;
  width: auto;
}

.footer-minimal__nav {
  display: flex;
  gap: 32px;
  align-items: center;
  padding-top: 4px;
}

.footer-minimal__nav a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-minimal__nav a:hover {
  color: #ffffff;
}

.footer-minimal__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.footer-minimal__contact a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-minimal__contact a:hover {
  color: #ffffff;
}

.footer-minimal__social {
  display: flex;
  gap: 16px;
}

.footer-minimal__social a {
  font-size: 12px;
}

.footer-minimal__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-minimal__bottom p {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.footer-minimal__policy {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-minimal__policy li a {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-minimal__policy li a:hover {
  color: rgba(255,255,255,0.7);
}

@media (max-width: 767px) {
  .footer-minimal__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-minimal__contact {
    align-items: flex-start;
  }

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

  .footer-minimal__policy {
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 !important;
    line-height: 1 !important;
  }

  .footer-minimal__policy li {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    height: 20px;
    display: flex;
    align-items: center;
  }

  .footer-minimal__policy li a {
    padding: 0 12px 0 0 !important;
    line-height: 1 !important;
    font-size: 11px;
  }
}

/* ─── Page transitions ───────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

::view-transition-old(root) {
  animation: 200ms ease-in both fade-out;
}

::view-transition-new(root) {
  animation: 300ms ease-out both fadeIn;
}


/* ─── Home Horizontal Scroll Work ───────────────────────── */
.home-work-scroll {
  background-color: var(--dark);
  position: relative;
}

@media (min-width: 768px) {
  .home-work-scroll {
    height: 500vh;
  }

  .home-work-scroll__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .home-work-scroll__sticky {
    padding: clamp(60px, 8vw, 100px) 0;
  }
}

.home-work-scroll__track {
  overflow: hidden;
  padding: 0 0 0 clamp(20px, 4vw, 60px);
}

.home-work-scroll__cards {
  display: flex;
  gap: 24px;
  will-change: transform;
  transition: transform 0.1s linear;
}

.hws-card {
  flex: 0 0 auto;
  width: clamp(320px, 38vw, 520px);
  height: clamp(400px, 55vh, 600px);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border-radius: 4px;
  display: block;
}

.hws-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hws-card:hover .hws-card__image {
  transform: scale(1.04);
}

.hws-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 55%, rgba(0,0,0,0.05) 100%);
  z-index: 1;
  transition: opacity 0.3s ease;
}

.hws-card:hover::before {
  opacity: 0.7;
}

.hws-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hws-card:hover .hws-card__body {
  transform: translateY(-8px);
}

.hws-card__logo {
  max-width: 160px;
  max-height: 28px;
  width: auto;
  height: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  display: block;
}

.hws-card__outcome {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.hws-card__title {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
}

.hws-progress {
  height: 2px;
  background-color: rgba(255,255,255,0.1);
  margin: 32px clamp(20px, 4vw, 60px) 0;
  border-radius: 2px;
  overflow: hidden;
}

.hws-progress__bar {
  height: 100%;
  width: 0%;
  background-color: var(--orange);
  transition: width 0.1s linear;
  border-radius: 2px;
}

.hws-footer {
  padding: 24px clamp(20px, 4vw, 60px) 0;
}

@media (max-width: 767px) {
  .home-work-scroll__track {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 20px;
  }

  .home-work-scroll__track::-webkit-scrollbar {
    display: none;
  }

  .home-work-scroll__cards {
    transform: none !important;
  }

  .hws-card {
    width: 85vw;
    height: 400px;
  }

  .hws-progress {
    display: none;
  }
}


/* ─── Service inline CTA ─────────────────────────────────── */
.svc-cta {
  padding: clamp(60px, 8vw, 100px) 0;
}

.svc-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.svc-cta__line {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  max-width: 600px;
}

@media (max-width: 767px) {
  .svc-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─── Hero2 (inner page hero) ────────────────────────────── */
.hero2 {
  min-height: 100dvh;
  background-color: var(--dark);
  display: flex;
  align-items: center;
}

.hero2__content {
  max-width: 820px;
  padding: 120px 0 80px;
}

.hero2__heading {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.08;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.hero2__sub {
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 48px;
  max-width: 440px;
  line-height: 1.6;
}

/* ─── About Hero ─────────────────────────────────────────── */
.about-hero {
  min-height: 100dvh;
  background-color: var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero__inner {
  padding-top: clamp(120px, 16vw, 180px);
  padding-bottom: clamp(60px, 8vw, 100px);
  width: 100%;
}

.about-hero__text {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.about-hero__line {
  display: block;
  font-family: var(--serif);
  line-height: 1.05;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.about-hero__line--1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.5);
}

.about-hero__line--2 {
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.about-hero__line--3 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.5);
}

/* ─── About Differentiators ──────────────────────────────── */
.about-diff__item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--light-border);
}

.about-diff__item:last-child {
  border-bottom: 1px solid var(--light-border);
}

.about-diff__number {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 400;
  color: var(--light-border);
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-diff__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--text-on-light);
  margin-bottom: 20px;
  font-weight: 400;
}

.about-diff__body {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  line-height: 1.8;
  max-width: 640px;
  margin: 0;
}

@media (max-width: 767px) {
  .about-diff__item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-diff__number {
    font-size: clamp(3rem, 10vw, 5rem);
  }
}

/* ─── About Jason ────────────────────────────────────────── */
.about-jason {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background-color: var(--dark);
}

.about-jason__photo {
  overflow: hidden;
  min-height: 600px;
}

.about-jason__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.about-jason__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 96px);
}

.about-jason__name {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 32px;
}

.about-jason__bio p {
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 1.25em;
}

.about-jason__bio p:last-child {
  margin-bottom: 40px;
}

.about-jason__content .btn {
  align-self: flex-start;
  width: auto;
}

.about-jason__content .btn--outline-dark {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.25);
}

.about-jason__content .btn--outline-dark:hover {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
}

@media (max-width: 767px) {
  .about-jason {
    grid-template-columns: 1fr;
  }

  .about-jason__photo {
    height: 400px;
    min-height: 0;
  }

  .about-jason__content {
    padding: 48px 24px;
  }
}

/* ─── Pullquote ──────────────────────────────────────────── */
.pullquote2 {
  padding: clamp(80px, 10vw, 120px) 0;
}

.pullquote2__text {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.4;
  border: none;
  padding: 0;
  font-style: italic;
}

/* ─── Service Hero ───────────────────────────────────────── */
.svc-hero {
  background-color: var(--dark);
  padding: clamp(120px, 15vw, 180px) 0 clamp(60px, 8vw, 100px);
}

.svc-hero__label {
  display: block;
  margin-bottom: 20px;
}

.svc-hero__heading {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 700px;
}

.svc-hero__sub {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 540px;
  margin: 0;
  line-height: 1.6;
}

/* ─── Service Problem ────────────────────────────────────── */
.svc-problem__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.svc-problem__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
}

.svc-problem__intro {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin: 0;
}

.svc-problem__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.svc-problem__item {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 16px;
}

.svc-problem__item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--orange);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .svc-problem__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ─── Service Approach ───────────────────────────────────── */
.svc-approach .label {
  display: block;
  margin-bottom: 48px;
}

.svc-approach__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: var(--light-border);
  border: 1px solid var(--light-border);
}

.svc-approach__item {
  background-color: var(--light);
  padding: 40px 36px;
  transition: background-color 0.2s ease;
}

.svc-approach__item:hover {
  background-color: var(--light2);
}

.svc-approach__num {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 20px;
}

.svc-approach__title {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-on-light);
  margin-bottom: 16px;
  line-height: 1.4;
}

.svc-approach__body {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .svc-approach__grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Service Outcomes ───────────────────────────────────── */
.svc-outcomes__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.svc-outcomes__heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-on-light);
  margin-bottom: 16px;
}

.svc-outcomes__sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  line-height: 1.7;
  margin: 0;
}

.svc-outcomes__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--light-border);
}

.svc-outcomes__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--light-border);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-on-light);
  line-height: 1.4;
}

.svc-outcomes__check {
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .svc-outcomes__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ─── Services index ─────────────────────────────────────── */
.services2__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--light-border);
  border-left: 1px solid var(--light-border);
}

.services2__item {
  padding: 40px 48px;
  border-bottom: 1px solid var(--light-border);
  border-right: 1px solid var(--light-border);
  transition: background-color 0.2s ease;
}

.services2__item:hover {
  background-color: var(--light2);
}

.services2__name {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--text-on-light);
  margin-bottom: 10px;
}

.services2__desc {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  line-height: 1.6;
  margin: 0;
}

.services2__item--link {
  display: block;
  text-decoration: none;
  position: relative;
}

.services2__arrow {
  display: inline-block;
  font-size: 1.25rem;
  color: var(--orange);
  margin-top: 12px;
  transition: transform 0.2s ease;
}

.services2__item--link:hover .services2__arrow {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .services2__grid {
    grid-template-columns: 1fr;
  }
}

/* ─── How We Work ────────────────────────────────────────── */
.how2 {
  border-top: 1px solid var(--light-border);
}

.how2__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

.how2__num {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 20px;
}

.how2__title {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-light);
  margin-bottom: 16px;
}

.how2 p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .how2__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ─── Work Index ─────────────────────────────────────────── */
.work-index__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.work-index-card {
  display: block;
  text-decoration: none;
  position: relative;
}

.work-index-card:hover {
  z-index: 1;
}

.work-index-card__image {
  height: 480px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-index-card:hover .work-index-card__image {
  transform: scale(1.03);
}

.work-index-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.05) 100%);
  transition: opacity 0.3s ease;
}

.work-index-card:hover .work-index-card__overlay {
  opacity: 0.7;
}

.work-index-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-index-card:hover .work-index-card__body {
  transform: translateY(-8px);
}

.work-index-card__logo {
  max-width: 160px;
  max-height: 30px;
  width: auto;
  height: auto;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.work-index-card__outcome {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.work-index-card__title {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 767px) {
  .work-index__grid {
    grid-template-columns: 1fr;
  }

  .work-index-card__image {
    height: 320px;
  }
}



/* ─── Contact ────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.contact-info__heading,
.contact-form__heading {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--text-on-light);
  margin-bottom: 32px;
}

.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-info__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}

.contact-info__item a {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-on-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info__item a:hover {
  color: var(--orange);
}

.contact-info__social {
  display: flex;
  gap: 20px;
}

.contact-form__sub {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  margin-bottom: 32px;
}

.contact-form__target {
  min-height: 400px;
}

.calendly-section {
  padding: clamp(80px, 10vw, 120px) 0;
}

.calendly-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
  margin-bottom: 16px;
}

.calendly-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 48px;
  max-width: 480px;
}

.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
}

@media (max-width: 767px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ─── Policy pages ───────────────────────────────────────── */
.policy-hero {
  padding: clamp(120px, 15vw, 160px) 0 clamp(40px, 6vw, 60px);
}

.policy-hero__heading {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: #ffffff;
}

.policy-body {
  max-width: var(--narrow);
  padding: 24px 0 clamp(48px, 6vw, 80px);
}
.policy-content.section-light {
  padding: 32px 0 clamp(48px, 6vw, 80px) !important;
}
.policy-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--text-on-light);
  margin-top: 40px;
  margin-bottom: 16px;
}

.policy-body p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  line-height: 1.75;
  margin-bottom: 1.25em;
}
/* ─── Contact Form ───────────────────────────────────────── */
.contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted-on-light);
}

.form-group input,
.form-group textarea {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-on-light);
  background-color: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  width: 100%;
  transition: border-color 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--light-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-result {
  min-height: 24px;
}

.form-success {
  font-size: 0.9375rem;
  color: #2d7a2d;
  margin: 0;
}

.form-error {
  font-size: 0.9375rem;
  color: #c0392b;
  margin: 0;
}



/* ─── About page photo ───────────────────────────────────── */

.about-photo-wrap {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 767px) {
  .about-photo-wrap {
    max-width: 100%;
    aspect-ratio: 4/3;
  }
}

/* ─── Contact Foundation note ────────────────────────────── */

.contact-foundation-note {
  background-color: var(--light2);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 40px;
}

.contact-foundation-note__text {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  margin: 0;
  line-height: 1.5;
}

.contact-foundation-note__text a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 400;
}

.contact-foundation-note__text a:hover {
  color: var(--orange-hover);
}

/* ─── Service page photos ────────────────────────────────── */

.svc-photo-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 56px;
  overflow: hidden;
  border-radius: var(--radius);
}

.svc-photo {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── Services index Foundation callout ─────────────────── */

.svc-index-foundation {
  border-bottom: 1px solid var(--light-border);
}

.svc-index-foundation__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.svc-index-foundation__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--text-on-light);
  margin: 8px 0 12px;
  line-height: 1.2;
}

.svc-index-foundation__sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.svc-index-foundation__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.svc-index-foundation__amount {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--text-on-light);
  line-height: 1;
}

.svc-index-foundation__sep {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
}

.svc-index-foundation__annual {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
}

.svc-index__other-label {
  display: block;
  margin-bottom: 40px;
  margin-top: 0;
  padding-top: clamp(60px, 8vw, 100px);
}

@media (max-width: 767px) {
  .svc-index-foundation__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─── Service page case study strip ─────────────────────── */

.svc-case {
  border-top: 1px solid var(--light-border);
}

.svc-case__header {
  margin-bottom: 40px;
  max-width: 680px;
}

.svc-case__heading {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--text-on-light);
  margin: 8px 0 12px;
  line-height: 1.2;
}

.svc-case__sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  line-height: 1.7;
  margin: 0;
}

/* Two-image layout (Gunfighters) */
.svc-case__images {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2px;
  margin-bottom: 40px;
}

.svc-case__images--single {
  grid-template-columns: 1fr;
}

.svc-case__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-case__image--wide {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.svc-case__image--narrow {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.svc-case__image--full {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.svc-case__image--full img {
  object-position: center top;
}

/* Stats row */
.svc-case__stats {
  display: flex;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.svc-case__stat-number {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-on-light);
  line-height: 1;
  margin-bottom: 6px;
}

.svc-case__stat-label {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  max-width: 180px;
  line-height: 1.4;
  margin: 0;
}

.svc-case__link {
  display: inline-flex;
}

/* Compliance stat strip */
.svc-compliance-strip {
  padding: clamp(60px, 8vw, 100px) 0;
}

.svc-compliance-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.svc-compliance-strip__number {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
}

.svc-compliance-strip__label {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-muted-on-dark);
  max-width: 200px;
  line-height: 1.5;
  margin: 0;
}
.svc-compliance-strip__detail {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  margin: 6px 0 0;
  max-width: 180px;
}
@media (max-width: 767px) {
  .svc-compliance-strip__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
/* Foundation work grid on service page */
.svc-foundation-work {
  border-top: 1px solid var(--light-border);
}

.svc-foundation-work__heading {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--text-on-light);
  margin: 8px 0 40px;
  line-height: 1.2;
}

/* Mobile */
@media (max-width: 767px) {
  .svc-case__images {
    grid-template-columns: 1fr;
  }

  .svc-case__image--wide,
  .svc-case__image--narrow {
    aspect-ratio: 16/9;
  }

  .svc-case__stats {
    gap: 32px;
  }

  .svc-compliance-strip__inner {
    gap: 40px;
  }
}

/* ─── Nav services link group ────────────────────────────── */

.nav__link-group {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__link--label {
  padding-right: 4px;
}

.nav__link--chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 6px;
  min-width: unset;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  transition: opacity 0.2s ease;
}

.nav__link--chevron:hover {
  opacity: 0.7;
}

.has-dropdown[data-open="true"] .nav__link--chevron svg,
.has-dropdown.is-open .nav__link--chevron svg {
  transform: rotate(180deg);
}

.nav__link--chevron svg {
  transition: transform 0.2s ease;
  pointer-events: none;
}

/* ─── Services index page ────────────────────────────────── */

.svc-index-hero {
  padding: clamp(140px, 18vw, 200px) 0 clamp(80px, 10vw, 120px);
}

.svc-index-hero__heading {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 24px;
}

.svc-index-hero__sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  line-height: 1.65;
  margin: 0;
}

.svc-index-foundation {
  border-bottom: 1px solid var(--light-border);
}

.svc-index-foundation__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  flex-wrap: wrap;
}

.svc-index-foundation__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--text-on-light);
  margin: 8px 0 12px;
  line-height: 1.2;
}

.svc-index-foundation__sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.svc-index-foundation__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.svc-index-foundation__amount {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--text-on-light);
  line-height: 1;
}

.svc-index-foundation__sep {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
}

.svc-index-foundation__annual {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
}

.svc-index-foundation__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-index-foundation__list li {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  padding-left: 20px;
  position: relative;
  line-height: 1.45;
  margin: 0;
}

.svc-index-foundation__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 600;
}

.svc-index-foundation__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  padding-top: 48px;
}

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

.svc-index-other__label {
  display: block;
  margin-bottom: 40px;
  padding-top: clamp(60px, 8vw, 100px);
}

@media (max-width: 767px) {
  .svc-index-foundation__inner {
    flex-direction: column;
    gap: 40px;
  }

  .svc-index-foundation__cta {
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 0;
  }
}


/* ══════════════════════════════════════════════════
   FOUNDATION PAGE
   ══════════════════════════════════════════════════ */

/* ─── Hero ───────────────────────────────────────── */

.fnd-hero {
  min-height: 92dvh;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-color: var(--dark);
  overflow: hidden;
}

.fnd-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fnd-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  opacity: 0.4;
}

.fnd-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 10, 10, 0.1) 0%,
    rgba(10, 10, 10, 0.5) 60%,
    rgba(10, 10, 10, 0.9) 100%
  );
}

.fnd-hero__content {
  position: relative;
  z-index: 1;
  padding-top: clamp(120px, 16vw, 180px);
  padding-bottom: clamp(60px, 8vw, 100px);
}

.fnd-hero__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.fnd-hero__heading {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 720px;
}

.fnd-hero__sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.fnd-hero__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.fnd-hero__price-inline {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.fnd-hero__price-num {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
}

.fnd-hero__price-sep {
  font-family: var(--sans);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
}

.fnd-hero__price-annual {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── Audience statement ─────────────────────────── */

.fnd-audience {
  background-color: var(--light);
  padding: clamp(80px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--light-border);
}

.fnd-audience__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.fnd-audience__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--text-on-light);
  line-height: 1.15;
  margin: 0;
}

.fnd-audience__body {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.fnd-audience__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--light-border);
  padding-top: 24px;
}

.fnd-audience__list li {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-on-light);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
  margin: 0;
}

.fnd-audience__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 600;
}

/* ─── What's included ────────────────────────────── */

.fnd-included {
  background-color: var(--light);
  padding: clamp(80px, 10vw, 140px) 0;
}

.fnd-included__intro {
  margin-bottom: 56px;
  max-width: 600px;
}

.fnd-included__heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-on-light);
  margin-bottom: 12px;
  line-height: 1.1;
}

.fnd-included__sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  margin: 0;
  line-height: 1.6;
}

.fnd-included__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: var(--light-border);
  border: 1px solid var(--light-border);
}

.fnd-item {
  background-color: var(--light);
  padding: 32px 28px;
  transition: background-color 0.2s ease;
}

.fnd-item:hover {
  background-color: var(--light2);
}

.fnd-item__num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}

.fnd-item__title {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-on-light);
  margin-bottom: 10px;
  line-height: 1.3;
}

.fnd-item__body {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  line-height: 1.65;
  margin: 0;
}

/* ─── Showcase ───────────────────────────────────── */

.fnd-showcase {
  background-color: var(--dark);
  padding: clamp(80px, 10vw, 140px) 0;
}

.fnd-showcase__intro {
  margin-bottom: 56px;
}

.fnd-showcase__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--text-on-dark);
  margin: 0 0 12px;
  line-height: 1.15;
}

.fnd-showcase__sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-dark);
  margin: 0;
  line-height: 1.6;
}

.fnd-showcase__strip {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fnd-showcase__client {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
  background-color: var(--dark2);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fnd-showcase__client:nth-child(2) { transition-delay: 0.1s; }
.fnd-showcase__client:nth-child(3) { transition-delay: 0.2s; }

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

.fnd-showcase__client-img {
  width: 100%;
  aspect-ratio: 16/8;
  overflow: hidden;
  background-color: var(--dark);
}

.fnd-showcase__client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fnd-showcase__client:hover .fnd-showcase__client-img img {
  transform: scale(1.03);
}

.fnd-showcase__client-meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background-color: var(--dark2);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.fnd-showcase__client-industry {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.fnd-showcase__client-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-on-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.fnd-showcase__client-url {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

/* ─── IS / IS NOT ────────────────────────────────── */

.fnd-isnot {
  background-color: var(--dark2);
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fnd-isnot__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.fnd-isnot__col-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
  display: block;
}

.fnd-isnot__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fnd-isnot__list li {
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 300;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
  margin: 0;
}

.fnd-isnot__list--yes li {
  color: var(--text-on-dark);
}

.fnd-isnot__list--yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 600;
}

.fnd-isnot__list--no li {
  color: rgba(255, 255, 255, 0.4);
}

.fnd-isnot__list--no li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.25);
}

/* ─── Process ────────────────────────────────────── */

.fnd-process {
  background-color: var(--light);
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--light-border);
}

.fnd-process__heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-on-light);
  margin-bottom: 64px;
  line-height: 1.1;
}

.fnd-process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--light-border);
}

.fnd-process__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--light-border);
  align-items: start;
}

.fnd-process__step-num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--orange);
  padding-top: 4px;
}

.fnd-process__title {
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-on-light);
  margin-bottom: 8px;
  line-height: 1.3;
}

.fnd-process__body {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  line-height: 1.7;
  margin: 0;
}

/* ─── Intake form ────────────────────────────────── */

.fnd-intake {
  background-color: var(--dark);
  padding: clamp(80px, 10vw, 140px) 0;
}

.fnd-intake__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.fnd-intake__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--text-on-dark);
  margin: 8px 0 16px;
  line-height: 1.2;
}

.fnd-intake__sub {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-muted-on-dark);
  line-height: 1.7;
  margin-bottom: 40px;
}

.fnd-intake__pricing {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.fnd-intake__price-row {
  display: flex;
}

.fnd-intake__price-block {
  flex: 1;
  padding: 24px;
}

.fnd-intake__price-divider {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.fnd-intake__price-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 8px;
}

.fnd-intake__price-amount {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}

.fnd-intake__price-note {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.4;
  margin: 0;
}

/* Form */
.fnd-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fnd-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fnd-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fnd-form__group label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.fnd-form__optional {
  font-weight: 300;
  opacity: 0.6;
  text-transform: none;
  letter-spacing: 0;
}

.fnd-form__group input,
.fnd-form__group textarea {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  outline: none;
  -webkit-appearance: none;
}

.fnd-form__group input::placeholder,
.fnd-form__group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.fnd-form__group input:focus,
.fnd-form__group textarea:focus {
  border-color: var(--orange);
  background-color: rgba(255, 255, 255, 0.07);
}

.fnd-form__group textarea {
  resize: vertical;
  min-height: 96px;
}

.fnd-form__submit {
  align-self: flex-start;
  margin-top: 8px;
}

/* Success and error */
.fnd-form-success {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  text-align: center;
}

.fnd-form-success__heading {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 12px;
}

.fnd-form-success__body {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-dark);
  margin: 0;
}

.fnd-form-message--error {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: #ff6b6b;
  margin-bottom: 16px;
}

.fnd-form-message--error a {
  color: #ff6b6b;
  text-decoration: underline;
}

/* ─── Mobile ─────────────────────────────────────── */

@media (max-width: 1023px) {
  .fnd-included__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fnd-showcase__client {
    grid-template-columns: 1fr;
  }

  .fnd-showcase__client-img {
    aspect-ratio: 16/9;
  }

  .fnd-showcase__client-meta {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 24px;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .fnd-hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .fnd-audience__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fnd-included__grid {
    grid-template-columns: 1fr;
  }

  .fnd-isnot__cols {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .fnd-process__step {
    grid-template-columns: 48px 1fr;
  }

  .fnd-intake__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .fnd-form__row {
    grid-template-columns: 1fr;
  }

  .fnd-intake__price-row {
    flex-direction: column;
  }

  .fnd-intake__price-divider {
    width: 100%;
    height: 1px;
  }
}

/* ══════════════════════════════════════════════════
   HOMEPAGE
   ══════════════════════════════════════════════════ */

/* ─── Hero ───────────────────────────────────────── */

.home-hero {
  min-height: 100dvh;
  background-color: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.home-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.home-hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 10, 10, 0.2) 0%,
    rgba(10, 10, 10, 0.5) 60%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

.home-hero__content {
  position: relative;
  z-index: 1;
  padding-top: clamp(100px, 14vw, 160px);
  padding-bottom: clamp(80px, 10vw, 120px);
}

/* Hero headline — animated lines */
.home-hero__text {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.04;
  color: #ffffff;
  margin-bottom: 28px;
}

.home-hero__line {
  display: block;
  font-style: normal;
  font-weight: inherit;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.home-hero__line--2 {
  color: var(--orange);
  font-weight: 400;
}

.home-hero__sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.home-hero__cta {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

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

/* Scroll indicator */
.home-hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.home-hero__scroll-indicator.is-visible {
  opacity: 1;
}

.home-hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,0));
  margin: 0 auto;
  animation: scrollPulse 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ─── Foundation strip ───────────────────────────── */

.home-foundation {
  background-color: var(--light);
  padding: clamp(80px, 10vw, 140px) 0;
}

.home-foundation__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.home-foundation__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--text-on-light);
  margin: 8px 0 12px;
  max-width: 560px;
  line-height: 1.15;
}

.home-foundation__sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  max-width: 460px;
  line-height: 1.65;
  margin: 0;
}

.home-foundation__price {
  text-align: right;
  flex-shrink: 0;
}

.home-foundation__price-main {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--text-on-light);
  line-height: 1;
  margin: 0;
}

.home-foundation__price-sub {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  margin: 6px 0 0;
}

.home-foundation__price-annual {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  margin-top: 8px;
  max-width: 200px;
  margin-left: auto;
  line-height: 1.45;
}

.home-foundation__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--light-border);
  margin-bottom: 48px;
}

.home-foundation__col-heading {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted-on-light);
  margin-bottom: 20px;
}

.home-foundation__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-foundation__list li {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  padding-left: 24px;
  position: relative;
  line-height: 1.45;
  margin: 0;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-foundation__list li.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.home-foundation__list--yes li {
  color: var(--text-on-light);
}

.home-foundation__list--yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 600;
  aria-hidden: true;
}

.home-foundation__list--no li {
  color: var(--text-muted-on-light);
}

.home-foundation__list--no li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: var(--text-muted-on-light);
}

.home-foundation__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--light-border);
}

.home-foundation__cta .btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* ─── Foundation builds strip ────────────────────── */

.home-foundation-builds {
  background-color: var(--dark);
  padding: clamp(80px, 10vw, 140px) 0 0;
}

.home-foundation-builds__intro {
  margin-bottom: 48px;
}

.home-foundation-builds__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--text-on-dark);
  margin: 0 0 12px;
  line-height: 1.15;
}

.home-foundation-builds__sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-dark);
  margin: 0;
  line-height: 1.6;
}

.home-foundation-builds__strip {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Each Foundation build row */
.hfb-row {
  display: grid;
  grid-template-columns: 1fr 280px;
  background-color: var(--dark2);
  overflow: hidden;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.hfb-row:nth-child(2) { transition-delay: 0.12s; }
.hfb-row:nth-child(3) { transition-delay: 0.24s; }

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

.hfb-row__image {
  aspect-ratio: 16/7;
  overflow: hidden;
  background-color: var(--dark);
}

.hfb-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hfb-row:hover .hfb-row__image img {
  transform: scale(1.03);
}

.hfb-row__meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  background-color: var(--dark2);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.hfb-row__industry {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.hfb-row__name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-on-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.hfb-row__url {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.home-foundation-builds__footer {
  padding: 40px 0 clamp(80px, 10vw, 140px);
}

/* ─── Work scroll header ─────────────────────────── */

.home-work-scroll__header {
  padding: 0 0 32px clamp(20px, 4vw, 60px);
}

.home-work-scroll__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--text-on-dark);
  margin: 0 0 10px;
  line-height: 1.15;
}

.home-work-scroll__note {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.5;
}

/* ─── Jason strip ────────────────────────────────── */

.home-jason {
  background-color: var(--light);
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--light-border);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.home-jason__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
}

.home-jason__photo-wrap {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.home-jason__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.home-jason__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--text-on-light);
  margin-bottom: 20px;
  line-height: 1.15;
}

.home-jason__body {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 560px;
}

.home-jason__link {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* ─── CTA ────────────────────────────────────────── */

.home-cta {
  background-color: var(--dark);
  padding: clamp(100px, 14vw, 160px) 0;
}

.home-cta__inner {
  text-align: center;
}

.home-cta__heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.home-cta__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.home-cta__btns .btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* ─── Responsive ─────────────────────────────────── */

@media (max-width: 1023px) {
  .hfb-row {
    grid-template-columns: 1fr;
  }

  .hfb-row__meta {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: row;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    padding: 16px 20px;
  }

  .hfb-row__name { margin-bottom: 0; font-size: 1rem; }
  .hfb-row__industry { margin-bottom: 0; }
  .hfb-row__url { display: none; }
}

@media (max-width: 767px) {
  .home-hero__video { opacity: 0.2; }

  .home-foundation__header {
    flex-direction: column;
    gap: 24px;
  }

  .home-foundation__price { text-align: left; }
  .home-foundation__price-annual { margin-left: 0; }
  .home-foundation__cols { grid-template-columns: 1fr; gap: 40px; }

  .hfb-row__image { aspect-ratio: 16/9; }

  .home-jason__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .home-jason__photo-wrap {
    width: 160px;
    height: 160px;
  }

  .home-jason__body { max-width: 100%; }

  .home-jason__link {
    margin: 8px auto 0;
  }

  .home-cta__heading { font-size: clamp(1.75rem, 6vw, 2.5rem); }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__line,
  .home-hero__sub,
  .home-hero__cta,
  .home-hero__scroll-indicator,
  .home-foundation__list li,
  .hfb-row,
  .home-jason {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .home-hero__scroll-line {
    animation: none;
  }
}

/* ─── Preserved: hfw-card (used by work index Foundation grid) ─── */

.hfw-card {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.hfw-card__image {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.hfw-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
  transition: opacity 0.3s ease;
}

.hfw-card:hover .hfw-card__image {
  transform: scale(1.04);
}

.hfw-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hfw-card:hover .hfw-card__body {
  transform: translateY(-6px);
}

.hfw-card__industry {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.hfw-card__name {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

/* ══════════════════════════════════════════════════
   WORK PAGE
   ══════════════════════════════════════════════════ */

/* ─── Hero ───────────────────────────────────────── */

.work-hero {
  background-color: var(--dark);
  padding: clamp(140px, 18vw, 200px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
}

.work-hero__inner {
  max-width: 900px;
}

.work-hero__heading {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.02;
  margin-bottom: 28px;
}

.work-hero__line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.work-hero__sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  line-height: 1.65;
  margin: 0;
  transition-delay: 0.16s;
}

/* ─── Custom work grid ───────────────────────────── */

.work-custom {
  background-color: var(--dark);
  padding-bottom: clamp(80px, 10vw, 140px);
}

.work-custom__label {
  padding-top: clamp(48px, 6vw, 80px);
  margin-bottom: 32px;
  display: block;
}

.work-custom__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.work-card {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.work-card__image {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card:hover .work-card__image {
  transform: scale(1.04);
}

.work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  transition: opacity 0.3s ease;
}

.work-card:hover .work-card__overlay {
  opacity: 0.8;
}

.work-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 1;
  transform: translateY(4px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card:hover .work-card__body {
  transform: translateY(-4px);
}

.work-card__logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  object-position: left;
  display: block;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.work-card__outcome {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.work-card__title {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
}

/* ─── Foundation builds strip ────────────────────── */

.work-foundation {
  background-color: var(--light);
  padding: clamp(80px, 10vw, 140px) 0 0;
  border-top: 1px solid var(--light-border);
}

.work-foundation__intro {
  margin-bottom: 48px;
}

.work-foundation__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--text-on-light);
  margin: 8px 0 12px;
  line-height: 1.15;
}

.work-foundation__sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  margin: 0;
  line-height: 1.6;
}

.work-foundation__strip {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wfb-row {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.wfb-row:nth-child(2) { transition-delay: 0.1s; }
.wfb-row:nth-child(3) { transition-delay: 0.2s; }
.wfb-row:nth-child(4) { transition-delay: 0.3s; }
.wfb-row:nth-child(5) { transition-delay: 0.4s; }

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

.wfb-row__link {
  display: grid;
  grid-template-columns: 1fr 280px;
  background-color: #ffffff;
  overflow: hidden;
  text-decoration: none;
  border-bottom: 1px solid var(--light-border);
  transition: background-color 0.2s ease;
}

.wfb-row__link:hover {
  background-color: var(--light2);
}

.wfb-row__image {
  aspect-ratio: 16/7;
  overflow: hidden;
  background-color: var(--light2);
}

.wfb-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.wfb-row__link:hover .wfb-row__image img {
  transform: scale(1.03);
}

.wfb-row__meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  background-color: transparent;
  border-left: 1px solid var(--light-border);
}

.wfb-row__industry {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.wfb-row__name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-on-light);
  margin-bottom: 8px;
  line-height: 1.2;
}

.wfb-row__url {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  margin: 0;
}

.work-foundation__footer {
  padding: 40px 0 clamp(80px, 10vw, 140px);
}

/* ─── Responsive ─────────────────────────────────── */

@media (max-width: 1023px) {
  .wfb-row__link {
    grid-template-columns: 1fr;
  }

  .wfb-row__meta {
    border-left: none;
    border-top: 1px solid var(--light-border);
    flex-direction: row;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    padding: 16px 20px;
  }

  .wfb-row__name { font-size: 1rem; margin-bottom: 0; }
  .wfb-row__industry { margin-bottom: 0; }
}

@media (max-width: 767px) {
  .work-custom__grid {
    grid-template-columns: 1fr;
  }

  .work-card__image {
    aspect-ratio: 3/2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-hero__line,
  .work-card,
  .wfb-row {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ══════════════════════════════════════════════════
   WORK CASE STUDY PAGE
   ══════════════════════════════════════════════════ */

/* ─── Hero ───────────────────────────────────────── */

.cs-hero {
  min-height: 92dvh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--dark);
}

.cs-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.cs-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.cs-hero__content {
  position: relative;
  z-index: 1;
  padding-top: clamp(120px, 16vw, 180px);
  padding-bottom: clamp(60px, 8vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 92dvh;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cs-hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cs-hero__logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.cs-hero__visit {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
}

.cs-hero__bottom {
  max-width: 800px;
}

.cs-hero__outcome {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.cs-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.08;
  margin: 0;
}

/* ─── Intro ──────────────────────────────────────── */

.cs-intro {
  background-color: var(--dark2);
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cs-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cs-intro__summary {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--text-on-dark);
  line-height: 1.4;
  margin-bottom: 28px;
}

.cs-intro__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cs-tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  display: inline-block;
  min-height: 32px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.cs-tag--link {
  color: var(--orange);
  border-color: rgba(253, 94, 0, 0.3);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.cs-tag--link:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* Stats */
.cs-intro__stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 48px;
}

.cs-stat {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cs-stat:first-child { padding-top: 0; }
.cs-stat:last-child { border-bottom: none; padding-bottom: 0; }
.cs-stat:nth-child(2) { transition-delay: 0.1s; }
.cs-stat:nth-child(3) { transition-delay: 0.2s; }

.cs-stat.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.cs-stat__number {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}

.cs-stat__label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.cs-stat__detail {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted-on-dark);
  line-height: 1.5;
  margin: 0;
}

/* ─── Challenge ──────────────────────────────────── */

.cs-challenge {
  background-color: var(--light);
  padding: clamp(80px, 10vw, 140px) 0;
}

.cs-challenge__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: start;
}

.cs-challenge__label-wrap {
  padding-top: 8px;
}

.cs-challenge__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-on-light);
  line-height: 1.15;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cs-challenge__body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  line-height: 1.8;
  margin: 0;
  max-width: 640px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

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

/* ─── Solution ───────────────────────────────────── */

.cs-solution {
  background-color: var(--dark);
  padding: clamp(80px, 10vw, 140px) 0 0;
}

.cs-solution__header {
  padding-bottom: clamp(60px, 8vw, 100px);
}

.cs-solution__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-on-dark);
  line-height: 1.15;
  margin: 8px 0 0;
  max-width: 640px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Solution item: full bleed alternating layout */
.cs-solution__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cs-solution__item--flip {
  direction: rtl;
}

.cs-solution__item--flip > * {
  direction: ltr;
}

.cs-solution__item-text {
  display: flex;
  align-items: center;
  padding: clamp(48px, 6vw, 80px) 0;
  background-color: var(--dark);
}

.cs-solution__item-text .container {
  width: 100%;
}

.cs-solution__num {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 20px;
}

.cs-solution__title {
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.cs-solution__body {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-dark);
  line-height: 1.8;
  margin: 0;
}

.cs-solution__item-image {
  overflow: hidden;
  background-color: var(--dark2);
}

.cs-solution__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cs-solution__item:hover .cs-solution__item-image img {
  transform: scale(1.03);
}

/* ─── Built / Tech items ─────────────────────────── */

.cs-built {
  background-color: var(--light);
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--light-border);
}

.cs-built__header {
  margin-bottom: 56px;
}

.cs-built__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--text-on-light);
  margin: 8px 0 0;
  line-height: 1.15;
}

.cs-built__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--light-border);
  border: 1px solid var(--light-border);
}

.cs-built__item {
  background-color: var(--light);
  padding: 36px 32px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.2s ease;
}

.cs-built__item:hover {
  background-color: var(--light2);
}

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

.cs-built__num {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 16px;
}

.cs-built__title {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-on-light);
  margin-bottom: 12px;
  line-height: 1.3;
}

.cs-built__body {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  line-height: 1.7;
  margin: 0;
}

/* ─── Responsive ─────────────────────────────────── */

@media (max-width: 1023px) {
  .cs-solution__item {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .cs-solution__item-image {
    aspect-ratio: 16/9;
  }

  .cs-built__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .cs-hero__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cs-intro__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cs-intro__stats {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 0;
    padding-top: 40px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }

  .cs-stat {
    flex: 1;
    min-width: 140px;
    padding: 20px 16px 20px 0;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  .cs-stat:last-child {
    border-right: none;
  }

  .cs-challenge__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cs-built__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cs-hero__content,
  .cs-stat,
  .cs-challenge__heading,
  .cs-challenge__body,
  .cs-solution__heading,
  .cs-solution__item,
  .cs-built__item {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* ─── Solution item video ────────────────────────── */
.cs-solution__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* ─── Foundation tiers ───────────────────────────────────── */

.fnd-tiers {
  background-color: var(--light);
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--light-border);
}

.fnd-tiers__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--text-on-light);
  margin: 0 0 12px;
  line-height: 1.2;
}

.fnd-tiers__sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  margin: 0 0 48px;
  line-height: 1.6;
  max-width: 560px;
}

.fnd-tiers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.fnd-tier {
  background-color: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fnd-tier--featured {
  border-color: var(--orange);
  border-width: 2px;
}

.fnd-tier__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--orange);
  color: #ffffff;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.fnd-tier__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.fnd-tier__tagline {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.fnd-tier__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.fnd-tier__amount {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--text-on-light);
  line-height: 1;
}

.fnd-tier__build {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
}

.fnd-tier__annual {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  margin: 0;
}

.fnd-tier__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--light-border);
  padding-top: 24px;
}

.fnd-tier__list li {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-on-light);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
  margin: 0;
}

.fnd-tier__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 600;
}

.fnd-tier__footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--light-border);
  padding-top: 24px;
}

.fnd-tier__provides {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  line-height: 1.55;
  margin: 0;
}

.fnd-tier__updates {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  opacity: 0.6;
  line-height: 1.5;
  margin: 0;
}

.fnd-tier__cta {
  align-self: flex-start;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* Intake pricing — two tier display */
.fnd-intake__price-footnote {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
  margin: 12px 0 0;
  text-align: center;
}

/* Radio group */
.fnd-form__radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.fnd-form__radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-on-dark);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}

.fnd-form__radio-label input[type="radio"] {
  appearance: auto !important;
  -webkit-appearance: radio !important;
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--orange);
  border-radius: 50%;
}
/* ─── Foundation form field errors ──────────────────────── */

.fnd-input--error {
  border-color: #ff6b6b !important;
}

.fnd-field-error {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: #ff6b6b;
  margin: 4px 0 0;
  line-height: 1.4;
}

/* ─── Homepage Foundation tier columns ───────────────────── */

.home-foundation__price-eyebrow {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  margin-bottom: 4px;
}

.home-foundation__tier-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-on-light);
  margin-bottom: 16px;
  line-height: 1;
}

.home-foundation__tier-price span {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  margin-left: 6px;
}

/* ─── Services index Foundation price ────────────────────── */

.svc-index-foundation__starting {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  display: block;
  margin-bottom: 4px;
}

.svc-index-foundation__tiers {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  display: block;
  margin-top: 6px;
}

/* ══════════════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════════════ */

/* ─── Blog hero ──────────────────────────────────── */

.blog-hero {
  background-color: var(--dark);
  padding: clamp(140px, 18vw, 200px) 0 clamp(60px, 8vw, 100px);
}

.blog-hero__heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 720px;
}

.blog-hero__sub {
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  line-height: 1.65;
  margin: 0;
}

/* ─── Blog list ──────────────────────────────────── */

.blog-list {
  background-color: var(--light);
  padding: clamp(60px, 8vw, 100px) 0;
}

.blog-card {
  display: block;
  padding: 36px 0;
  border-bottom: 1px solid var(--light-border);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.blog-card:first-child {
  padding-top: 0;
}

.blog-card:hover {
  opacity: 0.7;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-card__category {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
}

.blog-card__date {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted-on-light);
}

.blog-card__title {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--text-on-light);
  margin-bottom: 10px;
  line-height: 1.2;
}

.blog-card__desc {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-on-light);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 640px;
  opacity: 0.75;
}

.blog-card__read {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--orange);
}

/* ─── Blog post ──────────────────────────────────── */

.blog-post__header {
  background-color: var(--dark);
  padding: clamp(140px, 18vw, 200px) 0 clamp(60px, 8vw, 80px);
}

.blog-post__category {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.blog-post__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 800px;
}

.blog-post__date {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.blog-post__image {
  padding-top: clamp(40px, 6vw, 60px);
  padding-bottom: 0;
}

.blog-post__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.blog-post__body {
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(60px, 8vw, 100px);
  max-width: 720px;
}

.blog-post__body h2 {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--text-on-light);
  margin: 48px 0 16px;
  line-height: 1.2;
}

.blog-post__body h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-on-light);
  margin: 32px 0 12px;
  line-height: 1.3;
}

.blog-post__body p {
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-on-light);
  line-height: 1.85;
  margin-bottom: 24px;
  opacity: 0.85;
}

.blog-post__body ul,
.blog-post__body ol {
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-on-light);
  line-height: 1.85;
  margin-bottom: 24px;
  padding-left: 24px;
  opacity: 0.85;
}

.blog-post__body li {
  margin-bottom: 8px;
}

.blog-post__body strong {
  font-weight: 600;
  color: var(--text-on-light);
}

.blog-post__body a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-color: rgba(253, 94, 0, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}

.blog-post__body a:hover {
  text-decoration-color: var(--orange);
}

.blog-post__body hr {
  border: none;
  border-top: 1px solid var(--light-border);
  margin: 40px 0;
}

.blog-post__body em {
  font-style: italic;
}

.blog-post__footer {
  background-color: var(--light);
  padding: 0 0 clamp(48px, 6vw, 80px);
}

.blog-post__back {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-post__back:hover {
  color: var(--orange);
}

@media (max-width: 767px) {
  .blog-post__body {
    max-width: 100%;
  }
}
/* ─── 404 ────────────────────────────────────────── */

.error-404 {
  background-color: var(--dark);
  min-height: 80dvh;
  display: flex;
  align-items: center;
  padding: clamp(120px, 16vw, 180px) 0 clamp(80px, 10vw, 120px);
}

.error-404__code {
  font-family: var(--serif);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 24px;
}

.error-404__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.error-404__body {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-dark);
  margin-bottom: 40px;
  line-height: 1.6;
}

.error-404__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Privacy & Compliance page ─────────────────────────── */
/* REPLACES the broken version appended earlier              */

.svc-hero__cta {
  margin-top: 32px;
  display: inline-block;
}

.svc-cmp-included {
  /* inherits section-light padding */
}

.cmp-included {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.cmp-included__block {
  padding: 28px 32px;
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
}

.cmp-included__block--full {
  grid-column: 1 / -1;
  background-color: var(--light2);
}

.cmp-included__title {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-on-light);
  margin-bottom: 12px;
}

.cmp-included__block p {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .cmp-included {
    grid-template-columns: 1fr;
  }
  .cmp-included__block--full {
    grid-column: 1;
  }
}

/* ─── Compliance Audit intake form ───────────────────────── */

.cmp-audit {
  /* inherits section-dark padding */
}

.cmp-audit__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cmp-audit__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cmp-audit__body {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-muted-on-dark);
  line-height: 1.75;
  margin-bottom: 16px;
}

.cmp-audit__body:last-child {
  margin-bottom: 0;
}

.cmp-audit-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cmp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cmp-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cmp-form__label {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-muted-on-dark);
  letter-spacing: 0.04em;
}

.cmp-form__label span {
  color: var(--orange);
}

.cmp-form__input,
.cmp-form__textarea {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: #ffffff;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.2s ease;
}

.cmp-form__input:focus,
.cmp-form__textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.cmp-form__input::placeholder,
.cmp-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.cmp-form__textarea {
  resize: vertical;
  min-height: 88px;
}

.cmp-form__submit {
  align-self: flex-start;
  margin-top: 4px;
}

.cmp-form-success {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.cmp-form-success__heading {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 8px;
}

.cmp-form-success__body {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-muted-on-dark);
  margin: 0;
}

.cmp-form-message--error {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: #ff6b6b;
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .cmp-audit__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cmp-form__row {
    grid-template-columns: 1fr;
  }
}

/* ─── Custom Software: targeted builds grid ─────────────── */

.svc-builds__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--text-on-light);
  margin-top: 12px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.svc-builds__sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.svc-builds__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.svc-build-card {
  padding: 32px;
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  background-color: #ffffff;
  transition: border-color 0.2s ease;
}

.svc-build-card:hover {
  border-color: var(--orange);
}

.svc-build-card__industry {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.svc-build-card__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-on-light);
  margin-bottom: 12px;
  line-height: 1.2;
}

.svc-build-card__body {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  line-height: 1.7;
  margin: 0;
}

.svc-builds__cta {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .svc-builds__grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Homepage: three services list ─────────────────────── */

.home-services {
  background-color: var(--light);
  padding: clamp(80px, 10vw, 140px) 0;
}

.home-services .label {
  margin-bottom: 12px;
}

.home-services__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--text-on-light);
  margin-bottom: 12px;
  line-height: 1.2;
}

.home-services__sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  margin-bottom: 48px;
  line-height: 1.7;
}

.home-services__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--light-border);
}

.home-service-item {
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--light-border);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.home-service-item:hover {
  background-color: var(--light2);
  margin: 0 -32px;
  padding-left: 32px;
  padding-right: 32px;
}

.home-service-item__num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--orange);
  padding-top: 4px;
}

.home-service-item__title {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--text-on-light);
  margin-bottom: 8px;
  line-height: 1.2;
}

.home-service-item__desc {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-muted-on-light);
  line-height: 1.7;
  margin: 0;
}

.home-service-item__arrow {
  font-size: 1.25rem;
  color: var(--orange);
  padding-top: 4px;
  transition: transform 0.2s ease;
}

.home-service-item:hover .home-service-item__arrow {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .home-service-item {
    grid-template-columns: 36px 1fr;
  }

  .home-service-item__arrow {
    display: none;
  }

  .home-service-item:hover {
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ─── Homepage: software builds section ─────────────────── */

.home-software {
  background-color: var(--dark);
  padding: clamp(80px, 10vw, 140px) 0;
}

.home-software .label {
  margin-bottom: 12px;
}

.home-software__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
  max-width: 640px;
}

.home-software__sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted-on-dark);
  margin-bottom: 48px;
  line-height: 1.7;
  max-width: 560px;
}

.home-software__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background-color: rgba(255, 255, 255, 0.08);
}

.home-sw-card {
  background-color: var(--dark);
  padding: 32px;
  transition: background-color 0.2s ease;
}

.home-sw-card:hover {
  background-color: var(--dark2);
}

.home-sw-card__industry {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.home-sw-card__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.home-sw-card__body {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-muted-on-dark);
  line-height: 1.7;
  margin: 0;
}

.home-software__cta {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .home-software__grid {
    grid-template-columns: 1fr;
  }
}