/* ===== FONTS ===== */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/cormorant-garamond-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/cormorant-garamond-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/cormorant-garamond-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/cormorant-garamond-400i.ttf') format('truetype');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/nunito-300.ttf') format('truetype');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/nunito-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/nunito-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/nunito-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/nunito-700.ttf') format('truetype');
}

/* ===== DESIGN TOKENS ===== */
:root {
  --bg-deep: #1a1612;
  --bg-surface: #241e19;
  --bg-card: rgba(245, 237, 224, 0.03);

  --text-primary: #ebede2;
  --text-brown: #E2D6C0;
  --text-secondary: #c4c3a8;
  --text-muted: #8b7a68;
  --text-faint: #5e5447;

  --accent-gold: #c9a86c;
  --accent-gold-light: #dfc392;
  --accent-gold-dim: rgba(201, 168, 108, 0.12);
  --accent-gold-glow: rgba(201, 168, 108, 0.03);
  --accent-sage: #7a8c5f;
  --accent-sage-light: #adc194;
  --accent-sage-dim: rgba(122, 140, 95, 0.12);
  --accent-warm: #c07b5e;

  --border-subtle: rgba(201, 168, 108, 0.08);
  --border-active: rgba(201, 168, 108, 0.2);

  --font-heading: 'Philosopher', sans-serif;
  --font-body: 'Nunito', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --transition-smooth: 0.5s var(--ease-out-expo);
  --transition-bounce: 0.6s var(--ease-spring);
  --transition-fast: 0.2s ease;
}

/* ===== BASE & RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px; /* LEVEL 1: Mobile (default) */
  -webkit-font-smoothing: antialiased;
  scrollbar-color: rgba(201, 168, 108, 0.25) var(--bg-deep); /* Firefox */
  scrollbar-width: thin;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-secondary);
  background-color: var(--bg-deep);
  line-height: 1.85;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

::selection {
  background: #25331e;
  color: var(--accent-gold);
}

/* Custom Scrollbar (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 108, 0.25); /* Elegant gold tint */
  border-radius: 4px;
  border: 2px solid var(--bg-deep); /* Capsule padding effect */
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold); /* Bright gold on hover */
}



/* SVG Noise Overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem; /* Mobile padding */
  position: relative;
  z-index: 2;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.06s; }
.reveal-d2 { transition-delay: 0.12s; }
.reveal-d3 { transition-delay: 0.18s; }
.reveal-d4 { transition-delay: 0.24s; }

/* ===== HERO ===== */
.hero {
  min-height: auto; /* Mobile default height */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4.5rem 0 3rem 0;
  overflow: hidden;
  background-color: var(--bg-deep);
  background-image: linear-gradient(to bottom, rgba(26, 22, 18, 0.35), rgba(26, 22, 18, 0.65)), url('img/back.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover, cover;
}

/* Animated gradient background */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 108, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(122, 140, 95, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(192, 123, 94, 0.04) 0%, transparent 50%);
  animation: hero-glow 20s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes hero-glow {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-3%, 2%) scale(1.02); }
  66% { transform: translate(2%, -1%) scale(0.98); }
  100% { transform: translate(-1%, -2%) scale(1.01); }
}

/* Decorative organic shapes */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px); /* Mobile default blur */
  opacity: 0.3;      /* Mobile default opacity */
  z-index: 0;
  animation: float 12s ease-in-out infinite;
}

.hero-orb--gold {
  width: 180px;
  height: 180px;
  background: var(--accent-gold-dim);
  top: 10%;
  right: -5%;
  animation-delay: -2s;
}

.hero-orb--sage {
  width: 150px;
  height: 150px;
  background: var(--accent-sage-dim);
  bottom: 15%;
  left: -5%;
  animation-delay: -6s;
}

.hero-orb--warm {
  width: 120px;
  height: 120px;
  background: rgba(192, 123, 94, 0.06);
  top: 50%;
  right: 10%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(15px, -20px); }
  50% { transform: translate(-10px, 15px); }
  75% { transform: translate(20px, 10px); }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding: 0 1.5rem;
}

.hero__info-badge {
  position: absolute;
  top: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: max-content;
  max-width: calc(100% - 2rem);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-brown);
  opacity: 0.95;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.hero__info-separator {
  color: #8c806f;
  margin: 0 0.4rem;
  opacity: 0.8;
}

/* Decorative line above title */
.hero__accent-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: 0 auto 1.25rem;
  opacity: 0.6;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: 0.12em;
  color: var(--accent-sage-light);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 4px 16px rgba(40, 50, 30, 0.95), 0 2px 4px rgba(30, 38, 20, 0.95);
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--accent-gold);
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  text-shadow: 0 3px 12px rgba(40, 50, 30, 0.95), 0 1px 3px rgba(30, 38, 20, 0.95);
}

.hero__intro {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 700px; /* Made the block wider */
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.hero__intro-sub {
  opacity: 0.5;
  font-weight: 300;
}



/* ===== SECTIONS ===== */
.section {
  padding: 2.5rem 0; /* Compressed mobile section padding */
  position: relative;
  overflow: hidden; /* Prevent horizontal scroll from background watermarks */
}
.section + .section {
  border-top: 1px solid transparent;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent) top / 100% 1px no-repeat;
}
#intro {
  background: radial-gradient(circle at 15% 50%, rgba(122, 140, 95, 0.025) 0%, var(--bg-deep) 65%);
}
#about {
  background: radial-gradient(circle at 85% 40%, rgba(201, 168, 108, 0.03) 0%, var(--bg-deep) 70%);
}
#how {
  background: radial-gradient(circle at 15% 50%, rgba(192, 123, 94, 0.03) 0%, var(--bg-deep) 70%);
}
#facilitators {
  background: radial-gradient(circle at 85% 45%, rgba(122, 140, 95, 0.025) 0%, var(--bg-deep) 70%);
}
#needs {
  background: radial-gradient(circle at 15% 50%, rgba(122, 140, 95, 0.025) 0%, var(--bg-deep) 70%);
}

/* Background Fern Watermarks for specific sections */
#about, #how, #facilitators, #needs, .cta {
  position: relative;
}

.fern-watermark {
  position: absolute;
  background-image: url('img/fern_single.png');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
}

.fern-watermark.acacia {
  background-image: url('img/acacia_single.png');
}

/* Mobile: keep only one leaf per section, smaller and subtler */
.watermark-2,
.watermark-3 {
  display: none;
}
.watermark-1 {
  opacity: 0.02;
}

/* Custom individual positions, rotations and mirroring for organic variety */
#about .watermark-1 {
  width: 700px;
  height: 700px;
  top: -100px;
  left: -280px;
  transform: rotate(-35deg);
}
#about .watermark-2 {
  width: 950px;
  height: 950px;
  top: 35%;
  right: -380px;
  transform: rotate(125deg) scaleX(-1);
}
#about .watermark-3 {
  width: 800px;
  height: 800px;
  bottom: -200px;
  left: -250px;
  transform: rotate(55deg);
}

#how .watermark-1 {
  width: 800px;
  height: 800px;
  top: -50px;
  left: -320px;
  transform: rotate(45deg);
}
#how .watermark-2 {
  width: 750px;
  height: 750px;
  top: 45%;
  right: -350px;
  transform: rotate(-125deg) scaleX(-1);
}
#how .watermark-3 {
  width: 850px;
  height: 850px;
  bottom: -250px;
  left: -250px;
  transform: rotate(75deg);
}

#needs .watermark-1 {
  width: 900px;
  height: 900px;
  top: -200px;
  left: -400px;
  transform: rotate(-45deg);
}
#needs .watermark-2 {
  width: 800px;
  height: 800px;
  top: 30%;
  right: -300px;
  transform: rotate(35deg) scaleY(-1);
}
#needs .watermark-3 {
  width: 850px;
  height: 850px;
  bottom: -150px;
  left: -350px;
  transform: rotate(115deg) scaleX(-1);
}

#facilitators .watermark-1 {
  width: 850px;
  height: 850px;
  top: -150px;
  right: -350px;
  transform: rotate(15deg) scaleY(-1);
}
#facilitators .watermark-2 {
  width: 750px;
  height: 750px;
  top: 40%;
  left: -300px;
  transform: rotate(-85deg);
}
#facilitators .watermark-3 {
  width: 800px;
  height: 800px;
  bottom: -100px;
  right: -350px;
  transform: rotate(95deg) scaleX(-1);
}

#register .watermark-1 {
  width: 750px;
  height: 750px;
  top: -200px;
  right: -300px;
  transform: rotate(-25deg) scaleX(-1);
}
#register .watermark-2 {
  width: 820px;
  height: 820px;
  bottom: -250px;
  left: -300px;
  transform: rotate(105deg);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header__title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: var(--accent-sage-light);
  position: relative;
  display: inline-block;
}
/* Delicate organic underline */
.section-header__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8'%3E%3Cpath d='M0,5 C30,2 60,7 100,4 C140,1 170,6 200,3' fill='none' stroke='%23c9a86c' stroke-width='1.2' opacity='0.25'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}

/* ===== TYPOGRAPHY & BLOCKS ===== */
.body-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.body-text strong {
  font-weight: 600;
  color: var(--text-primary);
}
.body-text em {
  font-style: italic;
  color: var(--accent-gold);
}
.body-text a {
  color: var(--accent-gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--transition-fast);
}
.body-text a:hover {
  color: var(--accent-gold-light);
}
.body-text--needs-intro {
  margin-top: 0;
  margin-bottom: 0;
}

/* Pull quote */
.pull-quote {
  position: relative;
  padding: 1.25rem 0 1.25rem 1.75rem; /* Mobile default */
  margin: 2rem 0;
}
.pull-quote::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-gold), var(--accent-sage), transparent);
}
@keyframes pull-quote-flow {
  0%   { background-position: 0% 0%; }
  100% { background-position: 0% 100%; }
}
.pull-quote p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
  background: linear-gradient(180deg, var(--accent-sage-light), var(--accent-sage), var(--accent-warm));
  background-size: 100% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--accent-sage);
  animation: pull-quote-flow 16s ease-in-out infinite alternate;
}
.pull-quote__mark {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  color: var(--accent-gold);
  opacity: 0.15;
  position: absolute;
  top: -0.5rem; left: 0.8rem;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}


/* Method badge */
.method-tag {
  display: inline-block;
  background: var(--accent-gold-dim);
  border: 1px solid var(--border-active);
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.needs-container {
  border: 1px solid var(--text-brown);
  border-radius: 12px;
  padding: 1.5rem;
  background-color: rgba(245, 237, 224, 0.01);
  margin: 2.5rem 0;
}
.needs-container .body-text--needs-intro {
  margin-bottom: 0;
  font-weight: 500;
}
.needs-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* Center line is hidden by default on mobile */

.needs-flow__row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
}

.need-side {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  text-align: left;
  justify-content: flex-start;
  padding-left: 2.2rem;
  width: 100%;
}

/* On mobile, left side aligns like the right side */
.need-side--left {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* Simple dot prefix on mobile */
.need-side::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-gold);
}

.need-flow__node {
  display: none;
}

.need-item__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.need-item__text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.need-side:hover .need-item__text {
  color: var(--text-primary);
}

/* ===== LOGISTICS LIST (Mobile first default) ===== */
.logistics-stack {
  display: flex;
  flex-direction: column;
  margin: 2.5rem 0;
  border-left: 2px solid var(--border-subtle);
}

.logistics-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  padding: 1rem 0 1rem 1.8rem;
  position: relative;
  transition: padding-left var(--transition-smooth);
}

.logistics-row::before {
  content: '';
  position: absolute;
  left: -2px; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent-gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition-smooth);
}

.logistics-row:hover::before {
  transform: scaleY(1);
}
.logistics-row:hover {
  padding-left: 2rem;
}

.logistics-row + .logistics-row {
  border-top: 1px solid rgba(201, 168, 108, 0.04);
}

.logistics-row__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.logistics-row__value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.35;
}

.logistics-row__detail {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-top: 0.1rem;
}

/* Callout Box */
.callout-box {
  position: relative;
  background: var(--accent-gold-glow);
  border-left: 2px solid var(--accent-gold);
  padding: 1.5rem;
  margin: 2.5rem 0;
}
.callout-box p {
  margin-bottom: 0;
  color: var(--text-primary);
}
.callout-list-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 2.5rem 0;
}
.callout-list-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-sage-light);
  margin-bottom: 1rem;
  text-align: left;
}
.callout-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}
.callout-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1.05rem;
}
.callout-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
}
.callout-list li:last-child {
  margin-bottom: 0;
}

/* Method Highlight Box */
.method-box {
  position: relative;
  background: rgba(122, 140, 95, 0.04);
  border-left: 3px solid var(--accent-sage);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem;
  margin: 1.5rem 0 2.5rem 0;
  transition: all var(--transition-smooth);
}
.method-box:hover {
  background: rgba(122, 140, 95, 0.08);
  border-left-color: var(--accent-gold);
}
.method-box p {
  margin-bottom: 0;
  color: var(--text-primary);
  line-height: 1.8;
}
.method-box p.method-box__intro {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.method-box__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.method-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.method-detail__icon {
  font-size: 1.25rem;
  line-height: 1.5;
  flex-shrink: 0;
}
.method-box .method-detail p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
}
.method-box .method-detail p strong {
  color: var(--text-primary);
}

/* Comics Section */
.comics-container {
  margin-top: 0.8rem;
  margin-bottom: 1.5rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  display: block;
}
.comics-caption {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-style: italic;
}
.comics-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  display: block;
  margin: 0 auto;
  opacity: 1;
  filter: none;
  transition: all var(--transition-smooth);
}
.comics-image:hover {
  border-color: rgba(201, 168, 108, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

/* ===== FACILITATORS Grid (Mobile first default) ===== */
.facilitators-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin: 0.5rem 0 2.5rem 0; /* Reduced top margin to dock closer to image */
}

.facilitators-image {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  margin-bottom: 1rem; /* Reduced bottom margin */
  display: block;
  opacity: 1;
  filter: none;
  transition: all var(--transition-smooth);
}
.facilitators-image:hover {
  border-color: rgba(201, 168, 108, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.facilitator-card {
  position: relative;
  background: rgba(245, 237, 224, 0.012);
  border: 1px solid rgba(201, 168, 108, 0.04);
  border-radius: 12px;
  padding: 1.75rem;
  transition: all var(--transition-smooth);
}
.facilitator-card:hover {
  background: rgba(245, 237, 224, 0.025);
  border-color: rgba(201, 168, 108, 0.15);
  transform: translateY(-4px);
}

/* Safe decorative initial background placement */
.facilitator-card__initial {
  position: absolute;
  right: 1.5rem;
  top: 0.75rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 500;
  color: var(--accent-gold);
  opacity: 0.04;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}
.facilitator-card:hover .facilitator-card__initial {
  opacity: 0.12;
}

.facilitator-card__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.facilitator-card__role {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.facilitator-card__bio {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}



/* ===== CTA ===== */
.cta {
  padding: 3.5rem 0;
  text-align: center;
  background: radial-gradient(circle at 50% 40%, rgba(201, 168, 108, 0.04) 0%, var(--bg-deep) 80%);
  position: relative;
  overflow: hidden; /* Prevent horizontal scroll from background watermarks */
}

.cta__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent-sage-light);
  margin-bottom: 1rem;
}

.cta__description {
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2.5rem auto;
}

.cta-button-wrapper {
  margin-bottom: 2.5rem;
}

/* Hand-drawn Button */
.cta-handwritten-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 25rem;
  height: 4.5rem;
  padding: 0 1.2rem;
  box-sizing: border-box;
  text-decoration: none;
  color: var(--accent-gold);
  transition: color var(--transition-fast);
}

.cta-handwritten-btn:hover {
  color: var(--accent-gold-light);
}

.cta-handwritten-btn__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.cta-handwritten-btn__path-bg {
  fill: none;
  stroke: var(--accent-gold);
  stroke-width: 0.6;
  opacity: 0.35;
}

.cta-handwritten-btn__path-active {
  fill: rgba(122, 140, 95, 0.25);
  stroke: var(--accent-gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 650;
  stroke-dashoffset: 650;
  transition: stroke-dashoffset 0.8s var(--ease-out-expo), stroke var(--transition-fast), fill var(--transition-fast);
  opacity: 0.85;
  filter: drop-shadow(0 0 10px rgba(201, 168, 108, 0.35));
}

.cta-handwritten-btn:hover .cta-handwritten-btn__path-active {
  stroke-dashoffset: 0;
  opacity: 1;
  stroke: var(--accent-gold-light);
  fill: rgba(122, 140, 95, 0.4);
  filter: drop-shadow(0 0 18px rgba(201, 168, 108, 0.6));
}



.cta-handwritten-btn__label {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.3s var(--ease-spring);
}
.cta-handwritten-btn:hover .cta-handwritten-btn__label {
  transform: scale(1.02);
}

.cta-handwritten-btn__arrow {
  position: relative;
  z-index: 2;
  margin-left: 0.55rem;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.4s var(--ease-out-expo);
}
.cta-handwritten-btn:hover .cta-handwritten-btn__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Container for hero button */
.hero__cta {
  margin-top: 2.2rem;
  display: flex;
  justify-content: center;
}

/* Calm scroll button for hero */
.hero-scroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.55rem 1.4rem;
  border-radius: 6px;
  background-color: rgba(245, 237, 224, 0.02);
  border: 1px solid rgba(201, 168, 108, 0.25);
  color: var(--accent-gold);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.hero-scroll-btn:hover {
  background-color: rgba(201, 168, 108, 0.08);
  border-color: var(--accent-gold);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-scroll-btn__arrow {
  font-size: 0.9rem;
  transition: transform var(--transition-fast);
}

.hero-scroll-btn:hover .hero-scroll-btn__arrow {
  transform: translateY(2px);
}

.cta__divider {
  width: 20%;
  max-width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.4;
  margin: 3.5rem auto 2.5rem auto;
}

.cta__share {
  margin-top: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ===== FAQ Accordion ===== */
.faq-accordion {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(226, 214, 192, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.faq-item[open] {
  border-color: rgba(201, 168, 108, 0.25);
  background: rgba(122, 140, 95, 0.04);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

/* Custom indicator icon */
.faq-item__question .faq-item__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item__question .faq-item__icon::before,
.faq-item__question .faq-item__icon::after {
  content: '';
  position: absolute;
  background-color: var(--accent-gold);
  transition: transform var(--transition-smooth);
}

/* Horizontal line */
.faq-item__question .faq-item__icon::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
}

/* Vertical line */
.faq-item__question .faq-item__icon::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
}

/* Rotate vertical line to make horizontal (plus to minus) when open */
.faq-item[open] .faq-item__question .faq-item__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item[open] .faq-item__question .faq-item__icon::before {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
}

.faq-item__answer p {
  margin-bottom: 0;
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid transparent;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent) top / 100% 1px no-repeat, var(--bg-deep);
}
.footer__text {
  font-size: 0.78rem;
  color: var(--text-faint);
  letter-spacing: 0.05em;
}


/* ========================================================
   LEVEL 2: TABLETS (Screen widths 768px and above)
   ======================================================== */
@media (min-width: 768px) {
  html {
    font-size: 17px;
  }

  .container {
    padding: 0 2rem;
  }

  .hero {
    min-height: 80vh; /* Shorter screen height on tablets */
    padding: 4rem 1.5rem;
  }

  /* Restore all watermarks on larger screens */
  .watermark-2,
  .watermark-3 {
    display: block;
  }
  .watermark-1 {
    opacity: 0.03;
  }

  .hero__info-badge {
    top: 2.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
  }

  .hero-orb {
    filter: blur(75px);
    opacity: 0.35;
  }

  .hero-orb--gold {
    width: 250px;
    height: 250px;
    top: 12%;
    right: 5%;
  }

  .hero-orb--sage {
    width: 200px;
    height: 200px;
    bottom: 18%;
    left: 2%;
  }

  .hero-orb--warm {
    width: 160px;
    height: 160px;
    top: 55%;
    right: 15%;
  }

  .section {
    padding: 3.5rem 0;
  }

  .pull-quote {
    padding: 1.5rem 0 1.5rem 2.2rem;
    margin: 2.5rem 0;
  }
  .pull-quote p {
    font-size: 1.35rem;
    line-height: 1.52;
  }

  /* Timeline active on tablets */
  .needs-container {
    margin: 3rem 0;
    padding: 2.25rem 2rem;
  }
  .needs-flow {
    gap: 2rem;
    margin-top: 2rem;
  }

  .needs-flow::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--accent-gold-dim), var(--accent-sage-dim), transparent);
    transform: translateX(-50%);
    z-index: 1;
  }

  .needs-flow__row {
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    align-items: center;
    gap: 0;
  }

  .need-side {
    width: auto;
    padding-left: 0;
  }

  .need-side::before {
    display: none;
  }

  .need-side--left {
    flex-direction: row;
    justify-content: flex-end;
    text-align: right;
  }

  .need-side--right {
    justify-content: flex-start;
    text-align: left;
  }

  .need-flow__node {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 2;
  }

  .need-item__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1.5px solid var(--accent-gold);
    background: var(--bg-deep);
    transition: all 0.3s var(--ease-spring);
  }

  .needs-flow__row:has(.need-side--left:hover) .need-item__dot--left,
  .needs-flow__row:has(.need-side--right:hover) .need-item__dot--right {
    transform: scale(1.3);
    background: var(--accent-gold);
  }

  .need-item__text {
    font-size: 1.2rem;
  }

  /* Logistics list in columns on tablets */
  .logistics-stack {
    margin: 3rem 0;
  }

  .logistics-row {
    grid-template-columns: 120px 1fr;
    gap: 0;
    padding: 1.2rem 0 1.2rem 2rem;
  }

  .logistics-row:hover {
    padding-left: 2.2rem;
  }

  .logistics-row__value {
    font-size: 1.3rem;
  }

  .logistics-row__detail {
    font-size: 0.88rem;
    margin-top: 0.15rem;
  }

  .callout-box {
    padding: 1.75rem;
    margin: 2.75rem 0;
  }

  .method-box {
    padding: 1.75rem;
    margin: 2rem 0 3rem 0;
  }

  .comics-container {
    margin-top: 1.25rem;
    margin-bottom: 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
  }

  @media (min-width: 900px) {
    .comics-container {
      margin-left: -50px;
      margin-right: -50px;
    }
  }

  .donation-callout {
    padding: 2.2rem 1.75rem;
    margin: 2.75rem 0;
  }
  .donation-callout__text {
    font-size: 1.4rem;
  }

  /* Facilitators grid side-by-side */
  .facilitators-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 0.75rem 0 3rem 0;
  }

  .facilitators-image {
    margin-bottom: 1.25rem;
  }

  .facilitator-card {
    padding: 2rem;
  }

  .facilitator-card__initial {
    font-size: 5.5rem;
  }

  .facilitator-card__name {
    font-size: 1.6rem;
  }

  .facilitator-card__role {
    font-size: 0.76rem;
    margin-bottom: 1.15rem;
  }

  .facilitator-card__bio {
    font-size: 0.98rem;
    line-height: 1.78;
  }

  /* CTA */
  .cta {
    padding: 6.5rem 0;
  }

  .cta__title {
    font-size: 2.2rem;
  }

  .cta__description {
    font-size: 1.02rem;
    margin-bottom: 3rem;
  }

  .cta__share {
    margin-top: 3.5rem;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .cta-handwritten-btn {
    max-width: 32rem;
    height: 5.5rem;
  }
  .cta-handwritten-btn__label {
    font-size: 1.25rem;
  }

  .hero-scroll-btn {
    font-size: 0.88rem;
    padding: 0.65rem 1.6rem;
  }
}


/* ========================================================
   LEVEL 3: REGULAR DESKTOP (13-15" - screen widths 1025px+)
   ======================================================== */
@media (min-width: 1025px) {
  html {
    font-size: 18px;
  }

  .hero {
    min-height: 100vh; /* Full screen on laptops */
    padding: 5.5rem 1.5rem 4rem 1.5rem;
    justify-content: flex-start;
  }

  .hero__content {
    margin-left: 30%;
    margin-right: auto;
    text-align: center;
  }

  .hero__info-badge {
    left: 30%;
    width: calc(100% - 30% - 1.5rem);
    max-width: 720px;
    text-align: center;
    transform: none;
    top: 2.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
  }



  .hero-orb {
    filter: blur(80px);
    opacity: 0.4;
  }

  .hero-orb--gold {
    width: 300px;
    height: 300px;
    top: 15%;
    right: 10%;
  }

  .hero-orb--sage {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 5%;
  }

  .hero-orb--warm {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 25%;
  }

  .section {
    padding: 4.5rem 0;
  }

  .pull-quote {
    padding: 1.5rem 0 1.5rem 2.5rem;
    margin: 3rem 0;
  }
  .pull-quote p {
    font-size: 1.45rem;
    line-height: 1.55;
  }

  .needs-container {
    margin: 3.5rem 0;
  }

  .need-item__text {
    font-size: 1.25rem;
  }

  .logistics-stack {
    margin: 3.5rem 0;
  }

  .logistics-row {
    padding: 1.25rem 0 1.25rem 2.25rem;
  }

  .logistics-row:hover {
    padding-left: 2.5rem;
  }

  .logistics-row__value {
    font-size: 1.4rem;
  }

  .logistics-row__detail {
    font-size: 0.9rem;
    margin-top: 0.2rem;
  }

  .callout-box {
    padding: 2rem;
    margin: 3rem 0;
  }

  .method-box {
    padding: 2rem;
  }

  .comics-container {
    margin-top: 1.5rem;
    margin-bottom: 2.25rem;
    margin-left: -60px;
    margin-right: -60px;
  }

  .donation-callout {
    padding: 2.5rem 2rem;
    margin: 3rem 0;
  }
  .donation-callout__text {
    font-size: 1.5rem;
  }

  .facilitators-grid {
    gap: 3rem;
    margin: 1rem 0 3.5rem 0;
  }

  .facilitators-image {
    margin-bottom: 1.5rem;
  }

  .facilitator-card {
    padding: 2.25rem;
  }

  .facilitator-card__initial {
    font-size: 6rem;
    right: 2rem;
    top: 1.25rem;
  }

  .facilitator-card__name {
    font-size: 1.7rem;
  }

  .facilitator-card__role {
    font-size: 0.78rem;
    margin-bottom: 1.25rem;
  }

  .facilitator-card__bio {
    font-size: 1rem;
    line-height: 1.8;
  }

  .cta {
    padding: 8rem 0;
  }

  .cta__title {
    font-size: 2.4rem;
  }

  .cta__description {
    font-size: 1.05rem;
    margin-bottom: 3.5rem;
  }

  .cta__share {
    margin-top: 4rem;
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .cta-handwritten-btn {
    max-width: 28rem;
    height: 5rem;
  }
  .cta-handwritten-btn__label {
    font-size: 1.35rem;
  }

  /* Desktop-only dimming for comics and facilitators (touch/mobile/tablet stays fully visible) */
  .comics-image {
    opacity: 0.55;
    filter: brightness(0.75);
  }
  .comics-image:hover {
    opacity: 1;
    filter: brightness(1);
  }

  .facilitators-image {
    opacity: 0.55;
    filter: brightness(0.75);
  }
  .facilitators-image:hover {
    opacity: 1;
    filter: brightness(1);
  }
}


/* ========================================================
   LEVEL 4: WIDE DESKTOP (18"+ monitors - screen widths 1600px+)
   ======================================================== */
@media (min-width: 1600px) {
  html {
    font-size: 20px; /* Scaling typography and spacing up proportionally */
  }

  .container {
    max-width: 900px; /* Slightly wider container for high-res screens */
  }

  .hero-orb {
    filter: blur(100px); /* Deeper blur for giant monitors */
    opacity: 0.45;
  }

  .hero-orb--gold {
    width: 400px;
    height: 400px;
    top: 18%;
    right: 12%;
  }

  .hero-orb--sage {
    width: 350px;
    height: 350px;
    bottom: 22%;
    left: 8%;
  }

  .hero-orb--warm {
    width: 280px;
    height: 280px;
    top: 65%;
    right: 28%;
  }

  .section {
    padding: 6rem 0; /* Generous spacing on large screens */
  }

  .pull-quote {
    margin: 4rem 0;
  }

  .needs-container {
    margin: 4.5rem 0;
  }
  .needs-flow {
    gap: 2.5rem;
  }

  .logistics-stack {
    margin: 4.5rem 0;
  }

  .logistics-row {
    padding: 1.5rem 0 1.5rem 2.5rem;
  }

  .logistics-row:hover {
    padding-left: 2.75rem;
  }

  .callout-box {
    margin: 4rem 0;
    padding: 2.5rem;
  }

  .method-box {
    padding: 2.5rem;
    margin: 2.5rem 0 4rem 0;
  }

  .comics-container {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    margin-left: -80px;
    margin-right: -80px;
  }



  .facilitators-grid {
    gap: 4rem;
    margin: 1.5rem 0 4.5rem 0;
  }

  .cta {
    padding: 6rem 0;
  }

  .cta__description {
    margin-bottom: 4.5rem;
  }

  .cta__divider {
    margin: 5.5rem auto 3.5rem auto;
  }

  .cta__share {
    margin-top: 0;
  }
}

/* ========================================================
   ACCESSIBILITY: Reduced Motion
   ======================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
