:root {
  --paper: #f6f1e8;
  --paper-2: #fffaf0;
  --ink: #27231d;
  --muted: #6d6254;
  --line: #ded0bc;
  --soil: #2f2218;
  --clay: #b85b36;
  --green: #29492e;
  --gold: #e0b33c;
  --white: #fffefa;
  --shadow: 0 22px 70px rgba(69, 48, 29, 0.14);
  --radius: 8px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(246, 241, 232, 0.98));
  color: var(--ink);
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  background: rgba(255, 254, 250, 0.86);
  border-bottom: 1px solid rgba(86, 56, 35, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(39, 35, 29, 0.12);
  border-radius: var(--radius);
  object-fit: cover;
}

.brand small {
  color: var(--clay);
  font-size: 0.72em;
}

.combo-brand {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
  line-height: 1;
}

.brand-secondary {
  color: var(--muted);
  font-weight: 800;
}

.brand-divider {
  color: var(--clay);
  font-weight: 900;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.94rem;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-nav a,
.site-footer a {
  text-decoration: none;
}

.header-link {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

.header-action,
.submit-button {
  background: var(--gold);
  color: var(--soil);
}

.button.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(41, 73, 46, 0.18);
}

.button.secondary {
  background: var(--paper-2);
  border-color: var(--line);
  color: var(--soil);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: var(--cms-section-gap, 44px);
  width: min(1180px, calc(100% - 40px));
  margin: var(--cms-hero-top, 58px) auto 0;
  align-items: start;
}

.hero-copy {
  padding-top: var(--cms-hero-copy-top, 54px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.8rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-proof div {
  padding: 18px 22px 18px 0;
}

.hero-proof div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.hero-proof dt {
  font-size: 1.32rem;
  font-weight: 850;
}

.hero-proof dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.lead-form {
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(86, 56, 35, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-head h2 {
  margin-bottom: 20px;
  font-size: 1.55rem;
}

.form-section {
  min-width: 0;
  margin: 0 0 18px;
  padding: 16px 14px 2px;
  border: 1px solid rgba(86, 56, 35, 0.14);
  border-radius: var(--radius);
  background: rgba(246, 241, 232, 0.42);
}

.form-section legend {
  padding: 0 7px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--soil);
  font-size: 0.82rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  margin-bottom: 16px;
  background: #fbf7ef;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
}

.lead-form input,
.lead-form select {
  height: 46px;
  padding: 0 13px;
}

.lead-form textarea {
  min-height: 112px;
  padding: 12px 13px;
  line-height: 1.45;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field-hint {
  margin: -8px 0 16px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.route-preview {
  display: grid;
  gap: 6px;
  margin: 2px 0 16px;
  padding: 13px;
  background: rgba(41, 73, 46, 0.08);
  border: 1px solid rgba(41, 73, 46, 0.18);
  border-radius: var(--radius);
}

.route-preview span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-preview strong {
  color: var(--soil);
  line-height: 1.25;
}

.route-preview p,
.route-preview ul {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.38;
}

.route-preview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  list-style: none;
}

.route-preview li {
  padding: 5px 8px;
  background: var(--white);
  border: 1px solid rgba(41, 73, 46, 0.16);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
}

.submit-button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

.wide-photo,
.request-paths,
.services,
.content-hub,
.steps,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.wide-photo {
  position: relative;
  height: var(--cms-photo-height, 330px);
  margin-top: var(--cms-photo-top, 42px);
  overflow: hidden;
  border: 1px solid rgba(86, 56, 35, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 25px 80px rgba(69, 48, 29, 0.14);
}

.wide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(47, 34, 24, 0.58));
}

.wide-photo figcaption {
  position: absolute;
  z-index: 1;
  bottom: 22px;
  left: 22px;
  max-width: 460px;
  margin: 0;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 850;
}

.request-paths {
  margin-top: 48px;
  padding: 40px 0 18px;
  border-top: 1px solid rgba(86, 56, 35, 0.12);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--cms-card-gap, 14px);
}

.path-grid article {
  display: grid;
  gap: 12px;
  min-height: 238px;
  padding: 22px;
  background: linear-gradient(180deg, var(--paper-2), rgba(255, 254, 250, 0.72));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 45px rgba(69, 48, 29, 0.08);
}

.path-grid span {
  width: max-content;
  padding: 5px 8px;
  background: rgba(184, 91, 54, 0.1);
  border: 1px solid rgba(184, 91, 54, 0.22);
  border-radius: 999px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 900;
}

.path-grid h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.05;
}

.path-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.services,
.content-hub {
  padding: var(--cms-services-top, 84px) 0 54px;
}

.content-hub {
  padding-top: var(--cms-guides-top, 34px);
}

.featured-guides {
  margin-top: 44px;
  padding: 54px 0 66px;
  border-top: 1px solid rgba(86, 56, 35, 0.12);
  border-bottom: 1px solid rgba(86, 56, 35, 0.12);
}

.featured-guides .section-heading {
  margin-bottom: 34px;
}

.featured-guides .section-heading h2 {
  max-width: 760px;
}

.blog-home-link {
  display: inline-flex;
  margin-top: 18px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: var(--cms-section-gap, 34px);
  margin-bottom: 28px;
}

.section-heading h2,
.steps h2 {
  max-width: 660px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  line-height: 0.98;
}

.section-heading p {
  max-width: 390px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--cms-card-gap, 14px);
}

.service-grid article {
  min-height: var(--cms-service-card-min, 190px);
  padding: 18px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-grid h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--cms-card-gap, 16px);
}

.blog-grid article {
  display: grid;
  grid-template-rows: var(--cms-guide-image-height, 220px) 1fr;
  min-height: 100%;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.blog-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-grid article > div {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.blog-grid span {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-grid h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.15;
}

.blog-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.text-link {
  align-self: end;
  color: var(--green);
  font-weight: 850;
  text-decoration: none;
}

.text-link::after {
  content: " ->";
}

.blog-hero,
.blog-layout,
.blog-cta-band,
.post-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 28px;
  align-items: end;
  padding: 58px 0 34px;
}

.blog-hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 6.8vw, 6.5rem);
  line-height: 0.92;
}

.blog-hero p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.blog-topic-panel {
  padding: 22px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.blog-topic-panel h2 {
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.blog-service-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.blog-service-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

.blog-move-panel {
  display: grid;
  gap: 10px;
}

.blog-move-panel a {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
}

.blog-move-panel strong {
  color: var(--soil);
  font-size: 1rem;
}

.blog-move-panel span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.blog-pathway-strip,
.blog-featured {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.blog-pathway-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 0 44px;
}

.blog-pathway-strip article,
.blog-feature-card {
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(44, 31, 20, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-pathway-strip img,
.blog-feature-card img {
  width: 100%;
  height: 224px;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.blog-pathway-strip article:hover,
.blog-feature-card:hover,
.blog-article-card:hover {
  border-color: rgba(189, 112, 54, 0.3);
  box-shadow: 0 26px 80px rgba(44, 31, 20, 0.16);
  transform: translateY(-2px);
}

.blog-pathway-strip article:hover img,
.blog-feature-card:hover img,
.blog-article-card:hover img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.025);
}

.blog-pathway-strip article > div,
.blog-feature-card > div {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.blog-pathway-strip span,
.blog-feature-card span {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-pathway-strip h2,
.blog-feature-card h3 {
  margin: 0;
  line-height: 1.08;
}

.blog-pathway-strip h2 {
  font-size: 1.48rem;
}

.blog-feature-card h3 {
  font-size: 1.32rem;
}

.blog-pathway-strip p,
.blog-feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.blog-featured {
  padding: 44px 0;
  border-top: 1px solid rgba(86, 56, 35, 0.12);
}

.blog-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.blog-count {
  margin: 12px 0 16px;
  color: var(--muted);
  font-weight: 750;
}

.blog-filter-list {
  display: grid;
  gap: 8px;
}

.blog-filter-list button {
  min-height: 40px;
  padding: 0 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--green);
  cursor: pointer;
  font-weight: 850;
  text-align: left;
}

.blog-filter-list button.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.blog-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 26px 0 54px;
  border-top: 1px solid rgba(86, 56, 35, 0.12);
}

.blog-layout > div:first-child {
  position: sticky;
  top: 96px;
}

.blog-layout h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  line-height: 1;
}

.blog-list {
  display: grid;
  gap: 14px;
}

.blog-article-card {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  min-height: 210px;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(44, 31, 20, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-article-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.blog-article-card > div {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.blog-article-card span,
.post-breadcrumb,
.post-breadcrumb a {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-article-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.12;
}

.blog-article-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.blog-cta-band,
.post-request-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 30px;
  background: var(--soil);
  border-radius: var(--radius);
  color: var(--white);
}

.blog-cta-band {
  margin-bottom: 34px;
}

.blog-cta-band .eyebrow,
.post-request-panel .eyebrow {
  color: #f4c95f;
}

.blog-cta-band h2,
.post-request-panel h2 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.blog-cta-band p,
.post-request-panel p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 254, 250, 0.72);
  line-height: 1.6;
}

.post-shell {
  padding: 38px 0 50px;
}

.post-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.post-breadcrumb a {
  text-decoration: none;
}

.post-hero {
  max-width: 900px;
}

.post-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.94;
}

.post-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.62;
}

.post-image {
  aspect-ratio: 16 / 9;
  min-height: 260px;
  margin: 30px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.post-content {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 26px;
}

.post-content section:not(.post-request-panel) {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(86, 56, 35, 0.14);
}

.post-content h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.post-content p,
.post-content li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.post-content ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0;
}

.post-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.post-content th,
.post-content td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-align: left;
  vertical-align: top;
}

.post-content th {
  color: var(--soil);
  font-size: 0.82rem;
  font-weight: 900;
}

.post-request-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 6px;
}

.steps {
  padding: var(--cms-steps-padding, 54px);
  background: var(--soil);
  border-radius: var(--radius);
  color: var(--white);
}

.steps .eyebrow {
  color: #f4c95f;
}

.steps h2 {
  max-width: 860px;
  margin-bottom: 34px;
}

.steps ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 254, 250, 0.18);
}

.steps strong {
  font-size: 1.18rem;
}

.steps span {
  color: rgba(255, 254, 250, 0.72);
  line-height: 1.5;
}

.engine {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  margin: var(--cms-engine-top, 24px) auto 0;
  padding: 34px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.engine h2 {
  max-width: 680px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.engine p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.engine-actions {
  display: grid;
  gap: 10px;
  min-width: 210px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 34px 0 44px;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer > a {
  color: var(--green);
  font-weight: 850;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  max-width: min(360px, calc(100vw - 40px));
  padding: 15px 16px;
  background: var(--soil);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--white);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(224, 179, 60, 0.72);
  outline-offset: 3px;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .blog-hero,
  .blog-layout,
  .blog-cta-band,
  .post-request-panel {
    grid-template-columns: 1fr;
  }

  .blog-layout > div:first-child {
    position: static;
  }

  .blog-pathway-strip,
  .blog-featured-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 16px;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 14px;
  }

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

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

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

  .steps ol {
    grid-template-columns: 1fr;
  }

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

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

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

  .blog-article-card img {
    height: 230px;
  }
}

@media (max-width: 640px) {
  .site-header,
    .hero,
    .blog-hero,
    .blog-layout,
    .blog-cta-band,
    .blog-pathway-strip,
    .blog-featured,
    .post-shell,
    .wide-photo,
    .request-paths,
    .services,
    .content-hub,
    .steps,
    .engine,
    .site-footer {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(3.15rem, 14vw, 4.8rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-proof,
  .form-row,
  .service-grid,
  .path-grid,
  .engine-actions,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .header-actions {
    gap: 8px;
  }

  .header-link {
    display: none;
  }

  .hero-proof div,
  .hero-proof div + div {
    padding: 14px 0;
    border-left: 0;
  }

  .hero-proof div + div {
    border-top: 1px solid var(--line);
  }

  .lead-form,
  .steps,
  .blog-topic-panel,
  .blog-cta-band,
  .post-request-panel {
    padding: 20px;
  }

  .blog-service-links,
  .blog-cta-actions,
  .post-request-panel {
    grid-template-columns: 1fr;
  }

  .blog-cta-actions {
    justify-content: stretch;
  }

  .blog-cta-actions .button {
    width: 100%;
  }

  .service-grid article {
    min-height: 0;
  }

  .wide-photo {
    height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
