:root {
  --ink: #111715;
  --muted: #61706b;
  --line: #dbe2df;
  --paper: #ffffff;
  --soft: #f4f6f4;
  --asphalt: #10201d;
  --green: #0f4b3f;
  --green-dark: #092e29;
  --orange: #f35b12;
  --orange-dark: #cf4306;
  --shadow: 0 18px 50px rgba(13, 30, 27, 0.13);
  --radius: 8px;
  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;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
iframe {
  max-width: 100%;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 68px;
  padding: 8px max(20px, calc((100vw - 1250px) / 2));
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(219, 226, 223, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 244px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

.brand-mark svg {
  width: 46px;
  height: 46px;
  overflow: visible;
}

.mark-arc {
  fill: none;
  stroke: var(--orange);
  stroke-width: 7;
  stroke-linecap: round;
}

.mark-pin {
  fill: #202423;
}

.mark-panel {
  fill: #f4f5f3;
}

.mark-letter {
  fill: var(--orange);
}

.brand strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0;
}

.brand strong span {
  color: var(--orange);
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: #182320;
  font-size: 0.9rem;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.login-link {
  font-weight: 700;
}

.nav-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
}

.btn-primary {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  color: var(--green-dark);
  background: #fff;
  border-color: var(--line);
}

.btn-dark {
  color: #fff;
  background: var(--green-dark);
}

.btn-small {
  min-height: 38px;
  padding-inline: 16px;
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--asphalt);
}

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

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

.hero-shade {
  background: linear-gradient(90deg, rgba(6, 16, 14, 0.9), rgba(6, 16, 14, 0.5) 44%, rgba(6, 16, 14, 0.08));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.7fr);
  gap: 32px;
  align-items: end;
  padding: 72px 0 48px;
}

.hero-copy {
  color: #fff;
  padding-bottom: 46px;
}

.hero-copy h1,
.inner-hero h1,
.article-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy p,
.inner-hero p,
.article-hero p {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  color: rgba(255, 255, 255, 0.9);
}

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

.search-panel {
  padding: 22px;
  background: rgba(11, 31, 28, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.search-panel h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 1.35rem;
}

.search-panel label,
.filter-panel label,
.lead-form label,
.calculator-card label {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
  color: #dce8e4;
  font-size: 0.85rem;
  font-weight: 800;
}

.search-panel input,
.search-panel select,
.filter-panel input,
.filter-panel select,
.lead-form input,
.calculator-card input,
.newsletter input,
.editor-panel input,
.editor-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  font-size: 0.94rem;
}

.search-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.quick-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.path-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 4px 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 28px rgba(13, 30, 27, 0.08);
}

.path-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  height: 52px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.path-card strong {
  font-size: 1rem;
}

.path-card span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 78px 0;
}

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

.section-head,
.two-col,
.split-section,
.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 44px;
  align-items: start;
}

.section-head {
  grid-template-columns: 1fr auto;
  align-items: end;
  padding-bottom: 24px;
}

.section-label {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section h2,
.inner-hero h1 + p + h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3.1vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section p {
  color: var(--muted);
  font-size: 1.04rem;
}

.text-link {
  color: var(--orange);
  font-weight: 900;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.stat-row div {
  padding: 16px;
  border-left: 4px solid var(--orange);
  background: var(--soft);
}

.stat-row strong {
  display: block;
  font-size: 1.4rem;
}

.stat-row span {
  color: var(--muted);
  font-size: 0.86rem;
}

.video-card,
.lead-form,
.calculator-card,
.filter-panel,
.needs-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.video-embed {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: var(--radius);
  overflow: hidden;
}

.video-embed:empty::before {
  content: "Video";
  color: rgba(255, 255, 255, 0.7);
  font-weight: 900;
}

.video-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-fallback {
  display: grid;
  gap: 4px;
  padding-top: 16px;
}

.video-fallback span {
  color: var(--muted);
}

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

.article-grid-wide {
  grid-template-columns: repeat(3, 1fr);
}

.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.article-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.article-card div {
  padding: 16px;
}

.article-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.18;
}

.article-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-card small {
  color: #6a7773;
  font-weight: 700;
}

.state-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.state-list a {
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.state-list a:last-child {
  border-bottom: 0;
}

.state-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.support-strip {
  padding: 28px 0;
  background: var(--green-dark);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.support-grid a {
  display: grid;
  gap: 5px;
  padding: 22px;
  color: #fff;
  background: var(--green-dark);
}

.support-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.inner-hero {
  padding: 92px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9, 46, 41, 0.96), rgba(9, 46, 41, 0.72)),
    url("https://images.unsplash.com/photo-1587293852726-70cdb56c2866?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.inner-hero p {
  color: rgba(255, 255, 255, 0.84);
}

.booking-shell {
  grid-template-columns: 310px 1fr;
}

.filter-panel label,
.lead-form label,
.calculator-card label {
  color: var(--ink);
}

.filter-panel .check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-panel .check input {
  width: auto;
}

.results-panel {
  display: grid;
  gap: 14px;
}

.result-row {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.result-thumb {
  width: 100%;
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.result-row h2 {
  margin: 0 0 5px;
  font-size: 1.2rem;
}

.result-row p {
  margin: 0 0 6px;
  color: var(--muted);
}

.result-row span {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 800;
}

.process-grid,
.resource-grid,
.state-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

.process-card,
.resource-card,
.guide-card,
.service-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.process-card span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-weight: 900;
}

.process-card h2,
.resource-card h2,
.guide-card h2,
.needs-card h2,
.lead-form h2,
.calculator-card h2,
.filter-panel h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
}

.service-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

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

.service-list span {
  color: var(--muted);
}

.calculator-card p {
  padding: 16px;
  color: #fff;
  background: var(--green-dark);
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 900;
}

.article-page {
  background: #fff;
}

.article-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--green-dark);
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 23, 20, 0.92), rgba(8, 23, 20, 0.18));
}

.article-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}

.crumb {
  display: inline-block;
  margin-bottom: 16px;
  color: #ffd6c4;
  font-weight: 900;
}

.article-hero span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 56px;
  padding: 70px 0;
}

.article-body {
  display: grid;
  gap: 32px;
}

.article-body h2 {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1.12;
}

.article-body p {
  margin: 0;
  color: #3f4e4a;
  font-size: 1.12rem;
}

.article-cta {
  padding: 24px;
  color: #fff;
  background: var(--green-dark);
  border-radius: var(--radius);
  font-size: 1.2rem;
  font-weight: 900;
}

.source-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.source-panel h2 {
  margin: 0;
  font-size: 1.1rem;
}

.source-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.source-panel a {
  color: var(--green);
  font-weight: 800;
}

.article-sidebar {
  position: sticky;
  top: 94px;
  align-self: start;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-sidebar h2 {
  margin: 0;
  font-size: 1.2rem;
}

.article-sidebar a {
  color: var(--green);
  font-weight: 800;
}

.needs-card ul {
  display: grid;
  gap: 12px;
  padding-left: 18px;
}

.site-footer {
  padding-top: 40px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 0.7fr 1.2fr;
  gap: 32px;
}

.footer-grid h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin: 7px 0;
  color: #30413d;
  font-weight: 700;
}

.newsletter p {
  margin: 0 0 12px;
  color: var(--muted);
}

.newsletter div {
  display: grid;
  grid-template-columns: 1fr auto;
}

.newsletter button {
  border: 0;
  padding: 0 16px;
  color: #fff;
  background: var(--orange);
  border-radius: 0 6px 6px 0;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.editor-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: none;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  box-shadow: var(--shadow);
  font-weight: 900;
  cursor: pointer;
}

body.editor-available .editor-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.editor-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  display: none;
  width: min(420px, 100vw);
  height: 100vh;
  padding: 18px;
  background: #fff;
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 160ms ease;
  overflow-y: auto;
}

body.editor-available .editor-panel {
  display: block;
}

.editor-panel.is-open {
  transform: translateX(0);
}

.editor-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.editor-head span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.editor-head button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
}

.editor-empty {
  padding: 22px 0;
  color: var(--muted);
}

.editor-form {
  display: grid;
  gap: 12px;
  padding: 18px 0;
}

.editor-form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

.editor-actions,
.editor-export {
  display: grid;
  gap: 10px;
}

.editor-export {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.editor-export p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.editor-selected {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.editor-active [data-editable] {
  cursor: pointer;
}

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

  .nav-toggle {
    display: inline-flex;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    font-weight: 900;
  }

  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    justify-content: stretch;
    gap: 10px;
    padding: 12px 0;
  }

  .hero-grid,
  .section-head,
  .two-col,
  .split-section,
  .booking-shell,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 130px;
  }

  .search-panel {
    max-width: 620px;
  }

  .quick-paths,
  .article-grid,
  .article-grid-wide,
  .support-grid,
  .process-grid,
  .resource-grid,
  .state-guide-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .result-row {
    grid-template-columns: 130px 1fr;
  }

  .result-row .btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-grid {
    padding: 120px 0 34px;
  }

  .hero-copy {
    padding-bottom: 10px;
  }

  .quick-paths,
  .article-grid,
  .article-grid-wide,
  .support-grid,
  .process-grid,
  .resource-grid,
  .state-guide-grid,
  .footer-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

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

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

  .editor-toggle {
    right: 12px;
    bottom: 12px;
    min-height: 40px;
    padding-inline: 14px;
  }
}

body[data-page="home"] .site-header {
  min-height: 66px;
}

.brand {
  min-width: 280px;
}

.brand strong {
  font-size: 1.5rem;
  letter-spacing: 0;
}

.brand small {
  color: #202927;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.site-nav a,
.login-link {
  white-space: nowrap;
}

.hero {
  min-height: 424px;
  align-items: stretch;
}

.hero-media img {
  object-position: center 55%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 11, 10, 0.82), rgba(4, 11, 10, 0.45) 42%, rgba(4, 11, 10, 0.12) 72%),
    linear-gradient(0deg, rgba(6, 19, 17, 0.62), rgba(6, 19, 17, 0.02) 48%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 424px;
  padding: 24px 0 10px;
}

.hero-copy {
  max-width: 650px;
  padding-bottom: 0;
}

.hero-copy h1 {
  max-width: 650px;
  font-size: clamp(2.85rem, 3.25vw, 3.35rem);
  line-height: 1.02;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 630px;
  margin-top: 14px;
  font-size: clamp(1.05rem, 1.38vw, 1.22rem);
  line-height: 1.22;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
  color: #fff;
}

.hero-benefits span {
  position: relative;
  display: grid;
  gap: 1px;
  width: 152px;
  min-width: 0;
  padding-left: 38px;
}

.hero-benefits span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 30px;
  height: 30px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.hero-benefits span:first-child::before {
  border-radius: 9px 9px 13px 13px;
}

.hero-benefits span:nth-child(3)::before {
  border-radius: 8px;
}

.hero-benefits strong {
  font-size: 0.83rem;
  line-height: 1.15;
}

.hero-benefits small {
  max-width: 112px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.77rem;
  font-weight: 700;
  line-height: 1.18;
}

.search-wide {
  width: min(100%, 1180px);
  margin-top: 20px;
  padding: 14px 20px 12px;
  background: rgba(12, 31, 29, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.search-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.search-title-row h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
}

.search-title-row span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.search-fields {
  display: grid;
  grid-template-columns: minmax(220px, 1.58fr) minmax(170px, 1fr) minmax(150px, 0.78fr) minmax(130px, 0.64fr) minmax(160px, 0.78fr);
  gap: 10px;
  align-items: end;
}

.search-wide label {
  margin: 0;
  gap: 6px;
  color: #fff;
  font-size: 0.82rem;
}

.search-wide input,
.search-wide select {
  min-height: 40px;
  padding: 0 13px;
  border: 0;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(9, 46, 41, 0.15);
}

.search-wide .btn {
  min-height: 40px;
  border-radius: 4px;
}

.search-note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
}

.quick-paths {
  margin-top: 12px;
  gap: 12px;
}

.path-card {
  grid-template-columns: 52px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  gap: 4px 10px;
  min-height: 72px;
  padding: 12px 12px 12px 14px;
  box-shadow: 0 6px 20px rgba(13, 30, 27, 0.08);
}

.path-card:first-child {
  background: linear-gradient(90deg, #fff7f1, #fff);
  border-color: #ffd5bd;
}

.path-icon {
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--green-dark);
}

.path-icon-0 {
  background: var(--orange);
}

.path-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.path-card strong {
  align-self: end;
  font-size: 0.9rem;
  line-height: 1.05;
}

.path-card span:last-of-type {
  align-self: start;
  color: #16221f;
  font-size: 0.78rem;
  line-height: 1.25;
}

.path-card em {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  min-width: 116px;
  padding: 10px 14px;
  color: #fff;
  background: var(--orange);
  border-radius: 4px;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

.path-card:nth-child(n + 2) em {
  background: var(--green-dark);
}

.content-hub {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(320px, 0.9fr);
  gap: 34px;
  padding: 16px 0 32px;
}

.latest-column,
.state-panel {
  min-width: 0;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 8px;
}

.section-title-row h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-title-row .text-link {
  font-size: 0.82rem;
}

.compact-articles {
  gap: 12px;
}

.compact-articles .article-card {
  box-shadow: 0 3px 12px rgba(13, 30, 27, 0.06);
}

.compact-articles .article-card-img {
  aspect-ratio: 1.72 / 1;
}

.compact-articles .article-card div {
  padding: 10px 12px 12px;
}

.compact-articles .article-card span {
  margin-bottom: 5px;
  font-size: 0.62rem;
}

.compact-articles .article-card h3 {
  display: -webkit-box;
  font-size: 0.93rem;
  line-height: 1.08;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.compact-articles .article-card p {
  display: -webkit-box;
  font-size: 0.76rem;
  line-height: 1.3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.compact-articles .article-card small {
  font-size: 0.72rem;
}

.state-panel {
  padding-top: 0;
}

.compact-state-list a {
  position: relative;
  padding: 10px 42px 10px 16px;
}

.compact-state-list a::after {
  content: ">";
  position: absolute;
  right: 16px;
  top: 50%;
  color: #10201d;
  font-weight: 900;
  transform: translateY(-50%);
}

.compact-state-list strong {
  font-size: 0.9rem;
}

.compact-state-list span {
  font-size: 0.75rem;
  line-height: 1.22;
}

.support-strip {
  padding: 0 0 24px;
  background: #fff;
}

.support-grid {
  gap: 0;
  overflow: hidden;
  background: var(--green-dark);
  border-radius: 7px;
}

.support-grid a {
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 14px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
  background: transparent;
}

.support-grid a:last-child {
  border-right: 0;
}

.support-grid .support-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
}

.support-grid .support-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-grid strong,
.support-grid small,
.support-grid b {
  display: block;
}

.support-grid strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.support-grid small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  line-height: 1.25;
}

.support-grid b {
  margin-top: 3px;
  color: #fff;
  font-size: 0.74rem;
}

.footer-brand {
  min-width: 0;
}

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

  .brand {
    min-width: 248px;
  }

  .site-nav {
    gap: 18px;
    font-size: 0.84rem;
  }

  .search-fields {
    grid-template-columns: 1fr 1fr;
  }

  .search-fields .btn {
    grid-column: 1 / -1;
  }

  .path-card {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .path-card em {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: start;
  }

  .content-hub {
    grid-template-columns: 1fr;
  }
}

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

  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: 650px;
    padding-top: 92px;
  }

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

  .quick-paths,
  .article-grid,
  .article-grid-wide,
  .support-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .support-grid a:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 1.1rem;
  }

  .brand-mark,
  .brand-mark svg {
    width: 40px;
    height: 40px;
  }

  .hero-layout {
    min-height: auto;
    padding: 84px 0 18px;
  }

  .hero-media img {
    object-position: 72% center;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 14vw, 3.45rem);
  }

  .hero-copy p {
    font-size: 1.04rem;
  }

  .hero-benefits {
    display: grid;
    gap: 12px;
  }

  .search-wide {
    margin-top: 18px;
    padding: 14px;
  }

  .search-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .search-fields,
  .quick-paths,
  .article-grid,
  .article-grid-wide,
  .support-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .path-card {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .path-card em {
    width: 100%;
  }

  .content-hub {
    padding-top: 20px;
  }

  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .support-grid a,
  .support-grid a:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  }

  .support-grid a:last-child {
    border-bottom: 0;
  }
}
