:root{
  --navy:#1a1f3c;
  --navy-2:#20264a;
  --maroon:#8a2a2a;
  --maroon-dark:#6f2020;
  --amber:#d98a34;
  --cream:#f3efe8;
  --text-dark:#1c1c26;
  --text-body:#5b5f6b;
  --white:#ffffff;
  --border:#e7e2d8;
}
*{box-sizing:border-box; margin:0; padding:0;}
body{
  font-family:'Segoe UI', Arial, Helvetica, sans-serif;
  color:var(--text-dark);
  background:var(--white);
  line-height:1.6;
}
a{text-decoration:none; color:inherit;}
ul{list-style:none;}
img{max-width:100%; display:block;}
.container{max-width:1200px; margin:0 auto; padding:0 32px;}

.btn{
  display:inline-block;
  padding:14px 28px;
  font-weight:700;
  font-size:0.95rem;
  border-radius:4px;
  cursor:pointer;
  border:2px solid transparent;
  transition:all .2s ease;
}
.btn-maroon{background:var(--maroon); color:var(--white);}
.btn-maroon:hover{background:var(--maroon-dark);}
.btn-outline-dark{background:transparent; border-color:var(--navy); color:var(--navy);}
.btn-outline-dark:hover{background:var(--navy); color:var(--white);}
.btn-outline-white{background:transparent; border-color:var(--white); color:var(--white);}
.btn-outline-white:hover{background:var(--white); color:var(--navy);}

/* Header */
header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 32px;
  max-width:1200px;
  margin:0 auto;
  position:relative;
}
.logo{display:flex; align-items:center;}
.logo img{height:44px; width:auto;}
nav{position:relative;}
nav > ul{display:flex; gap:34px; font-weight:600; font-size:0.95rem;}
nav > ul > li{position:relative;}
nav a{color:var(--text-dark); transition:color .2s;}
nav a:hover{color:var(--maroon);}
nav a.active{color:var(--maroon);}
nav .has-sub > .sub-menu{
  display:none;
  position:absolute;
  top:28px; left:-16px;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:6px;
  padding:10px 0;
  min-width:230px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  z-index:20;
}
nav .has-sub:hover > .sub-menu{display:block;}
nav .sub-menu li a{
  display:block;
  padding:9px 20px;
  font-weight:500;
  font-size:0.88rem;
  white-space:nowrap;
}
nav .sub-menu li a:hover{background:var(--cream); color:var(--maroon);}
.header-actions{display:flex; align-items:center; gap:14px;}
.search-icon{width:20px; height:20px; cursor:pointer;}
.header-actions .btn{padding:11px 20px; font-size:0.88rem;}

.menu-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:38px;
  height:38px;
  border:1px solid var(--border);
  border-radius:6px;
  background:var(--white);
  cursor:pointer;
  padding:0;
}
.menu-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:var(--navy);
  margin:0 auto;
  transition:transform .2s ease, opacity .2s ease;
}
.menu-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.menu-toggle.open span:nth-child(2){opacity:0;}
.menu-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* Hero slider (home) */
.hero-slider{
  position:relative;
  min-height:520px;
  overflow:hidden;
  color:var(--white);
}
.hero-slide{
  position:absolute;
  inset:0;
  background-color:var(--navy);
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1s ease;
  display:flex;
  align-items:center;
}
.hero-slide.active{opacity:1; position:relative;}
.hero-slide::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(10,12,25,0.62) 0%, rgba(10,12,25,0.45) 45%, rgba(10,12,25,0.2) 100%),
    linear-gradient(0deg, rgba(10,12,25,0.3) 0%, rgba(10,12,25,0) 40%);
}
.hero-inner{position:relative; z-index:2; max-width:640px; padding:80px 32px; margin-left:64px;}
.eyebrow{color:var(--amber); font-weight:800; font-size:0.8rem; letter-spacing:1.5px; margin-bottom:14px; text-shadow:0 1px 8px rgba(0,0,0,0.4);}
.hero-slide h1{font-size:2.9rem; font-weight:800; line-height:1.15; margin-bottom:20px; text-shadow:0 2px 12px rgba(0,0,0,0.45);}
.hero-slide p{font-size:1.05rem; color:#f2f0ea; margin-bottom:30px; max-width:520px; text-shadow:0 1px 8px rgba(0,0,0,0.4);}
.hero-dots{
  position:absolute; bottom:24px; left:50%; transform:translateX(-50%);
  display:flex; gap:10px; z-index:3;
}
.hero-dots button{
  width:10px; height:10px; border-radius:50%; border:2px solid rgba(255,255,255,0.6);
  background:transparent; cursor:pointer; padding:0;
}
.hero-dots button.active{background:var(--amber); border-color:var(--amber);}

/* Generic page hero (inner pages) */
.page-hero{
  background:var(--navy);
  color:var(--white);
  padding:80px 32px 64px;
  text-align:center;
  position:relative;
  min-height:340px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.page-hero h1{font-size:2.4rem; font-weight:800; margin-bottom:14px; text-shadow:0 2px 14px rgba(0,0,0,0.6);}
.page-hero p{color:#e5e6ee; max-width:600px; margin:0 auto; text-shadow:0 1px 10px rgba(0,0,0,0.55);}
.breadcrumb{color:var(--amber); font-weight:700; font-size:0.82rem; letter-spacing:1px; margin-bottom:14px; text-shadow:0 1px 8px rgba(0,0,0,0.4);}

/* Generic content sections */
.section{padding:90px 0;}
.section-cream{background:var(--cream);}
.section h2{font-size:2.1rem; font-weight:800; margin:10px 0 22px;}
.section p{color:var(--text-body); margin-bottom:18px; max-width:760px;}
.section ul.bullets{margin:0 0 24px 0;}
.section ul.bullets li{
  color:var(--text-body);
  margin-bottom:12px;
  padding-left:22px;
  position:relative;
}
.section ul.bullets li::before{
  content:"";
  position:absolute; left:0; top:9px;
  width:8px; height:8px;
  background:var(--maroon);
  border-radius:50%;
}

/* Prose wrapper — keeps headings, paragraphs, and lists at one consistent
   reading width so long-form pages never look misaligned section to section */
.prose{max-width:800px;}
.prose h2{font-size:1.5rem; margin:44px 0 16px;}
.prose h2:first-child{margin-top:0;}
.prose p{max-width:none;}
.prose ul.bullets{max-width:none;}

/* Why / stats grid (home) */
.why-section{padding:90px 0;}
.why-grid{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start;}
.why-badge{
  width:56px; height:56px; background:var(--navy); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-weight:900; font-size:0.85rem; margin-bottom:28px; border-radius:2px;
}
.why-left h2{font-size:2.1rem; font-weight:800; margin:10px 0 20px;}
.why-left p{color:var(--text-body); margin-bottom:28px; font-size:1rem; max-width:480px;}
.stat-card{
  background:var(--cream); border-left:4px solid var(--maroon);
  padding:22px 26px; margin-bottom:16px; border-radius:3px;
}
.stat-card .num{font-size:1.8rem; font-weight:800; color:var(--maroon); line-height:1; margin-bottom:6px;}
.stat-card .label{color:var(--text-body); font-size:0.92rem;}

/* Funds / cards grid */
.funds-section{background:var(--cream); padding:90px 0;}
.funds-grid{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;}
.funds-image img{border-radius:6px; width:100%; height:520px; object-fit:cover;}
.obj-top{object-position:top center !important;}
.funds-image.product img{object-fit:contain; background:var(--white); padding:8px; cursor:pointer; transition:transform .25s ease; display:block;}
.funds-image.product a{display:block;}
.funds-image.product:hover img{transform:scale(1.02);}
.funds-right h2{font-size:2.1rem; font-weight:800; margin:10px 0 26px;}
.fund-card{
  background:var(--white); display:flex; gap:18px; padding:22px 24px;
  border-radius:6px; margin-bottom:16px; box-shadow:0 1px 3px rgba(0,0,0,0.04);
}
.fund-icon{
  width:44px; height:44px; min-width:44px; background:var(--maroon); border-radius:6px;
  display:flex; align-items:center; justify-content:center; color:var(--white); font-size:1.2rem;
}
.fund-card h3{font-size:1.05rem; margin-bottom:6px;}
.fund-card p{color:var(--text-body); font-size:0.92rem; margin-bottom:0;}

/* Cards row (teaser cards e.g. home "About/Product/Events/Roundtable") */
.card-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.card-row-3{grid-template-columns:repeat(3,1fr);}
.teaser-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:8px;
  overflow:hidden;
  transition:box-shadow .2s ease, transform .2s ease;
}
.teaser-card:hover{box-shadow:0 12px 30px rgba(0,0,0,0.08); transform:translateY(-3px);}
.teaser-card img{height:170px; object-fit:cover; width:100%;}
.teaser-card .body{padding:22px 22px 26px;}
.teaser-card h3{font-size:1.1rem; margin-bottom:10px;}
.teaser-card p{color:var(--text-body); font-size:0.9rem; margin-bottom:14px;}
.teaser-card .read-more{color:var(--maroon); font-weight:700; font-size:0.86rem;}

/* How to donate cards */
.how-section{padding:100px 0 90px; text-align:center;}
.how-section h2{font-size:2.1rem; font-weight:800; margin:10px 0 16px;}
.how-section > .container > p{color:var(--text-body); max-width:560px; margin:0 auto 50px;}
.how-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px; text-align:left;}
.how-card{background:var(--cream); padding:32px 28px; border-radius:6px;}
.how-icon{
  width:48px; height:48px; background:var(--navy); border-radius:8px;
  display:flex; align-items:center; justify-content:center; color:var(--amber);
  font-size:1.2rem; margin-bottom:22px;
}
.how-card h3{font-size:1.15rem; margin-bottom:12px;}
.how-card p{color:var(--text-body); font-size:0.92rem; margin-bottom:18px;}
.how-card .get-details{color:var(--maroon); font-weight:700; font-size:0.9rem;}

/* Values grid (mission page) */
.values-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px; margin-top:10px;}
.value-card{background:var(--white); border:1px solid var(--border); border-radius:8px; padding:30px 26px;}
.value-icon{
  width:48px; height:48px; background:var(--maroon); border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  color:var(--white); font-size:1.3rem; margin-bottom:18px;
}
.value-card .num{color:var(--amber); font-weight:800; font-size:0.8rem; letter-spacing:1px; margin-bottom:10px;}
.value-card h3{font-size:1.15rem; margin-bottom:10px;}
.value-card p{color:var(--text-body); font-size:0.92rem; margin-bottom:0;}

.vision-mission{display:grid; grid-template-columns:1fr 1fr; gap:40px; margin-bottom:60px;}
.vm-card{background:var(--cream); border-left:4px solid var(--maroon); padding:34px 30px; border-radius:4px;}
.vm-card h3{font-size:0.85rem; letter-spacing:1.5px; color:var(--maroon); font-weight:800; margin-bottom:14px;}
.vm-card p{color:var(--text-dark); font-size:1.05rem; margin-bottom:0; font-weight:500;}

/* Our Approach numbered steps */
.approach-list{margin-top:30px; max-width:760px;}
.approach-item{display:flex; gap:20px; margin-bottom:30px;}
.approach-num{
  width:38px; height:38px; min-width:38px; border-radius:50%;
  background:var(--maroon); color:var(--white); font-weight:800;
  display:flex; align-items:center; justify-content:center; font-size:0.95rem;
}
.approach-item h3{font-size:1.1rem; margin-bottom:8px;}
.approach-item p{color:var(--text-body); font-size:0.94rem; margin-bottom:0;}

/* How the gift product works — 3 step cards */
.steps-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:30px;}
.step-card{background:var(--white); border:1px solid var(--border); border-radius:8px; padding:28px 26px;}
.step-card .step-num{color:var(--amber); font-weight:800; font-size:1.3rem; margin-bottom:14px;}
.step-card h3{font-size:1.05rem; margin-bottom:10px;}
.step-card p{color:var(--text-body); font-size:0.92rem; margin-bottom:0;}

/* News placeholder card */
.news-placeholder{
  background:var(--cream); border-radius:10px; padding:60px 30px;
  text-align:center; color:var(--text-body); max-width:420px; margin:0 auto;
}
.news-placeholder .icon{font-size:2rem; margin-bottom:14px; opacity:0.5;}

/* Ways to partner list */
.partner-list{counter-reset:item; margin-top:20px;}
.partner-item{
  display:flex; gap:20px; align-items:flex-start;
  background:var(--cream); border-radius:8px; padding:24px 26px; margin-bottom:16px;
}
.partner-num{
  counter-increment:item;
  width:36px; height:36px; min-width:36px; border-radius:50%;
  background:var(--maroon); color:var(--white); font-weight:800;
  display:flex; align-items:center; justify-content:center; font-size:0.95rem;
}
.partner-item h3{font-size:1.05rem; margin-bottom:6px;}
.partner-item p{color:var(--text-body); font-size:0.92rem; margin-bottom:0;}

/* Contact page */
.contact-grid{display:grid; grid-template-columns:0.9fr 1.4fr; gap:56px;}
.contact-info-card{
  background:var(--navy); color:var(--white); border-radius:10px; padding:40px 32px;
}
.contact-info-card h3{font-size:1.3rem; margin-bottom:22px;}
.contact-info-item{display:flex; gap:14px; margin-bottom:22px; align-items:flex-start;}
.contact-info-item .icon{
  width:38px; height:38px; min-width:38px; background:rgba(255,255,255,0.1);
  border-radius:8px; display:flex; align-items:center; justify-content:center; color:var(--amber);
}
.contact-info-item .label{font-size:0.78rem; letter-spacing:0.5px; color:#a9acbe; margin-bottom:4px;}
.contact-info-item .value{font-size:0.95rem; color:var(--white);}
.contact-socials{display:flex; gap:12px; margin-top:26px;}
.contact-socials a{
  width:36px; height:36px; border:1px solid rgba(255,255,255,0.25); border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:0.85rem;
}
.form-card{background:var(--cream); border-radius:10px; padding:40px 36px;}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px;}
.form-field{display:flex; flex-direction:column;}
.form-field.full{grid-column:1 / -1;}
.form-field label{font-size:0.85rem; font-weight:700; margin-bottom:8px;}
.form-field input, .form-field textarea{
  border:1px solid var(--border); border-radius:6px; padding:12px 14px;
  font-family:inherit; font-size:0.92rem; background:var(--white);
}
.form-field textarea{min-height:130px; resize:vertical;}

/* CTA banner */
.cta-banner{background:var(--navy); color:var(--white); text-align:center; padding:90px 32px;}
.cta-banner .eyebrow{color:var(--amber); margin-bottom:14px;}
.cta-banner h2{font-size:2.2rem; font-weight:800; margin-bottom:18px;}
.cta-banner p{color:#c7c9d6; max-width:600px; margin:0 auto 34px;}
.cta-buttons{display:flex; gap:16px; justify-content:center; flex-wrap:wrap;}

/* Footer */
footer{background:var(--navy-2); color:#c7c9d6; padding:60px 32px 0;}
.footer-inner{
  max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1.6fr 1fr;
  gap:60px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-logo{
  width:64px; height:64px; background:var(--navy); border:1px solid rgba(255,255,255,0.15);
  display:flex; align-items:center; justify-content:center; color:var(--white);
  font-weight:900; font-size:0.85rem; margin-bottom:20px; border-radius:4px;
}
.footer-about p{max-width:420px; font-size:0.92rem; line-height:1.7;}
.footer-contacts h4{color:var(--white); font-size:0.85rem; letter-spacing:1px; margin-bottom:18px;}
.footer-contacts p{margin-bottom:10px; font-size:0.93rem;}
.socials{display:flex; gap:12px; margin-top:20px;}
.socials a{
  width:34px; height:34px; border:1px solid rgba(255,255,255,0.25); border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:0.85rem;
}
.footer-bottom{
  max-width:1200px; margin:0 auto; display:flex; justify-content:space-between;
  align-items:center; padding:22px 0; font-size:0.82rem; color:#9a9db0;
}
.footer-bottom .links{display:flex; gap:24px;}
.footer-bottom .links a{color:var(--amber);}

@media (max-width: 960px){
  header{flex-wrap:wrap; padding:16px 24px;}
  .container{padding:0 24px;}
  .menu-toggle{display:flex;}

  nav{
    display:block;
    order:3;
    width:100%;
    max-height:0;
    overflow:hidden;
    transition:max-height .25s ease;
  }
  nav.open{max-height:600px;}
  nav > ul{
    flex-direction:column;
    gap:0;
    padding:10px 0 18px;
    border-top:1px solid var(--border);
    margin-top:14px;
  }
  nav > ul > li{width:100%;}
  nav a{display:block; padding:12px 4px;}
  nav .has-sub > .sub-menu{
    display:none;
    position:static;
    box-shadow:none;
    border:none;
    padding:0 0 8px 16px;
    min-width:0;
  }
  nav .has-sub.open-sub > .sub-menu{display:block;}
  nav .sub-menu li a{padding:8px 4px; font-size:0.9rem;}

  .header-actions{order:2; margin-left:auto;}
  .header-actions .btn{padding:9px 14px; font-size:0.8rem;}
  .search-icon{display:none;}

  .why-grid, .funds-grid, .footer-inner, .contact-grid, .vision-mission{grid-template-columns:1fr;}
  .card-row, .card-row-3, .how-grid, .values-grid, .steps-grid{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
  .hero-inner{margin-left:0; padding:60px 24px;}
  .hero-slide h1{font-size:2.1rem;}
  .funds-image img{height:320px;}
  .funds-image.product img{height:420px;}
  .footer-bottom{flex-direction:column; gap:14px; text-align:center;}
  .cta-buttons{flex-direction:column; align-items:center;}

  .section{padding:60px 0;}
  .why-section{padding:60px 0;}
  .funds-section{padding:60px 0;}
  .how-section{padding:64px 0 56px;}
  .page-hero{padding:60px 24px 48px; min-height:280px;}
}

@media (max-width: 600px){
  .container{padding:0 18px;}
  header{padding:14px 18px;}
  .logo img{height:36px;}

  .hero-slider{min-height:420px;}
  .hero-inner{padding:44px 18px;}
  .hero-slide h1{font-size:1.6rem; line-height:1.25;}
  .hero-slide p{font-size:0.92rem;}
  .eyebrow{font-size:0.72rem;}

  .page-hero{padding:44px 18px 36px; min-height:240px;}
  .page-hero h1{font-size:1.55rem;}
  .page-hero p{font-size:0.9rem;}

  .section{padding:44px 0;}
  .why-section{padding:44px 0;}
  .funds-section{padding:44px 0;}
  .how-section{padding:48px 0 40px;}

  .section h2, .why-left h2, .funds-right h2, .how-section h2{font-size:1.5rem;}

  .stat-card{padding:18px 20px;}
  .stat-card .num{font-size:1.5rem;}

  .fund-card{padding:18px 20px; gap:14px;}
  .fund-icon{width:38px; height:38px; min-width:38px; font-size:1rem;}

  .teaser-card .body{padding:18px 18px 22px;}
  .teaser-card img{height:150px;}

  .how-card{padding:24px 20px;}
  .value-card{padding:24px 20px;}
  .step-card{padding:22px 20px;}

  .funds-image img{height:220px;}
  .funds-image.product img{height:380px; padding:4px;}

  .vm-card{padding:26px 22px;}
  .approach-item{gap:14px;}
  .approach-num{width:32px; height:32px; font-size:0.85rem;}

  .partner-item{padding:18px 20px; gap:14px;}
  .partner-num{width:30px; height:30px; font-size:0.85rem;}

  .contact-info-card{padding:28px 22px;}
  .form-card{padding:26px 20px;}

  .cta-banner{padding:56px 20px;}
  .cta-banner h2{font-size:1.6rem;}
  .cta-banner p{font-size:0.92rem;}

  .footer-inner{gap:36px; padding-bottom:36px;}
  .footer-about p{max-width:100%;}
  footer{padding:44px 18px 0;}
}

/* Info box component — used for narrative content sections (About, Product,
   Events, Roundtable pages). Icon + numbered badge + labeled heading + text. */
.info-box{
  display:flex;
  gap:22px;
  background:var(--white);
  border:1px solid var(--border);
  border-left:4px solid var(--maroon);
  border-radius:8px;
  padding:28px 30px;
  margin-bottom:20px;
}
.info-box.cream{background:var(--cream);}
.info-box.warn{border-left-color:var(--amber);}
.info-box-icon{
  width:52px; height:52px; min-width:52px;
  background:var(--navy); color:var(--amber);
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem;
  position:relative;
}
.info-box-icon .num{
  position:absolute; bottom:-8px; right:-8px;
  width:22px; height:22px;
  background:var(--maroon); color:var(--white);
  border-radius:50%;
  font-size:0.68rem; font-weight:800;
  display:flex; align-items:center; justify-content:center;
  border:2px solid var(--white);
}
.info-box-body .label{
  color:var(--maroon); font-weight:800; font-size:0.78rem;
  letter-spacing:1px; text-transform:uppercase; margin-bottom:8px;
}
.info-box-body p{color:var(--text-body); margin-bottom:0; max-width:none;}
.info-box-body ul.bullets{margin:10px 0 0;}

@media (max-width: 600px){
  .info-box{flex-direction:column; gap:16px; padding:22px 20px;}
  .info-box-icon{width:44px; height:44px; font-size:1.15rem;}
}

/* Scroll-reveal animation — lightweight fade + rise, triggered once per
   element via IntersectionObserver. Respects reduced-motion preference. */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}
.reveal-group > *{
  opacity:0;
  transform:translateY(24px);
  transition:opacity 0.6s ease, transform 0.6s ease;
}
.reveal-group.visible > *{opacity:1; transform:translateY(0);}
.reveal-group.visible > *:nth-child(1){transition-delay:0.05s;}
.reveal-group.visible > *:nth-child(2){transition-delay:0.15s;}
.reveal-group.visible > *:nth-child(3){transition-delay:0.25s;}
.reveal-group.visible > *:nth-child(4){transition-delay:0.35s;}
.reveal-group.visible > *:nth-child(5){transition-delay:0.45s;}
.reveal-group.visible > *:nth-child(6){transition-delay:0.55s;}

@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-group > *{
    opacity:1 !important;
    transform:none !important;
    transition:none !important;
  }
}

/* Varied scroll-reveal animation variants — fade+rise (default .reveal),
   plus slide-left, slide-right, zoom, and fade-only, for visual variety. */
.reveal-left{
  opacity:0; transform:translateX(-40px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible{opacity:1; transform:translateX(0);}

.reveal-right{
  opacity:0; transform:translateX(40px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible{opacity:1; transform:translateX(0);}

.reveal-zoom{
  opacity:0; transform:scale(0.92);
  transition:opacity 0.6s ease, transform 0.6s ease;
}
.reveal-zoom.visible{opacity:1; transform:scale(1);}

.reveal-fade{
  opacity:0;
  transition:opacity 0.8s ease;
}
.reveal-fade.visible{opacity:1;}

/* Staggered card-grid variants — children slide in from alternating sides */
.reveal-group-alt > *:nth-child(odd){
  opacity:0; transform:translateX(-30px);
  transition:opacity 0.6s ease, transform 0.6s ease;
}
.reveal-group-alt > *:nth-child(even){
  opacity:0; transform:translateX(30px);
  transition:opacity 0.6s ease, transform 0.6s ease;
}
.reveal-group-alt.visible > *{opacity:1; transform:translateX(0);}
.reveal-group-alt.visible > *:nth-child(1){transition-delay:0.05s;}
.reveal-group-alt.visible > *:nth-child(2){transition-delay:0.15s;}
.reveal-group-alt.visible > *:nth-child(3){transition-delay:0.25s;}
.reveal-group-alt.visible > *:nth-child(4){transition-delay:0.35s;}
.reveal-group-alt.visible > *:nth-child(5){transition-delay:0.45s;}
.reveal-group-alt.visible > *:nth-child(6){transition-delay:0.55s;}

@media (prefers-reduced-motion: reduce){
  .reveal-left, .reveal-right, .reveal-zoom, .reveal-fade,
  .reveal-group-alt > *{
    opacity:1 !important;
    transform:none !important;
    transition:none !important;
  }
}

/* News / blog card */
.news-card{
  background:var(--white); border:1px solid var(--border); border-radius:8px;
  overflow:hidden; transition:box-shadow .2s ease, transform .2s ease;
}
.news-card:hover{box-shadow:0 12px 30px rgba(0,0,0,0.08); transform:translateY(-3px);}
.news-card img{height:180px; object-fit:cover; width:100%;}
.news-card .body{padding:20px 22px 24px;}
.news-card .date{color:var(--amber); font-weight:700; font-size:0.78rem; letter-spacing:0.5px; margin-bottom:8px;}
.news-card h3{font-size:1.05rem; margin-bottom:10px; line-height:1.35;}
.news-card h3 a{color:inherit; text-decoration:none;}
.news-card h3 a:hover{color:var(--maroon);}
.news-card p{color:var(--text-body); font-size:0.9rem; margin-bottom:14px;}
.news-card .read-more{color:var(--maroon); font-weight:700; font-size:0.86rem;}

.news-article{margin-bottom:64px; padding-bottom:56px; border-bottom:1px solid #e8e5dd;}
.news-article:last-of-type{border-bottom:none; margin-bottom:0; padding-bottom:0;}
.news-article img{width:100%; height:340px; object-fit:cover; border-radius:8px; margin-bottom:22px;}
.news-article .date{color:var(--amber); font-weight:700; font-size:0.8rem; letter-spacing:0.6px; margin-bottom:8px;}
.news-article h2{font-size:1.6rem; line-height:1.3; margin-bottom:18px;}
.news-article p{color:var(--text-body); font-size:1rem; line-height:1.7; margin-bottom:16px;}
.news-article .read-more{display:inline-block; color:var(--maroon); font-weight:700; font-size:0.92rem; margin-top:6px;}
@media (max-width:600px){
  .news-article img{height:220px;}
  .news-article h2{font-size:1.3rem;}
}

@media (max-width: 600px){
  .news-card img{height:160px;}
}
