:root{
  --saffron:#F2811D;
  --saffron-deep:#E06E0A;
  --green:#2F9E44;
  --green-deep:#268A3A;
  --cream:#FDF3E7;
  --navy:#111827;
  --navy-2:#0C1220;
  --ink:#1F2430;
  --ink-soft:#6B7280;
  --line:#E9E4DA;
  --radius:12px;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0; background:#fff; color:var(--ink);
  font-family:'Inter', sans-serif;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{ font-family:'Poppins', sans-serif; margin:0; color:var(--ink); }
a{ text-decoration:none; color:inherit; }
img{ max-width:100%; display:block; }
.container{ max-width:1240px; margin:0 auto; padding:0 32px; }
.eyebrow{
  font-weight:700; font-size:0.78rem; letter-spacing:0.06em; text-transform:uppercase;
  color:var(--saffron-deep); margin-bottom:8px; display:block;
}
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 24px; border-radius:8px; font-weight:600; font-size:0.94rem;
  border:1.5px solid transparent; cursor:pointer; white-space:nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background-color .2s ease;
}
.btn-primary{ background:var(--saffron); color:#fff; }
.btn-primary:hover{ background:var(--saffron-deep); transform:translateY(-2px); box-shadow:0 10px 22px rgba(242,129,29,0.32); }
.btn-outline{ border-color:var(--saffron); color:var(--saffron-deep); background:#fff; }
.btn-outline:hover{ background:var(--cream); transform:translateY(-2px); }
.btn svg{ width:15px; height:15px; }

/* ---------- Logo ---------- */
.brand{ display:flex; align-items:center; gap:10px; }
.brand-name{ font-family:'Poppins',sans-serif; font-weight:800; font-size:1.05rem; line-height:1.15; color:var(--ink); }

/* ---------- Header ---------- */
header{ position:sticky; top:0; z-index:50; background:#fff; border-bottom:1px solid var(--line); transition: box-shadow .3s ease; }
header.scrolled{ box-shadow: 0 6px 20px rgba(17,24,39,0.07); }
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 32px; max-width:1240px; margin:0 auto; gap:20px;
}
nav ul{ list-style:none; display:flex; gap:28px; margin:0; padding:0; }
nav a{ font-weight:600; font-size:0.95rem; color:var(--ink); position:relative; padding-bottom:6px; transition: color .2s ease; }
nav a.active{ color:var(--saffron); }
nav a::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:2px; background:var(--saffron);
  transform:scaleX(0); transform-origin:left; transition: transform .25s ease;
}
nav a.active::after, nav a:hover::after{ transform:scaleX(1); }
.nav-right{ display:flex; align-items:center; gap:18px; }
.social-mini{ display:flex; align-items:center; gap:10px; }
.social-mini a{
  width:32px; height:32px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff;
}
.social-mini svg{ width:15px; height:15px; }
.ig-icon{ border-radius:22% !important; }
.social-mini a, .footer-social-row a{ transition: transform .25s ease, box-shadow .25s ease; }
.social-mini a:hover, .footer-social-row a:hover{ transform: translateY(-3px) scale(1.08); box-shadow:0 8px 16px rgba(17,24,39,0.18); }
.menu-toggle{ display:none; background:none; border:1px solid var(--line); border-radius:6px; padding:8px 10px; cursor:pointer; transition: background-color .2s ease; }
.mobile-menu{
  display:flex; flex-direction:column; background:#fff; border-top:1px solid var(--line);
  max-height:0; overflow:hidden; padding:0 32px;
  transition: max-height .35s ease, padding .35s ease;
}
.mobile-menu.open{ max-height:400px; padding:8px 32px 16px; }
.mobile-menu a{ padding:12px 0; font-weight:600; border-bottom:1px solid var(--line); }
@media (max-width:960px){
  nav ul, .social-mini{ display:none; }
  .menu-toggle{ display:block; }
}
@media (max-width:640px){ .nav-cta span{ display:none; } }
.nav-cta{ background: #138808!important; }

/* ---------- Hero ---------- */
.hero{ position:relative; overflow:hidden; padding: 56px 0 0; background:#fff; }
.hero-inner{
  display:grid; grid-template-columns: 1fr 0.95fr; align-items:center; gap:30px;
  position:relative; min-height: 540px;
}
.hero-copy h1{
  font-size: clamp(2.2rem, 4.2vw, 3.2rem); font-weight:800; line-height:1.12; margin: 8px 0 18px;
}
.hero-copy h1 .accent{ color:var(--saffron); }
.hero-copy p.lede{ font-size:1.02rem; color:var(--ink-soft); max-width:440px; line-height:1.65; margin-bottom:26px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom: 30px; }
.trait-row{ display:flex; gap:22px; flex-wrap:wrap; align-items:center; }
.trait{ display:flex; align-items:center; gap:8px; font-size:0.86rem; font-weight:600; color:var(--ink-soft); }
.trait svg{ width:17px; height:17px; color:var(--saffron); }
.trait .dot{ color:var(--line); }

.hero-visual{
  position:relative; border-radius: 16px; overflow:hidden; aspect-ratio: 4/4.6;
  background:
    url('images/hero-bg.jpg') center/cover no-repeat;
}
.hero-visual::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:8px;
  background: linear-gradient(90deg, var(--saffron), #ffffff, var(--green));
}
.hero-visual img{
  position:absolute; z-index:2;
  top:6%; left:50%;
  transform: translateX(-50%);
  width:90%; height:94%;
  object-fit:cover; object-position:top center;
  border-radius: 12px 12px 0 0;
}
.hero-visual .ph-label{
  position:relative; z-index:2; height:100%; display:flex; align-items:center; justify-content:center;
  color:rgba(31,36,48,0.4); font-weight:600; text-align:center; padding:0 30px; font-size:0.9rem;
}
@media (max-width:900px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero-visual{ max-width:360px; margin:0 auto; }
}

@keyframes heroFadeUp{ from{ opacity:0; transform:translateY(22px); } to{ opacity:1; transform:translateY(0); } }
.hero-copy > *{ opacity:0; animation: heroFadeUp .7s ease forwards; }
.hero-copy .eyebrow{ animation-delay:.05s; }
.hero-copy h1{ animation-delay:.15s; }
.hero-copy p.lede{ animation-delay:.25s; }
.hero-copy .hero-actions{ animation-delay:.35s; }
.hero-copy .trait-row{ animation-delay:.45s; }
.hero-visual{ opacity:0; animation: heroFadeUp .8s ease forwards; animation-delay:.2s; }

/* ---------- Feature cards (About / Impact / Gallery) ---------- */
.feature-strip{ padding: 64px 0 0; background:#fff; }
.feature-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.feature-card{
  border:1px solid var(--line); border-radius:var(--radius); padding:28px; position:relative; overflow:hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.feature-card:hover{ transform:translateY(-6px); box-shadow:0 16px 32px rgba(17,24,39,0.08); border-color:transparent; }
.feature-icon{
  width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff;
  margin-bottom:18px; font-size:1.3rem; transition: transform .3s ease;
}
.feature-card:hover .feature-icon{ transform: scale(1.1) rotate(-6deg); }
.feature-card h3{ font-size:1.15rem; font-weight:700; margin-bottom:4px; }
.feature-card .rule{ width:26px; height:3px; border-radius:2px; margin: 8px 0 14px; }
.feature-card p{ color:var(--ink-soft); font-size:0.9rem; line-height:1.6; max-width: 220px; margin-bottom:18px; }
.feature-card .link{ font-weight:700; font-size:0.88rem; display:inline-flex; align-items:center; gap:6px; }
.feature-card .link svg{ transition: transform .25s ease; }
.feature-card .link:hover svg{ transform: translateX(4px); }
@media (max-width:900px){ .feature-grid{ grid-template-columns:1fr; } .feature-card p{ max-width:none; } }

/* ---------- About (detailed) ---------- */
.about-detail{ padding: 70px 0 20px; background:#fff; }
.about-detail .section-head{ max-width:640px; margin-bottom:30px; }
.about-detail .section-head h2{ font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight:700; margin-top:6px; }
.about-detail-copy{ max-width: 820px; }
.about-detail-copy p{
  font-size:1rem; line-height:1.8; color:var(--ink-soft); margin: 0 0 20px;
}
.about-detail-copy p:first-child{ color:var(--ink); font-weight:500; }

/* ---------- Stats bar ---------- */
.stats-strip{ padding: 40px 0; }
.stats-bar{
  border:1px solid var(--line); border-radius:var(--radius); padding: 26px 30px;
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
}
.stat-item{ display:flex; align-items:center; gap:14px; }
.stat-icon{
  width:46px; height:46px; border-radius:50%; background:var(--cream); color:var(--saffron-deep);
  display:flex; align-items:center; justify-content:center; font-size:1.2rem; flex-shrink:0;
  transition: transform .3s ease;
}
.stat-item:hover .stat-icon{ transform: scale(1.12) rotate(-4deg); }
.stat-item .num{ font-family:'Poppins',sans-serif; font-weight:800; font-size:1.35rem; }
.stat-item .lbl{ font-size:0.78rem; color:var(--ink-soft); }
@media (max-width:800px){ .stats-bar{ grid-template-columns:1fr 1fr; } }
@media (max-width:480px){ .stats-bar{ grid-template-columns:1fr; } }

/* ---------- Gallery ---------- */
.gallery-strip-section{ padding: 40px 0 70px; }
.gallery-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; }
.view-all{ font-size:0.88rem; font-weight:700; color:var(--saffron-deep); }
.gallery-row{ display:grid; grid-template-columns:repeat(6,1fr); gap:14px; }
.gallery-thumb{
  aspect-ratio:1/1.1; border-radius:10px; overflow:hidden;
  background:linear-gradient(150deg,#E9D2A8,#D2A96A);
}
.gallery-thumb img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.gallery-thumb:hover img{ transform: scale(1.08); }
.gallery-dots{ display:flex; justify-content:center; gap:8px; margin-top:20px; }
.gallery-dots span{ width:7px; height:7px; border-radius:50%; background:var(--line); }
.gallery-dots span.active{ background:var(--saffron); }
@media (max-width:900px){ .gallery-row{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:520px){ .gallery-row{ grid-template-columns:repeat(2,1fr); } }

/* ---------- Connect + Contact ---------- */
.connect-contact{ padding-bottom: 70px; }
.cc-grid{ display:grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.cc-grid h2{ font-size:1.3rem; font-weight:700; margin-bottom:16px; }
.connect-boxes{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
@media (max-width:560px){ .connect-boxes{ grid-template-columns:1fr; } }
.connect-box{
  border:1px solid var(--line); border-radius:10px; padding:16px 18px;
  display:flex; align-items:center; gap:12px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.connect-box:hover{ transform:translateY(-3px); box-shadow:0 12px 26px rgba(17,24,39,0.08); border-color:transparent; }
.connect-box .ic{ width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; flex-shrink:0; }
.connect-box .ic svg{ width:17px; height:17px; }
.connect-box .txt{ flex:1; }
.connect-box .txt .name{ font-weight:700; font-size:0.9rem; }
.connect-box .txt .sub{ font-size:0.76rem; color:var(--ink-soft); }
.connect-box .arrow{ color:var(--saffron-deep); font-weight:700; display:inline-block; transition: transform .25s ease; }
.connect-box:hover .arrow{ transform: translateX(5px); }

.contact-panel{ border-left:2px solid var(--saffron); padding-left: 28px; }
.contact-panel .rule{ width:26px; height:3px; background:var(--saffron); border-radius:2px; margin: 6px 0 20px; }
.contact-line{ display:flex; gap:12px; align-items:flex-start; margin-bottom:18px; font-size:0.92rem; color:var(--ink); }
.contact-line svg{ width:18px; height:18px; color:var(--saffron-deep); flex-shrink:0; margin-top:2px; }
@media (max-width:800px){ .cc-grid{ grid-template-columns:1fr; } .contact-panel{ border-left:none; padding-left:0; border-top:2px solid var(--saffron); padding-top:20px; } }

/* ---------- Footer ---------- */
footer.site-footer{ background:var(--navy); color:rgba(255,255,255,0.72); padding: 50px 0 0; }
.footer-grid{
  display:grid; grid-template-columns: 1.3fr 0.9fr 1.2fr 0.9fr; gap:36px; padding-bottom:36px;
}
.footer-brand p{ font-size:0.86rem; line-height:1.6; margin-top:14px; color:rgba(255,255,255,0.5); max-width:260px; }
.footer-brand .brand-name{ color:#fff; }
.footer-col h4{ color:#fff; font-size:0.92rem; font-weight:700; margin-bottom:16px; }
.footer-col ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:0.86rem; color:rgba(255,255,255,0.6); display:flex; align-items:center; justify-content:space-between; }
.footer-col a:hover{ color:var(--saffron); }
.footer-contact-item{ display:flex; gap:10px; align-items:flex-start; font-size:0.86rem; margin-bottom:12px; color:rgba(255,255,255,0.72); }
.footer-contact-item svg{ width:15px; height:15px; margin-top:2px; flex-shrink:0; color:var(--saffron); }
.footer-social-row{ display:flex; gap:10px; }
.footer-social-row a{
  width:32px; height:32px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff;
}
.footer-social-row svg{ width:14px; height:14px; }
.footer-bottom{ padding: 16px 0; font-size:0.8rem; background: var(--saffron); color:#fff; }
.footer-bottom .container{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }

/* ---------- Small-phone tightening ---------- */
@media (max-width:480px){
  .container{ padding:0 18px; }
  .nav-inner{ padding:12px 18px; }
  .brand img{ height:44px !important; }
  .brand-name{ font-size:0.92rem; }
  .hero{ padding-top:36px; }
  .hero-copy h1{ margin:6px 0 14px; }
  .hero-actions{ gap:10px; }
  .btn{ padding:12px 18px; font-size:0.88rem; }
  .footer-brand img{ height:44px !important; }
}

/* ---------- Scroll-reveal animations ---------- */
.reveal{
  opacity:0; transform:translateY(26px);
  transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1);
}
.reveal.in-view{ opacity:1; transform:translateY(0); }
.reveal-d1{ transition-delay:.08s; }
.reveal-d2{ transition-delay:.16s; }
.reveal-d3{ transition-delay:.24s; }
.reveal-d4{ transition-delay:.32s; }
.reveal-d5{ transition-delay:.4s; }
.reveal-d6{ transition-delay:.48s; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal, .hero-copy > *, .hero-visual{ opacity:1 !important; transform:none !important; animation:none !important; transition:none !important; }
}