/*
 * GREENWOOD LEARNING — "Field Notes" Design System
 * ─────────────────────────────────────────────────────────────
 * An editorial, magazine-style redesign: oversized type, sharp
 * (unrounded) edges, a warm paper background, and a bold clay/
 * terracotta accent in place of the previous forest-green theme.
 *
 * Navigation is a single full-screen overlay menu (no dropdowns,
 * no separate mobile nav) triggered from a slim top bar. Sections
 * are numbered like chapters, content is laid out in asymmetric
 * splits (not even 50/50), and quotes/feature imagery live in bold
 * full-width "statement" blocks rather than dimmed photo banners.
 * ─────────────────────────────────────────────────────────────
 */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Colour palette */
  --ink:        #181a1b;
  --ink-soft:   #53585c;
  --paper:      #f7f2e8;
  --paper-alt:  #ece2cf;
  --accent:     #e2542d;
  --accent-dark:#bd4322;
  --moss:       #4f6151;
  --white:      #ffffff;
  --line:       #ddd0ba;
  --text-light: #7a766f;

  /* Typography */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing */
  --pad:          clamp(56px, 9vw, 120px);
  --content-max:  1280px;
  --header-h:     84px;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  padding-top: var(--header-h);
}

img { display: block; width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ─── Utility ────────────────────────────────────────────────── */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 2px solid var(--ink);
  white-space: nowrap;
}

.btn-ink {
  background: var(--ink);
  color: var(--paper);
}
.btn-ink:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.btn-outline-ink {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline-ink:hover { background: var(--ink); color: var(--paper); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--ink); }

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 2px solid var(--ink);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-download:hover { background: var(--ink); color: var(--paper); }
.btn-download::before { content: "↓"; font-size: 1rem; }

/* Numbered chapter tag, used to open every section */
.section-num {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.section-num::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.75rem);
  margin-bottom: 20px;
}

.section-body {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ─── Reveal animation ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.visible { transition-delay: 0.08s; }
.reveal-delay-2.visible { transition-delay: 0.16s; }
.reveal-delay-3.visible { transition-delay: 0.24s; }
.reveal-delay-4.visible { transition-delay: 0.32s; }
.reveal-delay-5.visible { transition-delay: 0.4s; }

/* ════════════════════════════════════════════════════════════
   HEADER + FULL-SCREEN MENU
   ════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 2px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled {
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.site-header.menu-open {
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}

.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.brand span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-cta { display: none; }
@media (min-width: 860px) {
  .header-cta { display: inline-flex; }
}

.menu-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 0;
}
.menu-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.menu-toggle-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.open .menu-toggle-icon span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}
.menu-toggle.open .menu-toggle-icon span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}
.menu-toggle.open .menu-toggle-text-label::before { content: "Close"; }

.menu-toggle-text-label::before { content: "Menu"; }
.menu-toggle-text-label { display: inline-block; width: 4.2em; }

.menu-overlay {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--paper);
  z-index: 190;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  overflow-y: auto;
}
.menu-overlay.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  padding-top: var(--pad);
  padding-bottom: var(--pad);
  min-height: calc(100vh - var(--header-h));
}

.menu-list {
  flex: 2 1 480px;
  display: flex;
  flex-direction: column;
}
.menu-item {
  border-top: 2px solid var(--ink);
  padding: 22px 0;
}
.menu-item:last-child { border-bottom: 2px solid var(--ink); }

.menu-link {
  display: flex;
  align-items: baseline;
  gap: 24px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.menu-link:hover, .menu-link.active { color: var(--accent); }
.menu-link-index {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.menu-children {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 14px;
  margin-left: clamp(48px, 8vw, 88px);
}
.menu-children a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.menu-children a:hover, .menu-children a.active { color: var(--accent); border-color: var(--accent); }

.menu-side {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.menu-side-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.menu-side-block p { margin-bottom: 8px; color: var(--ink-soft); }
.menu-side-block a:hover { color: var(--accent); }
.menu-side-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.menu-side-social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--ink);
  font-weight: 700; font-size: 0.75rem; text-transform: uppercase;
}
.menu-side-social a:hover { background: var(--ink); color: var(--paper); }

body.menu-active { overflow: hidden; }

/* ════════════════════════════════════════════════════════════
   PAGE HEADER (banner replacement)
   ════════════════════════════════════════════════════════════ */
.page-header {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(280px, 38vw, 460px);
  border-bottom: 2px solid var(--ink);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(24,26,27,0.88) 0%, rgba(24,26,27,0.35) 55%, rgba(24,26,27,0.15) 100%);
}
.page-header-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 56px 0;
}
.page-header-text h1 {
  color: var(--paper);
  font-size: clamp(2.5rem, 7vw, 5rem);
  margin-top: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247,242,232,0.7);
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(247,242,232,0.35); }

/* ════════════════════════════════════════════════════════════
   SECTIONS — generic spacing + split layouts
   ════════════════════════════════════════════════════════════ */
.section {
  padding: var(--pad) 0;
  border-bottom: 2px solid var(--ink);
}
.section:last-of-type { border-bottom: none; }
.section.no-border { border-bottom: none; }
.section.alt { background: var(--paper-alt); }

.split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.split.reverse { grid-template-columns: 7fr 5fr; }
.split.reverse .split-media { order: 2; }
.split.even { grid-template-columns: 1fr 1fr; }

.split-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 2px solid var(--ink);
}
.split.even .split-media img { aspect-ratio: 6 / 5; }

.split-content h2 { margin-bottom: 20px; }
.split-content p + p { margin-top: 14px; }
.split-content .btn { margin-top: 28px; }

@media (max-width: 860px) {
  .split, .split.reverse, .split.even {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split.reverse .split-media { order: 0; }
  .split-media img { aspect-ratio: 16 / 10; }
}

/* ════════════════════════════════════════════════════════════
   STATEMENT / QUOTE BLOCKS (feature strip replacement)
   ════════════════════════════════════════════════════════════ */
.statement {
  background: var(--ink);
  color: var(--paper);
  padding: var(--pad) 0;
  border-bottom: 2px solid var(--ink);
}
.statement-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.statement-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.statement-attr {
  display: block;
  margin-top: 24px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.statement-image img {
  border: 2px solid var(--paper);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
@media (max-width: 860px) {
  .statement-inner { grid-template-columns: 1fr; }
  .statement-image { order: -1; max-width: 320px; }
}

/* ════════════════════════════════════════════════════════════
   GRID OF 3 (approach / highlights)
   ════════════════════════════════════════════════════════════ */
.section-head {
  margin-bottom: 56px;
  max-width: 60ch;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ink);
  border: 2px solid var(--ink);
}
.grid-item {
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
.grid-item-image {
  aspect-ratio: 5 / 4;
  overflow: hidden;
}
.grid-item-image img { height: 100%; object-fit: cover; }
.grid-item-body {
  padding: 28px 28px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.grid-item-body h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.grid-item-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex: 1;
}
.grid-item-body a {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  width: fit-content;
}
.grid-item-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

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

/* ════════════════════════════════════════════════════════════
   CARD ROWS (linked content / explore)
   ════════════════════════════════════════════════════════════ */
.cards-section { padding: var(--pad) 0; border-bottom: 2px solid var(--ink); }
.cards-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.card-grid.two-col { grid-template-columns: repeat(2, 1fr); }

.card {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 6px 6px 0 var(--accent);
}
.card-image { aspect-ratio: 4 / 3; overflow: hidden; border-bottom: 2px solid var(--ink); }
.card-image img { height: 100%; object-fit: cover; }
.card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.card-title { font-size: 1.15rem; margin-bottom: 10px; }
.card-text { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.card-link::after { content: "→"; transition: transform 0.2s ease; }
.card:hover .card-link::after { transform: translateX(4px); }

@media (max-width: 1000px) {
  .card-grid, .card-grid.two-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .card-grid, .card-grid.two-col { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   CTA BLOCK
   ════════════════════════════════════════════════════════════ */
.cta-block {
  padding: var(--pad) 0;
  background: var(--accent);
  color: var(--white);
  border-bottom: 2px solid var(--ink);
}
.cta-block-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-block h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 12px; max-width: 18ch; }
.cta-block p { max-width: 50ch; color: rgba(255,255,255,0.85); }
.cta-block .btn { flex-shrink: 0; }
.cta-block .section-eyebrow { color: var(--ink); }

/* ════════════════════════════════════════════════════════════
   HOMEPAGE — HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  border-bottom: 2px solid var(--ink);
  min-height: calc(100vh - var(--header-h));
}
.hero-panel {
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad) clamp(24px, 4vw, 64px);
  border-right: 2px solid var(--ink);
}
.hero-panel .section-eyebrow { color: var(--accent); }
.hero-panel h1 {
  color: var(--paper);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin-bottom: 24px;
}
.hero-panel .hero-sub {
  color: rgba(247,242,232,0.8);
  font-size: 1.0625rem;
  max-width: 46ch;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-media { position: relative; overflow: hidden; min-height: 360px; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-panel { border-right: none; border-bottom: 2px solid var(--ink); padding: 64px 24px; }
  .hero-media { min-height: 320px; }
}

/* ════════════════════════════════════════════════════════════
   HOMEPAGE — EXPLORE GRID
   ════════════════════════════════════════════════════════════ */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--ink);
  border: 2px solid var(--ink);
}
.explore-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: block;
}
.explore-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.explore-card:hover img { transform: scale(1.05); }
.explore-card-content {
  position: absolute;
  inset: auto 0 0 0;
  background: var(--paper);
  border-top: 2px solid var(--ink);
  padding: 20px 24px;
}
.explore-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.explore-card-title { font-size: 1.35rem; }

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

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  color: var(--paper);
}
.footer-top {
  padding: var(--pad) 0 56px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  border-bottom: 2px solid rgba(247,242,232,0.18);
}
.footer-top h2 {
  color: var(--paper);
  font-size: clamp(2rem, 6vw, 3.5rem);
}
.footer-top h2 span { color: var(--accent); }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 56px 0;
  border-bottom: 2px solid rgba(247,242,232,0.18);
}
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.footer-brand-tagline { color: rgba(247,242,232,0.6); font-size: 0.9rem; margin-top: 4px; }
.footer-about { color: rgba(247,242,232,0.75); font-size: 0.9375rem; margin-top: 14px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--accent); }
.footer-contact-item { margin-bottom: 14px; font-size: 0.9375rem; color: rgba(247,242,232,0.85); }
.footer-contact-item strong { display: block; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; font-weight: 700; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(247,242,232,0.3);
  font-weight: 700; font-size: 0.75rem; text-transform: uppercase;
}
.footer-social a:hover { border-color: var(--accent); background: var(--accent); }

.footer-newsletter p { color: rgba(247,242,232,0.75); font-size: 0.9375rem; margin-bottom: 16px; }
.mailchimp-placeholder {
  border: 1px dashed rgba(247,242,232,0.35);
  padding: 16px;
  font-size: 0.8rem;
  color: rgba(247,242,232,0.5);
}

.footer-bottom {
  padding: 28px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(247,242,232,0.55);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--accent); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   RESOURCES PAGE
   ════════════════════════════════════════════════════════════ */
.resources-intro {
  padding: var(--pad) 0 56px;
  border-bottom: 2px solid var(--ink);
}
.resources-intro .container { max-width: 70ch; }
.resources-intro h2 { margin-bottom: 16px; }
.resources-intro p { color: var(--ink-soft); }

.resources-grid-section { padding: var(--pad) 0; border-bottom: 2px solid var(--ink); }
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.resource-card {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink);
  background: var(--white);
}
.resource-card-image { aspect-ratio: 4 / 3; border-bottom: 2px solid var(--ink); overflow: hidden; }
.resource-card-image img { height: 100%; object-fit: cover; }
.resource-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.resource-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.resource-card-title { font-size: 1.1rem; }
.resource-card-desc { color: var(--ink-soft); font-size: 0.9rem; flex: 1; }
.resource-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.resource-card-meta { font-size: 0.8rem; color: var(--text-light); font-weight: 600; }

.drive-placeholder {
  border: 2px dashed var(--line);
  padding: 48px 24px;
  text-align: center;
  font-style: italic;
  color: var(--text-light);
}

.library-panel {
  background: var(--paper-alt);
  border: 2px solid var(--ink);
  padding: 64px 48px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.library-panel-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--ink);
  color: var(--accent);
}
.library-panel-icon svg { width: 30px; height: 30px; }
.library-panel h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.library-panel p {
  color: var(--ink-soft);
  margin-bottom: 24px;
}

@media (max-width: 1000px) { .resources-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .resources-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════════════ */
.contact-layout {
  padding: var(--pad) 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 96px);
  border-bottom: 2px solid var(--ink);
}
.contact-details h2 { margin-bottom: 32px; }
.contact-item { padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: none; }
.contact-item-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.contact-item a:hover { color: var(--accent); }
.contact-image { border: 2px solid var(--ink); aspect-ratio: 16 / 10; overflow: hidden; margin-bottom: 24px; }
.contact-image img { height: 100%; object-fit: cover; }
.map-placeholder, .contact-layout iframe {
  width: 100%;
  border: 2px dashed var(--line);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-style: italic;
  color: var(--text-light);
  padding: 24px;
}
.contact-layout iframe { border: 2px solid var(--ink); padding: 0; }

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   MEET THE HEAD
   ════════════════════════════════════════════════════════════ */
.head-layout {
  padding: var(--pad) 0;
  border-bottom: 2px solid var(--ink);
}
.head-layout .container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 6vw, 96px);
}
.head-portrait { align-self: start; }
.head-portrait img { border: 2px solid var(--ink); aspect-ratio: 4 / 5; object-fit: cover; }
.head-portrait-caption {
  border: 2px solid var(--ink);
  border-top: none;
  padding: 16px 20px;
  background: var(--white);
}
.head-portrait-caption strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.head-portrait-caption span { font-size: 0.8rem; color: var(--accent); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.head-text h2 { margin-bottom: 24px; }
.head-text p { color: var(--ink-soft); margin-bottom: 18px; }
.head-text .signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink);
  margin-top: 28px;
}

@media (max-width: 860px) {
  .head-layout .container { grid-template-columns: 1fr; }
  .head-portrait { max-width: 280px; }
}

/* ════════════════════════════════════════════════════════════
   OUTDOOR LEARNING — benefits list
   ════════════════════════════════════════════════════════════ */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.benefit-item:last-child { border-bottom: 1px solid var(--line); }
.benefit-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border: 2px solid var(--accent);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.benefit-item h3 { font-size: 1.05rem; margin-bottom: 4px; }
.benefit-item p { color: var(--ink-soft); font-size: 0.9375rem; }

/* ════════════════════════════════════════════════════════════
   ARTICLES
   ════════════════════════════════════════════════════════════ */
.article-section { padding: var(--pad) 0; border-bottom: 2px solid var(--ink); }
.article-wrap { max-width: 760px; margin: 0 auto; }
.article-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.article-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.article-date { font-size: 0.875rem; color: var(--text-light); font-weight: 600; }
.article-figure {
  margin-bottom: 40px;
  border: 2px solid var(--ink);
}
.article-figure img { aspect-ratio: 16 / 9; object-fit: cover; }
.article-body { font-size: 1.0625rem; line-height: 1.85; color: var(--ink-soft); }
.article-body h2, .article-body h3 { color: var(--ink); margin: 1.6em 0 0.6em; }
.article-body p { margin-bottom: 1.2em; }
.article-body a { color: var(--accent); text-decoration: underline; }
.article-body ul, .article-body ol { margin: 0 0 1.2em 1.4em; }
.article-body li { margin-bottom: 0.4em; }
.article-downloads {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--ink);
}
.article-downloads h3 { font-size: 1.05rem; margin-bottom: 16px; }
.article-downloads .btn-download { margin-bottom: 10px; }
.article-back {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--ink);
}
.article-back a {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.article-back a:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════════════
   PROSE (generic CMS markdown content)
   ════════════════════════════════════════════════════════════ */
.prose { font-size: 1.0625rem; line-height: 1.85; color: var(--ink-soft); max-width: 70ch; }
.prose h2, .prose h3 { color: var(--ink); margin: 1.4em 0 0.6em; }
.prose p { margin-bottom: 1.2em; }
.prose a { color: var(--accent); text-decoration: underline; }
.prose ul, .prose ol { margin: 0 0 1.2em 1.4em; }
.prose li { margin-bottom: 0.4em; }
