:root {
  color-scheme: light;
  --ink: #17201f;
  --muted: #5b6561;
  --paper: #f6f2eb;
  --surface: #ffffff;
  --line: #d7d0c5;
  --charcoal: #20282a;
  --green: #2f6f57;
  --green-dark: #214d3e;
  --amber: #c9822e;
  --red: #9d4238;
  --shadow: 0 22px 55px rgb(23 32 31 / 14%);
  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);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(to bottom, rgb(23 32 31 / 86%), rgb(23 32 31 / 22%));
  color: #fff;
}

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

.brand {
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 60%);
  background: rgb(255 255 255 / 14%);
  font-size: 13px;
}

.nav {
  gap: clamp(14px, 3vw, 34px);
}

.nav a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(15 22 22 / 86%) 0%, rgb(15 22 22 / 58%) 37%, rgb(15 22 22 / 10%) 72%),
    linear-gradient(0deg, rgb(15 22 22 / 34%), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(710px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 74px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(56px, 9vw, 118px);
  line-height: 0.9;
}

.hero-copy {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgb(255 255 255 / 88%);
  font-size: clamp(18px, 2.2vw, 23px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

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

.button.secondary {
  border-color: rgb(255 255 255 / 70%);
  color: #fff;
  background: rgb(255 255 255 / 10%);
}

.intro,
.section,
.split-section,
.payload-section,
.quote-section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(28px, 6vw, 90px);
  background: #fff;
}

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

h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

h3 {
  margin: 16px 0 10px;
  font-size: 22px;
}

.intro p:last-child,
.event-copy p,
.quote-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

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

.service-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgb(23 32 31 / 7%);
}

.service-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #e2efe8;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.service-card p,
.steps p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  background: var(--charcoal);
  color: #fff;
}

.event-copy p {
  margin-top: 20px;
  color: rgb(255 255 255 / 74%);
}

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

.event-list span {
  padding: 18px 20px;
  border-left: 4px solid var(--amber);
  background: rgb(255 255 255 / 9%);
  font-weight: 800;
}

.payload-section {
  background: #fff;
}

.payload-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.payload-grid article {
  min-height: 188px;
  padding: 24px;
  background: #fbfaf7;
}

.payload-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
}

.payload-grid p {
  margin: 0;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.steps li {
  min-height: 210px;
  padding: 28px;
  background: #fff;
}

.steps span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
  background: #fff;
}

.quote-copy {
  position: sticky;
  top: 100px;
}

.quote-copy p {
  margin-top: 20px;
}

.contact-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--green-dark);
  font-weight: 900;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid #bcb3a6;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

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

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: rgb(255 255 255 / 82%);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    margin: 0 auto;
  }

  .intro,
  .split-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }

  .service-grid,
  .payload-grid,
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(48px, 18vw, 76px);
  }

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

  .event-list,
  .quote-form {
    grid-template-columns: 1fr;
  }

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