:root {
  --ink: #15332b;
  --ink-deep: #0b211c;
  --forest: #1f5143;
  --sage: #dce8dc;
  --sage-soft: #eef4eb;
  --cream: #f7f3ea;
  --paper: #fffdf8;
  --orange: #ed6a3a;
  --orange-dark: #c94c20;
  --line: rgba(21, 51, 43, 0.16);
  --muted: #64736d;
  --shadow: 0 24px 70px rgba(14, 44, 36, 0.12);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 38px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--orange-dark);
}

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

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

:focus-visible {
  outline: 3px solid rgba(237, 106, 58, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  color: white;
  background: var(--ink-deep);
}

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

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

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(15, 46, 38, 0.05);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-deep);
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -0.035em;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50% 50% 50% 15%;
  color: white;
  background: var(--ink);
  transform: rotate(-7deg);
}

.brand-mark svg {
  width: 21px;
  transform: rotate(7deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 10px;
  color: #304941;
  text-decoration: none;
  font-size: 0.89rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink-deep);
  background: var(--sage-soft);
}

.main-nav .nav-cta {
  margin-left: 8px;
  padding-inline: 17px;
  color: white;
  background: var(--ink);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta[aria-current="page"] {
  color: white;
  background: var(--orange-dark);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span {
  margin-block: 4px;
}

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

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.4rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.15rem, 4.8vw, 4.3rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

p {
  margin: 0 0 1.35em;
}

.lead {
  max-width: 760px;
  color: #395049;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.65;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: white;
  background: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  color: white;
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
}

.button.secondary:hover {
  color: white;
  background: var(--ink);
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
}

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

.text-link::after {
  content: "\2192";
  transition: transform 180ms ease;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 88px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -250px;
  right: -220px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: var(--sage-soft);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(38px, 6vw, 88px);
}

.hero-copy h1 {
  max-width: 760px;
}

.hero-copy h1 em {
  color: var(--orange-dark);
  font-style: italic;
}

.hero-media {
  position: relative;
  min-height: 590px;
}

.hero-media::before {
  position: absolute;
  z-index: -1;
  inset: 44px -30px -30px 30px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  content: "";
  transform: rotate(2deg);
}

.hero-media img {
  width: 100%;
  height: 590px;
  border-radius: 170px 22px 170px 22px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-note {
  position: absolute;
  right: -24px;
  bottom: 48px;
  width: min(290px, 72%);
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 18px;
  color: white;
  background: rgba(14, 47, 39, 0.91);
  box-shadow: 0 18px 50px rgba(5, 25, 20, 0.2);
  backdrop-filter: blur(14px);
}

.hero-note strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1.05rem;
}

.hero-note span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  line-height: 1.45;
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: var(--cream);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-number {
  color: var(--orange-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.proof-item span:last-child {
  font-size: 0.85rem;
  font-weight: 750;
  line-height: 1.35;
}

.section {
  padding: 112px 0;
}

.section-sm {
  padding: 72px 0;
}

.section-dark {
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink-deep);
}

.section-dark h2,
.section-dark h3 {
  color: white;
}

.section-dark .eyebrow {
  color: #ff906b;
}

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

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

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

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(44px, 8vw, 110px);
}

.split.reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.split.reverse > .sticky-heading {
  order: 2;
}

.split.reverse > :not(.sticky-heading) {
  order: 1;
}

.sticky-heading {
  position: sticky;
  top: 130px;
}

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

.card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  box-shadow: 0 20px 50px rgba(15, 55, 44, 0.09);
  transform: translateY(-5px);
}

.card-number,
.icon-box {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 15px;
  color: white;
  background: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.card .text-link {
  margin-top: 8px;
  font-size: 0.9rem;
}

.card-featured {
  color: rgba(255, 255, 255, 0.75);
  background: var(--forest);
}

.card-featured h3,
.card-featured .text-link {
  color: white;
}

.card-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.card-featured .card-number {
  color: var(--ink-deep);
  background: #b8d3b9;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  position: relative;
  padding: 4px 0 34px 72px;
  counter-increment: steps;
}

.process-list li:not(:last-child)::after {
  position: absolute;
  top: 47px;
  bottom: 5px;
  left: 24px;
  width: 1px;
  background: var(--line);
  content: "";
}

.process-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--orange-dark);
  background: var(--paper);
  content: counter(steps, decimal-leading-zero);
  font-size: 0.78rem;
  font-weight: 850;
}

.process-list h3 {
  margin-bottom: 9px;
  font-size: 1.5rem;
}

.process-list p {
  color: var(--muted);
}

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

.quote-block {
  position: relative;
  padding: clamp(34px, 6vw, 72px);
  border-radius: var(--radius-lg);
  color: white;
  background: var(--forest);
}

.quote-block blockquote {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.7rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.quote-block h2 {
  max-width: 900px;
  margin-bottom: 22px;
  color: white;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.quote-block h2 + p {
  max-width: 780px;
  margin-top: 0;
  color: #d7e5dd;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7;
  text-transform: none;
}

.quote-block p {
  margin: 28px 0 0;
  color: #bcd2c7;
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.check-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  padding: clamp(28px, 5vw, 62px);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink-deep);
  box-shadow: var(--shadow);
}

.check-panel h2,
.check-panel h3 {
  color: white;
}

.check-questions {
  display: grid;
  gap: 12px;
}

.check-option {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: start;
  gap: 13px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  cursor: pointer;
}

.check-option:hover {
  background: rgba(255, 255, 255, 0.05);
}

.check-option input {
  width: 21px;
  height: 21px;
  margin-top: 2px;
  accent-color: var(--orange);
}

.check-option strong {
  display: block;
  color: white;
}

.check-option small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
}

.score-box {
  display: none;
  margin-top: 20px;
  padding: 20px;
  border-radius: 14px;
  color: var(--ink-deep);
  background: #d7e8d4;
}

.score-box.visible {
  display: block;
}

.score-box strong {
  display: block;
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.article-hero {
  padding: 78px 0 72px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, var(--cream), var(--sage-soft));
}

.article-hero h1 {
  max-width: 960px;
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.article-hero .lead {
  max-width: 850px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb span:not(:last-child)::after,
.breadcrumb a::after {
  margin-left: 7px;
  color: #9aa59f;
  content: "/";
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
}

.article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: center;
  gap: 72px;
}

.toc {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.toc strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.4;
}

.article-body > *:first-child {
  margin-top: 0;
}

.article-body h2 {
  margin-top: 1.45em;
  margin-bottom: 0.5em;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.article-body h3 {
  margin-top: 1.7em;
  margin-bottom: 0.55em;
  font-size: 1.55rem;
}

.article-body p,
.article-body li {
  color: #344b44;
}

.article-body a {
  color: var(--orange-dark);
  font-weight: 700;
}

.article-body ul,
.article-body ol {
  margin: 1.4em 0;
  padding-left: 1.25em;
}

.article-body li {
  margin-bottom: 0.7em;
  padding-left: 0.25em;
}

.info-box {
  margin: 34px 0;
  padding: 26px 28px;
  border-left: 4px solid var(--orange);
  border-radius: 0 16px 16px 0;
  background: var(--cream);
}

.info-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-deep);
}

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

.comparison {
  width: 100%;
  margin: 34px 0;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comparison th,
.comparison td {
  padding: 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  color: var(--ink-deep);
  background: var(--sage-soft);
}

.comparison tr:last-child td {
  border-bottom: 0;
}

.related {
  padding: 78px 0;
  background: var(--cream);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.related-card {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.related-card:hover {
  color: var(--ink);
  border-color: rgba(237, 106, 58, 0.5);
  transform: translateY(-4px);
}

.related-card small {
  display: block;
  margin-bottom: 20px;
  color: var(--orange-dark);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.related-card h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.related-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(42px, 8vw, 100px);
}

.contact-details {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.contact-details li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-form {
  padding: clamp(26px, 5vw, 48px);
  border-radius: var(--radius-lg);
  background: var(--sage-soft);
}

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

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--paper);
}

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

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #dbead8;
  font-size: 0.86rem;
}

.form-status.visible {
  display: block;
}

.site-footer {
  padding: 76px 0 28px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--ink-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
}

.footer-intro {
  max-width: 380px;
}

.footer-intro .brand {
  margin-bottom: 20px;
  color: white;
}

.footer-intro p {
  font-size: 0.88rem;
}

.footer-column h2 {
  margin: 7px 0 18px;
  color: white;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-column a:hover {
  color: white;
}

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

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

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

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

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

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

@media (max-width: 1060px) {
  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    inset: 86px 0 auto;
    max-height: calc(100vh - 86px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 24px 20px 34px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 30px 50px rgba(10, 35, 28, 0.14);
  }

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

  .main-nav a {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .main-nav .nav-cta {
    margin: 8px 0 0;
    text-align: center;
  }

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

  .hero-copy {
    max-width: 800px;
  }

  .hero-media {
    min-height: 500px;
  }

  .hero-media img {
    height: 500px;
    border-radius: 130px 20px 130px 20px;
  }

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .cards,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .toc {
    position: static;
  }

  .toc a {
    display: inline-block;
    margin-right: 14px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 30px), var(--max));
  }

  .nav-wrap {
    min-height: 74px;
  }

  .main-nav {
    inset: 74px 0 auto;
    max-height: calc(100vh - 74px);
  }

  .hero {
    padding: 52px 0 72px;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }

  .eyebrow::before {
    width: 20px;
    flex: 0 0 20px;
    margin-top: 0.7em;
  }

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

  .hero-media img {
    border-radius: 90px 18px 90px 18px;
  }

  .hero-media::before {
    inset: 24px -8px -18px 18px;
  }

  .hero-note {
    right: 8px;
    bottom: 22px;
  }

  .section {
    padding: 78px 0;
  }

  .section-sm {
    padding: 54px 0;
  }

  .split,
  .split.reverse,
  .check-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }

  .split.reverse > .sticky-heading,
  .split.reverse > :not(.sticky-heading) {
    order: initial;
  }

  .cards,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .card-number,
  .icon-box {
    margin-bottom: 28px;
  }

  .article-hero {
    padding: 48px 0 54px;
  }

  .article-meta {
    display: grid;
    gap: 4px;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

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

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

@media (max-width: 600px) {
  h1 {
    font-size: 2.75rem;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

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

  .proof-item,
  .proof-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .hero-media,
  .hero-media img {
    min-height: 330px;
    height: 330px;
  }

  .button-row,
  .button {
    width: 100%;
  }

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

  .footer-intro {
    grid-column: auto;
  }
}
