:root {
  --bg: #0b100e;
  --ink: #eef5ef;
  --muted: #a8b9ad;
  --accent: #6fbf7a;
  --accent-deep: #3d8f4a;
  --amber: #e2b15a;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 70% 45% at 20% 0%, rgba(61, 143, 74, 0.16), transparent 50%),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(226, 177, 90, 0.08), transparent 45%),
    linear-gradient(180deg, #0e1612 0%, var(--bg) 35%, #0a0f0d 100%);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: #f4faf5;
}

.logo span {
  font-weight: 700;
  color: var(--muted);
  margin-left: 6px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, #7dca87, var(--accent-deep));
  color: #071109;
  font: 700 0.95rem/1 var(--font-body);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(61, 143, 74, 0.3);
  transition: filter 0.18s, transform 0.18s;
}
.cta:hover { filter: brightness(1.06); transform: translateY(-1px); }
.cta:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.wrap {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(36px, 6vh, 64px) clamp(16px, 4vw, 48px) clamp(56px, 8vh, 96px);
}

.crumb {
  margin: 0 0 18px;
  color: rgba(168, 185, 173, 0.8);
  font-size: 0.85rem;
}
.crumb a {
  color: #c8d6cc;
  text-decoration: none;
}
.crumb a:hover { text-decoration: underline; text-underline-offset: 3px; }

h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  letter-spacing: -0.045em;
  line-height: 1.12;
  color: #f4faf5;
}

.lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
  font-weight: 500;
  max-width: 42rem;
}

.hero-shot {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0 0 32px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.prose h2 {
  margin: 28px 0 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: #e8f0ea;
}

.prose p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  font-weight: 500;
}

.prose ul {
  margin: 0 0 16px;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.prose li { margin: 0 0 6px; }

.more {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.more h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.more-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.more-links a {
  color: #c8d6cc;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(111, 191, 122, 0.45);
}
.more-links a:hover {
  color: #eef5ef;
  text-decoration-color: var(--accent);
}

.foot {
  margin-top: 40px;
  color: rgba(168, 185, 173, 0.7);
  font-size: 0.85rem;
}
.foot a { color: inherit; }

@media (max-width: 640px) {
  .top { padding: 14px 16px; }
  .hero-shot { max-height: 220px; border-radius: 14px; }
}
