:root {
  --green-deep: #143d28;
  --green-hero-a: #1f5236;
  --green-hero-b: #123a26;
  --green-footer: #163a26;
  --green-btn: #14331f;
  --green-ink: #1f3a29;
  --green-bold: #2c5740;
  --cream: #f4ebd5;
  --sage: #b3c1ab;
  --orange: #d98b3c;
  --orange-deep: #c47e34;
  --tan: #ece1c7;
  --tan-line: #d3c5a3;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--green-ink);
  background: var(--tan);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--orange);
  margin: 0;
}

.eyebrow.dash::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--orange);
  vertical-align: middle;
  margin-right: 14px;
  margin-bottom: 4px;
}

/* ---------- Dark zone: header + hero ---------- */
.dark {
  position: relative;
  color: var(--cream);
  background:
    radial-gradient(1100px 620px at 50% -60px, var(--green-hero-a), transparent 70%),
    linear-gradient(180deg, var(--green-hero-b), var(--green-deep));
  overflow: hidden;
  border-bottom: 5px solid var(--orange-deep);
}
.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 46px);
  pointer-events: none;
}

/* Header / nav */
.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 0 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.logo .mark {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  border: 2px solid var(--orange);
  display: grid;
  place-items: center;
}
.logo .mark svg { width: 22px; height: 22px; }
.logo .word {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.13em;
  font-size: 0.82rem;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--cream);
}

.nav-links {
  display: flex;
  gap: 42px;
}
.nav-links a {
  font-weight: 600;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--cream);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.nav-links a:hover,
.nav-links a.active { border-color: var(--orange); color: #fff; }

/* Hero */
.hero {
  position: relative;
  text-align: center;
  padding: 92px 0 72px;
}
.hero .eyebrow { margin-bottom: 30px; }

.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--cream);
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0 auto;
  max-width: 20ch;
}
.hero h1 .accent { color: var(--orange); }

.hero-sub {
  max-width: 620px;
  margin: 30px auto 0;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  color: var(--sage);
  line-height: 1.55;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 56px;
  flex-wrap: wrap;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(244, 235, 213, 0.55);
}
.hero-meta .rule {
  width: 70px;
  height: 1px;
  background: rgba(244, 235, 213, 0.35);
}
.hero-meta a { color: rgba(244, 235, 213, 0.7); }
.hero-meta a:hover { color: var(--cream); }

/* ---------- Workshop / generic light section ---------- */
.workshop { padding: 96px 0 40px; }
.section { padding: 84px 0; }
.section + .section { padding-top: 0; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--tan-line);
  margin-bottom: 4px;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--green-ink);
  margin: 0;
}
.section-head .count {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(31, 58, 41, 0.55);
}

.lead {
  max-width: 760px;
  margin: 34px 0 0;
  font-size: clamp(1.12rem, 2vw, 1.3rem);
  color: rgba(31, 58, 41, 0.88);
  line-height: 1.6;
}

.app {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  padding: 72px 0;
  border-bottom: 1px solid var(--tan-line);
}
.app:last-of-type { border-bottom: none; }

.app-id .eyebrow { margin-bottom: 22px; }
.app-id h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--green-ink);
  margin: 0 0 14px;
}
.app-id .who {
  font-size: 1.05rem;
  color: rgba(31, 58, 41, 0.7);
  margin: 0;
}

.app-copy p {
  margin: 0 0 22px;
  font-size: 1.15rem;
  color: rgba(31, 58, 41, 0.88);
  line-height: 1.6;
}
.app-copy p strong { color: var(--green-bold); font-weight: 700; }

.quote {
  border-left: 3px solid var(--orange);
  padding: 4px 0 4px 22px;
  margin: 0 0 26px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.32rem;
  color: var(--green-ink);
}

/* ---------- Capabilities grid ---------- */
.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 48px;
  margin-top: 44px;
}
.cap { padding-top: 24px; border-top: 2px solid var(--orange); }
.cap h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  margin: 0 0 10px;
  color: var(--green-ink);
}
.cap p {
  margin: 0;
  color: rgba(31, 58, 41, 0.82);
  font-size: 1.04rem;
}

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 44px;
}
.step .num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-btn);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.step h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0 0 10px;
  color: var(--green-ink);
}
.step p {
  margin: 0;
  color: rgba(31, 58, 41, 0.8);
  font-size: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green-btn);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 17px 30px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.btn:hover { background: #0f2917; transform: translateY(-1px); }
.btn .arrow { transition: transform 0.18s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.btn-light { background: var(--cream); color: var(--green-ink); }
.btn-light:hover { background: #fff; }

/* ---------- Home CTA card ---------- */
.home-cta { padding: 28px 0 104px; }
.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 68px 40px;
  text-align: center;
  color: var(--cream);
  background:
    radial-gradient(900px 480px at 50% -80px, var(--green-hero-a), transparent 70%),
    linear-gradient(180deg, var(--green-hero-b), var(--green-deep));
}
.cta-card .eyebrow { margin-bottom: 18px; }
.cta-card h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin: 0 auto;
  max-width: 18ch;
  color: var(--cream);
}
.cta-card p {
  max-width: 560px;
  margin: 18px auto 30px;
  color: var(--sage);
  font-size: 1.12rem;
}

/* ---------- Request form ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--tan-line);
  border-radius: 16px;
  padding: 44px;
  max-width: 720px;
  margin: 40px auto 0;
  box-shadow: 0 14px 34px rgba(31, 58, 41, 0.07);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: var(--green-ink);
}
.field .req { color: var(--orange); }
.field input,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--green-ink);
  background: #fff;
  border: 1px solid var(--tan-line);
  border-radius: 6px;
  padding: 13px 15px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-bold);
  box-shadow: 0 0 0 3px rgba(44, 87, 64, 0.15);
}
.field textarea { min-height: 148px; resize: vertical; }
.form-actions { margin-top: 8px; }
.form-note {
  margin: 16px 0 0;
  font-size: 0.85rem;
  color: rgba(31, 58, 41, 0.6);
}
.hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Thank-you page ---------- */
.thanks {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}
.thanks .mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
}
.thanks .mark svg { width: 30px; height: 30px; }
.thanks h1 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--cream);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 18px;
}
.thanks p {
  color: var(--sage);
  font-size: 1.18rem;
  max-width: 520px;
  margin: 0 auto 34px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--green-footer);
  color: var(--cream);
  border-top: 5px solid var(--orange-deep);
  padding: 46px 0;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-row .logo .word { color: var(--cream); }
.footer-row .mark { width: 40px; height: 40px; }
.footer-row .mark svg { width: 19px; height: 19px; }
.copyright {
  font-size: 0.92rem;
  color: rgba(244, 235, 213, 0.65);
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .container { padding: 0 24px; }
  .nav-links { gap: 22px; }
  .app {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 56px 0;
  }
  .app-copy p { font-size: 1.06rem; }
  .cap-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav-links { display: none; }
  .hero { padding: 64px 0 56px; }
  .workshop { padding: 64px 0 24px; }
  .section { padding: 60px 0; }
  .steps { grid-template-columns: 1fr; }
  .form-card { padding: 28px; }
  .cta-card { padding: 48px 24px; }
  .section-head { flex-direction: column; gap: 8px; align-items: flex-start; }
  .footer-row { flex-direction: column; align-items: flex-start; }
}
