/* ================================================
   INKLINE — Complete CSS
   ================================================ */

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

:root {
  --black:    #0A0A0A;
  --black2:   #111111;
  --cream:    #F5F1E8;
  --cream-dk: #E8E3D6;
  --white:    #FFFFFF;
  --txt:      #1A1A1A;
  --txt-mid:  #444444;
  --txt-gray: #777777;
  --red:      #D94F4F;
  --gold:     #C8A030;

  --font-display: 'DM Serif Display', serif;
  --font-sans:    'DM Sans', sans-serif;

  --ease:  cubic-bezier(.25,.46,.45,.94);
  --expo:  cubic-bezier(.16,1,.3,1);
  --max:   1440px;
}

html  { scroll-behavior: smooth; }
body  { font-family: var(--font-sans); color: var(--txt); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container      { max-width: var(--max); margin: 0 auto; padding: 0 80px; }
.container-full { width: 100%; }


/* ════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 22px 80px;
  display: flex; align-items: center; justify-content: space-between;
  transition: transform .38s cubic-bezier(.25,.46,.45,.94),
              background .4s,
              backdrop-filter .4s;
}
/* Hide nav when scrolling UP is reversed — hidden state */
.navbar.nav-hidden {
  transform: translateY(-100%);
}
.navbar.scrolled {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.logo {
  font-family: var(--font-sans);
  font-size: 22px; font-weight: 700;
  letter-spacing: 4px; color: var(--cream);
}
.nav-menu { display: flex; gap: 44px; list-style: none; }
.nav-menu a {
  color: rgba(245,241,232,.7);
  font-size: 13px; font-weight: 500; letter-spacing: .08em;
  transition: color .25s;
}
.nav-menu a:hover { color: var(--cream); }
.btn-join {
  background: var(--cream); color: var(--black);
  padding: 11px 26px; border-radius: 50px;
  font-size: 13px; font-weight: 700; letter-spacing: .06em;
  transition: background .25s, transform .2s;
}
.btn-join:hover { background: var(--cream-dk); transform: translateY(-2px); }


/* ════════════════════════════════════════════════
   HERO  — video background, León y Sol style
════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* Video fills the whole hero */
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.55);
}
/* grain overlay — same trick as León y Sol */
.hero-video-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 140px;
  opacity: .04; pointer-events: none;
}
/* dark gradient so text pops */
.hero-video-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,.3) 0%, rgba(10,10,10,.15) 50%, rgba(10,10,10,.6) 100%);
  z-index: 1;
}

/* Content sits on top of video */
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 160px 80px 100px;
  max-width: 980px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,241,232,.12);
  border: 1px solid rgba(245,241,232,.25);
  border-radius: 50px;
  padding: 7px 18px; margin-bottom: 36px;
  opacity: 0; animation: fadeUp .7s .1s var(--expo) forwards;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-badge span {
  font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(245,241,232,.85);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 11vw, 160px);
  line-height: .95;
  color: var(--cream);
  font-weight: 400;
  letter-spacing: -2px;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp .9s .25s var(--expo) forwards;
}
.hero-title em { font-style: italic; }

.hero-subtitle {
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(245,241,232,.75);
  line-height: 1.7; margin-bottom: 48px;
  max-width: 600px; margin-left: auto; margin-right: auto;
  opacity: 0; animation: fadeUp .8s .4s var(--expo) forwards;
}

.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .7s .56s var(--expo) forwards;
}

/* scroll hint */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp .6s 1.1s forwards;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:1} }
.hero-scroll span {
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(245,241,232,.4);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 50px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em;
  transition: background .25s, color .25s, transform .25s, box-shadow .25s;
}
.btn svg { transition: transform .3s; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--cream); color: var(--black); }
.btn-primary:hover { background: var(--cream-dk); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(245,241,232,.2); }

.btn-secondary { background: transparent; color: var(--cream); border: 1.5px solid rgba(245,241,232,.5); }
.btn-secondary:hover { background: var(--cream); color: var(--black); }

.btn-dark { background: var(--black); color: var(--cream); }
.btn-dark:hover { background: #1c1c1c; transform: translateY(-2px); }

.btn-light { background: var(--cream); color: var(--black); }
.btn-light:hover { background: var(--white); transform: translateY(-2px); }

.btn-large { padding: 18px 44px; font-size: 15px; }


/* ════════════════════════════════════════════════
   BELIEF / ABOUT SECTION
════════════════════════════════════════════════ */
.belief-section {
  background: var(--cream);
  padding: 140px 0;
}
.belief-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.08; color: var(--txt);
  font-weight: 400; margin-bottom: 28px;
}
.section-description {
  font-size: 17px; line-height: 1.85;
  color: var(--txt-mid); margin-bottom: 22px;
}
.belief-image {
  position: relative;
}
.belief-image img {
  width: 100%; height: 620px;
  object-fit: cover; border-radius: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,.15);
}
/* small accent block behind photo */
.belief-image::after {
  content: ''; position: absolute;
  bottom: -20px; right: -20px;
  width: 55%; height: 55%;
  background: rgba(0,0,0,.06);
  border-radius: 16px; z-index: -1;
}


/* ════════════════════════════════════════════════
   MISSION SECTION  — image grid
════════════════════════════════════════════════ */
.mission-section { background: var(--white); padding: 140px 0; }
.mission-header { text-align: center; margin-bottom: 70px; }
.section-intro { font-size: 18px; color: var(--txt-gray); margin-top: 14px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.7; }

.mission-images-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.mission-image-card {
  position: relative; border-radius: 14px; overflow: hidden;
  aspect-ratio: 3/4;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.mission-image-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(0,0,0,.18); }
.mission-image-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.mission-image-card:hover img { transform: scale(1.06); }
.mission-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(10,10,10,.75), transparent);
}
.mission-overlay h3 {
  font-family: var(--font-display);
  font-size: 22px; color: var(--cream); font-weight: 400;
}


/* ════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════ */
.testimonials-section { background: var(--cream-dk); padding: 140px 0; }
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
}
.testimonial-card {
  background: var(--cream); border-radius: 16px;
  padding: 40px 36px;
  transition: transform .35s var(--ease), box-shadow .35s;
  position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 16px; right: 24px;
  font-family: var(--font-display); font-size: 88px;
  color: rgba(0,0,0,.06); line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,.12); }
.testimonial-stars {
  font-size: 16px; color: var(--gold);
  letter-spacing: 2px; margin-bottom: 20px;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 20px; font-style: italic;
  line-height: 1.5; color: var(--txt);
  margin-bottom: 28px; font-weight: 400;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 22px;
}
.testimonial-author img {
  width: 48px; height: 48px;
  border-radius: 50%; object-fit: cover;
  background: var(--cream-dk);
}
.author-info h4 { font-size: 15px; font-weight: 700; color: var(--txt); }
.author-info p  { font-size: 13px; color: var(--txt-gray); margin-top: 2px; }


/* ════════════════════════════════════════════════
   COMMUNITY RETREATS  — sticky text + scroll images
════════════════════════════════════════════════ */
.community-section { background: var(--black); }

.community-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* no padding on section — handled inside */
}

/* ── LEFT: sticky text panel ── */
.community-text-sticky {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px clamp(40px,5vw,80px) 80px 80px;
}
.community-kicker {
  font-size: 11px; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  font-family: var(--font-sans);
}
.section-title-white {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.08; color: var(--cream);
  font-weight: 400; margin-bottom: 28px;
}
.section-description-white {
  font-size: 17px; line-height: 1.85;
  color: rgba(245,241,232,.6); margin-bottom: 22px;
}
.community-stats {
  display: flex; gap: 36px; margin: 32px 0 40px;
}
.cstat-n {
  font-family: var(--font-display);
  font-size: 40px; color: var(--cream); line-height: 1;
}
.cstat-l {
  font-size: 12px; color: rgba(245,241,232,.4);
  letter-spacing: .1em; text-transform: uppercase; margin-top: 4px;
}

/* ── RIGHT: scrolling polaroids ── */
.community-images-scroll {
  padding: 80px clamp(24px,4vw,64px);
  display: flex; flex-direction: column; gap: 40px;
}
.polaroid {
  background: var(--white);
  padding: 14px 14px 54px;
  border-radius: 3px;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  position: relative;
  transition: transform .4s var(--ease);
  will-change: transform;
}
.polaroid:nth-child(odd)  { transform: rotate(-2.5deg); margin-left: 16px; }
.polaroid:nth-child(even) { transform: rotate(2deg);   margin-right: 16px; margin-top: 20px; }
.polaroid:hover { transform: rotate(0deg) translateY(-8px) scale(1.02) !important; }

.polaroid-dot { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--red); }
.polaroid-dot.top-left    { top: 8px;  left: 8px; }
.polaroid-dot.top-right   { top: 8px;  right: 8px; }
.polaroid-dot.bottom-left { bottom: 46px; left: 8px; }
.polaroid-dot.bottom-right{ bottom: 46px; right: 8px; }

.polaroid-event-date {
  font-size: 10px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--txt-gray);
  margin-bottom: 6px; font-family: 'Courier New', monospace;
}
.polaroid-caption {
  text-align: center; font-size: 16px; font-weight: 700;
  color: var(--txt); font-family: var(--font-sans);
  text-transform: uppercase; letter-spacing: .06em;
}

.polaroid img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; display: block;
  border-radius: 2px;
  background: linear-gradient(135deg, #e8e3d6, #d4cfc2);
  margin-bottom: 10px;
}


/* ════════════════════════════════════════════════
   PROCESS SECTION
════════════════════════════════════════════════ */
.process-section { background: var(--black); padding: 140px 0; }
.process-header { margin-bottom: 80px; }
.process-header .section-title {
  color: var(--cream);
  font-size: clamp(48px, 6vw, 88px);
  line-height: .95;
  max-width: 700px;
}
.process-header .section-intro { color: rgba(245,241,232,.5); margin-top: 20px; font-size: 17px; max-width: 480px; }

.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 40px;
}
.process-step {
  padding-top: 28px;
  border-top: 1px solid rgba(245,241,232,.12);
  transition: border-color .3s;
}
.process-step:hover { border-color: var(--gold); }
.step-icon {
  font-size: 28px; margin-bottom: 20px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 56px; color: rgba(245,241,232,.1);
  line-height: 1; margin-bottom: 16px;
  font-weight: 400;
  transition: color .3s;
}
.process-step:hover .step-number { color: rgba(200,160,48,.3); }
.step-title {
  font-family: var(--font-display);
  font-size: 22px; color: var(--cream);
  font-weight: 400; margin-bottom: 14px;
}
.step-description {
  font-size: 15px; line-height: 1.75;
  color: rgba(245,241,232,.45);
}


/* ════════════════════════════════════════════════
   BLOG SECTION
════════════════════════════════════════════════ */
.blogs-section { background: var(--white); padding: 140px 0; }
.blogs-header {
  display: flex; align-items: baseline;
  justify-content: space-between; margin-bottom: 56px;
}
.view-all-link {
  font-size: 14px; font-weight: 600;
  color: var(--txt-gray); letter-spacing: .04em;
  transition: color .25s;
}
.view-all-link:hover { color: var(--black); }
.blogs-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
}
.blog-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(0,0,0,.07);
  transition: transform .35s var(--ease), box-shadow .35s;
  background: var(--white);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,0,0,.1); }
.blog-image { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.blog-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
  background: var(--cream-dk);
}
.blog-card:hover .blog-image img { transform: scale(1.06); }
.blog-category {
  position: absolute; top: 14px; left: 14px;
  background: var(--black); color: var(--cream);
  padding: 5px 14px; border-radius: 50px;
  font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.blog-content { padding: 28px 28px 32px; }
.blog-meta {
  display: flex; gap: 16px; margin-bottom: 12px;
  font-size: 12px; color: var(--txt-gray);
}
.blog-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  line-height: 1.25; color: var(--txt); margin-bottom: 12px;
}
.blog-excerpt { font-size: 14px; color: var(--txt-gray); line-height: 1.7; margin-bottom: 22px; }
.blog-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  color: var(--txt); letter-spacing: .04em;
  transition: gap .3s;
}
.blog-link:hover { gap: 12px; }


/* ════════════════════════════════════════════════
   VOICE MATTERS / CTA SECTION
════════════════════════════════════════════════ */
.voice-matters-section {
  background: var(--black);
  padding: 160px 0;
  text-align: center;
}
.voice-matters-content { max-width: 800px; margin: 0 auto; }
.section-title-centered {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  line-height: .97; color: var(--cream); font-weight: 400;
  margin-bottom: 28px;
}
.section-description-centered {
  font-size: 18px; line-height: 1.8;
  color: rgba(245,241,232,.55); margin-bottom: 20px;
}
.voice-matters-cta { margin: 44px 0 64px; }
.voice-matters-stats {
  display: flex; justify-content: center; gap: 80px;
  border-top: 1px solid rgba(245,241,232,.1);
  padding-top: 52px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 52px; color: var(--cream); line-height: 1; font-weight: 400;
}
.stat-label {
  font-size: 12px; color: rgba(245,241,232,.35);
  letter-spacing: .18em; text-transform: uppercase; margin-top: 8px;
}


/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer { background: var(--cream); padding: 80px 0 44px; }
.footer-content {
  display: grid; grid-template-columns: 2fr 3fr;
  gap: 80px; margin-bottom: 64px;
}
.footer-brand .logo { color: var(--black); margin-bottom: 14px; }
.footer-brand p { font-size: 15px; color: var(--txt-gray); line-height: 1.7; max-width: 260px; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 60px; }
.footer-column h4 {
  font-size: 13px; font-weight: 700;
  color: var(--txt); letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: 22px;
}
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 12px; }
.footer-column a {
  font-size: 15px; color: var(--txt-gray);
  transition: color .2s, padding-left .2s;
}
.footer-column a:hover { color: var(--txt); padding-left: 4px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 36px; border-top: 1px solid rgba(0,0,0,.1);
  font-size: 13px; color: var(--txt-gray);
}
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--txt-gray);
  transition: border-color .25s, color .25s, background .25s;
}
.footer-socials a:hover { border-color: var(--black); color: var(--black); background: rgba(0,0,0,.05); }
.footer-socials svg { width: 15px; height: 15px; fill: currentColor; }

/* Built-by credit link */
.footer-credit {
  color: var(--txt);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.25);
  transition: color .2s, border-color .2s;
}
.footer-credit:hover {
  color: var(--black);
  border-color: var(--black);
}


/* ════════════════════════════════════════════════
   HERO VIDEO — full cover MP4 like León y Sol
════════════════════════════════════════════════ */
.hero-video-wrap video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;            /* fills the hero perfectly, no black bars */
  pointer-events: none;
  z-index: 0;
  /* León y Sol cinematic treatment */
  filter: brightness(.62);
}
.hero-video-fallback {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: -1;
}

/* ════════════════════════════════════════════════
   EYEBROW / KICKER LABELS
════════════════════════════════════════════════ */
.section-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  display: block;
}
.section-eyebrow-dark {
  font-size: 11px; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--txt-gray); margin-bottom: 18px;
  display: block;
}

/* Mission overlay tag */
.mission-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(245,241,232,.55); margin-bottom: 6px;
}

/* Polaroid body (date + caption wrapper) */
.polaroid-body {
  padding: 6px 4px 0;
  text-align: center;
}

/* Hero title italic */
.section-title-centered em,
.hero-title em {
  font-style: italic;
  font-family: var(--font-display);
}

/* ════════════════════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s var(--expo), transform .8s var(--expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .22s; }
.reveal.d3 { transition-delay: .34s; }
.reveal.d4 { transition-delay: .46s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ════════════════════════════════════════════════
   HAMBURGER + MOBILE MENU
════════════════════════════════════════════════ */
.nav-right { display: flex; align-items: center; gap: 14px; }

.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Full-screen mobile overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 40px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.mobile-menu.open {
  opacity: 1; pointer-events: all;
}
.mobile-menu ul {
  list-style: none; text-align: center; display: flex;
  flex-direction: column; gap: 28px;
}
.mobile-menu ul a {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 400;
  color: var(--cream); letter-spacing: -.5px;
  transition: opacity .2s;
}
.mobile-menu ul a:hover { opacity: .6; }
.mobile-menu .btn {
  font-size: 15px; padding: 16px 40px;
}


/* ════════════════════════════════════════════════
   RESPONSIVE — 1280px (large laptops)
════════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .container { padding: 0 60px; }
  .navbar   { padding: 20px 60px; }
  .belief-content { gap: 72px; }
  .community-text-sticky { padding: 80px 48px 80px 60px; }
}


/* ════════════════════════════════════════════════
   RESPONSIVE — 1024px (tablets landscape / small laptops)
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* NAV */
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .btn-join { display: none; }  /* hide desktop CTA — mobile menu has it */

  /* CONTAINERS */
  .container { padding: 0 48px; }
  .navbar   { padding: 18px 48px; }

  /* HERO */
  .hero-content { padding: 140px 48px 90px; max-width: 100%; }

  /* BELIEF — stack text over image */
  .belief-section { padding: 100px 0; }
  .belief-content {
    grid-template-columns: 1fr; gap: 52px;
  }
  .belief-image img { height: 480px; }
  .belief-image::after { display: none; }

  /* MISSION — 2 columns */
  .mission-section { padding: 100px 0; }
  .mission-images-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }

  /* TESTIMONIALS — 2 columns */
  .testimonials-section { padding: 100px 0; }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }

  /* COMMUNITY — disable sticky, stack vertically */
  .community-content { grid-template-columns: 1fr; }
  .community-text-sticky {
    position: relative; height: auto;
    padding: 80px 48px 60px;
  }
  .community-images-scroll { padding: 0 48px 80px; }
  .polaroid:nth-child(odd)  { margin-left: 0; }
  .polaroid:nth-child(even) { margin-right: 0; margin-top: 0; }

  /* PROCESS — 2 columns */
  .process-section { padding: 100px 0; }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 36px; }

  /* BLOGS / SCIENCE */
  .blogs-section { padding: 100px 0; }
  .blogs-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }

  /* CTA */
  .voice-matters-section { padding: 120px 0; }
  .voice-matters-stats { gap: 56px; }

  /* FOOTER */
  .footer-content { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { grid-template-columns: repeat(3,1fr); gap: 40px; }
}


/* ════════════════════════════════════════════════
   RESPONSIVE — 768px (tablets portrait)
════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* CONTAINERS */
  .container { padding: 0 28px; }
  .navbar   { padding: 16px 24px; }

  /* HERO */
  .hero-content { padding: 130px 28px 80px; }
  .hero-subtitle br { display: none; } /* remove forced line breaks */
  .hero-buttons { flex-direction: column; align-items: center; width: 100%; }
  .hero-buttons .btn { width: 100%; max-width: 380px; justify-content: center; }

  /* BELIEF */
  .belief-section { padding: 80px 0; }
  .belief-content { gap: 40px; }
  .belief-image img { height: 360px; }

  /* MISSION */
  .mission-section { padding: 80px 0; }
  .mission-images-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .mission-image-card { aspect-ratio: 4/5; }

  /* TESTIMONIALS — single column */
  .testimonials-section { padding: 80px 0; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* COMMUNITY */
  .community-text-sticky { padding: 60px 28px 48px; }
  .community-images-scroll { padding: 0 28px 60px; gap: 28px; }
  .community-stats { gap: 28px; }
  .cstat-n { font-size: 32px; }

  /* PROCESS — single column */
  .process-section { padding: 80px 0; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-header .section-title { font-size: clamp(40px, 9vw, 64px); }

  /* BLOGS */
  .blogs-section { padding: 80px 0; }
  .blogs-grid { grid-template-columns: 1fr; }
  .blogs-header { flex-direction: column; gap: 12px; align-items: flex-start; }

  /* CTA */
  .voice-matters-section { padding: 90px 0; }
  .voice-matters-stats {
    flex-direction: row; flex-wrap: wrap;
    justify-content: center; gap: 40px;
  }
  .stat-number { font-size: 40px; }

  /* FOOTER */
  .footer { padding: 64px 0 36px; }
  .footer-content { gap: 40px; }
  .footer-links { grid-template-columns: repeat(2,1fr); gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}


/* ════════════════════════════════════════════════
   RESPONSIVE — 480px (phones)
════════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* CONTAINERS */
  .container { padding: 0 20px; }
  .navbar   { padding: 14px 20px; }

  /* HERO */
  .hero-content { padding: 110px 20px 72px; }
  .hero-badge span { font-size: 9px; letter-spacing: .12em; }
  .hero-title { letter-spacing: -1px; }
  .hero-scroll { display: none; }  /* hide scroll hint on small phones */

  /* BELIEF */
  .belief-section { padding: 64px 0; }
  .belief-image img { height: 280px; border-radius: 10px; }
  .section-title { font-size: clamp(32px, 8vw, 48px); }
  .section-description { font-size: 15px; }

  /* MISSION */
  .mission-section { padding: 64px 0; }
  .mission-images-grid { grid-template-columns: 1fr; gap: 14px; }
  .mission-image-card { aspect-ratio: 16/10; }
  .mission-overlay h3 { font-size: 18px; }

  /* TESTIMONIALS */
  .testimonials-section { padding: 64px 0; }
  .testimonial-card { padding: 28px 24px; }
  .testimonial-text { font-size: 17px; }

  /* COMMUNITY */
  .community-text-sticky { padding: 56px 20px 40px; }
  .community-images-scroll { padding: 0 20px 56px; gap: 24px; }
  .section-title-white { font-size: clamp(32px, 8vw, 48px); }
  .community-stats { flex-direction: column; gap: 16px; }
  .cstat-n { font-size: 36px; }
  .polaroid { padding: 10px 10px 44px; }
  .polaroid:nth-child(odd)  { transform: rotate(-1.5deg); }
  .polaroid:nth-child(even) { transform: rotate(1.5deg); }

  /* PROCESS */
  .process-section { padding: 64px 0; }
  .step-number { font-size: 44px; }
  .step-title  { font-size: 20px; }
  .step-description { font-size: 14px; }

  /* BLOGS */
  .blogs-section { padding: 64px 0; }
  .blog-title { font-size: 20px !important; }

  /* CTA */
  .voice-matters-section { padding: 72px 0; }
  .section-title-centered { font-size: clamp(36px, 9vw, 56px); }
  .section-description-centered { font-size: 15px; }
  .voice-matters-stats { flex-direction: column; gap: 28px; }
  .stat-number { font-size: 44px; }
  .voice-matters-cta .btn-large { width: 100%; max-width: 100%; justify-content: center; padding: 16px 24px; }

  /* FOOTER */
  .footer { padding: 52px 0 32px; }
  .footer-links { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }
}
