:root {
  --forest: #0d2818;
  --forest-mid: #1a3d2e;
  --leaf: #5cb85c;
  --leaf-bright: #7dd87d;
  --mint: #e8f5e9;
  --cream: #f4faf5;
  --text: #1e2a24;
  --text-muted: #4a5f52;
  --border: rgba(13, 40, 24, 0.12);
  --shadow: 0 12px 40px rgba(13, 40, 24, 0.12);
  --radius: 14px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--forest-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--leaf);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 16rem;
  line-height: 1.35;
}

.nav-toggle {
  display: none;
  background: var(--forest);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font: inherit;
  cursor: pointer;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.15rem;
  justify-content: flex-end;
}

.site-nav a {
  display: block;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--mint);
  color: var(--forest);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 45%, #2d5a3d 100%);
  color: white;
  padding: 3.5rem 1.25rem 4rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1540420773420-3366772f4999?auto=format&fit=crop&w=1600&q=80")
    center / cover no-repeat;
  opacity: 0.22;
  animation: hero-pan 28s ease-in-out infinite alternate;
}

@keyframes hero-pan {
  from {
    transform: scale(1.05) translateX(-1%);
  }
  to {
    transform: scale(1.12) translateX(1%);
  }
}

.hero-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.hero-lead {
  font-size: 1.15rem;
  max-width: 38rem;
  opacity: 0.95;
  margin: 0 0 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary {
  background: var(--leaf-bright);
  color: var(--forest);
  box-shadow: 0 4px 20px rgba(125, 216, 125, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  color: var(--forest);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: white;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.page-hero {
  background: linear-gradient(180deg, var(--mint) 0%, var(--cream) 100%);
  padding: 2.25rem 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  margin: 0;
  color: var(--forest);
}

.content-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3.5rem;
}

.content-wrap--wide {
  max-width: 960px;
}

.prose {
  font-size: 1.05rem;
}

.prose p {
  margin: 0 0 1.1rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--forest);
  margin: 2rem 0 0.75rem;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest-mid);
  margin: 1.5rem 0 0.5rem;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  margin: 1.25rem 0;
  box-shadow: var(--shadow);
}

.card-highlight {
  border-left: 4px solid var(--leaf);
}

.callout {
  background: var(--mint);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.resource-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.resource-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
}

.resource-item h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.resource-item p {
  margin: 0 0 0.5rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.book-grid,
.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.book-card,
.movie-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.book-card:hover,
.movie-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.book-card img,
.movie-card img {
  width: 72px;
  flex-shrink: 0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  aspect-ratio: 2 / 3;
}

.book-card a,
.movie-card a {
  font-weight: 600;
  text-decoration: none;
}

.book-card .author,
.movie-card .author {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.feature-film-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.5rem;
  align-items: flex-start;
}

.feature-film-poster {
  flex-shrink: 0;
  line-height: 0;
}

.feature-film-poster img {
  width: min(200px, 42vw);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(13, 40, 24, 0.2);
  object-fit: cover;
  aspect-ratio: 2 / 3;
}

.feature-film-body {
  flex: 1;
  min-width: min(100%, 16rem);
}

.feature-film-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.65rem;
}

.feature-film-title a {
  text-decoration: none;
  color: var(--forest);
}

.feature-film-body p {
  margin: 0;
}

.media-grid {
  display: grid;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}

.link-list li {
  margin: 0.35rem 0;
}

.link-list a {
  font-weight: 500;
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
}

.subnav a {
  padding: 0.4rem 0.85rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.subnav a.is-active {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
}

.myth-block {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.myth-block:last-child {
  border-bottom: none;
}

.myth-label {
  display: inline-block;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.35rem;
}

.myth-verdict {
  color: #c0392b;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.compare-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 720px;
}

.compare-table th,
.compare-table td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  text-align: left;
}

.compare-table thead th {
  background: var(--mint);
  font-family: var(--font-display);
  font-weight: 600;
}

.compare-table tbody tr:nth-child(even) {
  background: rgba(232, 245, 233, 0.35);
}

.compare-table .col-head img {
  display: block;
  margin: 0.5rem auto 0;
  border-radius: 8px;
  max-height: 80px;
  width: auto;
}

.placeholder-box {
  background: repeating-linear-gradient(
    -45deg,
    var(--mint),
    var(--mint) 8px,
    #dcefdc 8px,
    #dcefdc 16px
  );
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
  margin: 1.5rem 0;
}

.placeholder-box strong {
  display: block;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.figure {
  margin: 1.5rem auto;
  max-width: 420px;
  text-align: center;
}

.figure img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-footer {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.75);
  padding: 1.75rem 1.25rem;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--leaf-bright);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.25rem 1rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    flex-wrap: wrap;
    position: relative;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before {
    animation: none;
  }
}
