:root {
  --ink: #11130f;
  --charcoal: #1d2422;
  --forest: #24483b;
  --sage: #7d927f;
  --copper: #b46e3d;
  --cream: #f8f4ec;
  --stone: #e2ddd2;
  --paper: #fffdf8;
  --muted: #686c63;
  --line: rgba(29, 36, 34, 0.14);
  --shadow: 0 24px 80px rgba(17, 19, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, border-color 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  min-height: 68px;
  background: rgba(17, 19, 15, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  grid-template-columns: 48px auto;
  align-items: center;
  gap: 12px;
  min-width: 236px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.1;
  word-break: keep-all;
  overflow-wrap: normal;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a,
.nav-trigger {
  transition: color 160ms ease;
}

.site-nav a:hover,
.nav-trigger:hover {
  color: #fff;
}

.nav-item {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.mega-menu {
  position: fixed;
  top: 72px;
  left: 50%;
  z-index: 30;
  width: min(1120px, calc(100vw - 36px));
  padding: 22px;
  color: var(--charcoal);
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu,
.nav-item.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.services-menu {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 2fr);
  gap: 22px;
}

.mega-feature {
  display: grid;
  align-content: end;
  min-height: 270px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(0deg, rgba(17, 19, 15, 0.84), rgba(17, 19, 15, 0.32)),
    url("assets/transparency-builders-hero.png") center / cover;
}

.mega-feature span {
  color: #e8b98c;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mega-feature strong {
  display: block;
  margin-top: 12px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.12;
}

.mega-feature a {
  width: fit-content;
  margin-top: 22px;
  color: #fff;
  border-bottom: 2px solid var(--copper);
}

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

.mega-columns.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mega-columns div,
.compact-menu {
  background: #fff;
  border: 1px solid var(--line);
}

.mega-columns div {
  padding: 18px;
}

.mega-columns h3 {
  margin-bottom: 14px;
  color: var(--forest);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.mega-columns a,
.compact-menu a {
  display: block;
  padding: 10px 0;
  color: var(--charcoal);
  border-top: 1px solid rgba(29, 36, 34, 0.09);
  font-weight: 700;
}

.mega-columns a:hover,
.compact-menu a:hover {
  color: var(--copper);
}

.compact-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  right: auto;
  width: min(360px, calc(100vw - 36px));
  padding: 14px 20px;
  transform: translateY(8px);
}

.nav-item:hover .compact-menu,
.nav-item:focus-within .compact-menu,
.nav-item.is-open .compact-menu {
  transform: translateY(0);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: transparent;
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/transparency-builders-hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 8, 0.88) 0%, rgba(7, 10, 8, 0.64) 42%, rgba(7, 10, 8, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 10, 8, 0.84) 0%, rgba(7, 10, 8, 0.12) 48%, rgba(7, 10, 8, 0.32) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 146px 0 38px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e8b98c;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  max-width: 900px;
  font-size: clamp(4rem, 10vw, 9.8rem);
}

#hero-title {
  text-wrap: balance;
}

h2 {
  max-width: 820px;
  font-size: clamp(2.2rem, 5vw, 5.25rem);
}

h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: 1.05rem;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--copper);
  color: #fff;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 920px;
  margin: 62px 0 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-strip div {
  padding: 20px;
  background: rgba(17, 19, 15, 0.42);
  backdrop-filter: blur(10px);
}

.trust-strip dt {
  font-weight: 800;
  font-size: 1.1rem;
}

.trust-strip dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.intro-band {
  background: var(--forest);
  color: #fff;
}

.intro-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 34px 0;
}

.intro-inner p {
  max-width: 880px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.intro-inner a {
  color: #fff;
  font-weight: 800;
  border-bottom: 2px solid var(--copper);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 128px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 2fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 46px;
}

.section-heading.narrow {
  display: block;
  max-width: 790px;
}

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

.service-card {
  display: block;
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 34px rgba(17, 19, 15, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(180, 110, 61, 0.38);
  box-shadow: 0 18px 44px rgba(17, 19, 15, 0.09);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 54px;
  background: #eef2ec;
  color: var(--forest);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  padding: clamp(74px, 10vw, 128px) max(18px, calc((100vw - 1120px) / 2));
  background: var(--cream);
}

.proof-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.proof-panel {
  display: grid;
  border-top: 1px solid var(--line);
}

.proof-panel div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 6px 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.proof-panel span {
  grid-row: span 2;
  color: var(--copper);
  font-weight: 800;
}

.proof-panel strong {
  color: var(--charcoal);
  font-size: 1.05rem;
}

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

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: var(--line);
  border: 1px solid var(--line);
}

.timeline article {
  min-height: 260px;
  padding: 26px;
  background: var(--paper);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 72px;
  background: var(--forest);
  color: #fff;
  font-weight: 800;
}

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

.coverage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(32px, 6vw, 72px);
  align-items: end;
  padding: clamp(74px, 10vw, 128px) max(18px, calc((100vw - 1120px) / 2));
  color: #fff;
  background: linear-gradient(135deg, #18221f, #315445);
}

.coverage p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

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

.county-grid span {
  min-height: 104px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 560px);
  gap: clamp(34px, 7vw, 92px);
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 128px) 0;
}

.contact-section > *,
.contact-copy,
.contact-form {
  min-width: 0;
  max-width: 100%;
}

.contact-copy p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  color: var(--forest);
  font-weight: 800;
}

.contact-details span {
  color: var(--muted);
  font-weight: 600;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: 13px 14px;
  border-radius: 0;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(180, 110, 61, 0.34);
  border-color: var(--copper);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  align-items: start;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: #fff;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer span,
.site-footer small,
.site-footer a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  max-width: 620px;
}

.subpage .site-header {
  background: rgba(17, 19, 15, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.page-hero {
  padding: 162px max(18px, calc((100vw - 1120px) / 2)) 88px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 19, 15, 0.92), rgba(17, 19, 15, 0.74)),
    url("assets/transparency-builders-hero.png") center / cover;
}

.page-hero.compact {
  padding-bottom: 62px;
}

.page-hero h1 {
  max-width: 1030px;
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.button.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

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

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  padding: clamp(74px, 10vw, 120px) max(18px, calc((100vw - 1120px) / 2));
  background: var(--cream);
}

.content-list {
  color: var(--muted);
  font-size: 1.05rem;
}

.content-list p {
  margin: 0;
}

.content-list ul {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.content-list li {
  position: relative;
  padding-left: 26px;
}

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

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

.feature-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.feature-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.visual-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 84px) 0 0;
}

.visual-section + .section,
.visual-section + .deep-section,
.visual-section + .split-section {
  padding-top: clamp(48px, 7vw, 84px);
}

.visual-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}

.visual-copy h2 {
  max-width: 680px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.06;
}

.visual-card {
  margin: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.visual-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.visual-card figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}


.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 48px max(18px, calc((100vw - 1120px) / 2));
  color: #fff;
  background: var(--forest);
}

.cta-band h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--forest);
  font-weight: 800;
  border-bottom: 2px solid var(--copper);
}

.county-grid.light span {
  color: var(--charcoal);
  border-color: var(--line);
  background: #fff;
}

.page-contact {
  padding-top: 72px;
}

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

.resource-list article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
}

.resource-list span {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.resource-list h3 {
  margin-top: 22px;
}

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

.deep-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 110px) 0;
}

.deep-copy {
  max-width: 850px;
}

.deep-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.deep-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.deep-grid article,
.spec-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.deep-grid p,
.spec-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.spec-card strong {
  display: block;
  color: var(--copper);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.comparison-table {
  width: 100%;
  margin-top: 34px;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
}

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

.comparison-table th {
  color: var(--forest);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.faq-list details {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.faq-list summary {
  color: var(--charcoal);
  font-weight: 800;
  cursor: pointer;
}

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

@media (max-width: 980px) {
  .site-header {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    overflow: visible;
  }

  .brand {
    width: min(230px, calc(100vw - 92px));
    flex: 1 1 auto;
    min-width: 0;
    grid-template-columns: 42px auto;
  }

  .brand > span:last-child {
    min-width: 0;
    overflow: hidden;
  }

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

  .brand small {
    display: none;
  }

  .brand strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 0 0;
    z-index: 50;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100vw;
    height: calc(100dvh - 68px);
    max-height: none;
    overflow-y: auto;
    padding: 14px 16px 28px;
    background: #11130f;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    min-height: 48px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.9);
    background: #1d2422;
  }

  .nav-trigger {
    width: 100%;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 16px;
    color: #fff;
    background: #1d2422;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
  }

  .nav-item.is-open .nav-trigger::after {
    transform: rotate(225deg) translate(-2px, -2px);
  }

  .mega-menu,
  .compact-menu {
    position: static;
    display: none;
    width: 100%;
    max-height: none;
    overflow: visible;
    padding: 0;
    margin: 8px 0 10px;
    color: var(--charcoal);
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
  }

  .nav-item.is-open .mega-menu {
    display: block;
  }

  .nav-item:hover .mega-menu,
  .nav-item:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .mega-columns,
  .mega-columns.four {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nav-item.is-open .services-menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mega-feature {
    display: none;
  }

  .mega-columns div,
  .compact-menu {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .mega-columns h3 {
    margin: 12px 0 0;
    padding: 12px 16px 6px;
    color: #e8b98c;
    font-size: 0.78rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mega-columns div:first-child h3 {
    margin-top: 0;
    border-top: 0;
  }

  .mega-columns a,
  .compact-menu a {
    min-height: 46px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.88);
    background: #171c1a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 700;
  }

  .mega-columns a:hover,
  .compact-menu a:hover {
    color: #fff;
  }

  .nav-cta {
    flex: 0 0 auto;
    margin-left: auto;
    justify-self: end;
  }

  .menu-toggle {
    flex: 0 0 44px;
    width: 44px;
    min-width: 44px;
    display: block;
  }

  .hero-media {
    transform: none;
  }

  .section-heading,
  .proof-section,
  .coverage,
  .contact-section,
  .visual-section,
  .split-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .timeline,
  .service-grid.three,
  .feature-grid,
  .resource-list,
  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: 100%;
    padding: 12px 16px;
    gap: 10px;
    overflow: visible;
  }

  .brand {
    width: min(230px, calc(100vw - 92px));
  }

  .brand strong {
    font-size: 13px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .comparison-table,
  .comparison-table thead,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tr {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .comparison-table td {
    border-bottom: 0;
    padding: 8px 16px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    transform: none;
  }

  .hero-content {
    padding-top: 122px;
  }

  h1 {
    font-size: clamp(2.85rem, 13vw, 4.6rem);
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11.5vw, 4.8rem);
  }

  .page-hero h1 {
    font-size: clamp(2.3rem, 10vw, 3.45rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.3rem);
  }

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

  .trust-strip,
  .intro-inner,
  .service-grid,
  .timeline,
  .county-grid,
  .contact-form,
  .service-grid.three,
  .feature-grid,
  .resource-list,
  .deep-grid,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .intro-inner {
    gap: 18px;
  }

  .service-card,
  .timeline article {
    min-height: auto;
  }

  .service-icon,
  .timeline span {
    margin-bottom: 34px;
  }

  .proof-section,
  .coverage {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-form {
    min-width: 0;
    padding: 20px;
  }

  .page-hero {
    padding-top: 128px;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    min-width: 44px;
    justify-self: end;
  }
}

@media (max-width: 340px) {
  .site-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand {
    width: min(210px, calc(100vw - 76px));
    gap: 8px;
  }

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

  .brand strong {
    font-size: 12px;
  }

  .menu-toggle {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10vw, 2.7rem);
  }

  .page-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.35rem);
    line-height: 1.12;
  }

  .contact-section,
  .section,
  .deep-section,
  .hero-content {
    width: calc(100% - 28px);
  }

  .contact-form {
    padding: 16px;
    box-shadow: none;
  }

  .contact-copy h2 {
    font-size: clamp(1.75rem, 8vw, 2.15rem);
  }

  .contact-details {
    font-size: 0.86rem;
  }
}
