:root {
  --green-900: #23412f;
  --green-700: #3a5f49;
  --green-500: #62836a;
  --green-100: #eef5ef;
  --gold-700: #b28a2e;
  --gold-500: #d4af5d;
  --gold-200: #f4e7bf;
  --ink: #2a2d2b;
  --muted: #66756b;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(35, 65, 47, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

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

a {
  color: var(--green-900);
  text-decoration: none;
}

a:hover { color: var(--gold-700); }

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(35, 65, 47, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-200), var(--green-100));
  border: 1px solid rgba(178, 138, 46, 0.25);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}

.brand-mark svg { width: 28px; height: 28px; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 1.1rem;
}

.brand-tag {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.98rem;
}

.button,
button,
input[type="submit"] {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: var(--green-900);
  color: #fff;
  padding: 0.9rem 1.3rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: var(--white);
  color: var(--green-900);
  border: 1px solid rgba(35, 65, 47, 0.16);
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
  background: var(--green-700);
}

.button.secondary:hover {
  background: var(--green-100);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.55;
  pointer-events: none;
}

.hero::before {
  width: 320px;
  height: 320px;
  right: -90px;
  top: -40px;
  background: radial-gradient(circle, rgba(212,175,93,0.28), rgba(212,175,93,0));
}

.hero::after {
  width: 260px;
  height: 260px;
  left: -60px;
  bottom: -30px;
  background: radial-gradient(circle, rgba(98,131,106,0.20), rgba(98,131,106,0));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-100);
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(35, 65, 47, 0.08);
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.96;
  margin: 1rem 0;
  color: var(--green-900);
}

.hero p.lead,
.page-hero p.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-card {
  background: linear-gradient(180deg, #fff, #fbfcfb);
  border: 1px solid rgba(35, 65, 47, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.sketch-frame {
  background: #fff;
  border: 1px solid rgba(35, 65, 47, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.sketch-frame svg {
  width: 100%;
  height: auto;
}

.section {
  padding: 4rem 0;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  margin: 0 0 0.75rem;
  color: var(--green-900);
}

.section .intro {
  max-width: 60ch;
  color: var(--muted);
  margin-bottom: 2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.card {
  background: #fff;
  border: 1px solid rgba(35, 65, 47, 0.08);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: var(--green-900);
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-200), #fff);
  border: 1px solid rgba(178, 138, 46, 0.25);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.quote-block {
  background: linear-gradient(180deg, #fff, #fafbf8);
  border-left: 5px solid var(--gold-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.2rem 1.2rem 1.2rem 1.4rem;
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid rgba(35, 65, 47, 0.08);
  box-shadow: var(--shadow);
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-100), var(--gold-200));
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--green-900);
}

.cta-band {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.cta-band p { margin: 0.35rem 0 0; color: rgba(255,255,255,0.85); }

.cta-band .button {
  background: #fff;
  color: var(--green-900);
}

.form-wrap {
  background: #fff;
  border: 1px solid rgba(35, 65, 47, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--green-900);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.88rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(35, 65, 47, 0.14);
  font: inherit;
  background: #fff;
}

textarea { min-height: 140px; resize: vertical; }

.note,
.small {
  color: var(--muted);
  font-size: 0.96rem;
}

.page-hero {
  padding: 3.2rem 0 2rem;
}

.story-block {
  background: #fff;
  border: 1px solid rgba(35, 65, 47, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.story-block + .story-block { margin-top: 1rem; }

.site-footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
  border-top: 1px solid rgba(35, 65, 47, 0.08);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.inline-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hr-decor {
  height: 1px;
  border: 0;
  margin: 2rem 0;
  background: linear-gradient(90deg, rgba(35,65,47,0), rgba(178,138,46,0.45), rgba(35,65,47,0));
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .cards,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-wrap {
    padding: 0.7rem 0;
  }

  .hero {
    padding-top: 2.6rem;
  }
}

@media (max-width: 560px) {
  .nav-links {
    gap: 0.7rem;
    font-size: 0.92rem;
  }

  .brand-name {
    font-size: 1rem;
  }

  .hero-card,
  .form-wrap,
  .card,
  .story-block,
  .sketch-frame {
    padding: 1rem;
  }
}
