﻿:root {
  --bg: #fdf8f2;
  --panel: #ffffff;
  --text: #1f1a14;
  --muted: #6f6253;
  --accent: #3f7f4d;
  --accent-dark: #2f5c37;
  --sun: #fbcf58;
  --donate: #e85d04;
  --donate-dark: #c24c03;
  --border: rgba(31, 26, 20, 0.1);
  --shadow: 0 25px 60px rgba(31, 26, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* STICKY HEADER */
.site-header {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 5vw;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
}

.logo-mark svg {
  width: 24px;
  height: 24px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

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

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

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: var(--panel);
  color: var(--text);
  min-height: 48px; /* Mobile-friendly touch target */
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.btn.large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  border-color: transparent;
}

/* PROMINENT DONATE BUTTON */
.btn.donate-cta {
  background: linear-gradient(135deg, var(--donate), var(--donate-dark));
  color: #fff;
  border-color: transparent;
  font-weight: 700;
  animation: pulse-glow 2s infinite;
}

.btn.donate-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(232, 93, 4, 0.35);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 93, 4, 0.4); }
  50% { box-shadow: 0 0 20px 5px rgba(232, 93, 4, 0.2); }
}

.btn.outline {
  border-color: var(--text);
  color: var(--text);
  background: transparent;
}

.btn.ghost {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--muted);
}

.btn.secondary {
  background: var(--sun);
  border-color: transparent;
  color: #5c3b07;
  font-weight: 700;
}

.btn.install {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  gap: 0.35rem;
  letter-spacing: 0.01em;
}

.btn.install:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.install-helper {
  position: fixed;
  inset: 0;
  background: rgba(8, 11, 5, 0.65);
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1000;
}

.install-helper.visible {
  display: flex;
}

.install-card {
  width: min(420px, 100%);
  background: #fff;
  border-radius: 24px 24px 12px 12px;
  padding: 2rem;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.35);
  position: relative;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
}

.install-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
}

.install-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin: 0 0 0.25rem;
}

.install-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.install-lede {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.install-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.install-steps-block {
  background: #f8f5f0;
  border-radius: 16px;
  padding: 1rem 1.25rem;
}

.install-steps-block h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.install-steps-block ol {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.install-steps-block li {
  margin-bottom: 0.4rem;
}

.install-tip {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.install-helper[data-platform="ios"] .install-steps-block.android {
  display: none;
}

.install-helper[data-platform="android"] .install-steps-block.ios {
  display: none;
}

@media (min-width: 600px) {
  .install-card {
    border-radius: 24px;
  }
}

/* IMPACT STATS BAR */
.impact-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 5vw;
  background: var(--accent);
  color: #fff;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

/* HERO */
.hero {
  position: relative;
  min-height: 70vh;
  padding: 6rem 5vw;
  background: #080b05 url('assets/farmday.jpg') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10, 20, 10, 0.75), rgba(9, 11, 7, 0.4));
}

.hero-inner {
  position: relative;
  max-width: 720px;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.hero p {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
}

.impact-statement {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sun);
}

/* ABOUT SECTION */
.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.about-content h2 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.about-text {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.impact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.5rem;
}

.impact-list li {
  padding: 0.75rem 1rem;
  background: #f8f5f0;
  border-radius: 12px;
  font-size: 1rem;
}

.impact-list li strong {
  color: var(--accent);
  font-size: 1.1rem;
}

.trust-badge {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1rem;
}

.about-photo {
  min-height: 350px;
  border-radius: 32px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

/* PROGRESS SECTION */
.progress-section {
  background: #fef9ec;
  text-align: center;
}

.progress-container {
  max-width: 600px;
  margin: 0 auto;
}

.progress-container h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.progress-bar {
  height: 24px;
  background: #e0d8ca;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--sun));
  border-radius: 999px;
  transition: width 0.5s ease;
}

.progress-stats {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.progress-note {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.section {
  padding: 72px 5vw;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  margin: 0.35rem 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

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

.build-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.build-card {
  border-radius: 28px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.card-photo {
  height: 260px;
  background-size: cover;
  background-position: center;
}

.card-body {
  padding: 1.25rem 1.5rem 1.75rem;
}

/* WISHLIST / HELP SECTION */
.help {
  background: #fff;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.wishlist-card {
  border-radius: 24px;
  padding: 1.75rem;
  background: #fef9ec;
  border: 2px solid transparent;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.wishlist-card:hover {
  border-color: var(--sun);
  transform: translateY(-4px);
}

.wishlist-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.wishlist-card h3 {
  margin: 0 0 0.5rem;
}

.wishlist-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.wishlist-price {
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

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

.help-card {
  border-radius: 24px;
  padding: 2rem;
  background: #fef9ec;
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.help-card .subtext {
  color: var(--muted);
  font-size: 0.9rem;
}

.pickup-card {
  border-radius: 28px;
  padding: 2rem;
  background: #1f2a1e;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pickup-card h3 {
  margin: 0;
}

.secondary {
  color: #1f1a14;
}

/* TESTIMONIAL */
.testimonial {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  text-align: center;
}

.testimonial-inner {
  max-width: 700px;
  margin: 0 auto;
}

.testimonial blockquote {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  line-height: 1.5;
  margin: 0 0 1rem;
  quotes: """ """ "'" "'";
}

.testimonial blockquote::before {
  content: open-quote;
}

.testimonial blockquote::after {
  content: close-quote;
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
  opacity: 0.9;
}

/* MINI TESTIMONIAL (inline) */
.mini-testimonial {
  background: #f8f5f0;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  margin: 1.5rem 0;
  border-left: 4px solid var(--accent);
}

.mini-testimonial em {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.mini-testimonial span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* SHOP SECTION */
.shop {
  background: #f8f5f0;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.shop-card {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.shop-photo {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.shop-body {
  padding: 1.5rem;
  text-align: center;
}

.shop-body h3 {
  margin: 0 0 0.5rem;
}

.shop-body p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 0.75rem;
}

.shop-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* VOLUNTEER */
.volunteer {
  background: #f3ede3;
}

.volunteer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.volunteer-photo {
  border-radius: 32px;
  min-height: 360px;
  background: url('assets/garden.jpg') center/cover no-repeat;
}

.volunteer-body {
  border-radius: 32px;
  padding: 2.5rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.volunteer-impact {
  background: #e8f5e9;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  color: var(--accent-dark);
  font-size: 0.95rem;
  margin: 1rem 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 600;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 700;
}

/* ================================
   INVITATION HERO - Lead with belonging
   ================================ */
.invitation-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.invitation-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

.invitation-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 30, 15, 0.85) 0%,
    rgba(20, 50, 30, 0.7) 50%,
    rgba(10, 30, 15, 0.85) 100%
  );
}

.invitation-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 6rem 5vw;
  text-align: center;
}

.invitation-content {
  color: #fff;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.invitation-headline {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  color: #fff;
}

.headline-accent {
  background: linear-gradient(135deg, var(--sun) 0%, #ffdd66 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.invitation-message {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.7;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.invitation-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn.outline.large {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn.outline.large:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* ================================
   3-DOOR NAVIGATION
   ================================ */
.three-doors {
  padding: 5rem 5vw;
  background: var(--bg);
}

.doors-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.doors-intro h2 {
  font-size: 2.2rem;
  margin: 0 0 0.5rem;
}

.doors-intro p {
  font-size: 1.1rem;
  color: var(--muted);
}

.doors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.door-card {
  position: relative;
  background: var(--panel);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
}

.door-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  border-radius: 24px 24px 0 0;
}

.door-hands::before { background: var(--accent); }
.door-resources::before { background: var(--donate); }
.door-mentor::before { background: var(--sun); }

.door-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.door-hands:hover { border-color: var(--accent); }
.door-resources:hover { border-color: var(--donate); }
.door-mentor:hover { border-color: var(--sun); }

.door-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.door-card h3 {
  font-size: 1.3rem;
  margin: 0 0 0.75rem;
  font-weight: 700;
}

.door-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.door-action {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.door-hands .door-action { color: var(--accent); }
.door-resources .door-action { color: var(--donate); }
.door-mentor .door-action { color: #8a6914; }

.door-card:hover .door-action {
  transform: translateX(5px);
}

/* ================================
   MISSION HERO (Secondary hero)
   ================================ */
.mission-hero {
  min-height: 50vh;
}

.mission-hero h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

/* MENTOR */
.mentor {
  background: #fff;
}

.mentor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.mentor-body {
  padding-right: 1rem;
}

.mentor-photo {
  min-height: 380px;
  border-radius: 32px;
  background: url('assets/greenhouse.jpg') center/cover no-repeat;
  box-shadow: var(--shadow);
}

.mentor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ================================
   PROMINENT MENTORSHIP SECTION
   ================================ */
.mentor-highlight {
  padding: 0;
  background: #fff;
}

.mentor-hero {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mentor-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.mentor-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 50, 30, 0.9), rgba(10, 25, 15, 0.85));
}

.mentor-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 4rem 5vw;
}

.mentor-hero-content .eyebrow.light {
  color: rgba(255, 255, 255, 0.7);
}

.mentor-hero-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0.5rem 0;
  background: linear-gradient(135deg, #fff 0%, #a8e6a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mentor-tagline {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.mentor-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  padding: 4rem 5vw;
  max-width: 1100px;
  margin: 0 auto;
}

.mentor-why h3,
.mentor-what h3 {
  font-size: 1.4rem;
  margin: 0 0 1rem;
  color: var(--accent-dark);
}

.mentor-why p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.mentor-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.mentor-stat {
  text-align: center;
}

.stat-big {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mentor-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mentor-list li {
  padding: 0.75rem 0;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border);
}

.mentor-list li:last-child {
  border-bottom: none;
}

.mentor-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 5vw 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.mentor-testimonial-card {
  background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e8 100%);
  padding: 2rem;
  border-radius: 20px;
  border-left: 4px solid var(--accent);
}

.mentor-testimonial-card blockquote {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 1rem;
  color: var(--text);
}

.mentor-testimonial-card cite {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}

.mentor-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 3rem 5vw;
  flex-wrap: wrap;
}

.mentor-cta-content {
  color: #fff;
}

.mentor-cta-content h3 {
  font-size: 1.8rem;
  margin: 0 0 0.5rem;
}

.mentor-cta-content p {
  margin: 0;
  opacity: 0.9;
  font-size: 1.1rem;
}

.mentor-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.mentor-cta-actions .btn {
  background: #fff;
  color: var(--accent-dark);
}

.mentor-cta-actions .btn.donate-cta {
  background: var(--sun);
  color: #5c3b07;
  animation: none;
}

/* GALLERY */
.gallery {
  background: #fdf4e0;
}

.photo-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.photo-tile {
  position: relative;
  height: 240px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  transition: transform 0.2s;
}

.photo-tile:hover {
  transform: scale(1.02);
}

.photo-tile span {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* FINAL CTA */
.final-cta {
  text-align: center;
  background: #1f1a14;
  color: #fff;
  border-radius: 40px;
  margin: 0 5vw 5vw;
  padding: 4rem 5vw;
}

.final-cta h2 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.final-impact {
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* FORM TABS */
.form-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.form-tab {
  padding: 0.75rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-tab:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.form-tab.active {
  background: #fff;
  color: #1f1a14;
  border-color: #fff;
}

/* CTA FORMS */
.cta-form {
  display: none;
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-form.active {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sun);
  background: rgba(255, 255, 255, 0.12);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #1f1a14;
  color: #fff;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--sun);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.checkbox-grid label:hover {
  background: rgba(255, 255, 255, 0.05);
}

.checkbox-grid input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--sun);
}

.cta-form button[type="submit"] {
  width: 100%;
  margin-top: 0.5rem;
}

/* PAYPAL DONATE SECTION */
.paypal-donate-section {
  text-align: center;
}

.donate-prompt {
  font-size: 1.1rem;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.amount-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.amount-btn {
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 80px;
}

.amount-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.amount-btn.active {
  background: var(--sun);
  border-color: var(--sun);
  color: #1f1a14;
}

.custom-amount {
  margin-bottom: 2rem;
}

.custom-amount label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.custom-amount-input {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  max-width: 150px;
}

.currency-symbol {
  padding: 0.85rem 0.5rem 0.85rem 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.custom-amount-input input {
  width: 100px;
  padding: 0.85rem 1rem 0.85rem 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
}

.custom-amount-input input:focus {
  outline: none;
}

.custom-amount-input input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.paypal-button-container {
  margin-bottom: 2rem;
  text-align: center;
}

.paypal-btn {
  font-size: 1.2rem;
  padding: 1.25rem 2.5rem;
  display: inline-block;
  text-decoration: none;
}

.paypal-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.donate-alternatives {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  text-align: left;
}

.donate-alternatives p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.donate-alternatives ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.donate-alternatives li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.donate-alternatives a {
  color: var(--sun);
  text-decoration: underline;
}

.donate-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.trust-icon {
  font-size: 1.1rem;
}

/* FORM SUCCESS */
.form-success {
  max-width: 500px;
  margin: 0 auto 2rem;
  padding: 2.5rem;
  background: rgba(63, 127, 77, 0.2);
  border-radius: 24px;
  border: 2px solid var(--accent);
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.form-success p {
  margin: 0 0 1.5rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.contact-note {
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.contact-note a {
  color: var(--sun);
  text-decoration: underline;
}

/* ================================
   NEW SIMPLIFIED LANDING PAGE STYLES
   ================================ */

/* NEW HERO */
.hero-new {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-new-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-new-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 20, 10, 0.85) 0%, rgba(20, 40, 20, 0.75) 100%);
}

.hero-new-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 4rem 5vw;
  text-align: center;
  color: #fff;
}

.hero-new h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #a8e6a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-new-sub {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem;
}

.hero-new-hook {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--sun);
  margin: 0 0 2.5rem;
}

.hero-new-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* WHY SECTION */
.why-section {
  background: #fff;
}

.why-content {
  max-width: 1000px;
  margin: 0 auto;
}

.why-content h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-lead {
  text-align: center;
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.why-list li {
  padding: 0.75rem 0;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border);
}

.why-emphasis {
  font-size: 1.15rem;
  color: var(--accent-dark);
  margin-top: 1.5rem;
}

.why-photo {
  min-height: 350px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

/* PROGRAMS SECTION */
.programs-section {
  background: var(--bg);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.program-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.program-card:hover {
  transform: translateY(-5px);
}

.program-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.program-card h3 {
  font-size: 1.3rem;
  margin: 0 0 0.75rem;
}

.program-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* HELP SECTION */
.help-section {
  background: #fff;
}

.help-block {
  max-width: 800px;
  margin: 0 auto 3rem;
  background: var(--bg);
  border-radius: 24px;
  padding: 2.5rem;
  border-left: 5px solid var(--accent);
}

.help-block.mentor-block {
  border-left-color: var(--sun);
  background: linear-gradient(135deg, #fffbf0 0%, #fff8e8 100%);
}

.help-block-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.help-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.mentor-block .help-number {
  background: var(--sun);
  color: #5c3b07;
}

.help-block-header h3 {
  font-size: 1.5rem;
  margin: 0;
}

.help-block-content p {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.help-options {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.5rem;
}

.help-options li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.help-options li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.help-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.mentor-stats-mini {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.mentor-stats-mini span {
  font-size: 0.9rem;
  color: var(--muted);
}

.mentor-stats-mini strong {
  color: var(--text);
  display: block;
  font-size: 1.1rem;
}

/* PROOF SECTION */
.proof-section {
  background: var(--bg);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.proof-card {
  text-align: center;
}

.proof-photo {
  height: 200px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}

.proof-caption {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  margin: 0;
}

/* FINAL SECTION */
.final-section {
  background: linear-gradient(135deg, #1a2f1a 0%, #0d1a0d 100%);
  color: #fff;
}

.final-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.final-inner h2 {
  font-size: 2.5rem;
  margin: 0 0 1rem;
}

.final-message {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2.5rem;
}

.final-message strong {
  color: var(--sun);
}

/* SIMPLE FORM */
.simple-form {
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 20px;
  text-align: left;
  margin-bottom: 2rem;
}

.simple-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.simple-form .form-group {
  margin-bottom: 1.25rem;
}

.simple-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.simple-form input,
.simple-form select,
.simple-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
}

.simple-form input::placeholder,
.simple-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.simple-form select {
  cursor: pointer;
}

.simple-form select option {
  background: #1a2f1a;
  color: #fff;
}

.simple-form button {
  width: 100%;
}

.final-note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.final-note a {
  color: var(--sun);
  text-decoration: underline;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 2.5rem 5vw;
  color: var(--muted);
  font-size: 0.9rem;
  background: #f8f5f0;
}

.footer-cta {
  margin-bottom: 1.5rem;
}

.footer-trust {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 4vw;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .nav-cta {
    width: 100%;
  }

  .impact-bar {
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  /* Invitation hero responsive */
  .invitation-inner {
    padding: 4rem 5vw;
  }

  .invitation-headline {
    font-size: 2.8rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-stat strong {
    font-size: 1.4rem;
  }

  .scroll-indicator {
    display: none;
  }

  /* 3-door responsive */
  .doors-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  /* Mentor section responsive */
  .mentor-hero-content h2 {
    font-size: 2rem;
  }

  .mentor-stats {
    justify-content: center;
  }

  .mentor-cta-box {
    flex-direction: column;
    text-align: center;
  }

  .mentor-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 4rem 1.5rem;
    min-height: 60vh;
  }

  .section {
    padding: 48px 1.5rem;
  }

  .final-cta {
    margin: 0 1rem 3rem;
    border-radius: 28px;
    padding: 3rem 1.5rem;
  }

  .photo-strip {
    grid-auto-columns: 80%;
  }

  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .wishlist-card {
    padding: 1.25rem;
  }

  .wishlist-icon {
    font-size: 2rem;
  }

  .btn {
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
  }

  .btn.large {
    padding: 1rem 1.5rem;
    width: 100%;
    justify-content: center;
  }

  .impact-bar {
    padding: 1rem;
    gap: 0.75rem;
  }

  .stat-item {
    flex: 1;
    min-width: 70px;
  }

  .about-grid,
  .volunteer-grid,
  .mentor-grid {
    gap: 1.5rem;
  }

  .about-photo,
  .volunteer-photo,
  .mentor-photo {
    min-height: 250px;
  }

  /* Invitation hero mobile */
  .invitation-hero {
    min-height: 200px; /* Changed from auto for Firefox compatibility */
  }

  .invitation-inner {
    padding: 3rem 1.5rem;
  }

  .invitation-headline {
    font-size: 2rem;
  }

  .invitation-message {
    font-size: 1rem;
  }

  .invitation-message strong {
    font-size: 1.2rem;
  }

  /* 3-door mobile */
  .three-doors {
    padding: 3rem 1.5rem;
  }

  .doors-intro h2 {
    font-size: 1.6rem;
  }

  .door-card {
    padding: 1.5rem;
  }

  .door-icon {
    font-size: 2.5rem;
  }

  /* Mentor mobile */
  .mentor-hero {
    min-height: 250px;
  }

  .mentor-tagline {
    font-size: 1rem;
  }

  .mentor-details {
    padding: 2rem 1.5rem;
    gap: 2rem;
  }

  .mentor-testimonials {
    padding: 0 1.5rem 2rem;
  }

  .mentor-testimonial-card {
    padding: 1.5rem;
  }

  .mentor-cta-box {
    padding: 2rem 1.5rem;
  }

  .mentor-cta-content h3 {
    font-size: 1.4rem;
  }

  /* NEW LANDING PAGE MOBILE */
  .hero-new {
    min-height: 80vh;
  }

  .hero-new-content {
    padding: 3rem 1.5rem;
  }

  .hero-new h1 {
    font-size: 2rem;
  }

  .hero-new-sub {
    font-size: 1rem;
  }

  .hero-new-hook {
    font-size: 1.1rem;
  }

  .hero-new-buttons {
    flex-direction: column;
  }

  .hero-new-buttons .btn {
    width: 100%;
  }

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

  .why-photo {
    min-height: 250px;
    order: -1;
  }

  .why-lead {
    font-size: 1.1rem;
  }

  .help-block {
    padding: 1.5rem;
    margin: 0 0 1.5rem;
  }

  .help-block-header h3 {
    font-size: 1.25rem;
  }

  .help-buttons {
    flex-direction: column;
  }

  .help-buttons .btn {
    width: 100%;
  }

  .mentor-stats-mini {
    gap: 1rem;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .proof-photo {
    height: 140px;
  }

  .final-inner {
    padding: 0;
  }

  .final-inner h2 {
    font-size: 1.8rem;
  }

  .final-message {
    font-size: 1rem;
  }

  .simple-form {
    padding: 1.5rem;
  }

  .simple-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   UTILITY CLASSES TO REPLACE INLINE STYLES
   ===================================================== */

/* Layout utilities */
.flex-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.flex-row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.flex-row-gap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0;
}

/* Width utilities */
.w-full {
  width: 100%;
}

.w-18 {
  width: 18px;
  height: 18px;
  margin: 0 auto 12px;
}

/* Margin utilities */
.ml-12 {
  margin-left: 12px;
}

.ml-auto {
  margin-left: auto;
}

.mt-16 {
  margin-top: 16px;
}

.mt-12 {
  margin-top: 12px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-12 {
  margin-bottom: 12px;
}

.m-0 {
  margin: 0;
}

.mt-4 {
  margin: 4px 0 0 0;
}

/* Font utilities */
.font-weight-600 {
  font-weight: 600;
}

.font-size-13 {
  font-size: 13px;
}

.font-size-12 {
  font-size: 12px;
}

/* Display utilities */
.hide {
  display: none;
}

