:root {
  --ink: #15172f;
  --navy: #20205c;
  --blueprint: #2f3677;
  --brick: #a64c35;
  --brick-dark: #7f3928;
  --porch: #f4efe5;
  --paper: #fffaf0;
  --mist: #e8edf1;
  --muted: #687083;
  --line: #d8d3c8;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(21, 23, 47, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(255, 250, 240, 0.95);
  border-bottom: 1px solid rgba(32, 32, 92, 0.13);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: min(220px, 50vw);
  height: auto;
  display: block;
}

.header-call,
.final-cta a,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.header-call {
  padding: 0 18px;
  color: var(--white);
  background: var(--navy);
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 720px;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 13, 32, 0.92) 0%, rgba(12, 13, 32, 0.72) 42%, rgba(12, 13, 32, 0.24) 100%),
    radial-gradient(circle at 18% 20%, rgba(166, 76, 53, 0.42), transparent 34%);
}

.hero-grid {
  width: min(1180px, calc(100% - 40px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 56px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: #ffc86a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--brick);
}

h1,
h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.96;
}

.hero-subhead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.proof-row span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.lead-card {
  padding: 28px;
  background: rgba(255, 250, 240, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card-topline {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  color: var(--navy);
  background: #e7e8f7;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-card h2 {
  font-size: 34px;
  line-height: 1.04;
}

.lead-card p {
  color: var(--muted);
  line-height: 1.55;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(166, 76, 53, 0.35);
  outline-offset: 2px;
}

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

button {
  width: 100%;
  border: 0;
  padding: 15px 18px;
  color: var(--white);
  background: var(--brick);
  font-size: 17px;
  cursor: pointer;
}

button:hover,
.final-cta a:hover {
  background: var(--brick-dark);
}

.form-note,
.form-error {
  margin: 0;
  font-size: 13px;
}

.form-error {
  color: #9f241b;
  background: #fff1ef;
  border: 1px solid #f2bbb1;
  border-radius: 6px;
  padding: 10px 12px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: var(--white);
}

.strip div {
  padding: 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0;
}

.story-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.story-section h2,
.section-heading h2,
.final-cta h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

.story-copy {
  color: #3a4051;
  font-size: 19px;
  line-height: 1.72;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.steps article,
.situation-grid article,
.compare-card,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(21, 23, 47, 0.06);
}

.steps article {
  padding: 28px;
}

.situation-grid article {
  padding: 26px;
  border-left: 5px solid var(--brick);
}

.steps span {
  color: var(--brick);
  font-weight: 900;
}

.steps h3,
.situation-grid h3,
.compare-card h3 {
  margin: 18px 0 10px;
  font-size: 22px;
}

.steps p,
.situation-grid p,
.compare-card li,
.faq-list p {
  color: var(--muted);
  line-height: 1.6;
}

.comparison {
  width: 100%;
  max-width: none;
  padding: 84px max(20px, calc((100vw - 1120px) / 2));
  background: var(--porch);
}

.comparison .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.compare-grid {
  max-width: 920px;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
}

.compare-card {
  padding: 28px;
}

.compare-card.primary {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.compare-card.primary li {
  color: rgba(255, 255, 255, 0.84);
}

.compare-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 40px;
}

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

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 64px max(20px, calc((100vw - 1120px) / 2));
  color: var(--white);
  background: var(--ink);
}

.final-cta a {
  padding: 0 26px;
  background: var(--brick);
}

footer {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 34px max(20px, calc((100vw - 1120px) / 2));
  background: var(--paper);
  border-top: 1px solid var(--line);
}

footer img {
  width: 210px;
  max-width: 100%;
}

footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid,
  .story-section,
  .steps,
  .situation-grid,
  .compare-grid,
  .faq,
  .final-cta,
  footer {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 42px 0;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(12, 13, 32, 0.88), rgba(12, 13, 32, 0.72));
  }

  .lead-card {
    order: 2;
  }

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

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

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .header-call {
    width: 100%;
  }

  .brand img {
    width: 190px;
  }

  .hero-grid,
  .section {
    width: min(100% - 28px, 1120px);
  }

  .lead-card {
    padding: 20px;
  }

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

  .strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
}

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