:root {
  --brand: #003334;
  --brand-deep: #041f20;
  --brand-soft: #dce9e5;
  --accent: #f0a020;
  --accent-dark: #c97900;
  --ink: #182220;
  --muted: #53615f;
  --line: #d8dfdc;
  --surface: #ffffff;
  --surface-soft: #f2f5f2;
  --max-width: 1180px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid rgba(240, 160, 32, 0.65);
  outline-offset: 3px;
}

.shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--brand-deep);
  background: var(--accent);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: #ffffff;
  background: rgba(4, 31, 32, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

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

.brand img {
  width: 172px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

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

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:not(.portal-button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #ffffff;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.portal-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 16px;
  color: var(--brand-deep) !important;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 4px;
}

.portal-button:hover {
  background: #ffb13a;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 690px;
  height: calc(100svh - 54px);
  max-height: 840px;
  padding-top: var(--header-height);
  overflow: hidden;
  color: #ffffff;
  background: var(--brand-deep);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-overlay {
  background: rgba(0, 36, 37, 0.78);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  padding-block: 72px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow,
.dark-band .section-label,
.final-cta .section-label,
.inner-hero .eyebrow {
  color: var(--accent);
}

.hero h1 {
  max-width: 770px;
  margin: 0;
  color: #ffffff;
  font-size: 3.55rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  line-height: 1.65;
}

.hero-support {
  max-width: 690px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--brand-deep);
  background: var(--accent);
  border-color: var(--accent);
}

.button-primary:hover {
  background: #ffb13a;
  border-color: #ffb13a;
}

.button-secondary {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.button-dark {
  color: #ffffff;
  background: var(--brand);
  border-color: var(--brand);
}

.button-dark:hover {
  background: var(--brand-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  content: "\2192";
  color: var(--accent-dark);
  font-size: 1.2em;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.trust-strip {
  color: #ffffff;
  background: var(--brand);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 74px;
}

.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-grid strong {
  color: var(--accent);
  font-size: 1.15rem;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
}

.section {
  padding-block: 104px;
}

.section-soft {
  background: var(--surface-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 56px;
}

.section-heading h2,
.purpose-copy h2,
.case-copy h2,
.why-copy h2,
.final-cta h2,
.inner-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.55rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-heading > p,
.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 74px;
  align-items: start;
}

.problem-copy h2 {
  margin: 0 0 24px;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.12;
}

.problem-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.problem-copy strong {
  color: var(--brand);
}

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

.pain-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
}

.pain-list span {
  color: var(--accent-dark);
  font-size: 0.83rem;
  font-weight: 900;
}

.purpose-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 72px;
  align-items: center;
}

.purpose-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.purpose-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.purpose-marker {
  position: absolute;
  right: 20px;
  bottom: 20px;
  max-width: 290px;
  padding: 20px;
  color: #ffffff;
  background: var(--brand);
  border-left: 4px solid var(--accent);
}

.purpose-marker strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.15rem;
}

.purpose-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.purpose-copy .text-link {
  margin-top: 26px;
}

.dark-band {
  color: #ffffff;
  background: var(--brand-deep);
}

.dark-band .section-heading h2,
.dark-band .section-heading > p {
  color: #ffffff;
}

.dark-band .section-heading > p {
  color: rgba(255, 255, 255, 0.72);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.method-step {
  min-height: 280px;
  padding: 28px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.method-step:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.method-step > span {
  display: block;
  color: var(--accent);
  font-size: 1.65rem;
  font-weight: 900;
}

.method-step h3 {
  margin: 46px 0 12px;
  color: #ffffff;
  font-size: 1.23rem;
  line-height: 1.25;
}

.method-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.93rem;
}

.method-result {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 900;
}

.method-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.method-more .text-link {
  color: #ffffff;
}

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

.solution-card {
  min-height: 278px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.solution-card:hover {
  border-color: rgba(0, 51, 52, 0.5);
  box-shadow: 0 18px 38px rgba(4, 31, 32, 0.09);
  transform: translateY(-4px);
}

.solution-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #ffffff;
  background: var(--brand);
  border-radius: 4px;
  font-size: 1.05rem;
}

.solution-card h3 {
  margin: 44px 0 12px;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.25;
}

.solution-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.case-band {
  overflow: hidden;
}

.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 68px;
  align-items: center;
}

.case-media {
  min-height: 490px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.case-media img {
  width: 100%;
  height: 100%;
  min-height: 490px;
  object-fit: cover;
  object-position: center;
}

.case-copy h2 {
  margin-bottom: 14px;
}

.case-copy h3 {
  margin: 24px 0 6px;
  color: var(--brand);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.case-copy p {
  margin: 0;
  color: var(--muted);
}

.result-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
}

.result-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.result-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--accent);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 86px;
  align-items: center;
}

.why-copy h2 {
  color: #ffffff;
}

.why-copy > p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

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

.principle-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 800;
}

.principle-list span {
  color: var(--accent);
}

.testimonial-line {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-line blockquote {
  max-width: 900px;
  margin: 0;
  color: #ffffff;
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1.55;
}

.testimonial-line cite {
  display: block;
  margin-top: 12px;
  color: var(--accent);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 900;
}

.final-cta {
  color: #ffffff;
  background: var(--brand);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 76px;
  align-items: start;
}

.final-cta h2 {
  color: #ffffff;
}

.contact-copy > p:not(.section-label) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.06rem;
}

.contact-points {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.contact-points span {
  color: var(--accent);
  margin-right: 8px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  outline: none;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(240, 160, 32, 0.22);
}

.contact-form .button {
  justify-self: start;
  cursor: pointer;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: #ffffff;
  font-size: 0.9rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #021718;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 58px;
  padding-block: 60px;
}

.footer-brand img {
  width: 176px;
  height: auto;
}

.footer-brand p {
  max-width: 430px;
  margin: 18px 0 0;
}

.footer-column strong {
  display: block;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-column a,
.footer-column span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
}

/* Institutional pages */
.inner-page {
  padding-top: var(--header-height);
}

.inner-hero {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 510px;
  overflow: hidden;
  color: #ffffff;
  background: var(--brand-deep);
}

.inner-hero-media,
.inner-hero-overlay {
  position: absolute;
  inset: 0;
}

.inner-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-hero-overlay {
  background: rgba(0, 36, 37, 0.78);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  width: min(800px, 100%);
  padding-block: 70px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
}

.inner-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: 3.25rem;
  line-height: 1.1;
}

.inner-hero p:last-child {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.inner-section {
  padding-block: 92px;
}

.story-grid,
.case-detail-grid,
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 78px;
  align-items: start;
}

.prose p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1.06rem;
}

.statement {
  margin: 42px 0 0;
  padding: 26px 0 26px 26px;
  color: var(--brand);
  border-left: 4px solid var(--accent);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.45;
}

.history-points,
.detail-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.history-points li,
.detail-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.timeline {
  counter-reset: strategic-step;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.timeline article {
  counter-increment: strategic-step;
  display: grid;
  grid-template-columns: 88px 0.7fr 1.3fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.timeline article::before {
  content: counter(strategic-step, decimal-leading-zero);
  color: var(--accent-dark);
  font-size: 1.35rem;
  font-weight: 900;
}

.timeline h2 {
  font-size: 1.35rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

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

.case-shot img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.case-block + .case-block {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.case-block h2 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.case-block p {
  margin: 0;
  color: var(--muted);
}

.contact-page-grid .contact-form {
  padding: 32px;
  background: var(--brand);
  border-radius: 6px;
}

.contact-direct {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-direct a,
.contact-direct span {
  display: block;
  margin-top: 10px;
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.86rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .method-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .method-step:nth-child(4),
  .method-step:nth-child(5) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    max-height: calc(100svh - var(--header-height));
    margin: 0;
    padding: 12px 20px 22px;
    overflow-y: auto;
    background: var(--brand-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

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

  .site-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1rem;
  }

  .site-nav a::after {
    display: none;
  }

  .portal-button {
    justify-content: center;
    margin-top: 12px;
    border-bottom: 0 !important;
  }

  .hero {
    min-height: 660px;
    height: auto;
    max-height: none;
  }

  .hero h1,
  .inner-hero h1 {
    font-size: 2.7rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding-block: 8px;
  }

  .trust-grid > div,
  .trust-grid > div:last-child {
    min-height: 54px;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .problem-grid,
  .purpose-grid,
  .case-grid,
  .why-grid,
  .contact-grid,
  .story-grid,
  .case-detail-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .brand img {
    width: 146px;
  }

  .hero {
    min-height: calc(100svh - 34px);
  }

  .hero-content {
    padding-block: 54px 42px;
  }

  .hero h1,
  .inner-hero h1 {
    font-size: 2.15rem;
    line-height: 1.12;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

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

  .section,
  .inner-section {
    padding-block: 72px;
  }

  .section-heading h2,
  .problem-copy h2,
  .purpose-copy h2,
  .case-copy h2,
  .why-copy h2,
  .final-cta h2,
  .inner-section h2 {
    font-size: 2rem;
  }

  .purpose-media,
  .purpose-media img {
    min-height: 390px;
  }

  .purpose-marker {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .method-grid,
  .solution-grid,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .method-step,
  .method-step:nth-child(4),
  .method-step:nth-child(5),
  .method-step:last-child {
    min-height: 0;
    padding: 24px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .method-step h3 {
    margin-top: 20px;
  }

  .result-list {
    grid-template-columns: 1fr;
  }

  .contact-form .button {
    width: 100%;
  }

  .footer-brand,
  .field-full {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .inner-hero {
    min-height: 440px;
  }

  .timeline article {
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }

  .timeline article p {
    grid-column: 2;
  }

  .contact-page-grid .contact-form {
    padding: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
