:root {
  color-scheme: light;
  --ink: #1b241f;
  --muted: #58645d;
  --surface: #f7f3ea;
  --surface-soft: #fffaf0;
  --surface-strong: #ffffff;
  --green: #245d3b;
  --green-dark: #143622;
  --gold: #9b5d16;
  --gold-soft: #f1dcc0;
  --line: #ded3c1;
  --shadow: 0 22px 60px rgba(27, 36, 31, 0.14);
  --radius: 8px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(197, 122, 34, 0.55);
  outline-offset: 3px;
}

.preview-banner {
  width: 100%;
  padding: 0.7rem 1rem;
  color: #ffffff;
  background: #111813;
  font-size: 0.875rem;
  font-weight: 800;
  text-align: center;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
  padding: var(--space-4) 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-width: 16rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-lockup {
  display: inline-grid;
  width: 6.35rem;
  min-height: 4rem;
  flex: 0 0 auto;
  place-items: center;
  padding: 0.45rem 0.62rem;
  border-radius: var(--radius);
  background: var(--green-dark);
  box-shadow: 0 10px 24px rgba(20, 54, 34, 0.16);
}

.brand-lockup img {
  width: 100%;
  height: auto;
  max-height: 3.1rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-caption {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-2) var(--space-4);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.98fr);
  gap: var(--space-6);
  align-items: center;
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
  padding: var(--space-6) 0 var(--space-7);
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 var(--space-3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--green-dark);
  font-size: 4.7rem;
  line-height: 0.96;
}

h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: 2.75rem;
  line-height: 1.02;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.2;
}

.lede {
  max-width: 62ch;
  margin: var(--space-4) 0 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.86rem 1.2rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button.primary {
  color: #ffffff;
  background: var(--green);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--green-dark);
  border-color: var(--line);
  background: var(--surface-strong);
}

.button.secondary:hover {
  border-color: var(--green);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
  margin: var(--space-5) 0 0;
}

.trust-strip div {
  min-width: 0;
  padding: var(--space-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.8);
}

.trust-strip dt {
  color: var(--green-dark);
  font-weight: 900;
}

.trust-strip dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.hero-media {
  position: relative;
  min-width: 0;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--gold-soft);
}

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

.hero-logo-card {
  position: absolute;
  right: var(--space-3);
  bottom: var(--space-3);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  max-width: calc(100% - 2rem);
  margin: 0;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(20, 54, 34, 0.94);
  box-shadow: 0 16px 34px rgba(27, 36, 31, 0.22);
}

.hero-logo-card img {
  width: 5.35rem;
  height: auto;
  flex: 0 0 auto;
}

.hero-logo-card span {
  max-width: 14rem;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.25;
}

.section {
  padding: var(--space-7) 0;
}

.section-inner {
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
}

.split,
.price-layout,
.quote-layout,
.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: var(--space-6);
  align-items: start;
}

.intro-band {
  border-block: 1px solid var(--line);
  background: var(--surface-soft);
}

.intro-band p:not(.eyebrow),
.section-heading p,
.quote-layout p {
  margin: var(--space-3) 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-heading {
  max-width: 760px;
  margin-bottom: var(--space-5);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.package-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  padding: var(--space-4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.package-card.featured {
  border-color: rgba(36, 93, 59, 0.45);
  box-shadow: 0 16px 40px rgba(36, 93, 59, 0.12);
}

.package-card span {
  width: fit-content;
  margin-bottom: var(--space-3);
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.package-card p {
  margin: var(--space-3) 0;
  color: var(--muted);
  line-height: 1.6;
}

.package-card ul {
  display: grid;
  gap: var(--space-2);
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.35;
}

.package-card li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "+";
  font-weight: 900;
}

.band-green {
  color: #ffffff;
  background: var(--green-dark);
}

.band-green .eyebrow,
.band-green h2,
.band-green h3 {
  color: #ffffff;
}

.step-list {
  display: grid;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: var(--space-3);
  padding: var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.step-list span {
  color: var(--gold-soft);
  font-weight: 900;
}

.step-list p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.price-list {
  display: grid;
  gap: var(--space-2);
}

.price-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: 3.6rem;
  padding: var(--space-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.price-list span {
  color: var(--muted);
  font-weight: 750;
}

.price-list strong {
  color: var(--green-dark);
  text-align: right;
  white-space: nowrap;
}

.quote-section {
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.quote-form {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 0.4rem;
  color: var(--green-dark);
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfc3af;
  border-radius: var(--radius);
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin: 0 0 0.55rem;
  color: var(--green-dark);
  font-weight: 900;
}

.choice-group {
  display: grid;
  gap: var(--space-2);
}

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

.choice-card {
  display: grid;
  grid-template-columns: 1.1rem minmax(0, 1fr);
  gap: var(--space-2);
  align-items: start;
  min-width: 0;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
}

.choice-card input {
  width: 1rem;
  height: 1rem;
  margin: 0.2rem 0 0;
  accent-color: var(--green);
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card strong {
  color: var(--green-dark);
  line-height: 1.25;
}

.choice-card small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.35;
}

button {
  min-height: 3.1rem;
  border: 0;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--green);
  font: inherit;
  font-weight: 900;
  cursor: default;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  gap: var(--space-3);
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
  padding: var(--space-5) 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line);
}

.footer-logo {
  display: inline-grid;
  width: 6rem;
  min-height: 3.75rem;
  place-items: center;
  padding: 0.42rem 0.6rem;
  border-radius: var(--radius);
  background: var(--green-dark);
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-brand p {
  display: grid;
  gap: 0.18rem;
  min-width: min(100%, 18rem);
  margin: 0;
}

.footer-brand strong {
  color: var(--green-dark);
}

@media (max-width: 980px) {
  h1 {
    max-width: 12ch;
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero,
  .split,
  .price-layout,
  .quote-layout,
  .process-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: var(--space-5);
  }

  .hero-media {
    order: -1;
  }

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

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

  nav {
    justify-content: flex-start;
  }

  h1 {
    max-width: 100%;
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero,
  .section {
    padding: var(--space-5) 0;
  }

  .hero-actions,
  .price-list div {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .price-list strong {
    text-align: left;
    white-space: normal;
  }

  .choice-group.compact {
    grid-template-columns: 1fr;
  }
}

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

  .brand-lockup {
    width: 5.4rem;
    min-height: 3.35rem;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .step-list li {
    grid-template-columns: 1fr;
  }

  .step-list p {
    grid-column: auto;
  }

  .hero-logo-card {
    right: var(--space-2);
    bottom: var(--space-2);
    gap: 0.45rem;
  }

  .hero-logo-card img {
    width: 4.6rem;
  }
}
