:root {
  --ink: #102d29;
  --ink-2: #183f37;
  --muted: #63706d;
  --line: rgba(16, 45, 41, .12);
  --paper: #ffffff;
  --soft: #f5f6f2;
  --mist: #eef3ee;
  --green: #0f3c33;
  --green-dark: #082b25;
  --orange: #ff7a1a;
  --orange-dark: #d95d00;
  --gold: #ffd08a;
  --glass: rgba(255, 255, 255, .78);
  --shadow: 0 28px 80px rgba(8, 43, 37, .14);
  --shadow-soft: 0 16px 44px rgba(8, 43, 37, .1);
  --radius: 26px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 122, 26, .14), transparent 28%),
    radial-gradient(circle at 82% 0%, rgba(15, 60, 51, .12), transparent 26%),
    var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.skip {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 20;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
}

.skip:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, .7);
  background: rgba(245, 246, 242, .78);
  backdrop-filter: blur(22px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  width: 270px;
  height: 70px;
  text-decoration: none;
}

.brand img {
  width: auto;
  max-width: 270px;
  max-height: 70px;
  height: auto;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: linear-gradient(180deg, #ff8b2c, var(--orange));
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(255, 122, 26, .26);
}

.button.small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.button.secondary {
  background: rgba(16, 45, 41, .08);
  color: var(--ink);
  box-shadow: none;
}

.button.full-button {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .8), rgba(238, 243, 238, .86)),
    radial-gradient(circle at 75% 24%, rgba(255, 122, 26, .18), transparent 24%);
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(16, 45, 41, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 45, 41, .05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.hero-shell {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 520px);
  gap: 52px;
  align-items: start;
}

.hero-copy-col {
  position: relative;
  z-index: 1;
}

.eyebrow,
.mini-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.eyebrow.light {
  color: #d9efe8;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 122, 26, .14);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(48px, 6.6vw, 84px);
  font-weight: 920;
}

h2 {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 660px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 20px;
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  border: 1px solid rgba(15, 60, 51, .12);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .68);
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(8, 43, 37, .06);
}

.hero-panel {
  position: relative;
  min-height: 680px;
}

.mascot-card {
  position: absolute;
  top: 0;
  right: 18px;
  width: min(74%, 380px);
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .58), rgba(255, 255, 255, .24));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
  overflow: visible;
}

.mascot-card img {
  width: 62%;
  margin: -34px auto -18px;
}

.form-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(24px);
}

.hero-panel .form-card {
  margin-top: 184px;
}

.form-head {
  padding: 26px 26px 12px;
}

.form-head h2 {
  font-size: 28px;
}

.form-head p:not(.mini-eyebrow) {
  margin-top: 8px;
  color: var(--muted);
}

.quote-form {
  padding: 8px 26px 26px;
}

.project-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.project-picker legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.project-picker label {
  display: block;
}

.project-picker input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.project-picker span {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 60, 51, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.project-picker input:checked + span {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

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

.field-grid.compact {
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 2px;
}

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

label {
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(15, 60, 51, .14);
  border-radius: 14px;
  padding: 11px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  font: inherit;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 122, 26, .9);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, .14);
}

textarea {
  min-height: 92px;
  resize: vertical;
}

.consent {
  margin: 14px 0 16px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.consent a {
  color: var(--green);
  font-weight: 850;
}

.form-status {
  min-height: 22px;
  margin-top: 12px;
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
}

.brand-proof {
  width: min(780px, 100%);
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 10px 32px rgba(8, 43, 37, .05);
  text-align: left;
}

.brand-proof img {
  width: 112px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
}

.brand-proof p {
  margin-top: 8px;
  color: var(--muted);
}

.band {
  padding: 82px 0;
  background: var(--paper);
}

.band.mist {
  background: linear-gradient(180deg, #f7f8f5, #eef3ee);
}

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

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

.section-head.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-head p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

.steps,
.service-grid,
.faq-grid,
.reason-grid {
  display: grid;
  gap: 18px;
}

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

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

.step,
.service,
.faq,
.reason {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  padding: 26px;
  box-shadow: 0 10px 32px rgba(8, 43, 37, .05);
}

.step-number {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}

.step p,
.service p,
.faq p,
.reason p {
  margin-top: 10px;
  color: var(--muted);
}

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

.roof-mark {
  width: min(320px, 78%);
  margin: -10px auto 28px;
}

.service {
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.service:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.service-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(255, 122, 26, .12);
  color: var(--green);
  font-size: 23px;
  font-weight: 900;
}

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

.feature-grid .reason:first-child {
  border-color: rgba(255, 122, 26, .3);
}

.dark-band {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 122, 26, .16), transparent 24%),
    linear-gradient(135deg, #082b25, #103d35);
  color: #fff;
}

.dark-band p {
  color: #cde2dc;
}

.dark-band .step {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: none;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: start;
}

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

.cta-band {
  padding-top: 0;
}

.callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px auto;
  gap: 24px;
  align-items: center;
  padding: 38px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 122, 26, .32), transparent 28%),
    linear-gradient(135deg, #082b25, #113f37);
  color: #fff;
  box-shadow: var(--shadow);
}

.callout-brand {
  width: 230px;
  max-height: 150px;
  object-fit: contain;
}

.callout p:not(.eyebrow) {
  margin-top: 10px;
  color: #d8e6e3;
  font-size: 18px;
}

.page-hero {
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 122, 26, .14), transparent 28%),
    linear-gradient(135deg, #f7f8f5, #eef3ee);
  padding: 64px 0;
}

.page-hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 34px;
  align-items: center;
}

.page-hero p {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 20px;
}

.content {
  max-width: 860px;
}

.content h2 {
  margin-top: 34px;
  font-size: 30px;
}

.content p,
.content li {
  color: var(--muted);
  font-size: 17px;
}

.content p {
  margin-top: 12px;
}

.content ul {
  margin: 16px 0 0;
  padding-left: 22px;
}

.footer {
  background: #082b25;
  color: #fff;
  padding: 38px 0;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer p {
  max-width: 660px;
  margin-top: 0;
  color: #c7d8d5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-links a {
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.success {
  min-height: 68vh;
  display: grid;
  align-items: center;
}

@media (max-width: 1040px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-panel {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(180px, .54fr) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }

  .mascot-card {
    position: static;
    width: 100%;
  }

  .mascot-card img {
    width: 52%;
  }

  .hero-panel .form-card {
    margin-top: 0;
  }

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

@media (max-width: 920px) {
  .nav {
    min-height: auto;
    padding: 12px 0;
  }

  .nav-links {
    display: none;
  }

  .page-hero .wrap,
  .split-section {
    grid-template-columns: 1fr;
  }

  .proof-row,
  .steps,
  .service-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .callout-brand {
    width: 260px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .brand {
    width: 220px;
    height: 60px;
  }

  .brand img {
    max-width: 220px;
    max-height: 60px;
  }

  .hero-shell {
    padding: 48px 0 58px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-copy,
  .page-hero p {
    font-size: 18px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .mascot-card {
    max-width: 320px;
    margin: 0 auto -18px;
  }

  .brand-proof {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-proof img {
    margin: 0 auto;
  }

  .project-picker,
  .proof-row,
  .steps,
  .service-grid,
  .reason-grid,
  .faq-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .band {
    padding: 58px 0;
  }

  .quote-form,
  .form-head,
  .step,
  .service,
  .faq,
  .reason {
    padding: 20px;
  }

  .callout {
    padding: 28px;
  }
}
