/* ==========================================================================
   Soylent Group — HR. Recruitment. Outsourcing.
   Design system: white canvas, black ink, gold authority, yellow signal.
   ========================================================================== */

:root {
  /* Colour system — 5 total */
  --white: #ffffff;
  --ink: #111111;
  --gold: #b6892b;
  --yellow: #ffd400;
  --grey: #6a6a70;

  /* Derived surfaces (same hues, no new colours) */
  --line: rgba(17, 17, 17, 0.1);
  --line-soft: rgba(17, 17, 17, 0.06);
  --wash: rgba(17, 17, 17, 0.03);
  --gold-wash: rgba(182, 137, 43, 0.08);

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --radius: 2px;
  --shell: 1200px;
  --header-h: 76px;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  background-color: var(--white);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 200;
  background-color: var(--ink);
  color: var(--white);
  padding: 10px 18px;
  font-size: 0.875rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: 88px;
}

.section--tight {
  padding-block: 64px;
}

.section--wash {
  background-color: var(--wash);
}

.section--ink {
  background-color: var(--ink);
  color: var(--white);
}

.stack {
  display: flex;
  flex-direction: column;
}

.gap-8 {
  gap: 8px;
}
.gap-12 {
  gap: 12px;
}
.gap-16 {
  gap: 16px;
}
.gap-24 {
  gap: 24px;
}
.gap-32 {
  gap: 32px;
}
.gap-48 {
  gap: 48px;
}

/* Eyebrow: the gold hairline label used to open every section */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--gold);
  flex: none;
}

.section--ink .eyebrow {
  color: var(--yellow);
}

.section--ink .eyebrow::before {
  background-color: var(--yellow);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-head p {
  color: var(--grey);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.section--ink .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.lede {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--grey);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background-color 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, transform 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background-color: var(--ink);
  color: var(--white);
}

.btn--primary:hover {
  background-color: var(--gold);
  color: var(--ink);
}

.btn--gold {
  background-color: var(--yellow);
  color: var(--ink);
}

.btn--gold:hover {
  background-color: var(--gold);
  color: var(--ink);
}

.btn--ghost {
  background-color: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: var(--ink);
  background-color: var(--wash);
}

.section--ink .btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.section--ink .btn--ghost:hover {
  border-color: var(--white);
  background-color: rgba(255, 255, 255, 0.08);
}

.btn--sm {
  padding: 11px 20px;
  font-size: 0.875rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
  transition: border-color 0.18s ease, color 0.18s ease;
  align-self: flex-start;
}

.text-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--white);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand lockup — gold S-monogram beside the wordmark */
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: none;
}

.brand__mark {
  width: 40px;
  height: 40px;
  flex: none;
  display: block;
  object-fit: contain;
  object-position: center;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand__sub {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

/* The in-nav CTA is for the mobile drawer only — the header has its own */
.nav > .btn {
  display: none;
}

.nav__link {
  position: relative;
  padding: 10px 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--grey);
  white-space: nowrap;
  transition: color 0.18s ease;
}

.nav__link:hover {
  color: var(--ink);
}

.nav__link.is-active {
  color: var(--ink);
  font-weight: 600;
}

.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background-color: var(--yellow);
}

.header__cta {
  flex: none;
  margin-left: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex: none;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
}

.nav-toggle__bars::before {
  transform: translateY(-6px);
}

.nav-toggle__bars::after {
  transform: translateY(6px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
  background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Hero — home
   -------------------------------------------------------------------------- */

.hero {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 64px;
  padding-block: 80px 88px;
}

.hero__copy {
  flex: 1 1 460px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

.hero__title {
  font-size: clamp(2.5rem, 5.4vw, 4.25rem);
  letter-spacing: -0.035em;
}

/* Signature element: the gold marker on the headline.
   A background gradient paints inside the em box, so it hugs the letters
   and re-draws per line fragment instead of spanning the whole inline box. */
.hero__title em {
  font-style: normal;
  color: var(--ink);
  background-image: linear-gradient(var(--yellow), var(--yellow));
  background-repeat: no-repeat;
  background-size: 100% 0.32em;
  background-position: 0 78%;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero__media {
  flex: 1 1 380px;
  position: relative;
  min-width: 0;
}

.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero__media::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 120px;
  height: 120px;
  border-right: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
  pointer-events: none;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding-top: 8px;
}

.hero__proof li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey);
}

.hero__proof li::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  flex: none;
}

/* --------------------------------------------------------------------------
   Page hero — inner pages
   -------------------------------------------------------------------------- */

.page-hero {
  border-bottom: 1px solid var(--line);
  padding-block: 72px;
}

.page-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 800px;
}

.page-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--grey);
}

.crumbs a:hover {
  color: var(--gold);
}

.crumbs span[aria-hidden="true"] {
  color: var(--line);
}

/* --------------------------------------------------------------------------
   Stat band
   -------------------------------------------------------------------------- */

.stat-band {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.stat {
  flex: 1 1 200px;
  padding: 36px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

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

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--yellow);
  line-height: 1;
}

.stat__label {
  margin-top: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.66);
}

/* --------------------------------------------------------------------------
   Service cards
   -------------------------------------------------------------------------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background-color: var(--line);
  border: 1px solid var(--line);
}

.card {
  background-color: var(--white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background-color 0.2s ease;
}

.card:hover {
  background-color: var(--gold-wash);
}

.card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ink);
  color: var(--yellow);
  margin-bottom: 6px;
}

.card__icon svg {
  width: 20px;
  height: 20px;
}

.card h3 {
  font-size: 1.1875rem;
}

.card p {
  color: var(--grey);
  font-size: 0.9375rem;
}

.card__list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 4px;
}

.card__list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.875rem;
  color: var(--grey);
}

.card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background-color: var(--gold);
}

/* --------------------------------------------------------------------------
   Split feature
   -------------------------------------------------------------------------- */

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 64px;
}

.split__col {
  flex: 1 1 400px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split__media {
  flex: 1 1 400px;
  min-width: 0;
  position: relative;
}

.split__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
}

.split--reverse {
  flex-direction: row-reverse;
}

/* --------------------------------------------------------------------------
   Comparison rows
   -------------------------------------------------------------------------- */

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

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.row__label {
  flex: 1 1 260px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  min-width: 0;
}

.row__value {
  flex: 2 1 380px;
  color: var(--grey);
  font-size: 0.9375rem;
  min-width: 0;
}

.row__value strong {
  color: var(--ink);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Process steps
   -------------------------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 32px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 22px;
  border-top: 3px solid var(--ink);
}

.step:nth-child(even) {
  border-top-color: var(--gold);
}

.step__n {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.step h3 {
  font-size: 1.125rem;
}

.step p {
  color: var(--grey);
  font-size: 0.9375rem;
}

.section--ink .step {
  border-top-color: var(--yellow);
}

.section--ink .step p {
  color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   Industry tags
   -------------------------------------------------------------------------- */

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey);
  transition: border-color 0.18s ease, color 0.18s ease;
}

.tag:hover {
  border-color: var(--gold);
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   Values / plain list grid
   -------------------------------------------------------------------------- */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.value h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

.value p {
  color: var(--grey);
  font-size: 0.9375rem;
  padding-left: 19px;
}

/* --------------------------------------------------------------------------
   Accordion
   -------------------------------------------------------------------------- */

.accordion {
  border-top: 1px solid var(--line);
  max-width: 820px;
}

.acc {
  border-bottom: 1px solid var(--line);
}

.acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  transition: color 0.18s ease;
}

.acc__btn:hover {
  color: var(--gold);
}

.acc__sign {
  position: relative;
  width: 16px;
  height: 16px;
  flex: none;
}

.acc__sign::before,
.acc__sign::after {
  content: "";
  position: absolute;
  background-color: var(--gold);
  transition: transform 0.22s ease;
}

.acc__sign::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

.acc__sign::after {
  left: 7px;
  top: 0;
  width: 2px;
  height: 16px;
}

.acc__btn[aria-expanded="true"] .acc__sign::after {
  transform: rotate(90deg);
}

.acc__panel {
  display: none;
  padding-bottom: 26px;
  padding-right: 36px;
  color: var(--grey);
  font-size: 0.9375rem;
}

.acc__panel.is-open {
  display: block;
}

/* --------------------------------------------------------------------------
   CTA slab
   -------------------------------------------------------------------------- */

.cta-slab {
  background-color: var(--ink);
  color: var(--white);
  padding: 72px 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 5px solid var(--yellow);
}

.cta-slab__copy {
  flex: 1 1 420px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-slab h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
}

.cta-slab p {
  color: rgba(255, 255, 255, 0.72);
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  align-items: flex-start;
}

.contact-grid__form {
  flex: 1 1 440px;
  min-width: 0;
}

.contact-grid__aside {
  flex: 1 1 320px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.detail {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.detail:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.detail__icon {
  width: 38px;
  height: 38px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gold-wash);
  color: var(--gold);
}

.detail__icon svg {
  width: 18px;
  height: 18px;
}

.detail__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.detail__value {
  font-size: 0.9375rem;
  color: var(--ink);
  line-height: 1.5;
}

.detail__value a:hover {
  color: var(--gold);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--line);
  padding: 36px 32px;
  border-top: 4px solid var(--ink);
}

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

.field-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.field-row .field {
  flex: 1 1 200px;
  min-width: 0;
}

.field label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.field label span {
  color: var(--gold);
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink);
  background-color: var(--white);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  width: 100%;
  transition: border-color 0.18s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field__error {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink);
  display: none;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--ink);
  background-color: var(--gold-wash);
}

.field.has-error .field__error {
  display: block;
}

.form__note {
  font-size: 0.8125rem;
  color: var(--grey);
}

.form__status {
  display: none;
  padding: 14px 16px;
  background-color: var(--gold-wash);
  border-left: 3px solid var(--gold);
  font-size: 0.9375rem;
}

.form__status.is-visible {
  display: block;
}

.map {
  border: 1px solid var(--line);
  line-height: 0;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background-color: var(--ink);
  color: var(--white);
  padding-top: 72px;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__brand {
  flex: 1 1 300px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer .brand__name {
  color: var(--white);
}

.footer .brand__sub {
  color: var(--yellow);
}

.footer__blurb {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9375rem;
  max-width: 340px;
}

.footer__col {
  flex: 0 1 190px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
}

.footer__col a,
.footer__col li {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.66);
  transition: color 0.18s ease;
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .btn:hover {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav__link {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--line-soft);
  }

  .nav__link.is-active::after {
    left: 0;
    right: auto;
    width: 24px;
    bottom: 8px;
  }

  .nav .btn {
    margin-top: 16px;
  }

  .split,
  .split--reverse {
    flex-direction: column;
    gap: 40px;
  }

  .hero__grid {
    gap: 48px;
    padding-block: 56px 64px;
  }

  .section {
    padding-block: 64px;
  }

  .cta-slab {
    padding: 48px 28px;
  }

  .contact-grid {
    gap: 48px;
  }
}

@media (max-width: 560px) {
  .shell {
    padding-inline: 20px;
  }

  .form {
    padding: 28px 20px;
  }

  .stat {
    flex-basis: 100%;
    border-right: none;
    padding: 28px 0;
  }

  .footer__top {
    gap: 36px;
  }
}
