@font-face {
  font-family: "Fjalla One";
  src: url("../fonts/fjalla-one-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Muli";
  src: url("../fonts/muli-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Muli";
  src: url("../fonts/muli-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-purple: #9a00fe;
  --brand-purple-bright: #ad2dff;
  --brand-deep: #1e0231;
  --brand-ink: #201932;
  --brand-paper: #f9f5f6;
  --brand-white: #ffffff;
  --brand-line: #c951ff;
  --brand-muted-light: #d0c5d6;
  --color-muted: #62556c;
  --color-success: #146b45;
  --color-error: #a72135;
  --color-warning: #755100;
  --container: 75rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-space: clamp(4.5rem, 10vw, 9rem);
  --radius-card: 1rem;
  --radius-field: 0.75rem;
  --transition: 220ms ease;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--brand-paper);
  color: var(--brand-ink);
  font-family: "Muli", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 0.1875rem solid var(--brand-line);
  outline-offset: 0.1875rem;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--brand-white);
  color: var(--brand-deep);
  font-weight: 600;
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - (2 * var(--gutter))), var(--container));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.875rem;
  color: var(--brand-purple);
  font-family: "Fjalla One", Impact, "Arial Narrow", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: "Fjalla One", Impact, "Arial Narrow", sans-serif;
  font-weight: 400;
}

h1 {
  max-width: 52rem;
  font-size: clamp(3rem, 7vw, 5.125rem);
  letter-spacing: -0.025em;
  line-height: 1.01;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  letter-spacing: -0.018em;
  line-height: 1.04;
}

h3 {
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  line-height: 1.12;
}

p {
  margin-top: 0;
}

.lead {
  max-width: 45rem;
  margin: 1.5rem 0 0;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.55;
}

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

.text-muted-on-dark {
  color: var(--brand-muted-light);
}

.section {
  padding-block: var(--section-space);
}

.section--dark {
  background: var(--brand-deep);
  color: var(--brand-white);
}

.section--deep-alt {
  background: #12001f;
  color: var(--brand-white);
}

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

.section--texture {
  background-color: var(--brand-deep);
  background-image:
    linear-gradient(rgba(30, 2, 49, 0.91), rgba(30, 2, 49, 0.95)),
    url("../images/fundo-04.avif");
  background-position: center;
  background-size: cover;
  color: var(--brand-white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-heading > p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.section--dark .section-heading > p,
.section--deep-alt .section-heading > p,
.section--texture .section-heading > p {
  color: var(--brand-muted-light);
}

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--brand-deep);
  color: var(--brand-white);
}

.site-header__inner {
  display: flex;
  min-height: 4.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 8.875rem;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.875rem, 2.2vw, 1.5rem);
}

.site-nav a {
  font-size: 0.875rem;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 0.125rem;
  text-underline-offset: 0.35rem;
}

.menu-button {
  display: none;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: transparent;
  color: var(--brand-white);
  cursor: pointer;
}

.menu-button__icon {
  position: relative;
  width: 1rem;
  height: 0.75rem;
}

.menu-button__icon::before,
.menu-button__icon::after,
.menu-button__icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.125rem;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform var(--transition), top var(--transition), opacity var(--transition);
}

.menu-button__icon::before {
  top: 0;
}

.menu-button__icon span {
  top: 0.3125rem;
}

.menu-button__icon::after {
  top: 0.625rem;
}

.menu-button[aria-expanded="true"] .menu-button__icon::before {
  top: 0.3125rem;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__icon span {
  opacity: 0;
}

.menu-button[aria-expanded="true"] .menu-button__icon::after {
  top: 0.3125rem;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.125rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.button:hover {
  transform: translateY(-0.0625rem);
}

.button--primary {
  background: var(--brand-purple);
  color: var(--brand-white);
}

.button--primary:hover {
  background: #8400db;
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  color: var(--brand-white);
}

.button--secondary:hover {
  border-color: var(--brand-white);
  background: rgba(255, 255, 255, 0.08);
}

.button--light {
  background: var(--brand-white);
  color: var(--brand-deep);
}

.button--light:hover {
  background: var(--brand-paper);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.875rem;
}

.hero {
  background-color: var(--brand-deep);
  background-image:
    linear-gradient(90deg, rgba(30, 2, 49, 0.96) 0%, rgba(30, 2, 49, 0.88) 52%, rgba(30, 2, 49, 0.3) 100%),
    url("../images/fundo-10.avif");
  background-position: center;
  background-size: cover;
  color: var(--brand-white);
}

.hero__inner {
  max-width: 52rem;
  padding-block: clamp(5rem, 12vw, 8.5rem);
}

.hero .lead {
  color: var(--brand-muted-light);
}

.page-hero {
  background-color: var(--brand-deep);
  background-image:
    linear-gradient(90deg, rgba(30, 2, 49, 0.97), rgba(30, 2, 49, 0.72)),
    url("../images/fundo-10.avif");
  background-position: center;
  background-size: cover;
  color: var(--brand-white);
}

.page-hero__inner {
  max-width: 48rem;
  padding-block: clamp(4.5rem, 10vw, 7.5rem);
}

.page-hero .lead {
  color: var(--brand-muted-light);
}

.logo-band {
  border-bottom: 1px solid rgba(30, 2, 49, 0.12);
  background: var(--brand-white);
}

.logo-band__inner {
  padding-block: 2rem;
}

.logo-band__label {
  margin: 0 0 1.375rem;
  color: var(--color-muted);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
  align-items: center;
}

.client-logo {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.client-logo img {
  width: auto;
  max-width: 7.75rem;
  max-height: 2.25rem;
  height: auto;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(32, 25, 50, 0.22);
}

.problem {
  display: flex;
  min-height: 7.25rem;
  gap: 1rem;
  padding: 1.625rem 1.375rem 1.625rem 0;
  border-bottom: 1px solid rgba(32, 25, 50, 0.22);
}

.problem:nth-child(3n + 2),
.problem:nth-child(3n + 3) {
  padding-left: 1.375rem;
  border-left: 1px solid rgba(32, 25, 50, 0.15);
}

.index {
  flex: 0 0 auto;
  color: var(--brand-purple);
  font-family: "Fjalla One", Impact, sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
}

.problem p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.45;
}

.solution-grid,
.model-grid,
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.solution-card {
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-card);
  background: rgba(30, 2, 49, 0.72);
}

.solution-card .index {
  color: var(--brand-purple-bright);
}

.solution-card h3 {
  margin-top: 2rem;
}

.solution-card p {
  margin: 0.875rem 0 0;
  color: var(--brand-muted-light);
}

.model-card {
  display: flex;
  min-height: 22.5rem;
  flex-direction: column;
  padding: 1.875rem;
  border: 1px solid rgba(154, 0, 254, 0.36);
  border-radius: var(--radius-card);
  background: var(--brand-white);
}

.model-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.model-card__number {
  color: var(--brand-purple);
  font-family: "Fjalla One", Impact, sans-serif;
  font-size: 1.75rem;
}

.model-card__for {
  margin: 1.75rem 0 0;
  color: var(--color-muted);
}

.model-card dl {
  margin: auto 0 0;
  padding-top: 1.75rem;
}

.model-card dt {
  margin-top: 1rem;
  color: var(--brand-purple);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-card dd {
  margin: 0.375rem 0 0;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 3.125rem;
}

.timeline::before {
  position: absolute;
  top: 1.3125rem;
  right: 7%;
  left: 7%;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
  content: "";
}

.timeline-step {
  position: relative;
  padding-right: 1.25rem;
}

.timeline-step__number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-purple-bright);
  color: var(--brand-white);
  font-family: "Fjalla One", Impact, sans-serif;
  font-size: 1.125rem;
}

.timeline-step h3 {
  margin-top: 1.25rem;
  font-family: "Muli", sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
}

.timeline-step p {
  margin: 0.5rem 0 0;
  color: var(--brand-muted-light);
  font-size: 0.875rem;
}

.audience-layout,
.content-split,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
}

.audience-list,
.fact-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid currentColor;
  list-style: none;
}

.audience-list {
  border-color: rgba(255, 255, 255, 0.3);
}

.audience-list li,
.fact-list li {
  padding: 1.125rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.125rem;
}

.fact-list {
  border-color: rgba(32, 25, 50, 0.22);
}

.fact-list li {
  border-color: rgba(32, 25, 50, 0.22);
}

.specialty-card {
  padding: 1.5rem;
  border: 1px solid rgba(154, 0, 254, 0.28);
  border-radius: var(--radius-card);
  background: var(--brand-white);
}

.specialty-card h3 {
  margin-bottom: 1rem;
  color: var(--brand-purple);
  font-family: "Muli", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.tags,
.regions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag,
.region {
  display: inline-block;
  padding: 0.4375rem 0.6875rem;
  border: 1px solid rgba(32, 25, 50, 0.26);
  border-radius: 999px;
  background: var(--brand-paper);
  font-size: 0.8125rem;
}

.region {
  border-color: rgba(255, 255, 255, 0.44);
  background: transparent;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.75rem;
}

.editorial-block {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.editorial-block p {
  margin: 0.875rem 0 0;
  color: var(--brand-muted-light);
}

.editorial-block .regions {
  margin-top: 1.125rem;
}

.clients-repeat {
  margin-top: 2.375rem;
  padding: 1.75rem;
  border-radius: var(--radius-card);
  background: var(--brand-white);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.about-split__image {
  min-height: 37.5rem;
  background-image: url("../images/escritorio-taruman-01.jpg");
  background-position: center 42%;
  background-size: cover;
}

.about-split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 6rem) max(var(--gutter), calc((100vw - var(--container)) / 2)) clamp(4rem, 8vw, 6rem) clamp(2.5rem, 6vw, 5rem);
  background: var(--brand-deep);
  color: var(--brand-white);
}

.about-split__copy p {
  max-width: 36rem;
  margin: 1.25rem 0 0;
  color: var(--brand-muted-light);
}

.address {
  margin-top: 1.625rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.photo-block img {
  width: 100%;
  max-height: 48rem;
  border-radius: var(--radius-card);
  object-fit: cover;
  object-position: center 42%;
}

.photo-block figcaption {
  margin-top: 0.75rem;
  color: var(--color-muted);
  font-size: 0.875rem;
}

.contact-section {
  background-color: var(--brand-purple);
  background-image:
    linear-gradient(rgba(154, 0, 254, 0.88), rgba(154, 0, 254, 0.91)),
    url("../images/fundo-07.avif");
  background-position: center;
  background-size: cover;
  color: var(--brand-white);
}

.contact-copy p {
  max-width: 27rem;
}

.contact-copy a {
  font-weight: 600;
  text-underline-offset: 0.25rem;
}

.contact-details {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-details li + li {
  margin-top: 1rem;
}

.form {
  padding: clamp(1.375rem, 4vw, 2rem);
  border-radius: var(--radius-card);
  background: var(--brand-white);
  color: var(--brand-ink);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.125rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 0.4375rem;
  color: var(--brand-deep);
  font-size: 0.8125rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.6875rem 0.75rem;
  border: 1px solid #7c7086;
  border-radius: var(--radius-field);
  background: var(--brand-white);
  color: var(--brand-ink);
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--color-error);
}

.field__error {
  margin: 0.375rem 0 0;
  color: var(--color-error);
  font-size: 0.8125rem;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-top: 1.125rem;
  font-size: 0.8125rem;
}

.checkbox input {
  flex: 0 0 auto;
  margin-top: 0.1875rem;
}

.checkbox a {
  text-underline-offset: 0.2rem;
}

.form__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.form__status {
  min-height: 1.5rem;
  margin: 0.875rem 0 0;
  font-size: 0.875rem;
}

.form__status[data-state="success"] {
  color: var(--color-success);
}

.form__status[data-state="error"] {
  color: var(--color-error);
}

.form__note {
  margin: 0.75rem 0 0;
  color: var(--color-muted);
  font-size: 0.75rem;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.legal-content {
  max-width: 48rem;
}

.legal-content h2 {
  margin-top: 3.5rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.legal-content h3 {
  margin-top: 2rem;
  font-family: "Muli", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
}

.legal-content p,
.legal-content li {
  max-width: 44rem;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-meta {
  margin: 0 0 2.5rem;
  color: var(--color-muted);
}

.error-page {
  display: grid;
  min-height: calc(100vh - 4.75rem);
  place-items: center;
  padding-block: 5rem;
  background-color: var(--brand-deep);
  background-image:
    linear-gradient(rgba(30, 2, 49, 0.84), rgba(30, 2, 49, 0.96)),
    url("../images/fundo-10.avif");
  background-position: center;
  background-size: cover;
  color: var(--brand-white);
}

.error-page__content {
  max-width: 42rem;
}

.error-page__code {
  margin: 0 0 0.5rem;
  color: var(--brand-purple-bright);
  font-family: "Fjalla One", Impact, sans-serif;
  font-size: clamp(4rem, 13vw, 8rem);
  line-height: 1;
}

.site-footer {
  padding-block: 3.375rem 2rem;
  background: #12001f;
  color: var(--brand-white);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 2.25rem;
}

.site-footer .brand img {
  width: 9.375rem;
}

.site-footer h2 {
  margin-bottom: 0.875rem;
  color: var(--brand-muted-light);
  font-family: "Muli", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin: 0.5rem 0;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.site-footer p {
  margin: 0.5rem 0;
  color: var(--brand-muted-light);
}

.site-footer__legal {
  margin-top: 2.125rem;
  padding-top: 1.375rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--brand-muted-light);
  font-size: 0.75rem;
}

.site-footer__legal p {
  margin: 0;
}

.no-js .menu-button {
  display: none;
}

@media (max-width: 68rem) {
  .header-cta {
    display: none;
  }
}

@media (max-width: 54rem) {
  body.menu-open {
    overflow: hidden;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 4.125rem);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem var(--gutter) 1.5rem;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--brand-deep);
  }

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

  .site-nav a {
    padding: 0.625rem 0;
    font-size: 1rem;
  }

  .problem-list,
  .solution-grid,
  .model-grid,
  .specialty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem:nth-child(3n + 2),
  .problem:nth-child(3n + 3) {
    padding-left: 0;
    border-left: 0;
  }

  .problem:nth-child(even) {
    padding-left: 1.375rem;
    border-left: 1px solid rgba(32, 25, 50, 0.15);
  }

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

  .timeline::before {
    display: none;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-split__image {
    min-height: 32rem;
  }

  .about-split__copy {
    padding: 4rem var(--gutter);
  }
}

@media (max-width: 40rem) {
  .site-header__inner {
    min-height: 4.125rem;
  }

  .brand img {
    width: 7.75rem;
  }

  .hero {
    background-image:
      linear-gradient(rgba(30, 2, 49, 0.82), rgba(30, 2, 49, 0.95)),
      url("../images/fundo-10.avif");
    background-position: 64% center;
  }

  .actions,
  .form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .actions .button,
  .form__actions .button {
    width: 100%;
  }

  .client-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.125rem;
  }

  .section-heading,
  .audience-layout,
  .content-split,
  .contact-layout,
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .problem-list,
  .solution-grid,
  .model-grid,
  .specialty-grid {
    grid-template-columns: 1fr;
  }

  .problem,
  .problem:nth-child(even) {
    padding: 1.25rem 0;
    border-left: 0;
  }

  .model-card {
    min-height: 0;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 1.375rem;
  }

  .timeline::before {
    display: block;
    top: 0;
    bottom: 0;
    left: 1.3125rem;
    width: 1px;
    height: auto;
  }

  .timeline-step {
    min-height: 3.75rem;
    padding: 0 0 0 4rem;
  }

  .timeline-step__number {
    position: absolute;
    top: 0;
    left: 0;
  }

  .timeline-step h3 {
    margin-top: 0;
  }

  .about-split__image {
    min-height: 30rem;
  }

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

  .field--full {
    grid-column: auto;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .actions,
  .button,
  .menu-button {
    display: none !important;
  }

  body {
    background: var(--brand-white);
    color: #000000;
  }

  .section,
  .page-hero__inner {
    padding-block: 2rem;
  }
}
