:root {
  --ink: #152522;
  --muted: #5f706c;
  --paper: #f8f8f4;
  --field: #e7f0e7;
  --line: rgba(21, 37, 34, 0.16);
  --green: #12413a;
  --green-strong: #0d302c;
  --copper: #b66b3e;
  --sky: #d7eaf2;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(18, 65, 58, 0.16);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

body::selection {
  background: var(--sky);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(20px, 5vw, 72px);
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 248, 244, 0.94);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.site-footer div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand img,
.site-footer img {
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: currentColor;
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-links a,
.header-cta {
  opacity: 0.88;
}

.nav-links a:hover,
.header-cta:hover {
  opacity: 1;
}

.header-cta {
  border: 1px solid currentColor;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 760;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(600px, 86vh, 790px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(10, 39, 35, 0.92) 0%, rgba(10, 39, 35, 0.76) 43%, rgba(10, 39, 35, 0.26) 100%),
    image-set(url("/assets/brand/hero-field.png") 1x);
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(248, 248, 244, 0.18), rgba(248, 248, 244, 0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 60px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f5b98e;
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 8vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  line-height: 1.1;
}

.button-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 13px 34px rgba(13, 48, 44, 0.2);
}

.hero .button-primary {
  background: #f5f0e8;
  color: var(--green-strong);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-metrics {
  width: min(760px, 100%);
  margin-top: 56px;
}

.hero-metrics div {
  flex: 1 1 180px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-metrics dt {
  font-weight: 830;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.intro-band,
.section,
.process-section,
.split-section,
.contact-section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.intro-band {
  background: var(--field);
}

.intro-grid,
.section,
.process-section,
.split-section,
.contact-section,
.site-footer {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
}

.intro-grid p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.18;
}

.intro-proof {
  display: grid;
  gap: 12px;
}

.intro-proof span {
  border-left: 4px solid var(--copper);
  padding: 12px 0 12px 16px;
  color: var(--green-strong);
  font-weight: 800;
}

.section-heading {
  display: grid;
  gap: 0;
  margin-bottom: clamp(34px, 5vw, 56px);
}

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

.feature-card {
  display: grid;
  align-content: start;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.card-number {
  width: fit-content;
  margin-bottom: 50px;
  color: var(--copper);
  font-size: 0.8rem;
  font-weight: 850;
}

.feature-card p,
.process-list p,
.check-list p,
.faq-list p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.process-section {
  background: var(--green);
  color: var(--white);
  width: 100%;
  max-width: none;
}

.process-section > * {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.process-list li {
  display: grid;
  gap: 26px;
  min-height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--copper);
  color: var(--white);
  font-weight: 850;
}

.process-list p {
  color: rgba(255, 255, 255, 0.76);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}

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

.check-list p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 1.06rem;
}

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

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 820;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 32px);
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--green-strong);
  font-size: 0.9rem;
  font-weight: 820;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(21, 37, 34, 0.22);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fbfbf8;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(18, 65, 58, 0.14);
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 620px;
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 880px) {
  .site-header {
    min-height: 68px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 720px;
    background:
      linear-gradient(90deg, rgba(10, 39, 35, 0.94), rgba(10, 39, 35, 0.62)),
      image-set(url("/assets/brand/hero-field.png") 1x);
    background-position: 58% center;
  }

  .intro-grid,
  .card-grid,
  .process-list,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .process-list li {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 28px;
  }

  .contact-copy {
    position: static;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span {
    max-width: 145px;
    line-height: 1.1;
  }

  .header-cta {
    padding: 9px 10px;
    font-size: 0.82rem;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-bottom: 42px;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.8rem);
  }

  .button {
    width: 100%;
  }

  .hero-metrics {
    margin-top: 36px;
  }
}
