:root {
  color-scheme: light;
  --page-bg: #050806;
  --text-primary: #f3f5ef;
  --text-strong: #ffffff;
  --gold-accent: #c6a36d;
  --gold-accent-soft: rgba(198, 163, 109, 0.3);
  --cta-primary-bg: rgba(198, 163, 109, 0.16);
  --cta-primary-text: #ead4ad;
  --cta-secondary-border: rgba(243, 245, 239, 0.58);
  --container-max-width: 1200px;
  --heading-font-family: "Europa", "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --heading-font-weight: 300;
  --heading-color: #f4dfbb;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
}

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

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

body {
  position: relative;
  background-color: var(--page-bg);
  background-image:
    linear-gradient(to bottom, rgba(4, 8, 5, 0.64), rgba(4, 8, 5, 0.84)),
    radial-gradient(circle at 76% 24%, rgba(25, 82, 34, 0.34), rgba(2, 7, 4, 0.06) 46%, transparent 66%),
    url("../assets/w27-frond-background.jpg");
  background-position: center center, center center, center center;
  background-size: cover, cover, cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  content: none;
}

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

a {
  color: inherit;
}

.is-hidden {
  display: none;
}

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: min(100% - (2 * var(--space-6)), var(--container-max-width));
  margin-inline: auto;
  padding-block: var(--space-6);
}

.shell-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.brand-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

.brand-link img {
  width: 120px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(198, 163, 109, 0.14);
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-4);
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  font-size: 0.89rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(243, 245, 239, 0.8);
}

.primary-nav a:hover {
  color: var(--gold-accent);
}

.brand-link:focus-visible,
.primary-nav a:focus-visible,
.cta:focus-visible {
  outline: 2px solid var(--gold-accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(4, 8, 5, 0.5);
}

.hero-content {
  padding-block: clamp(5.25rem, 18vh, 10.5rem);
  max-width: 840px;
}

.hero-content h1 {
  margin: 0;
  max-width: 17ch;
  font-size: clamp(2.2rem, 4.5vw, 4.45rem);
  line-height: 1;
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  letter-spacing: 0;
  color: var(--heading-color);
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
}

.hero-subheadline {
  margin: var(--space-8) 0 0;
  max-width: 64ch;
  font-size: clamp(1.04rem, 1.4vw, 1.28rem);
  line-height: 1.62;
  color: rgba(240, 243, 237, 0.95);
}

.hero-actions {
  margin-top: clamp(2rem, 5vh, 3.4rem);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.core-services {
  padding-block: clamp(2.75rem, 8vh, 5.25rem);
  scroll-margin-top: 1.5rem;
}

.core-services h2 {
  margin: 0.5rem 0 0;
  max-width: 20ch;
  font-size: clamp(1.7rem, 3.1vw, 2.45rem);
  line-height: 1;
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  letter-spacing: 0;
  color: var(--heading-color);
  text-transform: uppercase;
}

.section-label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

.section-intro {
  margin: var(--space-6) 0 0;
  max-width: 62ch;
  font-size: 1.02rem;
  line-height: 1.62;
  color: rgba(240, 243, 237, 0.9);
}

.service-list {
  margin-top: clamp(1.5rem, 4vh, 2.4rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.service-item {
  min-height: 100%;
  padding: 1.25rem 1.25rem 1.3rem;
  border: 1px solid rgba(243, 245, 239, 0.18);
  border-radius: 4px;
  background-color: rgba(7, 12, 9, 0.48);
  backdrop-filter: blur(1.5px);
}

.service-item:focus-within {
  border-color: rgba(198, 163, 109, 0.64);
  box-shadow: 0 0 0 3px rgba(198, 163, 109, 0.22);
}

.service-item h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.12;
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-item p {
  margin: 0.85rem 0 0;
  font-size: 0.96rem;
  line-height: 1.58;
  color: rgba(239, 243, 237, 0.94);
}

.service-item ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.52rem;
}

.service-item li {
  color: rgba(221, 227, 218, 0.97);
  font-size: 0.9rem;
  line-height: 1.48;
}

.selected-outcomes {
  padding-block: clamp(2.75rem, 8vh, 5.25rem);
  scroll-margin-top: 1.5rem;
}

.selected-outcomes h2 {
  margin: 0.5rem 0 0;
  max-width: 22ch;
  font-size: clamp(1.7rem, 3.1vw, 2.45rem);
  line-height: 1;
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  letter-spacing: 0;
  color: var(--heading-color);
  text-transform: uppercase;
}

.outcomes-list {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  margin-top: clamp(1.5rem, 4vh, 2.4rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.outcome-item {
  min-height: 100%;
  padding: 1.2rem 1.2rem 1.25rem;
  border: 1px solid rgba(243, 245, 239, 0.2);
  border-radius: 4px;
  background-color: rgba(8, 13, 10, 0.52);
  backdrop-filter: blur(1.5px);
  transition: border-color 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.outcome-item:hover {
  border-color: rgba(198, 163, 109, 0.42);
  background-color: rgba(10, 16, 12, 0.56);
}

.outcome-item:focus-within {
  border-color: rgba(198, 163, 109, 0.82);
  box-shadow:
    0 0 0 1px rgba(198, 163, 109, 0.88),
    0 0 0 4px rgba(198, 163, 109, 0.24);
}

.outcome-metric {
  margin: 0;
  font-size: clamp(1.28rem, 2.35vw, 1.85rem);
  line-height: 1.12;
  font-weight: 500;
  color: #f7e7cb;
  letter-spacing: 0.01em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.outcome-context {
  margin: 0.85rem 0 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(237, 242, 235, 0.96);
  overflow-wrap: anywhere;
}

.case-study-preview {
  padding-block: clamp(2.75rem, 8vh, 5.25rem);
  scroll-margin-top: 1.5rem;
}

.case-study-preview h2 {
  margin: 0.5rem 0 0;
  max-width: 28ch;
  font-size: clamp(1.7rem, 3.1vw, 2.45rem);
  line-height: 1;
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  letter-spacing: 0;
  color: var(--heading-color);
  text-transform: uppercase;
}

.case-study-list {
  margin-top: clamp(1.5rem, 4vh, 2.4rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

.case-study-item {
  min-height: 100%;
  padding: 1.2rem 1.2rem 1.25rem;
  border: 1px solid rgba(243, 245, 239, 0.2);
  border-radius: 4px;
  background-color: rgba(8, 13, 10, 0.52);
  backdrop-filter: blur(1.5px);
  transition: border-color 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.case-study-item:hover {
  border-color: rgba(198, 163, 109, 0.42);
  background-color: rgba(10, 16, 12, 0.56);
}

.case-study-item:focus-within {
  border-color: rgba(198, 163, 109, 0.82);
  box-shadow:
    0 0 0 1px rgba(198, 163, 109, 0.88),
    0 0 0 4px rgba(198, 163, 109, 0.24);
}

.case-study-item h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.12;
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.case-study-item p {
  margin: 0.8rem 0 0;
  font-size: 0.93rem;
  line-height: 1.58;
  color: rgba(237, 242, 235, 0.96);
  overflow-wrap: anywhere;
}

.case-study-item p strong {
  color: #f4dfbb;
  font-weight: 600;
}

.case-study-item p:last-child {
  margin-top: 1rem;
}

.case-study-item p:last-child a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.2rem;
  padding: 0.28rem 0.05rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(198, 163, 109, 0.48);
  text-underline-offset: 0.22em;
  transition: color 140ms ease, border-color 140ms ease;
}

.case-study-item p:last-child a:hover {
  color: #e4c28a;
  border-color: rgba(228, 194, 138, 0.72);
}

.case-study-item p:last-child a:focus-visible {
  outline: 2px solid var(--gold-accent);
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(4, 8, 5, 0.5);
}

.how-we-work {
  padding-block: clamp(2.75rem, 8vh, 5.25rem);
  scroll-margin-top: 1.5rem;
}

.how-we-work h2 {
  margin: 0.5rem 0 0;
  max-width: 26ch;
  font-size: clamp(1.7rem, 3.1vw, 2.45rem);
  line-height: 1;
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  letter-spacing: 0;
  color: var(--heading-color);
  text-transform: uppercase;
}

.how-we-work-steps {
  margin: clamp(1.5rem, 4vh, 2.4rem) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
  counter-reset: how-we-work-step;
}

.how-we-work-step {
  counter-increment: how-we-work-step;
  min-height: 100%;
}

.how-we-work-step article {
  min-height: 100%;
  padding: 1.2rem 1.2rem 1.25rem;
  border: 1px solid rgba(243, 245, 239, 0.2);
  border-radius: 4px;
  background-color: rgba(8, 13, 10, 0.52);
  backdrop-filter: blur(1.5px);
  transition: border-color 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.how-we-work-step article:hover {
  border-color: rgba(198, 163, 109, 0.42);
  background-color: rgba(10, 16, 12, 0.56);
}

.how-we-work-step article:focus-within {
  border-color: rgba(198, 163, 109, 0.82);
  box-shadow:
    0 0 0 1px rgba(198, 163, 109, 0.88),
    0 0 0 4px rgba(198, 163, 109, 0.24);
}

.how-we-work-step:target article {
  border-color: rgba(198, 163, 109, 0.82);
  box-shadow:
    0 0 0 1px rgba(198, 163, 109, 0.88),
    0 0 0 4px rgba(198, 163, 109, 0.24);
}

.how-we-work-step h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.12;
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  letter-spacing: 0;
  text-transform: uppercase;
}

.how-we-work-step h3::before {
  content: counter(how-we-work-step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  min-height: 2.1rem;
  margin-right: 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 163, 109, 0.45);
  background-color: rgba(198, 163, 109, 0.14);
  color: #f4dfbb;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  vertical-align: middle;
}

.how-we-work-step p {
  margin: 0.8rem 0 0;
  font-size: 0.93rem;
  line-height: 1.58;
  color: rgba(237, 242, 235, 0.96);
  overflow-wrap: anywhere;
}

.about-preview {
  padding-block: clamp(2.75rem, 8vh, 5.25rem);
  scroll-margin-top: 1.5rem;
}

.about-preview h2 {
  margin: 0.5rem 0 0;
  max-width: 24ch;
  font-size: clamp(1.7rem, 3.1vw, 2.45rem);
  line-height: 1;
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  letter-spacing: 0;
  color: var(--heading-color);
  text-transform: uppercase;
}

.about-preview-profiles {
  margin-top: clamp(1.5rem, 4vh, 2.4rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

.about-preview-profile {
  min-height: 100%;
  padding: 1.2rem 1.2rem 1.25rem;
  border: 1px solid rgba(243, 245, 239, 0.2);
  border-radius: 4px;
  background-color: rgba(8, 13, 10, 0.52);
  backdrop-filter: blur(1.5px);
}

.about-preview-profile h3 {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.12;
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-preview-role {
  margin: 0.7rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f4dfbb;
}

.about-preview-profile p:last-child {
  margin: 0.8rem 0 0;
  font-size: 0.93rem;
  line-height: 1.58;
  color: rgba(237, 242, 235, 0.96);
}

.final-cta {
  margin-top: clamp(1rem, 3vh, 2rem);
  padding: clamp(1.4rem, 3.6vw, 2.2rem);
  border: 1px solid rgba(198, 163, 109, 0.34);
  border-radius: 4px;
  background:
    linear-gradient(160deg, rgba(198, 163, 109, 0.12), rgba(198, 163, 109, 0.02)),
    rgba(9, 14, 11, 0.54);
  backdrop-filter: blur(1.5px);
  scroll-margin-top: 1.5rem;
}

.final-cta h2 {
  margin: 0;
  max-width: 20ch;
  font-size: clamp(1.6rem, 3.15vw, 2.3rem);
  line-height: 1;
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.final-cta p {
  margin: 0.95rem 0 0;
}

.final-cta p:first-of-type {
  max-width: 62ch;
  font-size: 0.98rem;
  line-height: 1.62;
  color: rgba(239, 243, 237, 0.94);
}

.final-cta p:last-of-type {
  margin-top: 1.15rem;
}

.final-cta-form {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.75rem;
  max-width: 42rem;
}

.final-cta-form input,
.final-cta-form textarea {
  width: 100%;
  border: 1px solid rgba(243, 245, 239, 0.3);
  border-radius: 2px;
  background: rgba(6, 10, 8, 0.62);
  color: var(--text-primary);
  font: inherit;
  padding: 0.78rem 0.85rem;
}

.final-cta-form input::placeholder,
.final-cta-form textarea::placeholder {
  color: rgba(210, 216, 207, 0.9);
}

.final-cta-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.final-cta-form input:focus-visible,
.final-cta-form textarea:focus-visible {
  outline: 2px solid var(--gold-accent);
  outline-offset: 2px;
  border-color: rgba(198, 163, 109, 0.82);
}

.final-cta .cta-primary {
  min-width: min(100%, 18.5rem);
  background: rgba(198, 163, 109, 0.24);
  border-color: rgba(198, 163, 109, 0.58);
  color: #f6e4c2;
}

.final-cta .cta-primary:hover {
  background: rgba(198, 163, 109, 0.34);
  border-color: rgba(198, 163, 109, 0.76);
  color: #fff2dc;
}

.final-cta .cta-primary:active {
  background: rgba(198, 163, 109, 0.38);
}

.final-cta-form .cta-primary {
  justify-self: start;
  border-radius: 2px;
  font-family: inherit;
  cursor: pointer;
}

@media (max-width: 780px) {
  .case-study-list {
    grid-template-columns: 1fr;
  }
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.75rem 1.35rem;
  border-radius: 2px;
  border: 1px solid;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.96rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: border-color 140ms ease, background-color 140ms ease, color 140ms ease;
}

.cta-primary {
  background: var(--cta-primary-bg);
  border-color: var(--gold-accent-soft);
  color: var(--cta-primary-text);
}

.cta-secondary {
  border-color: var(--cta-secondary-border);
  color: var(--text-primary);
  background: rgba(9, 14, 11, 0.42);
}

.cta-primary:hover {
  background: rgba(198, 163, 109, 0.24);
  border-color: rgba(198, 163, 109, 0.5);
}

.cta-secondary:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

@media (max-width: 960px) {
  .shell-header {
    align-items: flex-start;
  }

  .primary-nav {
    justify-content: flex-start;
    row-gap: 0.5rem;
  }

  .hero-content {
    max-width: 720px;
    padding-block: clamp(4.4rem, 13vh, 7rem);
  }

  .hero-content h1 {
    max-width: 19ch;
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .service-item h3 {
    font-size: 1.08rem;
  }

  .outcomes-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .outcome-metric {
    font-size: clamp(1.2rem, 2.6vw, 1.58rem);
  }

  .case-study-list {
    gap: 1.2rem;
  }

  .case-study-item h3 {
    font-size: 1.08rem;
  }

  .how-we-work h2 {
    max-width: 24ch;
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  }

  .how-we-work-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .how-we-work-step h3 {
    font-size: 1.04rem;
  }

  .about-preview h2 {
    max-width: 23ch;
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  }

  .about-preview-profiles {
    gap: 1.2rem;
  }

  .final-cta h2 {
    max-width: 22ch;
    font-size: clamp(1.52rem, 3.25vw, 2.05rem);
  }
}

@media (max-width: 640px) {
  body {
    background-image: none;
    background-attachment: scroll;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
      linear-gradient(to bottom, rgba(4, 8, 5, 0.72), rgba(4, 8, 5, 0.9)),
      radial-gradient(circle at 66% 16%, rgba(20, 66, 28, 0.26), rgba(2, 7, 4, 0.08) 48%, transparent 70%),
      url("../assets/w27-frond-background.jpg");
    background-position: center top, center top, 66% top;
    background-size: cover, cover, auto 100vh;
    background-size: cover, cover, auto 100svh;
    background-repeat: no-repeat;
  }

  .site-shell {
    width: min(100% - (2 * var(--space-4)), var(--container-max-width));
    padding-block: var(--space-4);
  }

  .shell-header {
    min-height: 56px;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .primary-nav {
    justify-content: flex-start;
    gap: 0.65rem 0.9rem;
  }

  .primary-nav a {
    font-size: 0.8rem;
    letter-spacing: 0.07em;
    min-height: 2.5rem;
  }

  .hero-content {
    padding-block: clamp(3.75rem, 12vh, 5.25rem);
  }

  .hero-actions {
    width: 100%;
  }

  .core-services {
    padding-block: clamp(2.2rem, 8vh, 3.25rem);
  }

  .core-services h2 {
    max-width: 22ch;
    font-size: clamp(1.45rem, 6.2vw, 1.88rem);
    line-height: 1.2;
  }

  .selected-outcomes {
    padding-block: clamp(2.2rem, 8vh, 3.25rem);
  }

  .selected-outcomes h2 {
    max-width: 24ch;
    font-size: clamp(1.45rem, 6.2vw, 1.88rem);
    line-height: 1.2;
  }

  .case-study-preview {
    padding-block: clamp(2.2rem, 8vh, 3.25rem);
  }

  .case-study-preview h2 {
    max-width: 24ch;
    font-size: clamp(1.45rem, 6.2vw, 1.88rem);
    line-height: 1.2;
  }

  .how-we-work {
    padding-block: clamp(2.2rem, 8vh, 3.25rem);
  }

  .how-we-work h2 {
    max-width: 22ch;
    font-size: clamp(1.45rem, 6.2vw, 1.88rem);
    line-height: 1.2;
  }

  .about-preview {
    padding-block: clamp(2.2rem, 8vh, 3.25rem);
  }

  .about-preview h2 {
    max-width: 24ch;
    font-size: clamp(1.45rem, 6.2vw, 1.88rem);
    line-height: 1.2;
  }

  .final-cta {
    margin-top: 0.7rem;
    padding: 1.05rem 1rem 1.15rem;
  }

  .final-cta h2 {
    max-width: 18ch;
    font-size: clamp(1.4rem, 6vw, 1.8rem);
    line-height: 1.18;
  }

  .final-cta p:first-of-type {
    margin-top: 0.82rem;
    font-size: 0.93rem;
    line-height: 1.55;
  }

  .final-cta p:last-of-type {
    margin-top: 0.9rem;
  }

  .final-cta-form {
    margin-top: 0.9rem;
    gap: 0.68rem;
  }

  .final-cta-form textarea {
    min-height: 6.4rem;
  }

  .final-cta .cta-primary {
    width: 100%;
  }

  .final-cta-form .cta-primary {
    justify-self: stretch;
  }

  .section-intro {
    margin-top: 1rem;
    font-size: 0.97rem;
    line-height: 1.56;
  }

  .service-list {
    margin-top: 1.25rem;
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .service-item {
    padding: 1rem 1rem 1.1rem;
  }

  .service-item p {
    font-size: 0.93rem;
  }

  .service-item ul {
    margin-top: 0.82rem;
    gap: 0.44rem;
  }

  .outcomes-list {
    margin-top: 1.25rem;
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .outcome-item {
    padding: 1rem 1rem 1.08rem;
  }

  .outcome-metric {
    font-size: clamp(1.16rem, 5.8vw, 1.44rem);
    line-height: 1.16;
  }

  .outcome-context {
    margin-top: 0.72rem;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .case-study-list {
    margin-top: 1.25rem;
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .case-study-item {
    padding: 1rem 1rem 1.08rem;
  }

  .case-study-item p {
    margin-top: 0.72rem;
    font-size: 0.91rem;
    line-height: 1.55;
  }

  .case-study-item p:last-child {
    margin-top: 0.85rem;
  }

  .how-we-work-steps {
    margin-top: 1.25rem;
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .how-we-work-step article {
    padding: 1rem 1rem 1.08rem;
  }

  .how-we-work-step h3 {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 1rem;
    line-height: 1.34;
  }

  .how-we-work-step h3::before {
    margin-right: 0;
    min-width: 1.85rem;
    min-height: 1.85rem;
    font-size: 0.7rem;
    margin-top: 0.04rem;
    flex: 0 0 auto;
  }

  .how-we-work-step p {
    margin-top: 0.72rem;
    font-size: 0.91rem;
    line-height: 1.55;
    max-width: 40ch;
  }

  .about-preview-profiles {
    margin-top: 1.25rem;
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .about-preview-profile {
    padding: 1rem 1rem 1.08rem;
  }

  .about-preview-profile h3 {
    font-size: 1.05rem;
  }

  .about-preview-role {
    margin-top: 0.62rem;
    font-size: 0.78rem;
  }

  .about-preview-profile p:last-child {
    margin-top: 0.72rem;
    font-size: 0.91rem;
    line-height: 1.55;
  }

  .cta {
    flex: 1 1 calc(50% - (var(--space-4) / 2));
    min-height: 3rem;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    gap: 0.75rem;
  }

  .cta {
    flex: 1 1 100%;
  }

  .how-we-work-step h3::before {
    min-width: 1.72rem;
    min-height: 1.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .final-cta .cta-primary,
  .outcome-item,
  .case-study-item,
  .how-we-work-step article,
  .case-study-item p:last-child a {
    transition: none;
  }
}
