/* ============================================================
   La Patrona Foundation — styles.css
   Full responsive rewrite
   ============================================================ */

/* ── TOKENS ── */
:root {
  --green:        #1a4d2e;
  --green-mid:    #2d6a4f;
  --green-light:  #52b788;
  --gold:         #c9a52a;
  --gold-light:   #e8c84a;
  --cream:        #faf7f0;
  --warm-white:   #fffef9;
  --text-dark:    #0f2318;
  --text-mid:     #3a5240;

  --nav-h: 72px;
  --section-px: clamp(1.25rem, 6vw, 6rem);
  --section-py: clamp(4rem, 8vw, 7rem);
  --radius-card: 20px;
  --radius-pill: 50px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a { text-decoration: none; }

ul { list-style: none; }

/* ── TYPOGRAPHY SCALE ── */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.08;
  color: white;
}
h1 em { color: var(--gold-light); font-style: italic; }

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--text-dark);
}
h2 em { color: var(--green-mid); font-style: italic; }

h3 {
  font-family: 'Playfair Display', serif;
}

/* ── SHARED UTILITIES ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--green);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  box-shadow: 0 8px 30px rgba(201,165,42,0.35);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,165,42,0.5);
}

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.35);
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

/* ── SCROLL REVEAL ── */
.reveal        { opacity: 0; transform: translateY(36px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left   { opacity: 0; transform: translateX(-36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right  { opacity: 0; transform: translateX(36px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: none; }

/* ================================================================
   NAV
   ================================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--section-px);
  height: var(--nav-h);
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

nav.scrolled {
  background: rgba(26,77,46,0.98);
  /* backdrop-filter removed: it creates a stacking context that traps
     child elements and breaks the mobile menu overlay on scroll */
  box-shadow: 0 2px 30px rgba(0,0,0,0.18);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px rgba(201,165,42,0.3);
  transition: transform var(--transition);
}
.nav-logo:hover .nav-logo-img { transform: rotate(15deg); }

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: white;
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-size: 0.63rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}

/* Desktop links */
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }

/* Nav CTA */
.nav-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--green);
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,165,42,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Mobile menu overlay (appended to <body> by JS) ──
 * Lives outside <nav> so it is never trapped by nav's stacking context.
 * Always covers the full viewport regardless of scroll position.
 */
#mobileMenuOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,31,17,0.97);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}
#mobileMenuOverlay.active { display: flex; }

#mobileMenuOverlay ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

#mobileMenuOverlay ul a {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 5vw, 1.6rem);
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
#mobileMenuOverlay ul a:hover { color: var(--gold-light); }

#menuClose {
  position: absolute;
  top: 22px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px 12px;
  transition: color 0.2s;
}
#menuClose:hover { color: white; }

/* ── Mobile nav overlay ── */
@media (max-width: 860px) {
  .hamburger { display: flex; }
  .nav-cta   { display: none; }
  /* Hide original nav-links on mobile — overlay handles navigation */
  .nav-links { display: none !important; }
}

/* ================================================================
   HERO
   ================================================================ */
#hero {
  min-height: 100svh;
  background: linear-gradient(160deg, var(--green) 0%, var(--green-mid) 55%, #1a3a28 100%);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 3rem) var(--section-px) 3rem;
}

/* Background decorative shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.shape-1 { width: clamp(280px,50vw,500px); height: clamp(280px,50vw,500px); top: -100px; right: -100px; animation: floatA 8s ease-in-out infinite; }
.shape-2 { width: clamp(160px,30vw,300px); height: clamp(160px,30vw,300px); bottom: -80px; left: 10%; animation: floatB 11s ease-in-out infinite; }
.shape-3 { width: 180px; height: 180px; top: 30%; right: 25%; background: rgba(201,165,42,0.12); animation: floatC 7s ease-in-out infinite; }
.shape-4 { width: 80px; height: 80px; top: 20%; left: 45%; background: rgba(201,165,42,0.2); border-radius: 30% 70% 70% 30%/30% 30% 70% 70%; animation: morphBlob 6s ease-in-out infinite; }

@keyframes floatA    { 0%,100%{transform:translateY(0) rotate(0deg)}  50%{transform:translateY(-30px) rotate(10deg)} }
@keyframes floatB    { 0%,100%{transform:translateY(0) translateX(0)} 50%{transform:translateY(-20px) translateX(15px)} }
@keyframes floatC    { 0%,100%{transform:translateY(0) scale(1)}      50%{transform:translateY(25px) scale(1.1)} }
@keyframes morphBlob { 0%,100%{border-radius:30% 70% 70% 30%/30% 30% 70% 70%;transform:scale(1)} 50%{border-radius:70% 30% 30% 70%/70% 70% 30% 30%;transform:scale(1.2)} }
@keyframes fadeSlideUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn      { from{opacity:0} to{opacity:1} }
@keyframes pulse       { 0%,100%{opacity:1} 50%{opacity:0.3} }
@keyframes scrollPulse { 0%,100%{transform:scaleY(1);opacity:0.5} 50%{transform:scaleY(1.3);opacity:1} }

/* Two-column grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  flex: 1;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

/* Left: text */
.hero-content { max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,165,42,0.18);
  border: 1px solid rgba(201,165,42,0.4);
  color: var(--gold-light);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s ease both;
}
.hero-badge::before { content: '●'; font-size: 8px; animation: pulse 2s ease infinite; }

h1 { margin-bottom: 20px; animation: fadeSlideUp 0.9s 0.1s ease both; }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  animation: fadeSlideUp 1s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeSlideUp 1.1s 0.3s ease both;
}

/* Right: logo */
.hero-logo {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-logo-img {
  width: clamp(220px, 35vw, 380px);
  height: auto;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  transition: transform 0.4s ease;
}
.hero-logo-img:hover { transform: scale(1.02); }

/* Stats row */
.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 5vw, 3rem);
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
}

.stat { text-align: center; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Scroll hint */
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 2s 1s ease both;
  margin-top: auto;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.35));
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Hero responsive ── */
@media (max-width: 760px) {
  #hero {
    padding-top: calc(var(--nav-h) + 2rem);
    padding-bottom: 2rem;
    text-align: center;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
  }
  .hero-content { margin: 0 auto; }
  .hero-logo    { justify-content: center; }
  /* show logo above text on mobile */
  .hero-logo    { order: -1; }
  .hero-logo-img { width: clamp(180px, 55vw, 280px); }
  .hero-sub     { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-scroll  { display: none; }
}

/* ================================================================
   MARQUEE
   ================================================================ */
.marquee-strip {
  background: var(--gold);
  padding: 12px 0;
  overflow: hidden;
  display: flex;
}
.marquee-inner {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  /* duplicate content so it loops seamlessly */
}
.marquee-inner span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  flex-shrink: 0;
}
.marquee-inner span::before { content: '✦'; margin-right: 12px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-inner,
  .shape,
  .scroll-line { animation: none; }
  .hero-badge::before { animation: none; }
}

/* ================================================================
   SECTION DEFAULTS
   ================================================================ */
section {
  padding: var(--section-py) var(--section-px);
}

/* ================================================================
   ABOUT
   ================================================================ */
#about {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}

/* Visual stack */
.about-visual {
  position: relative;
  height: clamp(320px, 45vw, 520px);
  flex-shrink: 0;
}

.about-img-card {
  position: absolute;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-img-card.main {
  width: 75%;
  height: 72%;
  top: 0;
  left: 0;
}

.about-img-card.secondary {
  width: 55%;
  height: 52%;
  bottom: 0;
  right: 0;
}

.about-img-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fill actual images */
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-quote-chip {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--green);
  padding: 16px 20px;
  border-radius: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  max-width: 170px;
  z-index: 3;
  box-shadow: 0 10px 35px rgba(201,165,42,0.4);
}

.about-dots {
  position: absolute;
  bottom: 28px;
  left: 24%;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, var(--green-mid) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.4;
}

/* Text side */
.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin: 20px 0;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.value-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(26,77,46,0.1);
  transition: all var(--transition);
  cursor: default;
}
.value-chip:hover          { background: var(--green); color: white; transform: translateX(4px); }
.value-chip:hover .value-icon { background: var(--gold); color: var(--green); }

.value-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(26,77,46,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.value-text { font-size: 0.88rem; font-weight: 600; }

/* ── About responsive ── */
@media (max-width: 860px) {
  #about {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-visual {
    height: clamp(280px, 70vw, 380px);
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .about-values { grid-template-columns: 1fr; }
}

/* ================================================================
   PROGRAMS
   ================================================================ */
#programs {
  background: var(--green);
  position: relative;
  overflow: hidden;
}
#programs::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.programs-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.programs-header h2           { color: white; }
.programs-header .section-label { color: var(--gold-light); }
.programs-header p {
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 16px auto 0;
  font-size: 1rem;
  line-height: 1.7;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.program-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: all 0.4s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(201,165,42,0.12), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.program-card:hover              { background: rgba(255,255,255,0.1); transform: translateY(-8px); border-color: rgba(201,165,42,0.4); }
.program-card:hover::before      { opacity: 1; }

.program-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  margin-bottom: -12px;
  transition: color 0.3s;
}
.program-card:hover .program-num { color: rgba(201,165,42,0.2); }

.program-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(201,165,42,0.35);
  transition: transform 0.3s;
}
.program-card:hover .program-icon-wrap { transform: rotate(-8deg) scale(1.1); }

.program-card h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); color: white; margin-bottom: 12px; }
.program-card p  { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }

.program-items {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.program-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.86rem;
  line-height: 1.5;
}
.program-items li::before {
  content: '✓';
  color: var(--gold-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Programs responsive ── */
@media (max-width: 860px) {
  .programs-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .programs-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   IMPACT
   ================================================================ */
#impact {
  background: var(--warm-white);
  text-align: center;
}

.impact-header { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.impact-header p {
  color: var(--text-mid);
  max-width: 520px;
  margin: 16px auto 0;
  font-size: 1rem;
  line-height: 1.7;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.impact-card {
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(26,77,46,0.08);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.impact-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.impact-card:hover              { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,77,46,0.12); }
.impact-card:hover::after       { transform: scaleX(1); }

.impact-icon { font-size: 2rem; margin-bottom: 14px; }
.impact-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.impact-label {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-top: 8px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

/* ── Impact responsive ── */
@media (max-width: 760px) {
  .impact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .impact-grid { grid-template-columns: 1fr; max-width: 360px; }
}

/* ================================================================
   JOIN
   ================================================================ */
#join {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}

.join-text h2    { margin-bottom: 16px; }
.join-text > p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

.join-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.join-option {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(26,77,46,0.1);
  transition: all var(--transition);
}
.join-option:hover {
  border-color: var(--green);
  box-shadow: 0 10px 35px rgba(26,77,46,0.1);
  transform: translateX(6px);
}

.join-option-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.join-option-icon.green { background: rgba(26,77,46,0.1); }
.join-option-icon.gold  { background: rgba(201,165,42,0.15); }

.join-option-title { font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 5px; }
.join-option-desc  { font-size: 0.87rem; color: var(--text-mid); line-height: 1.6; }

/* Support card */
.join-support {
  background: var(--green);
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 30px 80px rgba(26,77,46,0.3);
  position: relative;
  overflow: hidden;
  color: white;
}
.join-support::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

.join-support h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.7rem);
  color: white;
  margin-bottom: 6px;
}

.support-intro {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 28px;
  line-height: 1.5;
}

.support-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.support-method {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 18px;
  transition: all var(--transition);
}
.support-method:hover {
  background: rgba(255,255,255,0.12);
  transform: translateX(6px);
  border-color: var(--gold);
}

.support-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(201,165,42,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.support-method-title {
  font-weight: 700;
  font-size: 0.96rem;
  color: white;
  margin-bottom: 4px;
}

.support-method-desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.support-footer {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
}
.support-footer p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.support-footer a {
  color: var(--gold-light);
  font-weight: 600;
  transition: color 0.2s;
}
.support-footer a:hover { color: white; }

.support-cta {
  display: inline-block;
  background: rgba(201,165,42,0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 11px 26px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--transition);
}
.support-cta:hover {
  background: var(--gold);
  color: var(--green);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ── Join responsive ── */
@media (max-width: 860px) {
  #join {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ================================================================
   CONTACT
   ================================================================ */
#contact {
  background: var(--text-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(26,77,46,0.5) 0%, transparent 70%);
  pointer-events: none;
}

#contact .section-label { color: var(--gold-light); }
#contact h2             { color: white; margin-bottom: 14px; }

.contact-sub {
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
  min-width: min(220px, 100%);
  flex: 1 1 200px;
  max-width: 280px;
  transition: all var(--transition);
}
.contact-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
  border-color: var(--gold);
}

.contact-card-icon  { font-size: 1.8rem; margin-bottom: 12px; }
.contact-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-card-val { color: white; font-size: 0.9rem; line-height: 1.7; }
.contact-card-val a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.contact-card-val a:hover { color: var(--gold-light); }

@media (max-width: 560px) {
  .contact-cards    { flex-direction: column; align-items: center; }
  .contact-card     { max-width: 100%; width: 100%; }
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: #0a1f11;
  padding: clamp(1.5rem, 3vw, 2.5rem) var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
}
.footer-brand strong { color: var(--gold); }

.footer-social { display: flex; gap: 12px; }

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--green);
  border-color: var(--gold);
}

@media (max-width: 560px) {
  footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

