:root {
  --ink: #09130c;
  --ink-soft: #101d14;
  --forest: #12331b;
  --forest-deep: #0d2615;
  --green: #188a3a;
  --green-bright: #58b95f;
  --orange: #f59a2f;
  --gold: #f1c35b;
  --paper: #f4f7f4;
  --white: #ffffff;
  --text-dark: #172019;
  --text-light: #f7faf7;
  --muted-dark: #667169;
  --muted-light: #afbbb2;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(23, 32, 25, 0.16);
  --shadow: 0 24px 70px rgba(4, 12, 7, 0.22);
  --font-body: Inter, Arial, sans-serif;
  --font-mono: "JetBrains Mono", Consolas, monospace;
  --shell: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--ink);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.62;
  margin: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

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

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

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

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

.skip-link {
  background: var(--orange);
  color: var(--ink);
  font-weight: 800;
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -80px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.section-shell {
  margin-inline: auto;
  max-width: var(--shell);
  padding-inline: clamp(20px, 5vw, 64px);
  width: 100%;
}

.site-header {
  background: rgba(9, 19, 12, 0.95);
  border-bottom: 1px solid var(--line-dark);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 26px;
  margin-inline: auto;
  max-width: 1360px;
  min-height: 78px;
  padding: 9px clamp(18px, 4vw, 50px);
}

.brand {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.brand img {
  height: 58px;
  object-fit: contain;
  width: 58px;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--muted-light);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  line-height: 1.35;
  max-width: 230px;
  text-transform: uppercase;
}

.primary-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.3vw, 32px);
  margin-left: auto;
}

.primary-nav a {
  color: #d4ddd6;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--gold);
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line-dark);
  cursor: pointer;
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.nav-toggle span {
  background: var(--white);
  display: block;
  height: 2px;
  margin: 4px auto;
  transition: transform 160ms ease, opacity 160ms ease;
  width: 18px;
}

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

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

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

.button {
  align-items: center;
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 4px;
  color: #181006;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1.25;
  min-height: 50px;
  padding: 13px 18px;
  text-align: center;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  outline: none;
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 10px 14px;
}

.header-cta {
  flex: 0 0 auto;
}

.eyebrow {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #147131;
}

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

.hero-media {
  isolation: isolate;
  min-height: calc(100svh - 104px);
  overflow: hidden;
  position: relative;
}

.hero-video {
  cursor: pointer;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  touch-action: manipulation;
  width: 100%;
  z-index: 0;
}

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

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(5, 13, 8, 0.96) 0%, rgba(5, 13, 8, 0.82) 48%, rgba(5, 13, 8, 0.3) 78%, rgba(5, 13, 8, 0.46) 100%),
    linear-gradient(0deg, rgba(6, 17, 10, 0.88) 0%, transparent 38%, rgba(6, 17, 10, 0.2) 100%);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - 104px);
  padding-bottom: 118px;
  padding-top: 76px;
  pointer-events: none;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.75rem, 5.5vw, 5.25rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.99;
  margin-bottom: 24px;
  max-width: 940px;
  text-wrap: balance;
}

.hero-content h1 span {
  color: var(--gold);
  display: block;
}

.hero-subhead {
  color: #e0e8e2;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.68;
  margin-bottom: 28px;
  max-width: 770px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}

.hero-actions a {
  pointer-events: auto;
}

.text-link {
  border-bottom: 1px solid rgba(241, 195, 91, 0.64);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 7px 0;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--gold);
  outline: none;
}

.hero-note {
  color: #bdc8bf;
  font-size: 0.83rem;
  margin: 0;
  max-width: 650px;
}

.video-playback-cue {
  background: rgba(6, 16, 9, 0.88);
  border: 1px solid rgba(245, 154, 47, 0.62);
  border-radius: 4px;
  display: grid;
  gap: 2px;
  padding: 10px 13px;
  pointer-events: none;
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  text-align: right;
  top: 24px;
  z-index: 4;
}

.video-playback-cue[hidden] {
  display: none;
}

.video-playback-cue strong,
.video-playback-cue span {
  font-family: var(--font-mono);
  letter-spacing: 0;
  text-transform: uppercase;
}

.video-playback-cue strong {
  color: var(--white);
  font-size: 0.72rem;
}

.video-playback-cue span {
  color: var(--gold);
  font-size: 0.58rem;
}

.video-sound-control {
  align-items: center;
  background: rgba(6, 16, 9, 0.88);
  border: 1px solid rgba(245, 154, 47, 0.5);
  border-radius: 4px;
  bottom: 78px;
  color: var(--gold);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0;
  min-height: 42px;
  padding: 9px 12px;
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  text-transform: uppercase;
  touch-action: manipulation;
  z-index: 5;
}

.video-sound-control:hover,
.video-sound-control:focus-visible {
  border-color: var(--gold);
  outline: none;
}

.video-sound-indicator {
  background: #9ca69f;
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.video-sound-control[aria-pressed="true"] {
  background: rgba(24, 138, 58, 0.9);
  border-color: rgba(114, 220, 119, 0.72);
  color: var(--white);
}

.video-sound-control[aria-pressed="true"] .video-sound-indicator {
  background: #9af09c;
}

.trust-bar {
  align-items: stretch;
  background: rgba(8, 22, 12, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  left: 0;
  position: absolute;
  right: 0;
  z-index: 3;
}

.trust-bar span {
  align-items: center;
  color: #dbe4dc;
  display: flex;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  justify-content: center;
  min-height: 62px;
  padding: 12px 16px;
  text-align: center;
  text-transform: uppercase;
}

.trust-bar span + span {
  border-left: 1px solid var(--line-dark);
}

.lead-section {
  background: var(--white);
  color: var(--text-dark);
  padding-block: clamp(72px, 8vw, 112px);
}

.lead-layout {
  align-items: start;
  display: grid;
  gap: clamp(48px, 7vw, 92px);
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.lead-intro {
  position: sticky;
  top: 112px;
}

.lead-intro h2,
.section-heading h2,
.final-cta h2 {
  font-size: clamp(2.2rem, 4.25vw, 4.15rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 24px;
  text-wrap: balance;
}

.lead-intro > p:not(.eyebrow) {
  color: var(--muted-dark);
  font-size: 1.04rem;
  max-width: 470px;
}

.check-list {
  border-top: 1px solid var(--line-light);
  list-style: none;
  margin: 30px 0 0;
  padding: 18px 0 0;
}

.check-list li {
  color: #2a4230;
  font-weight: 700;
  padding: 6px 0 6px 24px;
  position: relative;
}

.check-list li::before {
  background: var(--green);
  content: "";
  height: 8px;
  left: 2px;
  position: absolute;
  top: 15px;
  transform: rotate(45deg);
  width: 8px;
}

.lead-form {
  border-left: 1px solid var(--line-light);
  padding-left: clamp(28px, 5vw, 64px);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field > span,
.claim-status legend {
  color: #36443a;
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
}

.field b {
  color: #b84f17;
}

.field input,
.field select {
  background: #f8faf8;
  border: 1px solid #cbd3cc;
  border-radius: 4px;
  color: var(--text-dark);
  min-height: 50px;
  padding: 11px 12px;
  width: 100%;
}

.field input:focus,
.field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(24, 138, 58, 0.12);
  outline: none;
}

.claim-status {
  border: 0;
  margin: 24px 0 0;
  padding: 0;
}

.claim-status legend {
  margin-bottom: 10px;
}

.claim-status label {
  cursor: pointer;
  display: inline-block;
  margin: 0 8px 8px 0;
  position: relative;
}

.claim-status input {
  opacity: 0;
  position: absolute;
}

.claim-status span {
  background: #f4f7f4;
  border: 1px solid #cbd3cc;
  border-radius: 4px;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  justify-content: center;
  min-width: 86px;
  padding: 10px 14px;
}

.claim-status input:checked + span {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

.claim-status input:focus-visible + span {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.form-submit-row {
  align-items: center;
  border-top: 1px solid var(--line-light);
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding-top: 22px;
}

.form-submit-row p {
  color: var(--muted-dark);
  font-size: 0.76rem;
  line-height: 1.5;
  margin: 0;
  max-width: 270px;
}

.form-status {
  color: #12642d;
  font-size: 0.86rem;
  font-weight: 700;
  margin-top: 14px;
  min-height: 1.4em;
}

.section {
  padding-block: clamp(82px, 10vw, 142px);
}

.section-light {
  background: var(--paper);
  color: var(--text-dark);
}

.section-heading {
  max-width: 650px;
}

.section-heading-wide {
  margin-bottom: clamp(48px, 6vw, 76px);
  max-width: 900px;
}

.section-heading > p:not(.eyebrow) {
  color: inherit;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  max-width: 790px;
  opacity: 0.78;
}

.problem-layout,
.faq-layout {
  display: grid;
  gap: clamp(52px, 8vw, 110px);
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
}

.sticky-heading {
  align-self: start;
  position: sticky;
  top: 112px;
}

.long-copy {
  color: #3b463e;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.long-copy p {
  margin-bottom: 24px;
}

.long-copy strong {
  color: var(--text-dark);
}

.question-callout {
  border-left: 4px solid var(--orange);
  display: grid;
  gap: 11px;
  margin-top: 42px;
  padding: 10px 0 10px 26px;
}

.question-callout span {
  color: #157233;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.question-callout strong {
  font-size: clamp(1.35rem, 2.3vw, 2.1rem);
  line-height: 1.22;
}

.reconstruction-section {
  background: var(--forest-deep);
  color: var(--text-light);
}

.reconstruction-steps {
  border-top: 1px solid var(--line-dark);
  list-style: none;
  margin: 0;
  padding: 0;
}

.reconstruction-steps li {
  align-items: start;
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  gap: clamp(28px, 5vw, 78px);
  grid-template-columns: 95px minmax(0, 1fr);
  padding: clamp(30px, 4vw, 48px) 0;
}

.step-number {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
}

.reconstruction-steps h3 {
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.2;
  margin-bottom: 12px;
}

.reconstruction-steps p {
  color: #b8c6bb;
  margin: 0;
  max-width: 890px;
}

.order-matters {
  align-items: center;
  border-left: 4px solid var(--orange);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 54px;
  padding-left: 28px;
}

.order-matters p {
  color: #d7e1d9;
  margin: 0;
  max-width: 770px;
}

.escalation-path {
  border-bottom: 1px solid var(--line-light);
  border-top: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.escalation-path article {
  padding: 36px clamp(20px, 3vw, 38px) 42px;
}

.escalation-path article + article {
  border-left: 1px solid var(--line-light);
}

.path-label {
  color: #177335;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
}

.escalation-path h3 {
  font-size: 1.55rem;
  margin: 14px 0;
}

.escalation-path p {
  color: #536057;
  font-size: 0.92rem;
  margin: 0;
}

.escalation-path strong {
  color: #b85314;
}

.strategy-line {
  font-size: clamp(1.2rem, 2.2vw, 1.85rem);
  line-height: 1.38;
  margin: 46px 0 22px;
  max-width: 980px;
}

.disclaimer {
  border-top: 1px solid var(--line-light);
  color: var(--muted-dark);
  font-size: 0.76rem;
  margin-top: 28px;
  max-width: 990px;
  padding-top: 18px;
}

.comparison-section {
  background: var(--ink-soft);
  color: var(--text-light);
}

.comparison-table {
  border-bottom: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
}

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

.comparison-row + .comparison-row {
  border-top: 1px solid var(--line-dark);
}

.comparison-row > div {
  align-items: center;
  display: flex;
  min-height: 76px;
  padding: 18px clamp(18px, 3vw, 38px);
}

.comparison-row > div + div {
  border-left: 1px solid var(--line-dark);
}

.comparison-header {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.comparison-row:not(.comparison-header) > div:first-child {
  color: #9ca89f;
}

.comparison-row:not(.comparison-header) > div:last-child {
  color: var(--white);
  font-weight: 700;
}

.comparison-close {
  align-items: center;
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 50px;
}

.comparison-close p {
  color: #c2cec5;
  margin: 0;
  max-width: 800px;
}

.process-section {
  background: #176b31;
  color: var(--white);
  padding-block: clamp(72px, 8vw, 110px);
}

.process-section .section-heading-wide {
  margin-bottom: 42px;
}

.process-strip {
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-strip li {
  display: grid;
  gap: 10px;
  padding: 30px clamp(16px, 2.5vw, 30px) 36px;
}

.process-strip li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.process-strip li > span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
}

.process-strip strong {
  font-size: 1.05rem;
  line-height: 1.3;
}

.process-strip p {
  color: #d5e6d9;
  font-size: 0.86rem;
  margin: 0;
}

.about-layout {
  align-items: center;
  display: grid;
  gap: clamp(48px, 9vw, 130px);
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
}

.about-mark {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
}

.about-mark::before {
  border: 1px solid rgba(24, 138, 58, 0.3);
  content: "";
  inset: 12% 4%;
  position: absolute;
  transform: rotate(-4deg);
}

.about-mark img {
  filter: saturate(0.9) contrast(1.04);
  max-width: 330px;
  position: relative;
  width: 85%;
}

.about-copy {
  max-width: 720px;
}

.about-copy > p:not(.eyebrow) {
  color: #4e5a51;
  margin-bottom: 22px;
  opacity: 1;
}

.about-close {
  border-top: 1px solid var(--line-light);
  font-size: 1.08rem !important;
  padding-top: 22px;
}

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

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

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  align-items: center;
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 700;
  gap: 20px;
  justify-content: space-between;
  list-style: none;
  padding: 24px 0;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--gold);
  content: "+";
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 1.25rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list summary:focus-visible {
  color: var(--gold);
  outline: none;
}

.faq-list details p {
  color: #b8c7bc;
  margin: 0;
  max-width: 790px;
  padding: 0 54px 28px 0;
}

.final-cta {
  background: #0a160e;
  border-top: 5px solid var(--orange);
  color: var(--white);
  overflow: hidden;
  padding-block: clamp(82px, 10vw, 138px);
  position: relative;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.final-cta-inner > img {
  filter: saturate(0.72);
  opacity: 0.12;
  position: absolute;
  right: clamp(10px, 5vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  width: min(430px, 38vw);
  z-index: -1;
}

.final-cta h2 {
  max-width: 850px;
}

.final-cta p:not(.eyebrow) {
  color: #c2cec5;
  font-size: 1.04rem;
  max-width: 720px;
}

.final-cta .button {
  margin-top: 24px;
}

.final-cta small {
  color: #96a49a;
  display: block;
  font-size: 0.76rem;
  margin-top: 18px;
  max-width: 720px;
}

.site-footer {
  background: #050c07;
  border-top: 1px solid var(--line-dark);
  color: #9eaba1;
  padding-block: 38px;
}

.footer-grid {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: 230px minmax(0, 1fr) auto;
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 11px;
}

.footer-brand img {
  height: 56px;
  object-fit: contain;
  width: 56px;
}

.footer-brand span {
  display: grid;
}

.footer-brand strong {
  color: var(--white);
  text-transform: uppercase;
}

.footer-brand small {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.footer-grid > p {
  font-size: 0.72rem;
  line-height: 1.55;
  margin: 0;
}

.copyright {
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .brand-copy small {
    display: none;
  }

  .primary-nav {
    gap: 18px;
  }

  .header-cta {
    font-size: 0.68rem;
  }

  .lead-layout,
  .problem-layout,
  .faq-layout {
    gap: 54px;
  }

  .escalation-path article {
    padding-inline: 22px;
  }

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

  .process-strip li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.26);
  }

  .process-strip li:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.26);
  }

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

  .copyright {
    grid-column: 1 / -1;
    white-space: normal;
  }
}


/* Contextual inspection story */
.inspection-story {
  background: #edf2ed;
  color: var(--text-dark);
}

.inspection-heading {
  align-items: end;
  border-bottom: 1px solid var(--line-light);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  margin-bottom: 34px;
  padding-bottom: 30px;
}

.inspection-heading h2 {
  font-size: 52px;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 8px 0 0;
}

.inspection-heading > p {
  color: #4e5a51;
  font-size: 1.02rem;
  margin: 0;
}

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

.inspection-frame {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  margin: 0;
  min-width: 0;
  overflow: hidden;
}

.inspection-frame picture {
  display: block;
  overflow: hidden;
}

.inspection-frame img {
  aspect-ratio: 4 / 3;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.inspection-arrival img { object-position: 50% 28%; }
.inspection-frame figcaption { display: grid; gap: 7px; padding: 18px 18px 20px; }
.inspection-frame figcaption span,
.about-photo figcaption span { color: var(--green); font-family: var(--font-mono); font-size: 0.63rem; font-weight: 800; text-transform: uppercase; }
.inspection-frame figcaption strong { font-size: 1.03rem; line-height: 1.25; }
.inspection-frame figcaption p { color: #5f6b62; font-size: 0.86rem; line-height: 1.55; margin: 0; }

.inspection-roof-frame { grid-column: 1 / -1; }
.inspection-roof-frame img { aspect-ratio: 16 / 7; object-position: 50% 58%; }
.inspection-roof-frame figcaption { align-items: start; grid-template-columns: 160px 0.7fr 1.3fr; }
.inspection-roof-frame figcaption p { margin-top: 0; }

.inspection-explanation {
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  margin-top: 18px;
  overflow: hidden;
}

.inspection-explanation picture { min-height: 100%; }
.inspection-explanation img { display: block; height: 100%; object-fit: cover; width: 100%; }
.inspection-explanation > div { align-self: center; padding: 38px; }
.inspection-explanation h3 { font-size: 28px; letter-spacing: 0; line-height: 1.15; margin: 10px 0 16px; }
.inspection-explanation p:not(.eyebrow) { color: #566159; margin: 0 0 22px; }
.text-link-dark { color: var(--green); }
.text-link-dark::after { background: var(--green); }

.about-photo {
  background: var(--white);
  border: 1px solid var(--line-light);
  margin: 0;
  overflow: hidden;
}

.about-photo img { aspect-ratio: 4 / 3; display: block; object-fit: cover; width: 100%; }
.about-photo figcaption { display: grid; gap: 5px; padding: 16px 18px 18px; }
.about-photo figcaption strong { color: var(--text-dark); font-size: 0.92rem; line-height: 1.35; }

@media (max-width: 900px) {
  html {
    scroll-padding-top: 76px;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    height: 50px;
    width: 50px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .primary-nav {
    align-items: stretch;
    background: #0b180f;
    border-bottom: 1px solid var(--line-dark);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    margin: 0;
    padding: 12px 20px 22px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    border-bottom: 1px solid var(--line-dark);
    padding: 14px 4px;
  }

  .header-cta {
    display: none;
  }

  .hero-media,
  .hero-content {
    min-height: calc(100svh - 94px);
  }

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

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

  .lead-layout,
  .problem-layout,
  .faq-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .inspection-heading { align-items: start; grid-template-columns: 1fr; }
  .inspection-sequence { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .inspection-arrival { grid-column: 1 / -1; }
  .inspection-arrival img { aspect-ratio: 16 / 8; object-position: 50% 34%; }
  .inspection-roof-frame { grid-column: 1 / -1; }
  .inspection-roof-frame figcaption { grid-template-columns: 1fr; }
  .inspection-explanation { grid-template-columns: 1fr; }
  .inspection-explanation img { aspect-ratio: 16 / 9; }

  .lead-intro,
  .sticky-heading {
    position: static;
  }

  .lead-form {
    border-left: 0;
    border-top: 1px solid var(--line-light);
    padding-left: 0;
    padding-top: 38px;
  }

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

  .escalation-path article + article {
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }

  .order-matters,
  .comparison-close {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .about-mark img {
    max-width: 270px;
  }

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

  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .section-shell {
    padding-inline: 20px;
  }

  .header-inner {
    gap: 14px;
    padding-inline: 14px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    height: 46px;
    width: 46px;
  }

  .brand-copy strong {
    font-size: 0.86rem;
  }

  .hero-media,
  .hero-content {
    min-height: calc(100svh - 90px);
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(5, 13, 8, 0.9), rgba(5, 13, 8, 0.62)),
      linear-gradient(0deg, rgba(5, 13, 8, 0.95) 0%, rgba(5, 13, 8, 0.18) 66%, rgba(5, 13, 8, 0.5) 100%);
  }

  .hero-video {
    object-position: 58% center;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 144px;
    padding-top: 86px;
  }

  .hero-content h1 {
    font-size: clamp(1.95rem, 8.5vw, 2.65rem);
    line-height: 1.04;
    margin-bottom: 18px;
  }

  .hero-subhead {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
  }

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

  .text-link {
    align-self: flex-start;
  }

  .hero-note {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .video-playback-cue {
    right: 14px;
    top: 14px;
  }

  .video-sound-control {
    bottom: 104px;
    right: 14px;
  }

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

  .trust-bar span {
    font-size: 0.55rem;
    min-height: 46px;
    padding: 8px 7px;
  }

  .trust-bar span:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .trust-bar span:nth-child(4) {
    border-top: 1px solid var(--line-dark);
  }

  .lead-section,
  .section,
  .process-section,
  .final-cta {
    padding-block: 72px;
  }

  .inspection-heading { gap: 22px; margin-bottom: 24px; padding-bottom: 22px; }
  .inspection-heading h2 { font-size: 38px; }
  .inspection-sequence { grid-template-columns: 1fr; }
  .inspection-arrival,
  .inspection-roof-frame { grid-column: auto; }
  .inspection-arrival img,
  .inspection-roof-frame img { aspect-ratio: 4 / 3; }
  .inspection-explanation > div { padding: 26px 20px 28px; }
  .inspection-explanation h3 { font-size: 24px; }

  .lead-intro h2,
  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

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

  .field-wide {
    grid-column: auto;
  }

  .claim-status {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .claim-status legend {
    grid-column: 1 / -1;
  }

  .claim-status label {
    margin-right: 6px;
  }

  .claim-status span {
    min-width: 0;
    width: 100%;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit-row .button {
    width: 100%;
  }

  .reconstruction-steps li {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .step-number {
    font-size: 0.74rem;
  }

  .order-matters {
    margin-top: 40px;
    padding-left: 20px;
  }

  .order-matters .button,
  .comparison-close .button {
    width: 100%;
  }

  .comparison-header {
    display: none;
  }

  .comparison-row:not(.comparison-header) {
    grid-template-columns: 1fr;
  }

  .comparison-row:not(.comparison-header) > div {
    align-items: flex-start;
    display: grid;
    gap: 7px;
    min-height: 0;
    padding: 20px 16px;
  }

  .comparison-row:not(.comparison-header) > div::before {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .comparison-row:not(.comparison-header) > div:first-child::before {
    color: #88958b;
    content: "Typical storm contractor";
  }

  .comparison-row:not(.comparison-header) > div:last-child {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .comparison-row:not(.comparison-header) > div:last-child::before {
    color: var(--gold);
    content: "Equity Geeks";
  }

  .process-strip {
    grid-template-columns: 1fr;
  }

  .process-strip li + li,
  .process-strip li:nth-child(3),
  .process-strip li:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.26);
  }

  .about-mark img {
    max-width: 230px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .final-cta-inner > img {
    opacity: 0.08;
    right: -54px;
    width: 280px;
  }
}

@media (max-height: 680px) and (max-width: 680px) {
  .hero-content {
    padding-bottom: 132px;
    padding-top: 48px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-subhead {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .hero-note {
    display: none;
  }
}

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

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