/* ============================================================
   InAmigos Foundation — Enhanced NGO Homepage
   style.css  |  Cormorant Garamond + Plus Jakarta Sans
   ============================================================ */

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

/* ── CSS Variables ── */
:root{
  --forest:#1a6b3a;
  --forest-mid:#2d8a52;
  --forest-dark:#0e4d28;
  --forest-light:#e6f4ec;
  --forest-pale:#f2faf5;
  --amber:#d4820a;
  --amber-light:#fff4e0;
  --amber-pale:#fffbf2;
  --ink:#1a1a1a;
  --ink-muted:#5c5c5c;
  --ink-faint:#9e9e9e;
  --cream:#faf8f3;
  --white:#ffffff;
  --border:#dde9e3;
  --sage:#e2f0e7;
  --blush:#fde8f3;
  --shadow-sm:0 2px 12px rgba(0,0,0,.06);
  --shadow-md:0 8px 32px rgba(0,0,0,.1);
  --shadow-lg:0 20px 60px rgba(0,0,0,.14);
  --radius:20px;
  --transition:.3s cubic-bezier(.4,0,.2,1);
}

html{scroll-behavior:smooth}
body{
  font-family:'Plus Jakarta Sans',sans-serif;
  background:var(--cream);
  color:var(--ink);
  overflow-x:hidden;
}


/* ── PRELOADER ── */
#preloader{
  position:fixed;inset:0;
  background:var(--forest-dark);
  z-index:10000;
  display:flex;align-items:center;justify-content:center;
  flex-direction:column;
  transition:opacity .6s .2s, visibility .6s .2s;
}
#preloader.hidden{opacity:0;visibility:hidden}

.preloader-inner{text-align:center}
.pl-logo{
  font-family:'Cormorant Garamond',serif;
  font-size:2.8rem;font-weight:700;
  color:var(--white);letter-spacing:-1px;
  margin-bottom:1.6rem;
}
.pl-logo span{color:#9de0b6;font-style:italic}
.pl-bar{
  width:180px;height:3px;
  background:rgba(255,255,255,.15);
  border-radius:2px;margin:0 auto 1.2rem;
  overflow:hidden;
}
.pl-bar span{
  display:block;height:100%;width:0%;
  background:linear-gradient(90deg,#9de0b6,var(--amber));
  border-radius:2px;
  animation:loadBar 1.2s ease forwards;
}
@keyframes loadBar{to{width:100%}}
.pl-tag{
  font-size:.85rem;color:rgba(255,255,255,.5);
  letter-spacing:2px;text-transform:uppercase;
}

/* ── NAV ── */
#nav{
  position:fixed;top:0;left:0;right:0;z-index:500;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 6%;height:68px;
  background:rgba(250,248,243,0);
  backdrop-filter:blur(0px);
  border-bottom:1px solid transparent;
  transition:all .4s ease;
}
#nav.scrolled{
  background:rgba(250,248,243,.95);
  backdrop-filter:blur(16px);
  border-bottom-color:var(--border);
  box-shadow:0 2px 20px rgba(0,0,0,.06);
}
.nav-logo{display:flex;align-items:center;gap:14px;text-decoration:none}
/* .nav-logo img{height:100px;width:100px} */
.nav-logo img{
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-logo{
    display:flex;
    align-items:center;
    gap:16px;
}

.brand-main{
  font-family:'Cormorant Garamond', serif;
  font-size:2.2rem;
  font-weight:700;
  color:#1a6b3a;
  line-height:.9;
}

.brand-sub{
  font-family:'Plus Jakarta Sans', sans-serif;
  font-size:1rem;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--amber);
  margin-top:4px;
}

.nav-logo{
    display:flex;
    align-items:center;
    gap:12px;
}
.nav-logo-text{
  font-family:'Cormorant Garamond',serif;
  font-size:1.4rem;font-weight:700;
  color:var(--forest);
}
.nav-logo-text em{color:var(--amber);font-style:italic}

.nav-links{
  display:flex;align-items:center;
  gap:2.2rem;list-style:none;
}
.nav-links a{
  text-decoration:none;font-size:.83rem;
  font-weight:500;color:var(--ink-muted);
  letter-spacing:.3px;
  transition:color var(--transition);
}
.nav-links a:hover{color:var(--forest)}
.nav-cta{
  background:var(--forest)!important;
  color:var(--white)!important;
  padding:.45rem 1.2rem;border-radius:50px;
  font-weight:600!important;
  box-shadow:0 4px 16px rgba(26,107,58,.3);
  transition:all var(--transition)!important;
}
.nav-cta:hover{
  background:var(--forest-mid)!important;
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(26,107,58,.4)!important;
}

.hamburger{
  display:none;flex-direction:column;
  gap:5px;background:none;border:none;
  cursor:none;padding:6px;
}
.hamburger span{
  display:block;width:24px;height:2px;
  background:var(--ink);
  border-radius:2px;
  transition:all var(--transition);
}
.hamburger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

.mobile-menu{
  position:fixed;top:68px;left:0;right:0;
  background:var(--white);
  padding:1.5rem 6%;
  border-bottom:1px solid var(--border);
  z-index:499;
  transform:translateY(-20px);
  opacity:0;visibility:hidden;
  transition:all var(--transition);
}
.mobile-menu.open{
  transform:translateY(0);
  opacity:1;visibility:visible;
}
.mobile-menu ul{list-style:none;display:flex;flex-direction:column;gap:1rem}
.mobile-menu a{
  text-decoration:none;font-weight:500;
  color:var(--ink);font-size:.95rem;
}
.mobile-cta{
  display:inline-block;
  background:var(--forest);
  color:var(--white)!important;
  padding:.6rem 1.4rem;
  border-radius:50px;
  font-weight:600!important;
}

/* ── SHARED ── */
section{padding:100px 7%}
.section-label{
  display:inline-block;
  font-size:.7rem;font-weight:600;
  letter-spacing:3px;text-transform:uppercase;
  color:var(--forest);margin-bottom:.8rem;
}
.section-label-light{color:#9de0b6}
.section-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.2rem,4vw,3.2rem);
  font-weight:700;line-height:1.15;
  color:var(--ink);margin-bottom:1.2rem;
}
.section-title em{color:var(--forest);font-style:italic}
.section-sub{
  font-size:1rem;color:var(--ink-muted);
  max-width:540px;line-height:1.8;font-weight:300;
}

/* ── BUTTONS ── */
.btn-primary{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--forest);color:var(--white);
  padding:.9rem 2rem;border-radius:50px;
  text-decoration:none;font-weight:600;font-size:.9rem;
  box-shadow:0 4px 24px rgba(26,107,58,.35);
  transition:all var(--transition);
  position:relative;overflow:hidden;
}
.btn-primary::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(120deg,transparent 30%,rgba(255,255,255,.12),transparent 70%);
  transform:translateX(-100%);transition:.6s;
}
.btn-primary:hover::before{transform:translateX(100%)}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 32px rgba(26,107,58,.45);
}
.btn-arrow{font-size:1.1rem;transition:transform var(--transition)}
.btn-primary:hover .btn-arrow{transform:translateX(4px)}

.btn-ghost{
  display:inline-flex;align-items:center;gap:8px;
  background:transparent;color:var(--ink);
  padding:.9rem 2rem;border-radius:50px;
  text-decoration:none;font-weight:500;font-size:.9rem;
  border:1.5px solid var(--border);
  transition:all var(--transition);
}
.btn-ghost:hover{border-color:var(--forest);color:var(--forest)}

.btn-outline-light{
  display:inline-flex;align-items:center;gap:8px;
  background:transparent;
  color:rgba(255,255,255,.8);
  padding:.85rem 1.8rem;border-radius:50px;
  text-decoration:none;font-weight:500;font-size:.88rem;
  border:1.5px solid rgba(255,255,255,.3);
  transition:all var(--transition);
  margin-top:2rem;
}
.btn-outline-light:hover{
  background:rgba(255,255,255,.1);
  color:var(--white);
  border-color:rgba(255,255,255,.6);
}

.btn-white-sm{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--white);
  color:var(--forest);
  padding:.65rem 1.4rem;border-radius:50px;
  text-decoration:none;font-weight:600;font-size:.82rem;
  transition:all var(--transition);
  margin-top:1rem;
}
.btn-white-sm:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(0,0,0,.15);
}

/* ── REVEAL ── */
.reveal{
  opacity:0;transform:translateY(32px);
  transition:opacity .7s ease,transform .7s ease;
}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-delay-1{transition-delay:.1s}
.reveal-delay-2{transition-delay:.2s}
.reveal-delay-3{transition-delay:.3s}
.reveal-delay-4{transition-delay:.4s}
.reveal-delay-5{transition-delay:.5s}

/* ══════════════════════════════════
   HERO
════════════════════════════════════ */
#hero{
  min-height:100vh;padding-top:68px;
  background:var(--cream);
  position:relative;overflow:hidden;
  display:flex;align-items:center;
  padding-left:7%;padding-right:7%;
}
.hero-texture{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%,rgba(230,244,236,.8) 0%,transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%,rgba(255,244,224,.5) 0%,transparent 60%);
  z-index:0;
}
.hero-grain{
  position:absolute;inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  z-index:0;pointer-events:none;
}
.leaf{
  position:absolute;font-size:2.5rem;
  pointer-events:none;z-index:0;
  opacity:.25;filter:saturate(0.6);
}
.leaf-1{top:18%;left:4%;animation:floatLeaf 6s ease-in-out infinite}
.leaf-2{top:60%;left:2%;animation:floatLeaf 8s 1s ease-in-out infinite}
.leaf-3{top:25%;right:3%;animation:floatLeaf 7s .5s ease-in-out infinite}
.leaf-4{top:72%;right:5%;animation:floatLeaf 9s 2s ease-in-out infinite}
@keyframes floatLeaf{
  0%,100%{transform:translateY(0) rotate(0deg)}
  50%{transform:translateY(-18px) rotate(8deg)}
}

.hero-wrap{
  position:relative;z-index:1;
  width:100%;display:grid;
  grid-template-columns:1fr 1fr;
  gap:5%;align-items:center;
  padding:60px 0;
}

.hero-pill{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--amber-light);
  color:var(--amber);
  border:1px solid #f5c97a;
  border-radius:50px;
  padding:.4rem 1rem;
  font-size:.73rem;font-weight:500;
  letter-spacing:.8px;text-transform:uppercase;
  margin-bottom:2rem;
}
.pulse-dot{
  width:8px;height:8px;
  background:var(--amber);border-radius:50%;
  display:block;
  animation:pulse 2s infinite;
}
@keyframes pulse{
  0%,100%{box-shadow:0 0 0 0 rgba(212,130,10,.5)}
  50%{box-shadow:0 0 0 6px rgba(212,130,10,0)}
}

.hero-h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(3.2rem,5.5vw,5.5rem);
  line-height:1.08;
  font-weight:700;
  color:var(--ink);
  margin-bottom:1.8rem;
}
.line-wrap{display:block;overflow:hidden}
.line{
  display:block;
  animation:slideUp .8s ease both;
}
.line-1{animation-delay:.05s}
.line-2{animation-delay:.15s;color:var(--forest)}
.line-3{animation-delay:.25s}
.line-4{animation-delay:.35s}
@keyframes slideUp{
  from{transform:translateY(100%);opacity:0}
  to{transform:translateY(0);opacity:1}
}
.hero-h1 em{font-style:italic;color:var(--forest)}
.hero-h1 mark{
  background:none;color:inherit;
  position:relative;
}
.hero-h1 mark::after{
  content:'';
  position:absolute;
  bottom:-4px;left:0;right:0;height:7px;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12'%3E%3Cpath d='M2,8 Q50,2 100,8 Q150,14 198,6' stroke='%23d4820a' stroke-width='3.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center/100%;
}

.hero-sub{
  font-size:1.05rem;color:var(--ink-muted);
  line-height:1.85;max-width:480px;
  margin-bottom:2.4rem;font-weight:300;
  animation:fadeIn 1s .5s ease both;
}
.hero-sub strong{color:var(--ink);font-weight:600}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}

.hero-actions{
  display:flex;gap:1rem;flex-wrap:wrap;
  margin-bottom:2.2rem;
  animation:fadeIn 1s .7s ease both;
}
.trust-bar{
  display:flex;flex-wrap:wrap;gap:.5rem 1rem;
  animation:fadeIn 1s .9s ease both;
}
.trust-item{
  font-size:.73rem;color:var(--ink-faint);font-weight:500;
}
.trust-sep{color:var(--border)}

/* ── MOSAIC CARDS ── */
.hero-right{animation:fadeIn 1s .3s ease both}
.mosaic{
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:auto auto auto;
  gap:14px;
}
.mosaic-card{
  border-radius:var(--radius);
  padding:1.6rem;
  transition:transform var(--transition),box-shadow var(--transition);
}
.mosaic-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-md);
}
.mosaic-big{grid-column:span 2}
.mosaic-wide{grid-column:span 2}

.bg-forest{background:var(--forest);color:var(--white)}
.bg-cream{background:var(--white);border:1px solid var(--border)}
.bg-amber{background:var(--amber-light);border:1px solid #f5c97a}
.bg-sage{background:var(--sage);border:1px solid #c5e8d2}
.bg-blush{background:var(--blush);border:1px solid #f5c0df}

.mc-icon{font-size:1.8rem;margin-bottom:.8rem}
.mosaic-big .mc-icon{font-size:2.2rem}
.mc-num{
  font-family:'Cormorant Garamond',serif;
  font-size:2.6rem;font-weight:700;line-height:1;
  color:var(--forest);
}
.mosaic-big .mc-num{font-size:3.4rem;color:var(--white)}
.mc-label{
  font-size:.78rem;color:var(--ink-muted);
  margin-top:4px;font-weight:400;
}
.mosaic-big .mc-label{color:rgba(255,255,255,.7)}
.bg-amber .mc-num,.bg-sage .mc-num,.bg-blush .mc-num{color:var(--forest)}

.founder-badge{
  margin-top:14px;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:16px;
  padding:1.2rem 1.4rem;
  display:flex;align-items:center;gap:14px;
  position:relative;
}
.fb-avatar{
  width:46px;height:46px;
  background:var(--forest);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;color:var(--white);
  font-size:1rem;flex-shrink:0;
}
.fb-text strong{display:block;font-size:.9rem;color:var(--ink)}
.fb-text span{font-size:.76rem;color:var(--ink-faint)}
.fb-quote{
  position:absolute;top:-10px;right:16px;
  background:var(--amber);
  color:var(--white);
  font-size:.68rem;font-weight:600;
  padding:.2rem .7rem;border-radius:50px;
  letter-spacing:.5px;
}

.scroll-cue{
  position:absolute;bottom:3rem;left:7%;
  display:flex;align-items:center;gap:12px;
  z-index:2;
  animation:fadeIn 1s 1.2s ease both;
}
.scroll-cue span{
  font-size:.72rem;color:var(--ink-faint);
  letter-spacing:1.5px;text-transform:uppercase;
}
.scroll-line{
  width:40px;height:1px;
  background:var(--ink-faint);
  position:relative;overflow:hidden;
}
.scroll-line::after{
  content:'';position:absolute;
  top:0;left:-100%;width:100%;height:100%;
  background:var(--forest);
  animation:scrollAnim 2s 1.5s ease infinite;
}
@keyframes scrollAnim{
  0%{left:-100%}100%{left:100%}
}

/* ══════════════════════════════════
   ABOUT
════════════════════════════════════ */
.about-section{
  background:var(--white);
  padding:100px 7%;
}
.about-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:8%;align-items:center;
}
.about-visual{position:relative}

.story-card{
  background:var(--forest);
  border-radius:28px 8px 28px 8px;
  padding:2.8rem 2.4rem;
  color:var(--white);
  position:relative;overflow:hidden;
}
.story-card::before{
  content:'❝';
  position:absolute;top:-10px;right:20px;
  font-size:8rem;
  color:rgba(255,255,255,.07);
  font-family:'Cormorant Garamond',serif;
  line-height:1;
}
.story-date{
  font-size:.73rem;letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(255,255,255,.5);
  margin-bottom:1.4rem;
}
.story-headline{
  font-family:'Cormorant Garamond',serif;
  font-size:2rem;font-weight:700;
  line-height:1.25;color:var(--white);
  margin-bottom:1.4rem;
}
.story-headline em{color:#9de0b6;font-style:italic}
.story-body{
  font-size:.88rem;color:rgba(255,255,255,.7);
  line-height:1.75;
}
.story-footer{
  margin-top:1.8rem;
  display:flex;align-items:center;gap:10px;
  font-size:.78rem;color:rgba(255,255,255,.5);
}
.sf-dot{
  width:8px;height:8px;
  background:#9de0b6;border-radius:50%;
}
.about-float-card{
  position:absolute;
  bottom:-20px;right:-20px;
  background:var(--white);
  border-radius:16px;
  padding:1.2rem 1.4rem;
  display:flex;align-items:center;gap:12px;
  box-shadow:var(--shadow-md);
  border:1px solid var(--border);
}
.afc-icon{font-size:1.6rem}
.about-float-card strong{display:block;font-size:.88rem;color:var(--ink)}
.about-float-card p{font-size:.75rem;color:var(--ink-faint)}

.creds-row{
  display:flex;flex-wrap:wrap;gap:10px;
  margin-top:2.2rem;
}
.cred-item{
  display:flex;align-items:center;gap:8px;
  background:var(--forest-pale);
  border:1px solid #c5e0d0;
  border-radius:50px;
  padding:.4rem 1rem;
  font-size:.78rem;font-weight:500;
  color:var(--forest);
}

/* ══════════════════════════════════
   MARQUEE
════════════════════════════════════ */
.marquee-strip{
  background:var(--forest);
  padding:1rem 0;
  overflow:hidden;
}
.marquee-track{
  display:flex;gap:2.5rem;
  white-space:nowrap;
  animation:marquee 25s linear infinite;
}
@keyframes marquee{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
.marquee-track span{
  font-size:.88rem;font-weight:500;
  color:rgba(255,255,255,.85);
  flex-shrink:0;
}
.marquee-dot{
  color:rgba(255,255,255,.35)!important;
  font-size:.6rem!important;
}

/* ══════════════════════════════════
   PROJECTS
════════════════════════════════════ */
.projects-section{background:var(--cream)}
.projects-header{
  display:flex;justify-content:space-between;
  align-items:flex-end;margin-bottom:3.5rem;
  flex-wrap:wrap;gap:1.5rem;
}
.projects-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.pcard{
  background:var(--white);
  border-radius:24px;
  padding:2rem 1.8rem 2.2rem;
  border:1px solid var(--border);
  position:relative;overflow:hidden;
  transition:transform var(--transition),box-shadow var(--transition);
}
.pcard::after{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:5px;
  background:var(--accent,var(--forest));
  border-radius:24px 24px 0 0;
}
.pcard:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-lg);
}
.pcard-top{
  display:flex;justify-content:space-between;
  align-items:flex-start;margin-bottom:1.2rem;
}
.pcard-emoji{font-size:2.4rem}
.pcard-num{
  font-family:'Cormorant Garamond',serif;
  font-size:3.5rem;font-weight:700;
  color:rgba(0,0,0,.04);line-height:1;
}
.pcard-tag{
  font-size:.68rem;font-weight:600;
  letter-spacing:1.5px;text-transform:uppercase;
  color:var(--accent,var(--forest));
  margin-bottom:.5rem;
}
.pcard-name{
  font-family:'Cormorant Garamond',serif;
  font-size:1.5rem;font-weight:700;
  color:var(--ink);margin-bottom:.8rem;
}
.pcard-desc{
  font-size:.86rem;color:var(--ink-muted);
  line-height:1.75;margin-bottom:1.4rem;
}
.pcard-impact{
  background:var(--forest-pale);
  border-radius:12px;
  padding:.8rem 1rem;
  display:flex;flex-direction:column;gap:2px;
  border:1px solid #d0ead9;
}
.pi-label{
  font-size:.65rem;letter-spacing:1.5px;
  text-transform:uppercase;color:var(--ink-faint);font-weight:600;
}
.pi-stat{
  font-size:.84rem;color:var(--forest);font-weight:600;
}

/* ══════════════════════════════════
   IMPACT
════════════════════════════════════ */
.impact-section{
  background:var(--forest-dark);
  padding:100px 7%;
  display:grid;
  grid-template-columns:1fr 1.6fr;
  gap:8%;align-items:center;
  position:relative;overflow:hidden;
}
.impact-bg-circle{
  position:absolute;
  width:500px;height:500px;
  border-radius:50%;
  background:rgba(255,255,255,.025);
  top:-200px;right:5%;
  pointer-events:none;
}
.impact-title{color:var(--white)}
.impact-sub{color:rgba(255,255,255,.6);max-width:380px}

.impact-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:14px;
}
.icard{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:18px;
  padding:1.6rem 1.4rem;
  transition:all var(--transition);
}
.icard:hover{
  background:rgba(255,255,255,.1);
  transform:translateY(-4px);
}
.icard-icon{font-size:1.6rem;margin-bottom:.8rem}
.icard-num{
  font-family:'Cormorant Garamond',serif;
  font-size:2.4rem;font-weight:700;
  color:var(--white);line-height:1;
}
.icard-label{
  font-size:.83rem;font-weight:600;
  color:rgba(255,255,255,.8);
  margin-top:.3rem;
}
.icard-sub{
  font-size:.72rem;color:rgba(255,255,255,.45);
  margin-top:3px;line-height:1.5;
}
.icard-cta{
  display:flex;flex-direction:column;
  justify-content:space-between;
  background:linear-gradient(135deg,rgba(157,224,182,.15),rgba(255,244,224,.08));
  border-color:rgba(157,224,182,.25);
}
.icard-cta p{
  font-size:.84rem;color:rgba(255,255,255,.7);
  line-height:1.7;font-style:italic;
  font-family:'Cormorant Garamond',serif;
  font-size:1rem;
}

/* ══════════════════════════════════
   STORY STRIP (Testimonials)
════════════════════════════════════ */
.story-strip{
  background:var(--amber-pale);
  padding:80px 7%;
  border-top:1px solid #f0deb8;
  border-bottom:1px solid #f0deb8;
}
.ss-inner{max-width:1100px;margin:0 auto}
.ss-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem,3.5vw,3rem);
  font-weight:700;color:var(--ink);
  margin-bottom:3rem;
  max-width:600px;
}
.ss-title em{color:var(--amber);font-style:italic}
.ss-stories{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.ss-card{
  background:var(--white);
  border-radius:22px;
  padding:2rem 1.8rem;
  border:1px solid rgba(212,130,10,.12);
  position:relative;
  transition:transform var(--transition),box-shadow var(--transition);
}
.ss-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-md);
}
.ss-quote-mark{
  font-family:'Cormorant Garamond',serif;
  font-size:5rem;line-height:.8;
  color:var(--amber-light);
  font-weight:700;margin-bottom:.5rem;
}
.ss-quote{
  font-size:.92rem;color:var(--ink-muted);
  line-height:1.8;font-style:italic;
  margin-bottom:1.6rem;
}
.ss-author{
  display:flex;align-items:center;gap:12px;
}
.ss-avatar{
  width:40px;height:40px;
  background:var(--amber-light);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;color:var(--amber);
  flex-shrink:0;border:2px solid #f5c97a;
}
.ss-author strong{display:block;font-size:.88rem;color:var(--ink)}
.ss-author span{font-size:.74rem;color:var(--ink-faint)}

/* ══════════════════════════════════
   EVENTS
════════════════════════════════════ */
.events-section{background:var(--white)}
.events-header{margin-bottom:.5rem}
.events-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:3rem;
}
.ecard{
  border:1.5px solid var(--border);
  border-radius:20px;overflow:hidden;
  transition:transform var(--transition),box-shadow var(--transition);
}
.ecard:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-md);
}
.ecard-thumb{
  height:180px;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;font-size:4rem;
  background:#ddd;
}
.ecard-thumb img{
  width:100%;height:100%;
  object-fit:cover;object-position:center;
  display:block;
}
.ecard-green{background:linear-gradient(135deg,#d4f5e8,#a8d8bd)}
.ecard-amber{background:linear-gradient(135deg,#fff1d4,#f5d9a0)}
.ecard-blue{background:linear-gradient(135deg,#d8e8ff,#b0c8f5)}
.ecard-thumb img{width:100%;height:100%;object-fit:cover}
.ecard-body{padding:1.5rem 1.6rem 1.8rem}
.ecard-meta{display:flex;align-items:center;gap:10px;margin-bottom:.8rem}
.ecard-cat{
  font-size:.68rem;font-weight:600;letter-spacing:1px;
  text-transform:uppercase;color:var(--forest);
  background:var(--forest-light);
  padding:.2rem .7rem;border-radius:50px;
}
.ecard-date{font-size:.76rem;color:var(--ink-faint)}
.ecard-title{
  font-family:'Cormorant Garamond',serif;
  font-size:1.15rem;font-weight:700;
  color:var(--ink);margin-bottom:.7rem;line-height:1.35;
}
.ecard-desc{font-size:.84rem;color:var(--ink-muted);line-height:1.65}
.ecard-footer{margin-top:1rem}
.ecard-loc{font-size:.76rem;color:var(--ink-faint)}

/* ══════════════════════════════════
   BLOG
════════════════════════════════════ */
.blog-section{background:var(--cream)}
.blog-header{
  display:flex;justify-content:space-between;
  align-items:flex-end;flex-wrap:wrap;gap:1rem;
  margin-bottom:0;
}
.blog-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  grid-template-rows:auto auto;
  gap:20px;
  margin-top:3rem;
}
.bcard{
  border-radius:18px;overflow:hidden;
  border:1px solid var(--border);
  text-decoration:none;
  display:flex;flex-direction:column;
  transition:transform var(--transition),box-shadow var(--transition);
  background:var(--white);
}
.bcard:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-md);
}
.bcard.featured{grid-row:span 2}
.bcard-thumb{
  height:130px;
  display:flex;align-items:center;justify-content:center;
  font-size:3rem;flex-shrink:0;
  overflow:hidden;
  background:#f0f0f0;
}
.bcard-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.bcard.featured .bcard-thumb{height:200px;font-size:4rem}
.bcard.featured .bcard-thumb img{width:100%;height:100%;object-fit:cover}
.bcard-t1{background:#e8f5ee}
.bcard-t2{background:#fff4e0}
.bcard-t3{background:#ffe8f2}
.bcard-t4{background:#e8f0ff}
.bcard-t5{background:#f0e8ff}
.bcard-body{padding:1.3rem 1.4rem 1.6rem;flex:1;display:flex;flex-direction:column}
.bcard-date{font-size:.7rem;color:var(--ink-faint);margin-bottom:.4rem}
.bcard-title{
  font-family:'Cormorant Garamond',serif;
  font-size:1.05rem;font-weight:700;
  color:var(--ink);line-height:1.4;
  margin-bottom:.5rem;flex:1;
}
.bcard.featured .bcard-title{font-size:1.2rem}
.bcard-sum{
  font-size:.82rem;color:var(--ink-muted);
  line-height:1.65;margin-bottom:.8rem;
}
.bcard-views{
  font-size:.73rem;color:var(--ink-faint);
  display:flex;align-items:center;gap:5px;
  margin-top:auto;
}

/* ══════════════════════════════════
   CTA
════════════════════════════════════ */
.cta-section{
  background:linear-gradient(160deg,#0a2e18 0%,var(--forest-dark) 40%,#1a6b3a 100%);
  padding:100px 7%;
  position:relative;overflow:hidden;
}
.cta-bg-shape{
  position:absolute;
  width:700px;height:700px;
  border-radius:50%;
  background:rgba(255,255,255,.02);
  top:-300px;right:-200px;
}
.cta-inner{position:relative;z-index:1}
.cta-text{margin-bottom:4rem}
.cta-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.6rem,4.5vw,4rem);
  font-weight:700;color:var(--white);
  line-height:1.15;margin-bottom:1.4rem;
}
.cta-title em{color:#9de0b6;font-style:italic}
.cta-sub{
  font-size:1rem;color:rgba(255,255,255,.65);
  max-width:540px;line-height:1.8;font-weight:300;
}
.cta-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-bottom:4rem;
}
.cta-card{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  padding:2rem 1.8rem;
  transition:all var(--transition);
}
.cta-card:hover{
  background:rgba(255,255,255,.12);
  transform:translateY(-4px);
}
.cta-card-featured{
  background:rgba(157,224,182,.12);
  border-color:rgba(157,224,182,.3);
}
.cta-card-icon{font-size:2rem;display:block;margin-bottom:1rem}
.cta-card h4{
  font-size:1.05rem;font-weight:600;
  color:var(--white);margin-bottom:.6rem;
}
.cta-card p{
  font-size:.85rem;color:rgba(255,255,255,.6);
  line-height:1.7;margin-bottom:1.4rem;
}
.cta-card-btn{
  display:inline-flex;align-items:center;gap:6px;
  color:#9de0b6;font-weight:600;
  font-size:.84rem;text-decoration:none;
  transition:gap var(--transition),color var(--transition);
}
.cta-card-btn:hover{gap:10px;color:var(--white)}

.cta-contact{
  display:flex;flex-wrap:wrap;gap:2.5rem;
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:3rem;
}
.cc-item{
  display:flex;align-items:flex-start;gap:14px;
}
.cc-icon{font-size:1.4rem}
.cc-item strong{
  display:block;font-size:.82rem;
  color:rgba(255,255,255,.45);
  letter-spacing:.5px;margin-bottom:2px;
}
.cc-item a,.cc-item span{
  font-size:.9rem;color:rgba(255,255,255,.75);
  text-decoration:none;
}
.cc-item a:hover{color:var(--white)}

/* ══════════════════════════════════
   FOOTER
════════════════════════════════════ */
footer{
  background:#071a0d;
  padding:60px 7% 30px;
}
.footer-wrap{
  display:grid;
  grid-template-columns:1.8fr 1fr 1fr;
  gap:5%;
  margin-bottom:3rem;
  padding-bottom:3rem;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-logo{
  font-family:'Cormorant Garamond',serif;
  font-size:1.6rem;font-weight:700;
  color:var(--white);display:block;margin-bottom:.8rem;
}
.footer-logo em{color:#9de0b6;font-style:italic}
.footer-tagline{
  font-size:.83rem;color:rgba(255,255,255,.4);
  line-height:1.75;margin-bottom:1.5rem;
}
.footer-socials{display:flex;gap:10px}
.fsoc{
  width:36px;height:36px;
  background:rgba(255,255,255,.07);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;font-size:.85rem;
  color:rgba(255,255,255,.5);
  transition:all var(--transition);
}
.fsoc:hover{background:var(--forest-mid);color:var(--white)}
.footer-col h4{
  font-size:.7rem;font-weight:600;
  letter-spacing:2px;text-transform:uppercase;
  color:rgba(255,255,255,.3);margin-bottom:1rem;
}
.footer-col ul{list-style:none}
.footer-col ul li{margin-bottom:.6rem}
.footer-col ul a{
  color:rgba(255,255,255,.55);text-decoration:none;
  font-size:.84rem;transition:color var(--transition);
}
.footer-col ul a:hover{color:#9de0b6}
.footer-bottom{
  display:flex;justify-content:space-between;
  align-items:center;flex-wrap:wrap;gap:1rem;
}
.footer-bottom p{font-size:.76rem;color:rgba(255,255,255,.25)}
.footer-bottom a{color:rgba(255,255,255,.25);text-decoration:none}
.footer-credit{text-align:right}

/* ══════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media(max-width:1100px){
  .hero-wrap{grid-template-columns:1fr 1fr;gap:3%}
  .projects-grid{grid-template-columns:1fr 1fr}
  .impact-section{grid-template-columns:1fr}
  .impact-grid{grid-template-columns:repeat(3,1fr)}
  .blog-grid{grid-template-columns:1fr 1fr}
  .bcard.featured{grid-row:auto}
}
@media(max-width:900px){
  .hero-wrap{grid-template-columns:1fr}
  .hero-right{display:none}
  .about-grid{grid-template-columns:1fr}
  .ss-stories{grid-template-columns:1fr}
  .events-grid{grid-template-columns:1fr 1fr}
  .cta-cards{grid-template-columns:1fr}
  .footer-wrap{grid-template-columns:1fr 1fr}
  .footer-brand{grid-column:span 2}
  nav .nav-links{display:none}
  .hamburger{display:flex}
}
@media(max-width:640px){
  section{padding:70px 5%}
  .projects-grid{grid-template-columns:1fr}
  .events-grid{grid-template-columns:1fr}
  .blog-grid{grid-template-columns:1fr}
  .footer-wrap{grid-template-columns:1fr}
  .footer-brand{grid-column:auto}
  .impact-grid{grid-template-columns:1fr 1fr}
  .cta-contact{flex-direction:column;gap:1.5rem}
}

/* ══════════════════════════════════
   PROJECT CARD IMAGES
════════════════════════════════════ */
.pcard-img{
  width:calc(100% + 3.6rem);
  margin:-2rem -1.8rem 1.4rem;
  height:180px;
  overflow:hidden;
  border-radius:24px 24px 0 0;
  position:relative;
  background:#e0e0e0;
}
.pcard-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
  transition:transform .5s ease;
}
.pcard:hover .pcard-img img{transform:scale(1.06)}

/* ══════════════════════════════════
   GALLERY SECTION
════════════════════════════════════ */
.gallery-section{
  background:var(--cream);
  padding:100px 7%;
}
.gallery-header{margin-bottom:3rem}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:200px;
  gap:12px;
}
.gitem{
  border-radius:14px;
  overflow:hidden;
  position:relative;
  background:#ddd;
}
.gitem.g-tall{grid-row:span 2}
.gitem.g-wide{grid-column:span 2}

.gitem img{
  width:100%;height:100%;
  object-fit:cover;display:block;
  transition:transform .5s ease;
}
.gitem:hover img{transform:scale(1.07)}

.gitem-overlay{
  position:absolute;
  bottom:0;left:0;right:0;
  background:linear-gradient(transparent,rgba(10,46,23,.75));
  color:rgba(255,255,255,.9);
  padding:.6rem .9rem;
  font-size:.75rem;font-weight:500;
  letter-spacing:.5px;
  opacity:0;
  transition:opacity .3s ease;
}
.gitem:hover .gitem-overlay{opacity:1}

.gallery-cta{
  text-align:center;
  margin-top:2.5rem;
}

@media(max-width:900px){
  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
    grid-auto-rows:160px;
  }
  .gitem.g-tall{grid-row:auto}
  .gitem.g-wide{grid-column:auto}
}
@media(max-width:600px){
  .gallery-grid{
    grid-template-columns:1fr 1fr;
    grid-auto-rows:130px;
  }
}