:root {
  --ink: #17201d;
  --muted: #5d6c65;
  --paper: #fbfaf5;
  --soft: #f0efe6;
  --line: #ded9c9;
  --sage: #5d786d;
  --moss: #2f5d50;
  --clay: #ad6b4f;
  --rose: #c98c85;
  --gold: #c79d42;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(23, 32, 29, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid rgba(222, 217, 201, 0.76);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  align-items: center;
  background: var(--moss);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-family: Newsreader, Georgia, serif;
  font-size: 1.1rem;
  font-weight: 650;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
  margin-top: 2px;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.site-nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 11px;
  text-decoration: none;
}

.site-nav a:hover {
  background: var(--soft);
  color: var(--ink);
}

.section-pad {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  min-height: calc(100vh - 75px);
  padding-top: clamp(40px, 6vw, 78px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 650;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.15rem, 4.4vw, 4.35rem);
  margin-bottom: 20px;
  max-width: 920px;
}

h2 {
  font-size: clamp(2.1rem, 4.8vw, 4.25rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-subhead {
  color: var(--moss);
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 24px;
  max-width: 720px;
}

.hero-copy p:not(.eyebrow):not(.hero-subhead),
.section-heading p,
.text-columns p,
.why-card p,
.connect-copy p,
.site-footer p {
  color: var(--muted);
  font-size: 1rem;
}

.note {
  border-left: 4px solid var(--gold);
  margin: 24px 0;
  padding-left: 16px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  text-decoration: none;
}

.button.primary {
  background: var(--moss);
  color: var(--white);
}

.button.primary:hover {
  background: #244b41;
}

.button.secondary {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--sage);
}

.hero-media {
  margin: 0;
}

.hero-media img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: min(70vh, 720px);
  object-fit: cover;
  width: 100%;
}

.hero-media figcaption {
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 12px;
}

.section-heading {
  margin: 0 auto 34px;
  max-width: 860px;
  text-align: center;
}

.section-heading p:last-child {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.story {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.text-columns {
  columns: 3 280px;
  column-gap: 36px;
  margin: 0 auto;
  max-width: 1120px;
}

.text-columns p {
  break-inside: avoid;
}

.why {
  background:
    linear-gradient(135deg, rgba(93, 120, 109, 0.16), rgba(201, 140, 133, 0.15)),
    var(--soft);
}

.why-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(222, 217, 201, 0.86);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(23, 32, 29, 0.08);
  margin: 0 auto;
  max-width: 980px;
  padding: clamp(28px, 5vw, 58px);
}

.questions {
  background: var(--paper);
}

.question-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.question-grid article,
.org-grid article,
.idea-list article,
.audience-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(23, 32, 29, 0.06);
}

.question-grid article {
  min-height: 270px;
  padding: 22px;
}

.question-grid span {
  color: var(--clay);
  display: block;
  font-weight: 800;
  margin-bottom: 40px;
}

.question-grid p,
.org-grid p,
.idea-list p,
.audience-panel li {
  color: var(--muted);
  font-size: 0.96rem;
}

.learning {
  background: #eef3f0;
}

.org-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.org-grid article {
  min-height: 210px;
  padding: 24px;
}

.org-grid h3::before {
  background: var(--rose);
  border-radius: 999px;
  content: "";
  display: block;
  height: 6px;
  margin-bottom: 22px;
  width: 42px;
}

.ideas {
  background: var(--white);
}

.idea-list {
  display: grid;
  gap: 16px;
  margin: 0 auto;
  max-width: 1120px;
}

.idea-list article {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: 0.72fr 1fr 1fr;
  padding: 24px;
}

.pill {
  background: #f7e6dc;
  border-radius: 999px;
  color: #814b37;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 14px;
  padding: 6px 10px;
}

.learn-line {
  border-left: 3px solid var(--sage);
  padding-left: 14px;
}

.connect {
  align-items: start;
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.connect .eyebrow {
  color: #f0bd7b;
}

.connect h2,
.connect h3 {
  color: var(--white);
}

.connect-copy p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px;
}

.audience-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  padding: 26px;
}

.audience-panel ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.audience-panel li {
  color: rgba(255, 255, 255, 0.78);
  padding-left: 20px;
  position: relative;
}

.audience-panel li::before {
  background: var(--gold);
  border-radius: 50%;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 0.72em;
  width: 7px;
}

.connect .button.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.site-footer {
  align-items: center;
  background: #111815;
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 26px clamp(18px, 5vw, 72px);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
  max-width: 760px;
}

.site-footer p:last-child {
  color: #f0bd7b;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .hero,
  .connect {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .question-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .org-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .section-pad {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(2rem, 9.5vw, 3.25rem);
  }

  .button {
    width: 100%;
  }

  .question-grid,
  .org-grid,
  .idea-list article {
    grid-template-columns: 1fr;
  }

  .question-grid article,
  .org-grid article {
    min-height: auto;
  }

  .question-grid span {
    margin-bottom: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
