/* AHEN brand system — see docs/brand/ for the full brand sheet.
   Palette: Pou green #14573D · Tupu green #2F9E6A · Rau leaf #9FD9BC · Ink #10241C · Paper #F4F8F4 */

:root {
  --deep: #14573D;
  --mid: #2F9E6A;
  --light: #9FD9BC;
  --ink: #10241C;
  --paper: #F4F8F4;
  --muted: #6a786f;
  --border: rgba(16, 42, 34, 0.1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--deep); }

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

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

.brand-mark { height: 54px; width: auto; display: block; }

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

.brand-name {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--deep);
}

.brand-descriptor {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--mid);
}

.site-nav { display: flex; gap: 28px; }

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover { color: var(--mid); }
.site-nav a.active { color: var(--deep); border-bottom-color: var(--mid); }

/* Hero */
.hero {
  background: var(--deep);
  color: #fff;
  padding: 88px 0;
}

.hero .eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light);
  margin: 0 0 14px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0 0 18px;
  max-width: 18ch;
  line-height: 1.15;
}

.hero p { font-size: 18px; max-width: 56ch; margin: 0 0 30px; color: #dcebe2; }

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.btn-light { background: var(--light); color: var(--ink); }
.btn-light:hover { background: #b7e3cc; }
.btn-primary { background: var(--deep); color: #fff; }
.btn-primary:hover { background: #1a6b4c; }

/* Sections */
.section { padding: 64px 0; }

.section h2 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mid);
  margin: 0 0 22px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(16, 42, 34, 0.12);
}

.section h3 { font-size: 24px; font-weight: 700; color: var(--deep); margin: 0 0 12px; }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Events */
.event-card { display: flex; flex-direction: column; gap: 6px; }
.event-date { font-weight: 600; color: var(--mid); font-size: 14px; }
.event-title { font-size: 19px; font-weight: 700; color: var(--deep); margin: 0; }
.event-location { color: var(--muted); font-size: 14px; }
.event-description { font-size: 15px; margin: 6px 0 0; }
.event-card .btn { margin-top: 14px; align-self: flex-start; }

/* People */
.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.avatar-lg { width: 150px; height: 150px; flex-shrink: 0; }

.lead-profile { display: flex; gap: 30px; align-items: flex-start; }
.lead-profile .person-bio { font-size: 15.5px; max-width: 68ch; }
.lead-profile .person-bio p { margin: 0 0 14px; }

.person-card { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.person-name { font-size: 17px; font-weight: 700; color: var(--deep); margin: 12px 0 0; }
.person-role { color: var(--mid); font-weight: 600; font-size: 13.5px; letter-spacing: 0.5px; text-transform: uppercase; margin: 2px 0 0; }
.person-blurb { color: var(--muted); font-size: 14px; margin: 8px 0 0; text-align: left; }
.person-blurb p { margin: 0 0 10px; }
.person-blurb p:last-child { margin-bottom: 0; }

/* Two cards per row, ordered left-to-right; cards in a row share the same height */
.people-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 680px) {
  .people-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .lead-profile { flex-direction: column; align-items: center; text-align: center; }
}

.event-links { display: flex; gap: 18px; margin-top: 10px; }
.event-links a { font-weight: 600; font-size: 14.5px; }

.event-card-link { text-decoration: none; color: inherit; transition: border-color .15s, box-shadow .15s; }
.event-card-link:hover { border-color: var(--mid); box-shadow: 0 4px 14px rgba(16, 42, 34, 0.08); }
.event-register-hint { margin-top: 12px; font-weight: 600; font-size: 14.5px; color: var(--mid); }
.event-card-link:hover .event-register-hint { text-decoration: underline; }

/* News */
.news-photo {
  width: calc(100% + 60px);
  margin: -30px -30px 16px;
  max-height: 240px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
  display: block;
}
.news-card .event-description p { margin: 6px 0 0; }

/* Jobs */
.job-org { font-weight: 600; font-size: 14.5px; color: var(--deep); }

.form-note { color: var(--muted); font-size: 13.5px; }

/* Forms */
.form-card { max-width: 560px; }
.form-field { margin: 18px 0; }
.form-field label { display: block; font-weight: 600; font-size: 14.5px; margin-bottom: 6px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(16, 42, 34, 0.25);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  box-sizing: border-box;
}
.form-field input:focus,
.form-field textarea:focus { outline: 2px solid var(--mid); outline-offset: 1px; border-color: var(--mid); }
.form-error { color: #c0492f; font-size: 13.5px; margin: 6px 0 0; }
form .btn { border: 0; cursor: pointer; font-family: inherit; margin-top: 8px; }

.form-card-wide { max-width: 720px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row .form-field { margin: 18px 0 0; }

.choices > div { margin: 7px 0; }
.choices label { font-weight: 400; font-size: 15px; display: flex; align-items: center; gap: 9px; margin: 0; }
.choices input { width: auto; accent-color: var(--mid); }

.benefit-list { margin: 0; padding-left: 20px; font-size: 16px; }
.benefit-list li { margin: 8px 0; }

.tier-card { text-align: center; }
.tier-name { font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); margin: 0 0 10px; }
.tier-price { font-size: 38px; font-weight: 700; color: var(--deep); margin: 0 0 10px; letter-spacing: -1px; }
.tier-per { font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.tier-blurb { font-size: 14.5px; color: var(--muted); margin: 0; }
.tier-was { font-size: 13px; color: var(--muted); text-decoration: line-through; margin: -6px 0 10px; }
.tier-card .btn { margin-top: 16px; }

@media (max-width: 680px) { .form-row { grid-template-columns: 1fr; } }

.notice { padding: 16px 18px; border-radius: 10px; font-size: 14.5px; margin: 20px 0; }
.notice p { margin: 0; }
.notice-info { background: #eaf4ee; border-left: 3px solid var(--mid); }

.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--deep);
  color: #dcebe2;
  margin-top: 40px;
  padding: 36px 0;
}

.footer-inner { display: flex; align-items: center; gap: 20px; }
.footer-mark { height: 52px; width: auto; }
.footer-name { font-weight: 600; color: #fff; margin: 0; }
.footer-note { font-size: 13px; margin: 4px 0 0; color: var(--light); }

/* Prose pages (About) */
.prose { max-width: 68ch; }
.prose p { font-size: 16.5px; }

.about-card { display: flex; align-items: center; gap: 56px; }
.about-card .about-text { flex: 1; }
.about-card-mark { width: 260px; height: auto; flex-shrink: 0; margin-right: 24px; }

@media (max-width: 900px) {
  .about-card { flex-direction: column-reverse; gap: 8px; }
  .about-card-mark { width: 150px; margin: 0; }
}

@media (max-width: 680px) {
  .header-inner { flex-direction: column; gap: 12px; }
  .hero { padding: 60px 0; }
}
