﻿:root {
  --ink: #1d2433;
  --muted: #657084;
  --paper: #fffaf0;
  --surface: #ffffff;
  --line: #e7ddca;
  --saffron: #f59e0b;
  --marigold: #facc15;
  --lotus: #d946ef;
  --leaf: #16a34a;
  --teal: #0f766e;
  --blue: #2563eb;
  --shadow: 0 18px 55px rgba(29, 36, 51, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(250, 204, 21, .24), transparent 32rem),
    radial-gradient(circle at 90% 12%, rgba(22, 163, 74, .14), transparent 28rem),
    linear-gradient(180deg, #fff8eb 0%, #fffdf8 46%, #f7fbff 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 250, 240, .92);
  border-bottom: 1px solid rgba(231, 221, 202, .82);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand img {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

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

.nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  color: #3f4858;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover { color: #0f766e; }

.hero {
  min-height: 76vh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, .98fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(34px, 6vw, 86px) clamp(18px, 5vw, 72px) 42px;
}

.eyebrow {
  color: #8a4c00;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .08em;
}

h1, h2, h3 {
  line-height: 1.1;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(44px, 8vw, 92px);
}

h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: 22px; }

.hero p {
  max-width: 720px;
  font-size: clamp(18px, 2.2vw, 23px);
  color: #414b5f;
}

.hero-actions, .button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #d8cab4;
  background: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(29, 36, 51, .08);
}

.button.primary {
  background: #14332f;
  color: #fff;
  border-color: #14332f;
}

.hero-art {
  min-height: 460px;
  border-radius: 8px;
  background: url("home-hero.png") center / cover no-repeat;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.band {
  padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 72px);
}

.band.alt { background: rgba(255, 255, 255, .55); }

.section-head {
  max-width: 860px;
  margin-bottom: 26px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

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

.two-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

.feature, .story-card, .month-card, .resource-card, .lesson-panel, .reading-panel {
  background: rgba(255, 255, 255, .86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(29, 36, 51, .08);
}

.feature, .month-card, .resource-card, .lesson-panel { padding: 20px; }

.feature strong, .month-card strong, .resource-card strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.feature p, .month-card p, .resource-card p { color: var(--muted); margin: 0; }

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

.story-card {
  min-height: 210px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
}

.story-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, .42);
}

.story-card strong { font-size: 20px; line-height: 1.18; }
.story-card span { color: var(--muted); }
.story-card em {
  margin-top: auto;
  color: #0f766e;
  font-style: normal;
  font-weight: 800;
}

.card-kicker {
  color: #9a5a00 !important;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}

.story-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .65fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(36px, 6vw, 78px) clamp(18px, 5vw, 72px);
}

.story-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 9px;
  border-radius: 6px;
  background: #fff1c8;
  color: #7c4300;
  font-weight: 800;
  font-size: 13px;
}

.story-hero h1 { font-size: clamp(38px, 7vw, 76px); }
.story-hero p { font-size: 20px; color: #4c5668; max-width: 690px; }

.story-symbol {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #fff0ce);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.story-symbol span {
  width: 68%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: conic-gradient(from 120deg, var(--teal), var(--saffron), var(--lotus), var(--blue), var(--teal));
  font-size: clamp(52px, 9vw, 104px);
  font-weight: 900;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(220px, .32fr) minmax(0, 1fr);
  gap: 22px;
  padding: 0 clamp(18px, 5vw, 72px) 72px;
}

.lesson-panel {
  align-self: start;
  position: sticky;
  top: 86px;
}

.meta-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.meta-list div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.meta-list span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.meta-list strong { font-size: 18px; }

.reading-panel {
  padding: clamp(22px, 4vw, 42px);
}

.reading-panel p {
  font-size: 19px;
  color: #30394a;
}

.reading-panel h2 {
  margin-top: 30px;
  font-size: 28px;
}

.pill-list, .question-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.pill-list li {
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef8f5;
  color: #0f766e;
  font-weight: 800;
  font-size: 14px;
}

.question-list {
  display: grid;
  gap: 10px;
}

.question-list li {
  padding: 13px 14px;
  border-radius: 8px;
  background: #fff8e7;
  border: 1px solid #f0dfbd;
}

.source-list a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  color: #0f766e;
}

.journey-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.journey-list li {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #14332f;
  color: #fff;
}

.site-footer p { margin: 4px 0 0; color: rgba(255,255,255,.76); }
.site-footer a { color: #ffe69b; font-weight: 800; }

@media (max-width: 980px) {
  .hero, .story-hero, .story-layout, .two-grid { grid-template-columns: 1fr; }
  .grid, .story-list, .journey-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lesson-panel { position: static; }
  .hero-art { min-height: 340px; }
}

@media (max-width: 640px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .nav { justify-content: flex-start; }
  .grid, .story-list, .journey-list { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}
