:root {
  --ink: #183028;
  --ink-soft: #486057;
  --forest: #214c3e;
  --moss: #6d8a62;
  --leaf: #9ab86f;
  --sun: #e7be4b;
  --clay: #c97755;
  --cream: #f6f3e9;
  --paper: #fffdf8;
  --line: #d8ddd4;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(28, 61, 49, .10);
  --radius: 26px;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }

.wrap {
  width: min(calc(100% - 40px), var(--wrap));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(33, 76, 62, .08);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}
.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.brand-text {
  font-size: 15px;
  line-height: 1.05;
  letter-spacing: -.01em;
}
.brand-text strong { font-size: 18px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-nav > a:not(.button) {
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}
.site-nav > a:not(.button):hover { color: var(--moss); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  border: 2px solid var(--forest);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(33, 76, 62, .16);
}
.button-small { min-height: 42px; padding: 0 18px; font-size: 14px; }
.button-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.button-outline { background: transparent; color: var(--forest); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}
.text-link-light { color: white; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 15%, rgba(154,184,111,.22), transparent 30%),
    linear-gradient(150deg, #fbfaf5 0%, #f3f4e8 58%, #edf1e4 100%);
  border-bottom: 1px solid rgba(33, 76, 62, .08);
}
.hero-grid {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 70px;
  align-items: center;
  padding: 100px 0 110px;
}
.hero-copy { position: relative; z-index: 2; max-width: 760px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--moss);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1,
.section h2,
.newsletter-strip h2,
.newsletter-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: .98;
  letter-spacing: -.045em;
}
.hero h1 { font-size: clamp(58px, 8vw, 104px); }
.hero h1 em { color: var(--forest); font-weight: 400; }
.hero-intro {
  max-width: 690px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-panel {
  position: relative;
  z-index: 2;
  padding: 36px;
  border-radius: 34px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(33,76,62,.10);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transform: rotate(1.5deg);
}
.hero-panel p { margin: 0; }
.hero-panel .panel-kicker {
  margin-top: 26px;
  color: var(--moss);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}
.hero-panel .panel-big {
  margin: 9px 0 16px;
  font: 700 34px/1.03 Georgia, "Times New Roman", serif;
  letter-spacing: -.035em;
}
.hero-panel > p:last-child { color: var(--ink-soft); }
.leaf-mark {
  width: 146px;
  height: 146px;
  color: var(--forest);
}
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(33, 76, 62, .10);
  border-radius: 50%;
}
.hero-orbit-one { width: 540px; height: 540px; right: -220px; top: -170px; }
.hero-orbit-two { width: 320px; height: 320px; right: 22%; bottom: -210px; }

.newsletter-strip {
  background: var(--forest);
  color: white;
}
.newsletter-strip-inner {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 46px 0;
}
.newsletter-strip .eyebrow { color: #cbdca8; }
.newsletter-strip h2 { font-size: clamp(38px, 4vw, 58px); }
.newsletter-strip-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.section { padding: 110px 0; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}
.section h2 { font-size: clamp(44px, 5.5vw, 72px); }
.section-lead,
.large-copy { color: var(--ink-soft); font-size: 20px; }
.section-lead { margin: 0; }

.projects-section { background: var(--paper); }
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.project-card {
  min-height: 360px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8f8f3;
  transition: transform .2s ease, box-shadow .2s ease;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.project-card-featured { background: #e8efe0; border-color: #d7e2cc; }
.project-card-warm { background: #f4e7db; border-color: #ead5c4; }
.project-icon { font-size: 34px; margin-bottom: 26px; }
.project-tag {
  margin: 0 0 8px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.project-card h3 {
  margin: 0 0 14px;
  font: 700 36px/1.05 Georgia, "Times New Roman", serif;
  letter-spacing: -.03em;
}
.project-card p:not(.project-tag) { color: var(--ink-soft); max-width: 58ch; }
.card-link { margin-top: auto; font-weight: 800; text-underline-offset: 4px; }

.about-section { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr);
  gap: 90px;
  align-items: start;
}
.about-copy > p { max-width: 70ch; }
.about-copy .text-link { margin-top: 12px; }
.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.fact-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid rgba(33,76,62,.10);
}
.fact-card strong {
  display: block;
  font: 700 46px/1 Georgia, "Times New Roman", serif;
  color: var(--forest);
}
.fact-card span { margin-top: 9px; color: var(--ink-soft); font-weight: 700; }

.action-section { background: var(--paper); }
.action-card {
  padding: 54px;
  border-radius: 34px;
  background: linear-gradient(140deg, #eef3e5, #f7efe3);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  border: 1px solid rgba(33,76,62,.08);
}
.action-card h2 { max-width: 820px; }
.action-card p:not(.eyebrow) { color: var(--ink-soft); font-size: 18px; max-width: 70ch; }
.action-buttons { display: flex; flex-direction: column; gap: 12px; min-width: 200px; }

.site-footer {
  padding: 66px 0 24px;
  background: #11271f;
  color: #dce6df;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr .9fr;
  gap: 70px;
}
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-grid p { color: #aebeb6; margin: 8px 0 0; max-width: 42ch; }
.footer-grid a { color: inherit; text-decoration-color: rgba(255,255,255,.35); text-underline-offset: 4px; }
.brand-footer { margin-bottom: 8px; color: white; }
.footer-heading { margin: 0 0 8px; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: white; }
.footer-bottom {
  margin-top: 52px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.11);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #8fa097;
  font-size: 13px;
}

/* Newsletter archive */
.newsletter-hero {
  padding: 100px 0 72px;
  background: linear-gradient(150deg, #f4f5e9, #fbf8f1);
}
.newsletter-hero h1 { font-size: clamp(58px, 8vw, 98px); max-width: 900px; }
.newsletter-hero .intro { max-width: 760px; margin: 26px 0 0; font-size: 22px; color: var(--ink-soft); }
.archive-section { padding: 80px 0 110px; }
.archive-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; align-items: start; }
.latest-newsletter,
.archive-note {
  border-radius: 28px;
  border: 1px solid var(--line);
  padding: 34px;
}
.latest-newsletter { background: #e8efe0; }
.latest-newsletter .newsletter-label { color: var(--moss); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.latest-newsletter h2 { font: 700 46px/1.04 Georgia, "Times New Roman", serif; margin: 10px 0 12px; letter-spacing: -.03em; }
.latest-newsletter p { color: var(--ink-soft); max-width: 60ch; }
.latest-newsletter .button { margin-top: 12px; }
.archive-note { background: var(--cream); }
.archive-note h2 { font: 700 30px/1.1 Georgia, "Times New Roman", serif; margin: 0 0 12px; }
.archive-note p { color: var(--ink-soft); }
.archive-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.archive-list-wrap { margin-top: 48px; }
.archive-list-wrap h2 { font: 700 42px/1 Georgia, "Times New Roman", serif; margin: 0 0 22px; letter-spacing: -.03em; }
.archive-placeholder {
  padding: 30px;
  border: 1px dashed #b9c4ba;
  border-radius: 20px;
  color: var(--ink-soft);
  background: #fbfbf7;
}

@media (max-width: 920px) {
  .site-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    border-radius: 20px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a:not(.button) { padding: 12px 8px; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; padding: 78px 0 86px; gap: 48px; }
  .hero-panel { max-width: 580px; transform: none; }
  .newsletter-strip-inner,
  .section-heading { grid-template-columns: 1fr; display: grid; }
  .newsletter-strip-actions { justify-content: flex-start; }
  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .action-card { grid-template-columns: 1fr; }
  .action-buttons { flex-direction: row; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .archive-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .wrap { width: min(calc(100% - 28px), var(--wrap)); }
  .header-inner { min-height: 72px; }
  .brand-logo { width: 40px; height: 40px; }
  .hero h1 { font-size: clamp(54px, 16vw, 78px); }
  .hero-intro { font-size: 19px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-panel { padding: 28px; }
  .newsletter-strip-inner { padding: 40px 0; min-height: 0; }
  .section { padding: 78px 0; }
  .section-heading { gap: 24px; margin-bottom: 32px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 330px; padding: 28px; }
  .project-card h3 { font-size: 32px; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .fact-card { min-height: 160px; padding: 20px; }
  .fact-card strong { font-size: 38px; }
  .action-card { padding: 34px 24px; }
  .action-buttons { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .newsletter-hero { padding: 72px 0 54px; }
  .newsletter-hero .intro { font-size: 19px; }
  .archive-section { padding: 54px 0 80px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
