:root {
  --bg: #f4ece0;
  --bg-panel: #fffcf7;
  --bg-panel-alt: #ebe0cb;
  --text: #2b2318;
  --text-muted: #6e6152;
  --text-faint: #948572;
  --accent: #5f7d3f;
  --accent-soft: #b9d38c;
  --accent-dark: #f4ece0;
  --bg-rgb: 244, 236, 224;
  --border: rgba(43, 35, 24, 0.12);
  --border-hover: rgba(95, 125, 63, 0.4);
  --max-width: 1100px;
  --radius: 14px;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--bg);
  background-image:
    radial-gradient(1100px circle at 12% -8%, rgba(107, 42, 40, 0.20), transparent 60%),
    radial-gradient(900px circle at 100% 18%, rgba(196, 120, 70, 0.16), transparent 55%),
    radial-gradient(850px circle at 12% 78%, rgba(107, 42, 40, 0.13), transparent 55%),
    radial-gradient(700px circle at 90% 95%, rgba(196, 120, 70, 0.13), transparent 55%);
  background-attachment: fixed, fixed, fixed, fixed;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  color: var(--text);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(var(--bg-rgb), 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.header-start {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-panel);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.nav-toggle:hover {
  border-color: var(--border-hover);
}

.nav-mobile-cta {
  display: none;
}

.brand-name strong {
  color: var(--accent);
}

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

.main-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.site-header .btn.nav-cta {
  display: none;
}

@media (min-width: 720px) {
  .site-header .btn.nav-cta {
    display: inline-flex;
  }
}

/* Buttons */

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

.btn-primary {
  background: linear-gradient(135deg, #6f9048, #4c6631);
  color: var(--accent-dark);
  box-shadow: 0 0 0 1px rgba(95, 125, 63, 0.18), 0 10px 26px -14px rgba(95, 125, 63, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #7ea154, #5f7d3f);
  box-shadow: 0 0 0 1px rgba(95, 125, 63, 0.3), 0 14px 34px -12px rgba(95, 125, 63, 0.6);
}

.btn-small {
  padding: 9px 20px;
  font-size: 0.85rem;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(95, 125, 63, 0.4);
  box-shadow: none;
}

.btn-outline:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: rgba(95, 125, 63, 0.08);
  box-shadow: none;
}

/* Section scaffolding */

section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  border-image: linear-gradient(90deg, transparent, var(--border) 25%, var(--border) 75%, transparent) 1;
}

section:last-of-type {
  border-bottom: none;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.section-intro {
  max-width: 640px;
  margin: 0 0 32px;
}

.section-intro p {
  color: var(--text-muted);
  margin: 12px 0 0;
}

/* Hero */

.hero {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 480px;
  background: radial-gradient(ellipse at top, rgba(95, 125, 63, 0.16), transparent 70%);
  pointer-events: none;
  animation: hero-glow-drift 14s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(240, 220, 195, 0.16) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 30%, black 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 65% at 50% 30%, black 0%, transparent 75%);
  pointer-events: none;
}

@keyframes hero-glow-drift {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.85; }
  to { transform: translate3d(0, 16px, 0) scale(1.06); opacity: 1; }
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 40px;
  justify-items: center;
  text-align: center;
}

.hero-inner > * {
  min-width: 0;
}

.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.15;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1,
.hero-lead,
.hero-person,
.hero-actions {
  animation: hero-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-lead { animation-delay: 0.08s; }
.hero-person { animation-delay: 0.16s; }
.hero-actions { animation-delay: 0.24s; }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

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

  .hero h1,
  .hero-lead,
  .hero-person,
  .hero-actions {
    animation: none;
  }
}

.hero-lead {
  margin-top: 14px;
  font-size: 1.15rem;
  color: var(--text-muted);
}

.hero-person {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.avatar-ring {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 0 0 4px rgba(95, 125, 63, 0.08);
}

.hero-person .avatar-ring {
  animation: avatar-glow-pulse 4s ease-in-out infinite;
}

@keyframes avatar-glow-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(95, 125, 63, 0.08); }
  50% { box-shadow: 0 0 0 7px rgba(95, 125, 63, 0.16); }
}

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

.avatar-ring svg {
  width: 34px;
  height: 34px;
  color: var(--accent);
}

.avatar-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-person-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.hero-person-role {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 2px;
}

.dot-sep {
  color: var(--accent);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.hero-actions .hint {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Line divider motif */

.line-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 44px;
  color: var(--text-faint);
}

.line-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.5;
}

.line-divider span {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Card surfaces (about, process, stats, contact) */

.about-card,
.process-card,
.stat-tile,
.contact-card,
.ppwr-results-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 40%), var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ppwr-results-card {
  padding: 32px;
}

.about-card::before,
.process-card::before,
.stat-tile::before,
.contact-card::before,
.ppwr-results-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent 75%);
  opacity: 0.55;
}

.about-card:hover,
.process-card:hover,
.stat-tile:hover,
.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: 0 18px 40px -24px rgba(95, 125, 63, 0.35);
}

/* PPWR page (standalone) */

.ppwr-timeline {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}

.ppwr-timeline .process-card ul {
  margin-bottom: 0;
}

.ppwr-year {
  width: auto;
  min-width: 44px;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.ppwr-sources {
  color: var(--text-faint);
  font-size: 0.85rem;
}

.ppwr-sources a {
  color: var(--text-muted);
  text-decoration: underline;
}

.ppwr-sources a:hover {
  color: var(--accent);
}

.ppwr-closing {
  margin-top: 40px;
}

/* About page (standalone) */

.about-page-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.about-page-person {
  margin-top: 0;
  margin-bottom: 32px;
  justify-content: flex-start;
}

.about-page-person .avatar-ring {
  width: 96px;
  height: 96px;
}

/* About columns */

.about-tagline {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin: 14px 0 56px;
}

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

.about-card {
  padding: 32px;
}

.about-card .eyebrow {
  margin-bottom: 6px;
}

.about-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text);
  font-size: 0.98rem;
}


/* Stats */

.stats-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 48px;
}

.stat-tile {
  padding: 28px;
}

.stat-tile .stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-tile .stat-label {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.results-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 14px 48px;
  grid-template-columns: repeat(2, minmax(240px, 340px));
  justify-content: center;
  max-width: 760px;
}

@media (max-width: 640px) {
  .results-list {
    grid-template-columns: minmax(240px, 340px);
  }
}

.results-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.96rem;
}


/* Process steps */

.process-block {
  position: relative;
  margin-bottom: 48px;
}

.process-block:last-child {
  margin-bottom: 0;
}


.process-grid {
  position: relative;
  display: grid;
  align-items: stretch;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 24px;
}

.process-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.process-card-photo {
  display: block;
  width: calc(100% + 56px);
  max-width: none;
  margin: auto -28px -28px;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

.process-number {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  color: var(--accent-dark);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 8px 22px -8px rgba(95, 125, 63, 0.55), 0 0 0 4px var(--bg-panel);
  margin-bottom: 18px;
}

.process-card h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.process-card ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.process-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 20px;
}

.faq-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 40%), var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent 75%);
  opacity: 0.55;
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.faq-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* PPWR teaser */

.ppwr-teaser {
  padding: 28px 0;
  text-align: center;
}

.ppwr-teaser-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 620px;
  padding: 20px 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 40%), var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ppwr-teaser-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 25%, var(--accent) 75%, transparent);
  opacity: 0.55;
}

.ppwr-teaser-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: 0 18px 40px -24px rgba(95, 125, 63, 0.35);
  color: var(--text);
}

.ppwr-teaser-card:hover .ppwr-teaser-arrow {
  transform: translateX(3px);
}

.ppwr-teaser-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(95, 125, 63, 0.14);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.ppwr-teaser-arrow {
  color: var(--accent);
  transition: transform 0.15s ease;
}

.ppwr-teaser-text-short {
  display: none;
}

@media (max-width: 560px) {
  .ppwr-teaser-card {
    padding: 14px 20px;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .ppwr-teaser-text-full {
    display: none;
  }

  .ppwr-teaser-text-short {
    display: inline;
  }
}

/* Reach banner */

.reach-banner {
  padding: 48px 0;
  text-align: center;
}

.reach-card {
  display: inline-block;
  max-width: 760px;
  padding: 32px 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 40%), var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.reach-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 25%, var(--accent) 75%, transparent);
  opacity: 0.55;
}

.reach-banner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* CTA */

.cta-section {
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0 8% auto 8%;
  top: 10%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(95, 125, 63, 0.14), transparent 72%);
  pointer-events: none;
  z-index: -1;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.cta-sub {
  margin-top: 14px;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.05rem;
}

.cta-section .btn {
  margin-top: 32px;
}

/* Quote */

.quote-section {
  text-align: center;
  position: relative;
}

.quote-section blockquote {
  margin: 0;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.4;
  position: relative;
}

.quote-section blockquote::before {
  content: "\201C";
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 4px;
}

.quote-section cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact / footer */

.contact-section {
  padding-bottom: 64px;
}

.contact-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact-card {
  padding: 28px;
}

.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: var(--accent);
}

.contact-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-card p a,
.legal-page p a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 3px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.contact-card p a:hover,
.legal-page p a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.placeholder {
  color: var(--text-faint);
  font-style: italic;
}

.site-footer {
  padding: 40px 0;
  color: var(--text-faint);
  font-size: 0.85rem;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-faint);
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

/* Legal pages */

.legal-page {
  padding: 48px 0 72px;
}

.legal-page h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 8px;
}

.back-link {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.back-link:hover {
  color: var(--accent);
}

.legal-notice {
  background: var(--bg-panel);
  border: 1px dashed var(--accent);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 40px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.legal-page h2 {
  font-size: 1.15rem;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-page p {
  color: var(--text-muted);
  margin: 0 0 12px;
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 2px;
    padding: 8px 24px 20px;
    background: rgba(var(--bg-rgb), 0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a.nav-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 13px 20px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-soft), var(--accent));
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
  }

  section {
    padding: 32px 0;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-lead {
    margin-top: 10px;
  }

  .hero-person {
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .ppwr-teaser {
    padding: 20px 0 56px;
  }
}
