:root {
  --ink: #151a1e;
  --ink-soft: #31383d;
  --navy: #102b46;
  --navy-deep: #091b2c;
  --teal: #1f6a63;
  --teal-deep: #164b46;
  --gold: #d2a13d;
  --gold-pale: #f4e7c7;
  --red: #934b43;
  --paper: #f3f5f4;
  --paper-deep: #e7ecea;
  --white: #ffffff;
  --muted: #5e686d;
  --line: rgba(21, 26, 30, 0.16);
  --light-line: rgba(255, 255, 255, 0.2);
  --shadow: 0 18px 48px rgba(9, 27, 44, 0.14);
  --container: 1240px;
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.25rem;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

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

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.visually-hidden,
.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 4.8rem;
  background: var(--navy-deep);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 850;
  text-decoration: none;
}

.brand img {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 4px;
}

.brand-name {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-size: 0.88rem;
  font-weight: 750;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.9rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--gold);
}

.site-nav .nav-cta {
  min-height: 2.65rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 4px;
  color: var(--white);
}

.menu-button {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-button span:not(.visually-hidden) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.3rem 0;
  background: currentColor;
  transition: transform 170ms ease, opacity 170ms ease;
}

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

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.15rem;
  font-size: 4.5rem;
  line-height: 0.98;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.8rem;
  line-height: 1.08;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
  line-height: 1.3;
}

.kicker,
.eyebrow,
.card-label,
.article-meta {
  margin: 0 0 0.7rem;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

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

.button--primary {
  background: var(--gold);
  color: #17130d;
}

.button--primary:hover {
  background: #e4b657;
}

.button--light {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.button--outline {
  border-color: var(--navy);
  color: var(--navy);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--teal);
  font-weight: 850;
}

.home-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 82svh;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.home-hero__image,
.home-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__image {
  object-fit: cover;
  object-position: center;
}

.home-hero__overlay {
  background: linear-gradient(90deg, rgba(7, 23, 38, 0.82) 0%, rgba(7, 23, 38, 0.62) 42%, rgba(7, 23, 38, 0.25) 72%, rgba(7, 23, 38, 0.1) 100%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
  padding: 5.25rem 0;
}

.home-hero__content > * {
  max-width: 680px;
}

.home-hero .eyebrow,
.page-hero .eyebrow {
  color: var(--gold);
}

.home-hero h1 {
  max-width: 760px;
  margin-bottom: 1.25rem;
}

.hero-copy {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.7rem;
  margin-top: 2.2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 700;
}

.page-hero {
  background: var(--navy);
  color: var(--white);
}

.page-hero--teal {
  background: var(--teal-deep);
}

.page-hero--ink {
  background: var(--ink);
}

.page-hero__inner {
  padding: 5.5rem 0 4.6rem;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.18rem;
}

.section {
  padding: 5.8rem 0;
}

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

.section--deep {
  background: var(--paper-deep);
}

.section--navy,
.section--teal,
.section--ink {
  color: var(--white);
}

.section--navy {
  background: var(--navy);
}

.section--teal {
  background: var(--teal-deep);
}

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

.section--navy .kicker,
.section--teal .kicker,
.section--ink .kicker {
  color: var(--gold);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-heading > p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section--navy .section-heading > p:last-child,
.section--teal .section-heading > p:last-child,
.section--ink .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: 5rem;
  align-items: start;
}

.lead-grid__copy > p:not(.kicker) {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.principle {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.principle span {
  color: var(--teal);
  font-weight: 900;
}

.principle h3,
.principle p {
  margin-bottom: 0;
}

.principle p {
  margin-top: 0.25rem;
  color: var(--muted);
}

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

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

.card {
  min-width: 0;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.card h3 {
  min-height: 3.25rem;
}

.card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.card .text-link {
  margin-top: 0.6rem;
}

.section--ink .card,
.section--navy .card,
.section--teal .card {
  border-color: var(--light-line);
  background: rgba(255, 255, 255, 0.07);
}

.section--ink .card p:last-child,
.section--navy .card p:last-child,
.section--teal .card p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 5rem;
  align-items: start;
}

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

.feature-stat {
  min-height: 7.5rem;
  padding: 1.15rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.feature-stat strong {
  display: block;
  color: var(--gold);
  font-size: 1.65rem;
}

.feature-stat span {
  color: rgba(255, 255, 255, 0.76);
}

.portrait-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: 4.5rem;
  align-items: start;
}

.portrait {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.portrait--formal {
  aspect-ratio: 2 / 3;
  object-position: center top;
}

figure {
  margin: 0;
}

figcaption {
  max-width: 480px;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.bio-copy p {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.credential-item {
  min-height: 7rem;
  padding: 1.15rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.credential-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.quote-band blockquote {
  max-width: 920px;
  margin: 0;
  font-size: 2.35rem;
  font-weight: 780;
  line-height: 1.25;
}

.quote-band cite {
  display: block;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-style: normal;
}

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

.service-row {
  display: grid;
  grid-template-columns: 3.5rem minmax(14rem, 0.65fr) minmax(0, 1.35fr);
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.service-row__number {
  color: var(--teal);
  font-weight: 900;
}

.service-row h2 {
  font-size: 1.75rem;
}

.service-row p,
.service-row li {
  color: var(--muted);
}

.service-row ul,
.outcome-list,
.audience-list {
  margin: 0;
  padding-left: 1.2rem;
}

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

.module-row {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.module-row span {
  color: var(--teal);
  font-weight: 900;
}

.module-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.notice {
  padding: 1.3rem;
  border-left: 4px solid var(--gold);
  background: var(--gold-pale);
  color: #41351e;
}

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

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

.appearance {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1.5rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
}

.appearance strong {
  color: var(--teal);
}

.appearance p {
  margin-bottom: 0;
}

.insight-card {
  display: flex;
  flex-direction: column;
  min-height: 19rem;
}

.insight-card .text-link {
  margin-top: auto;
}

.article-header {
  padding: 4.5rem 0 3.7rem;
  background: var(--navy);
  color: var(--white);
}

.article-header h1 {
  max-width: 930px;
  font-size: 3.8rem;
}

.article-dek {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
}

.article-meta {
  color: var(--gold);
}

.article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 12rem;
  gap: 4rem;
  max-width: 1000px;
}

.article-body {
  max-width: 760px;
}

.article-body p,
.article-body li {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.article-body h2 {
  margin-top: 2.3rem;
  font-size: 1.9rem;
}

.article-aside {
  position: sticky;
  top: 7rem;
  align-self: start;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
  color: var(--muted);
  font-size: 0.88rem;
}

.article-aside p:last-child {
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 4.5rem;
  align-items: start;
}

.direct-contact {
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.direct-contact a {
  color: var(--teal);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 1rem;
  min-width: 0;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 0.38rem;
  min-width: 0;
  color: var(--ink-soft);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(21, 26, 30, 0.27);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
}

.checkbox-label {
  grid-template-columns: 1.2rem 1fr;
  align-items: start;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.checkbox-label input {
  width: 1.1rem;
  min-height: 1.1rem;
  margin-top: 0.25rem;
}

.contact-form .button {
  width: fit-content;
  min-width: 9rem;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  max-width: 780px;
  margin-bottom: 0.6rem;
}

.cta-band p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.76);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 3rem;
  padding: 3.6rem 0 2.4rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 850;
}

.footer-brand img {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 4px;
}

.footer-main h2 {
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: 1rem;
}

.footer-main p {
  max-width: 560px;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  gap: 0.35rem;
}

.footer-links a {
  min-height: 2.3rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-legal {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
}

.footer-legal p {
  max-width: 870px;
  margin-bottom: 0;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 2.4rem;
  font-size: 1.65rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.utility-main {
  display: grid;
  place-items: center;
  min-height: 60svh;
  padding: 4rem 0;
  text-align: center;
}

.utility-main h1 {
  font-size: 3.5rem;
}

.utility-main p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.social-card {
  position: relative;
  width: 1200px;
  height: 630px;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.social-card img.photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 510px;
  height: 630px;
  object-fit: cover;
  object-position: center 20%;
}

.social-card .shade {
  position: absolute;
  inset: 0 480px 0 0;
  background: var(--navy-deep);
}

.social-card .content {
  position: absolute;
  inset: 72px auto auto 74px;
  width: 650px;
}

.social-card .logo-row {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 28px;
  font-weight: 850;
}

.social-card .logo-row img {
  width: 68px;
  height: 68px;
  border-radius: 6px;
}

.social-card h1 {
  margin: 58px 0 24px;
  font-size: 68px;
  line-height: 0.98;
}

.social-card p {
  width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 25px;
  line-height: 1.38;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 0.8rem;
    font-size: 0.82rem;
  }

  h1 {
    font-size: 3.9rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .section {
    padding: 5rem 0;
  }

  .lead-grid,
  .feature-band,
  .portrait-layout,
  .contact-layout {
    gap: 3rem;
  }

  .card-grid--three {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    align-content: start;
    min-height: calc(100svh - 4.8rem);
    max-height: calc(100svh - 4.8rem);
    overflow-y: auto;
    padding: 0.5rem 1rem 1rem;
    background: var(--navy-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .site-nav a,
  .site-nav .nav-cta {
    min-height: 3.35rem;
    padding: 0.7rem 0.2rem;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    box-shadow: none;
  }

  .lead-grid,
  .feature-band,
  .portrait-layout,
  .contact-layout,
  .article-wrap {
    grid-template-columns: 1fr;
  }

  .portrait {
    max-width: 520px;
  }

  .service-row {
    grid-template-columns: 3rem 1fr;
  }

  .service-row > div:last-child {
    grid-column: 2;
  }

  .article-aside {
    position: static;
    grid-row: 1;
    max-width: 760px;
  }

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

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .site-header,
  .header-inner {
    min-height: 4.45rem;
  }

  .brand {
    gap: 0.55rem;
    font-size: 0.9rem;
  }

  .brand img {
    width: 2.35rem;
    height: 2.35rem;
  }

  .site-nav {
    min-height: calc(100svh - 4.45rem);
    max-height: calc(100svh - 4.45rem);
  }

  h1 {
    font-size: 2.65rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 2.05rem;
  }

  h3 {
    font-size: 1.16rem;
  }

  .home-hero {
    min-height: 80svh;
  }

  .home-hero__image {
    object-position: 66% center;
  }

  .home-hero__overlay {
    background: linear-gradient(90deg, rgba(7, 23, 38, 0.78) 0%, rgba(7, 23, 38, 0.58) 58%, rgba(7, 23, 38, 0.38) 100%);
  }

  .home-hero__content {
    width: calc(100% - 1.5rem);
    padding: 3.8rem 0 3rem;
  }

  .hero-copy,
  .page-hero p:last-child {
    font-size: 1.03rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-signals {
    gap: 0.45rem 1rem;
    font-size: 0.78rem;
  }

  .page-hero__inner {
    padding: 4rem 0 3.4rem;
  }

  .section {
    padding: 4rem 0;
  }

  .card-grid,
  .feature-band__details,
  .credential-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .card h3 {
    min-height: 0;
  }

  .portrait-layout,
  .lead-grid,
  .feature-band,
  .contact-layout {
    gap: 2.3rem;
  }

  .quote-band blockquote {
    font-size: 1.65rem;
  }

  .service-row {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.75rem;
  }

  .service-row h2 {
    font-size: 1.45rem;
  }

  .appearance {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .article-header h1 {
    font-size: 2.55rem;
  }

  .article-header {
    padding: 3.6rem 0 3rem;
  }

  .contact-form {
    padding: 1.15rem;
  }

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

  .cta-band {
    display: grid;
  }

  .cta-band .button {
    width: 100%;
  }

  .footer-main,
  .footer-legal {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-main > div:first-child {
    grid-column: auto;
  }

  .utility-main h1 {
    font-size: 2.6rem;
  }
}

@media (max-width: 360px) {
  .brand-name {
    max-width: 10rem;
    white-space: normal;
    line-height: 1.05;
  }

  h1 {
    font-size: 2.3rem;
  }
}

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

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