/* ============================================================
   JARELVIX AI - MAIN STYLESHEET
   Maximalist Color Concept | Asymmetric Bento Layout
   ============================================================ */


:root {
  
  --color-emerald: #1a6b4a;
  --color-emerald-light: #22885e;
  --color-emerald-pale: #e8f5ee;
  --color-saffron: #e8820c;
  --color-saffron-light: #f5a030;
  --color-saffron-pale: #fff3e0;
  --color-rose: #c0355a;
  --color-rose-light: #d94d70;
  --color-rose-pale: #fde8ee;
  --color-indigo: #3b3fa8;
  --color-indigo-light: #5256c8;
  --color-indigo-pale: #eceeff;
  --color-charcoal: #1c1f2e;
  --color-charcoal-mid: #2d3145;
  --color-ink: #22263a;
  --color-warm-white: #faf9f6;
  --color-off-white: #f4f2ed;
  --color-muted-text: #5a5e72;
  --color-border: #e0ddd5;

  
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  
  --shadow-sm: 0 1px 3px rgba(28,31,46,0.08), 0 1px 2px rgba(28,31,46,0.04);
  --shadow-md: 0 4px 12px rgba(28,31,46,0.1), 0 2px 4px rgba(28,31,46,0.06);
  --shadow-lg: 0 8px 24px rgba(28,31,46,0.12), 0 4px 8px rgba(28,31,46,0.07), 0 1px 2px rgba(28,31,46,0.04);
  --shadow-xl: 0 16px 48px rgba(28,31,46,0.15), 0 8px 16px rgba(28,31,46,0.08), 0 2px 4px rgba(28,31,46,0.04);
  --shadow-emerald: 0 8px 24px rgba(26,107,74,0.2), 0 2px 6px rgba(26,107,74,0.1);
  --shadow-saffron: 0 8px 24px rgba(232,130,12,0.2), 0 2px 6px rgba(232,130,12,0.1);
  --shadow-rose: 0 8px 24px rgba(192,53,90,0.2), 0 2px 6px rgba(192,53,90,0.1);
  --shadow-indigo: 0 8px 24px rgba(59,63,168,0.2), 0 2px 6px rgba(59,63,168,0.1);

  
  --nav-height: 72px;

  
  --transition-fast: 0.15s ease;
  --transition-smooth: 0.25s ease;
  --transition-slow: 0.4s ease;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-charcoal);
  background-color: var(--color-warm-white);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
}


h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: var(--space-sm); }
p:last-child { margin-bottom: 0; }


.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-saffron);
  margin-bottom: var(--space-xs);
}

.section-heading {
  margin-bottom: var(--space-md);
}

.section-intro {
  font-size: 1.1rem;
  color: var(--color-muted-text);
  max-width: 560px;
  margin-bottom: var(--space-lg);
}


.button-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--color-emerald);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-emerald);
  box-shadow: var(--shadow-emerald);
  transition: background var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.button-primary:hover {
  background: var(--color-emerald-light);
  border-color: var(--color-emerald-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26,107,74,0.28), 0 4px 8px rgba(26,107,74,0.12);
  color: #fff;
}

.button-primary--large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.button-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-charcoal);
  transition: background var(--transition-smooth), color var(--transition-smooth), transform var(--transition-smooth);
}

.button-ghost:hover {
  background: var(--color-charcoal);
  color: #fff;
  transform: translateY(-2px);
}

.button-ghost--light {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.button-ghost--light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}


.main-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-height);
  background: var(--color-warm-white);
  box-shadow: 0 1px 3px rgba(28,31,46,0.06), 0 1px 2px rgba(28,31,46,0.03);
  transition: box-shadow var(--transition-smooth);
}

.main-navigation.nav-scrolled {
  box-shadow: 0 4px 20px rgba(28,31,46,0.1), 0 2px 6px rgba(28,31,46,0.06);
}

.navigation-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.brand-logo {
  display: flex;
  width: 150px;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}

.brand-logo:hover {
  opacity: 0.82;
}

.navigation-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-muted-text);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-charcoal);
  background: var(--color-off-white);
}

.nav-link.active {
  color: var(--color-emerald);
  font-weight: 500;
}

.nav-link.nav-cta {
  background: var(--color-emerald);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.nav-link.nav-cta:hover {
  background: var(--color-emerald-light);
  color: #fff;
}

.nav-link.nav-cta.active {
  background: var(--color-emerald-light);
  color: #fff;
}


.mobile-menu-trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.mobile-menu-trigger:hover {
  background: var(--color-off-white);
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}


.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,31,46,0.55);
  z-index: 980;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.mobile-menu-overlay.overlay-visible {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 90vw);
  height: 100vh;
  background: var(--color-charcoal);
  z-index: 990;
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu-panel.panel-open {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.25rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.mobile-menu-close:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.mobile-navigation-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
}

.mobile-navigation-links li a {
  display: block;
  padding: 0.85rem var(--space-sm);
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.mobile-navigation-links li a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.mobile-menu-footer-info {
  margin-top: auto;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.mobile-menu-footer-info p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin: 0;
}

.mobile-menu-footer-info i {
  color: var(--color-saffron);
  width: 16px;
}


.decorative-strip {
  overflow: hidden;
  padding: 0.5rem 0;
  white-space: nowrap;
  user-select: none;
}

.decorative-strip--wave {
  background: var(--color-emerald);
  color: rgba(255,255,255,0.3);
}

.decorative-strip--color {
  background: var(--color-saffron);
  color: rgba(255,255,255,0.3);
}

.decorative-strip--dots {
  background: var(--color-indigo);
  color: rgba(255,255,255,0.25);
}

.strip-pattern {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.8rem;
  animation: stripScroll 20s linear infinite;
}

@keyframes stripScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


.hero-section {
  background: var(--color-charcoal);
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
  overflow: hidden;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(26,107,74,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-content-block {
  max-width: 560px;
}

.hero-label-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(26,107,74,0.25);
  color: #7de6b0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(26,107,74,0.4);
  margin-bottom: var(--space-md);
}

.hero-display-heading {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.hero-subtitle {
  color: rgba(255,255,255,0.68);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 460px;
}

.hero-action-row {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}


.hero-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 140px;
  gap: 12px;
}

.hero-bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.hero-bento-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-xl);
}

.hero-bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-bento-card:hover img {
  transform: scale(1.06);
}

.hero-bento-card--plants {
  grid-column: 1;
  grid-row: 1;
}

.hero-bento-card--reading {
  grid-column: 2;
  grid-row: 1;
}

.hero-bento-card--light {
  grid-column: 1;
  grid-row: 2;
}

.hero-bento-card--stat {
  grid-column: 2;
  grid-row: 2;
  background: var(--color-emerald);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--space-md);
  cursor: default;
}

.hero-bento-card--stat:hover {
  transform: none;
}

.bento-stat-icon {
  font-size: 2rem;
  color: rgba(255,255,255,0.85);
}

.bento-stat-text {
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}

.bento-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(transparent, rgba(28,31,46,0.75));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
}


.topics-showcase {
  background: var(--color-warm-white);
  padding: var(--space-2xl) 0;
}

.topics-header {
  margin-bottom: var(--space-xl);
}

.topics-bento-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.topic-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.topic-card--large {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.topic-card--medium {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.topic-card--medium:first-of-type {
  grid-column: 2;
  grid-row: 1;
}

.topic-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 360px 1fr;
}

.topic-card-image-wrap {
  overflow: hidden;
}

.topic-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.topic-card:hover .topic-card-image-wrap img {
  transform: scale(1.04);
}

.topic-card-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.topic-tag {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  background: var(--color-emerald-pale);
  color: var(--color-emerald);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}

.topic-card--medium .topic-tag {
  margin-bottom: 0.25rem;
}

.topic-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-emerald);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: auto;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.topic-link:hover {
  gap: 0.7rem;
  color: var(--color-emerald-light);
}


.why-choose-section {
  background: var(--color-charcoal);
  padding: var(--space-2xl) 0;
}

.why-header {
  margin-bottom: var(--space-xl);
}

.why-header .section-heading {
  color: #fff;
}

.why-header .section-intro {
  color: rgba(255,255,255,0.65);
  max-width: 480px;
}

.why-header .section-eyebrow {
  color: var(--color-saffron-light);
}

.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: background var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.why-card-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(26,107,74,0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #7de6b0;
  margin-bottom: var(--space-md);
}

.why-card h4 {
  color: #fff;
  margin-bottom: var(--space-xs);
  font-size: 1rem;
}

.why-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}


.featured-articles-section {
  background: var(--color-saffron-pale);
  padding: var(--space-2xl) 0;
}

.featured-articles-section .section-eyebrow {
  color: var(--color-saffron);
}

.featured-articles-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.featured-article-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.featured-article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.featured-article-card--highlight .featured-article-body,
.featured-article-card:not(.featured-article-card--highlight) {
  padding: var(--space-lg);
}

.featured-article-image-link {
  display: block;
  overflow: hidden;
  height: 200px;
}

.featured-article-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-article-card:hover .featured-article-image-link img {
  transform: scale(1.05);
}

.featured-article-body {
  padding: var(--space-md);
}

.article-category-tag {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  background: var(--color-saffron-pale);
  color: var(--color-saffron);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 0.5rem;
}

.featured-article-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.featured-article-card p {
  font-size: 0.88rem;
  color: var(--color-muted-text);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.article-read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-saffron);
  font-size: 0.85rem;
  font-weight: 500;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.article-read-link:hover {
  gap: 0.7rem;
  color: var(--color-saffron-light);
}


.gallery-preview-section {
  background: var(--color-indigo);
  padding: var(--space-2xl) 0;
}

.gallery-preview-section .section-heading,
.gallery-preview-section .section-eyebrow {
  color: #fff;
}

.gallery-preview-section .section-eyebrow {
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.12em;
}

.gallery-preview-section .section-intro {
  color: rgba(255,255,255,0.65);
}

.gallery-asymmetric-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  grid-template-rows: 260px 200px;
  gap: 12px;
}

.gallery-cell {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  cursor: zoom-in;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-smooth);
}

.gallery-cell:hover img {
  transform: scale(1.06);
  filter: brightness(0.85);
}

.gallery-cell-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.gallery-cell:hover .gallery-cell-overlay {
  opacity: 1;
}

.gallery-cell--tall {
  grid-column: 1;
  grid-row: 1 / 3;
}

.gallery-cell--wide {
  grid-column: 2;
  grid-row: 1;
}

.gallery-cell--small {
  grid-row: 2;
}

.gallery-cell--small:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.gallery-cell--small:nth-child(4) {
  grid-column: 3;
  grid-row: 1 / 3;
}


.dual-cta-section {
  background: var(--color-rose);
  padding: var(--space-2xl) 0;
}

.dual-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.cta-primary-block,
.cta-secondary-block {
  padding: var(--space-xl);
}

.cta-primary-block {
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.2);
}

.cta-secondary-block {
  border-left: 2px solid rgba(255,255,255,0.2);
  padding-left: var(--space-xl);
}

.cta-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.cta-heading {
  color: #fff;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.cta-heading-secondary {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

.cta-primary-block p,
.cta-secondary-block p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: var(--space-md);
}


.page-hero-section {
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
}

.page-hero-section--green {
  background: var(--color-emerald);
}

.page-hero-section--orange {
  background: var(--color-saffron);
}

.page-hero-section--rose {
  background: var(--color-rose);
}

.page-hero-section--purple {
  background: var(--color-indigo);
}

.page-hero-heading {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  margin-bottom: var(--space-md);
}

.page-hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 600px;
}

.page-hero-section .section-eyebrow {
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.12em;
}


.about-story-section {
  background: var(--color-warm-white);
  padding: var(--space-2xl) 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-story-text p {
  color: var(--color-muted-text);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.about-story-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-slow);
}

.about-story-image-wrap:hover {
  transform: scale(1.01);
}

.about-story-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-story-image-wrap:hover img {
  transform: scale(1.04);
}

.about-values-section {
  background: var(--color-off-white);
  padding: var(--space-2xl) 0;
}

.values-asymmetric-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.value-block {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.value-block:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.value-block--large {
  grid-column: 1;
  grid-row: 1 / 3;
}

.value-block--accent {
  background: var(--color-emerald);
}

.value-block--accent h3,
.value-block--accent p {
  color: #fff;
}

.value-block--accent .value-number {
  color: rgba(255,255,255,0.5);
}

.value-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-emerald-pale);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.value-block h3 {
  margin-bottom: var(--space-xs);
}

.value-block p {
  color: var(--color-muted-text);
  font-size: 0.9rem;
  line-height: 1.7;
}

.about-mission-section {
  background: var(--color-indigo);
  padding: var(--space-2xl) 0;
}

.mission-block {
  max-width: 680px;
}

.mission-block .section-heading {
  color: #fff;
}

.mission-block .section-eyebrow {
  color: rgba(255,255,255,0.6);
}

.mission-lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.mission-block p {
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}


.archive-section {
  background: var(--color-warm-white);
  padding: var(--space-2xl) 0;
}

.archive-category-block {
  margin-bottom: var(--space-2xl);
}

.archive-category-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.archive-category-icon {
  width: 48px;
  height: 48px;
  background: var(--color-emerald);
  color: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.archive-category-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-ink);
}

.archive-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.archive-article-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.archive-article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.archive-article-card--featured {
  grid-column: span 2;
}

.archive-article-tag {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

.archive-article-tag--green {
  background: var(--color-emerald-pale);
  color: var(--color-emerald);
}

.archive-article-tag--blue {
  background: var(--color-indigo-pale);
  color: var(--color-indigo);
}

.archive-article-tag--orange {
  background: var(--color-saffron-pale);
  color: var(--color-saffron);
}

.archive-article-tag--rose {
  background: var(--color-rose-pale);
  color: var(--color-rose);
}

.archive-article-tag--purple {
  background: var(--color-indigo-pale);
  color: var(--color-indigo);
}

.archive-article-card h3 {
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: var(--space-xs);
}

.archive-article-card p {
  color: var(--color-muted-text);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.archive-article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--color-muted-text);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
  gap: var(--space-sm);
}

.archive-article-meta i {
  margin-right: 0.25rem;
}

.archive-article-season {
  font-size: 0.72rem;
  background: var(--color-off-white);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-pill);
}


.volunteer-intro-section {
  background: var(--color-warm-white);
  padding: var(--space-2xl) 0;
}

.volunteer-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.volunteer-intro-text p {
  color: var(--color-muted-text);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.volunteer-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.volunteer-image-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.volunteer-image-wrap:hover img {
  transform: scale(1.04);
}

.volunteer-roles-section {
  background: var(--color-off-white);
  padding: var(--space-2xl) 0;
}

.volunteer-roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.volunteer-role-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid transparent;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.volunteer-role-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.volunteer-role-card--author { border-top-color: var(--color-emerald); }
.volunteer-role-card--photo { border-top-color: var(--color-saffron); }
.volunteer-role-card--expert { border-top-color: var(--color-indigo); }
.volunteer-role-card--reader { border-top-color: var(--color-rose); }

.volunteer-role-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
}

.volunteer-role-card--author .volunteer-role-icon {
  background: var(--color-emerald-pale);
  color: var(--color-emerald);
}

.volunteer-role-card--photo .volunteer-role-icon {
  background: var(--color-saffron-pale);
  color: var(--color-saffron);
}

.volunteer-role-card--expert .volunteer-role-icon {
  background: var(--color-indigo-pale);
  color: var(--color-indigo);
}

.volunteer-role-card--reader .volunteer-role-icon {
  background: var(--color-rose-pale);
  color: var(--color-rose);
}

.volunteer-role-card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
}

.volunteer-role-card p {
  color: var(--color-muted-text);
  font-size: 0.9rem;
  line-height: 1.7;
}

.volunteer-process-section {
  background: var(--color-charcoal);
  padding: var(--space-2xl) 0;
}

.volunteer-process-section .section-heading {
  color: #fff;
}

.volunteer-process-section .section-eyebrow {
  color: var(--color-saffron-light);
}

.process-steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-xl);
  max-width: 720px;
}

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-md);
  position: relative;
  padding-bottom: var(--space-lg);
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 29px;
  top: 60px;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.1);
}

.process-step-number {
  width: 60px;
  height: 60px;
  background: var(--color-emerald);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-emerald);
  position: relative;
  z-index: 1;
}

.process-step-content h4 {
  color: #fff;
  margin-bottom: 0.4rem;
  font-size: 1rem;
  padding-top: 1rem;
}

.process-step-content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.65;
}

.volunteer-cta-wrap {
  margin-top: var(--space-lg);
}


.contact-main-section {
  background: var(--color-warm-white);
  padding: var(--space-2xl) 0;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-form-heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: var(--space-xs);
}

.contact-form-intro {
  color: var(--color-muted-text);
  margin-bottom: var(--space-lg);
}


.accordion-field-group {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.accordion-field-group:focus-within {
  border-color: var(--color-emerald);
  box-shadow: 0 0 0 3px rgba(26,107,74,0.1);
}

.accordion-field-trigger {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
  padding: var(--space-md) var(--space-md);
  background: var(--color-off-white);
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-charcoal);
  transition: background var(--transition-fast);
  cursor: pointer;
}

.accordion-field-trigger:hover {
  background: var(--color-border);
}

.accordion-step-badge {
  width: 28px;
  height: 28px;
  background: var(--color-emerald);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}

.accordion-field-label {
  flex: 1;
}

.accordion-chevron {
  color: var(--color-muted-text);
  transition: transform var(--transition-smooth);
  font-size: 0.8rem;
}

.accordion-field-trigger[aria-expanded="true"] .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-field-content {
  padding: var(--space-md);
  background: #fff;
  display: grid;
  grid-template-rows: 1fr;
  overflow: hidden;
  transition: grid-template-rows var(--transition-smooth), padding var(--transition-smooth);
}

.accordion-field-content--collapsed {
  grid-template-rows: 0fr;
  padding-top: 0;
  padding-bottom: 0;
}

.accordion-field-content > * {
  overflow: hidden;
}

.form-field-group {
  margin-bottom: var(--space-md);
}

.form-field-group:last-child {
  margin-bottom: 0;
}

.form-field-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 0.4rem;
}

.form-required-marker {
  color: var(--color-rose);
}

.form-text-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem var(--space-sm);
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-text-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-emerald);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,107,74,0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-privacy-group {
  padding: var(--space-sm) 0;
}

.form-privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form-privacy-checkbox {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--color-emerald);
  cursor: pointer;
}

.form-privacy-text {
  font-size: 0.875rem;
  color: var(--color-muted-text);
  line-height: 1.6;
}

.form-privacy-text a {
  color: var(--color-emerald);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-error-message {
  color: var(--color-rose);
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
  min-height: 1.2em;
}

.form-submit-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: var(--color-emerald);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-emerald);
  transition: background var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth);
  width: 100%;
  justify-content: center;
  margin-top: var(--space-md);
}

.form-submit-button:hover {
  background: var(--color-emerald-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26,107,74,0.3);
}


.contact-info-card,
.contact-meeting-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-md);
}

.contact-info-heading,
.contact-meeting-heading {
  font-size: 1.15rem;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-meeting-heading i {
  color: var(--color-emerald);
}

.contact-address-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-info-icon {
  color: var(--color-emerald);
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
  width: 20px;
}

.contact-info-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-muted-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--color-charcoal);
  margin: 0;
}

.contact-info-item a {
  color: var(--color-emerald);
  transition: color var(--transition-fast);
}

.contact-info-item a:hover {
  color: var(--color-emerald-light);
}

.contact-meeting-card p {
  color: var(--color-muted-text);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.contact-meeting-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.meeting-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--color-muted-text);
}

.meeting-option i {
  color: var(--color-emerald);
  width: 16px;
}

.contact-meeting-button {
  width: 100%;
  justify-content: center;
}

.contact-map-section {
  background: var(--color-off-white);
  padding: var(--space-xl) 0 var(--space-2xl);
}

.contact-map-heading {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: var(--space-md);
}

.contact-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}


.thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height) - 200px);
  padding: var(--space-2xl) 0;
}

.thanks-section {
  width: 100%;
  background: var(--color-warm-white);
  padding: var(--nav-height) 0 var(--space-2xl);
}

.thanks-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  text-align: center;
}

.thanks-icon-wrap {
  width: 80px;
  height: 80px;
  background: var(--color-emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin: 0 auto var(--space-lg);
  box-shadow: var(--shadow-emerald);
}

.thanks-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: var(--space-sm);
}

.thanks-subtitle {
  color: var(--color-muted-text);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.thanks-home-button {
  margin-bottom: var(--space-2xl);
}

.thanks-timeline {
  text-align: left;
  position: relative;
}

.thanks-timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-md);
  align-items: flex-start;
}

.thanks-timeline-connector {
  width: 2px;
  height: 40px;
  background: var(--color-border);
  margin-left: 27px;
}

.timeline-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.timeline-marker--done {
  background: var(--color-emerald);
  color: #fff;
}

.timeline-marker--current {
  background: var(--color-saffron);
  color: #fff;
  box-shadow: var(--shadow-saffron);
}

.timeline-marker--upcoming {
  background: var(--color-off-white);
  color: var(--color-muted-text);
  border: 2px solid var(--color-border);
  box-shadow: none;
}

.timeline-content {
  padding-top: 0.75rem;
}

.timeline-step-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted-text);
  display: block;
  margin-bottom: 0.2rem;
}

.timeline-step-title {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.thanks-timeline-item--current .timeline-step-title {
  color: var(--color-saffron);
}

.thanks-timeline-item--upcoming .timeline-step-title {
  color: var(--color-muted-text);
}

.timeline-step-desc {
  font-size: 0.875rem;
  color: var(--color-muted-text);
  line-height: 1.6;
  margin: 0;
}


.legal-hero-section {
  background: var(--color-charcoal);
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
}

.legal-hero-section--terms {
  background: var(--color-indigo);
}

.legal-hero-section--cookies {
  background: var(--color-rose);
}

.legal-page-title {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: var(--space-xs);
}

.legal-last-updated {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin: 0;
}

.legal-content-section {
  background: var(--color-warm-white);
  padding: var(--space-2xl) 0;
}

.legal-content-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.legal-intro-paragraph {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-muted-text);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.legal-content-inner h2 {
  font-size: 1.3rem;
  color: var(--color-ink);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--color-emerald-pale);
}

.legal-content-inner--terms h2 {
  border-bottom-color: var(--color-indigo-pale);
}

.legal-content-inner--cookies h2 {
  border-bottom-color: var(--color-rose-pale);
}

.legal-content-inner h3 {
  font-size: 1.05rem;
  color: var(--color-ink);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}

.legal-content-inner p {
  color: var(--color-muted-text);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.legal-content-inner ul {
  list-style: none;
  margin-bottom: var(--space-md);
}

.legal-content-inner ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-muted-text);
  line-height: 1.7;
  font-size: 0.95rem;
}

.legal-content-inner ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-emerald);
  font-size: 0.85rem;
}

.legal-content-inner a {
  color: var(--color-emerald);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content-inner a:hover {
  color: var(--color-emerald-light);
}

.legal-definition-box {
  background: var(--color-emerald-pale);
  border-left: 4px solid var(--color-emerald);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
}

.legal-content-inner--terms .legal-definition-box {
  background: var(--color-indigo-pale);
  border-left-color: var(--color-indigo);
}

.legal-content-inner--cookies .legal-definition-box {
  background: var(--color-saffron-pale);
  border-left-color: var(--color-saffron);
}

.legal-definition-box h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-emerald);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.legal-content-inner--terms .legal-definition-box h4 {
  color: var(--color-indigo);
}

.legal-content-inner--cookies .legal-definition-box h4 {
  color: var(--color-saffron);
}

.legal-definition-box p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--color-charcoal);
}


.terms-definition-inline {
  background: var(--color-indigo-pale);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-lg);
}

.terms-highlight {
  color: var(--color-indigo);
}


.cookies-technical-intro {
  margin-bottom: var(--space-lg);
}

.cookies-term {
  color: var(--color-rose);
}

.cookies-category-block {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.cookies-category-block--necessary {
  border-top: 4px solid var(--color-emerald);
}

.cookies-category-block--analytics {
  border-top: 4px solid var(--color-saffron);
}

.cookies-category-block--marketing {
  border-top: 4px solid var(--color-rose);
}

.cookies-category-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.cookies-category-header h3 {
  font-size: 1.1rem;
  margin: 0;
}

.cookies-category-badge {
  padding: 0.2rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}

.cookies-category-badge--required {
  background: var(--color-emerald-pale);
  color: var(--color-emerald);
}

.cookies-category-badge--optional {
  background: var(--color-saffron-pale);
  color: var(--color-saffron);
}

.cookies-detail-table {
  margin-top: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.cookies-table-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: var(--space-sm);
  padding: 0.75rem var(--space-sm);
  font-size: 0.85rem;
}

.cookies-table-header {
  background: var(--color-off-white);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted-text);
}

.cookies-table-row:not(.cookies-table-header) {
  border-top: 1px solid var(--color-border);
  color: var(--color-muted-text);
}

.cookies-table-row code {
  background: var(--color-off-white);
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--color-rose);
}


.page-footer {
  margin-top: auto;
}

.footer-gradient-wrap {
  background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-charcoal-mid) 50%, #1e3a2f 100%);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg) var(--space-xl);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: var(--space-xl);
}

.footer-logo {
  margin-bottom: var(--space-sm);
}

.footer-tagline {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--space-xs);
}

.footer-legal-note {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0;
}

.footer-column-heading {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  font-family: var(--font-body);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav-list a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-nav-list a:hover {
  color: rgba(255,255,255,0.9);
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-address p {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

.footer-address i {
  color: var(--color-saffron-light);
  width: 16px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-address a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}

.footer-address a:hover {
  color: rgba(255,255,255,0.9);
}

.footer-bottom-bar {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.footer-bottom-bar p {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  margin: 0;
}


.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-charcoal);
  box-shadow: 0 -4px 32px rgba(28,31,46,0.3), 0 -1px 8px rgba(28,31,46,0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 280px;
}

.cookie-consent-banner.cookie-banner-visible {
  transform: translateY(0);
}

.cookie-consent-left {
  padding: var(--space-lg) var(--space-xl) var(--space-lg) var(--space-lg);
  border-right: 1px solid rgba(255,255,255,0.1);
}

.cookie-consent-right {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
}

.cookie-consent-title {
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-consent-title i {
  color: var(--color-saffron-light);
}

.cookie-consent-text {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0;
}

.cookie-consent-text a {
  color: var(--color-saffron-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-toggle-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-toggle-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 0.3rem 0;
}

.cookie-toggle-label span:first-child {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
}

.cookie-toggle-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: relative;
  width: 40px;
  height: 22px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  transition: background var(--transition-smooth);
  flex-shrink: 0;
}

.cookie-toggle-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition-smooth);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.cookie-toggle-input:checked + .cookie-toggle-slider {
  background: var(--color-emerald);
}

.cookie-toggle-input:checked + .cookie-toggle-slider::after {
  transform: translateX(18px);
}

.cookie-toggle-slider--locked {
  background: rgba(26,107,74,0.5);
  cursor: not-allowed;
}

.cookie-toggle-slider--locked::after {
  transform: translateX(18px);
}

.cookie-consent-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cookie-btn {
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  font-family: var(--font-body);
  transition: background var(--transition-smooth), transform var(--transition-fast), opacity var(--transition-fast);
  cursor: pointer;
  border: none;
  text-align: center;
}

.cookie-btn--accept-all {
  background: var(--color-emerald);
  color: #fff;
}

.cookie-btn--accept-all:hover {
  background: var(--color-emerald-light);
  transform: translateY(-1px);
}

.cookie-btn--save {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn--save:hover {
  background: rgba(255,255,255,0.2);
}

.cookie-btn--reject {
  background: transparent;
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
}

.cookie-btn--reject:hover {
  color: rgba(255,255,255,0.75);
}


@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .why-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-articles-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-article-card--highlight {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 900px) {
  .navigation-links {
    display: none;
  }

  .mobile-menu-trigger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero-content-block {
    max-width: 100%;
  }

  .hero-bento-grid {
    grid-template-rows: 200px 130px;
  }

  .topics-bento-layout {
    grid-template-columns: 1fr;
  }

  .topic-card--large {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 1fr;
  }

  .topic-card--large .topic-card-image-wrap {
    height: 220px;
  }

  .topic-card--medium:first-of-type {
    grid-column: 1;
    grid-row: auto;
  }

  .topic-card--wide {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .topic-card--wide .topic-card-image-wrap {
    height: 200px;
  }

  .about-story-grid,
  .volunteer-intro-grid {
    grid-template-columns: 1fr;
  }

  .about-story-image-wrap img,
  .volunteer-image-wrap img {
    height: 300px;
  }

  .values-asymmetric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .value-block--large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .contact-layout-grid {
    grid-template-columns: 1fr;
  }

  .dual-cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-secondary-block {
    border-left: none;
    border-top: 2px solid rgba(255,255,255,0.2);
    padding-left: var(--space-xl);
    padding-top: var(--space-xl);
  }

  .gallery-asymmetric-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }

  .gallery-cell--tall {
    grid-column: 1;
    grid-row: 1 / 2;
  }

  .gallery-cell--wide {
    grid-column: 2;
    grid-row: 1;
  }

  .gallery-cell--small:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery-cell--small:nth-child(4) {
    grid-column: 2;
    grid-row: 2 / 3;
  }

  .volunteer-roles-grid {
    grid-template-columns: 1fr;
  }

  .cookie-consent-banner {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .cookie-consent-left {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: var(--space-md);
  }

  .cookie-consent-right {
    padding: var(--space-md);
  }

  .cookie-consent-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }

  .archive-article-card--featured {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 3.5rem;
  }

  .section-inner {
    padding: 0 var(--space-md);
  }

  .hero-bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 110px;
  }

  .hero-action-row {
    flex-direction: column;
  }

  .button-primary,
  .button-ghost {
    width: 100%;
    justify-content: center;
  }

  .featured-articles-grid {
    grid-template-columns: 1fr;
  }

  .featured-article-card--highlight {
    grid-column: 1;
    display: block;
  }

  .why-cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
  }

  .values-asymmetric-grid {
    grid-template-columns: 1fr;
  }

  .cookies-table-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .cookies-table-header {
    display: none;
  }

  .thanks-inner {
    padding: 0 var(--space-md);
  }

  .dual-cta-grid {
    gap: var(--space-lg);
  }

  .cta-primary-block,
  .cta-secondary-block {
    padding: var(--space-lg);
  }

  .gallery-asymmetric-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 180px);
  }

  .gallery-cell--tall,
  .gallery-cell--wide,
  .gallery-cell--small:nth-child(3),
  .gallery-cell--small:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
  }

  .archive-articles-grid {
    grid-template-columns: 1fr;
  }

  .archive-article-card--featured {
    grid-column: 1;
  }

  .contact-meeting-options {
    gap: 0.4rem;
  }

  .legal-content-inner {
    padding: 0 var(--space-md);
  }
}

@media (max-width: 400px) {
  .hero-bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 180px 120px 100px 80px;
  }

  .hero-bento-card--plants { grid-column: 1; grid-row: 1; }
  .hero-bento-card--reading { grid-column: 1; grid-row: 2; }
  .hero-bento-card--light { grid-column: 1; grid-row: 3; }
  .hero-bento-card--stat { grid-column: 1; grid-row: 4; }

  .cookie-consent-buttons {
    flex-direction: column;
  }
}