:root {
  --ink: #1f2720;
  --muted: #5e675d;
  --paper: #fffaf0;
  --surface: #ffffff;
  --soft: #f2efe4;
  --leaf: #2f6a4f;
  --leaf-dark: #1f4e3a;
  --gold: #e5b938;
  --coral: #c8654b;
  --line: rgba(31, 39, 32, 0.14);
  --shadow: 0 18px 45px rgba(36, 45, 36, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(255, 250, 240, 0.84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 250, 240, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--leaf-dark);
  font-weight: 900;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.55);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--leaf-dark);
  font-weight: 700;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 124px clamp(18px, 4vw, 52px) 48px;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 28, 21, 0.78), rgba(17, 28, 21, 0.34) 48%, rgba(17, 28, 21, 0.08)),
    linear-gradient(0deg, rgba(31, 39, 32, 0.7), rgba(31, 39, 32, 0.02) 32%);
}

.hero-content {
  position: relative;
  max-width: 780px;
  color: white;
}

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

.hero .eyebrow {
  color: #ffe07a;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 680px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 650px;
  font-size: clamp(1.1rem, 2vw, 1.38rem);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

.button.primary {
  background: var(--gold);
  color: var(--leaf-dark);
}

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

.button.ghost {
  border-color: var(--line);
  background: var(--surface);
  color: var(--leaf-dark);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 44px 0 0;
}

.quick-facts div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
}

.quick-facts dt {
  color: #ffe07a;
  font-weight: 900;
}

.quick-facts dd {
  margin: 4px 0 0;
}

.band,
.muted {
  background: var(--soft);
}

.section {
  padding: clamp(64px, 8vw, 108px) clamp(18px, 4vw, 52px);
}

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

.intro {
  padding: 46px clamp(18px, 4vw, 52px);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

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

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

.service-card,
.resource-grid article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-card {
  display: flex;
  min-height: 286px;
  flex-direction: column;
  padding: 24px;
}

.service-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: rgba(229, 185, 56, 0.22);
  color: var(--leaf-dark);
  font-weight: 900;
}

.service-card p,
.resource-grid p,
.timeline p,
.contact-copy p {
  color: var(--muted);
}

.text-button {
  margin-top: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--leaf);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(28px, 6vw, 86px);
}

.sticky-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.timeline {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--leaf);
  color: white;
  font-weight: 900;
}

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

.resource-grid article {
  padding: 24px;
  box-shadow: none;
}

.contact-section {
  background: var(--leaf-dark);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.contact-card {
  margin-top: 24px;
  padding: 20px;
  color: var(--ink);
}

.contact-card p {
  margin-bottom: 4px;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 32px);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

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

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(229, 185, 56, 0.62);
  outline-offset: 2px;
}

.checkbox-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
  font-weight: 650;
  color: var(--muted);
}

.checkbox-row input {
  min-height: auto;
  margin-top: 3px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--leaf);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 4vw, 52px);
  background: var(--ink);
  color: white;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    display: none;
    min-width: 220px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 18px;
  }

  .intro-grid,
  .process-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .sticky-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 24px;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(17, 28, 21, 0.82), rgba(17, 28, 21, 0.28));
  }

  .quick-facts,
  .service-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    gap: 8px;
    margin-top: 22px;
  }

  .quick-facts div {
    padding: 13px 16px;
  }

  .service-card {
    min-height: auto;
  }

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