:root{
  --yellow:#FFC000;
  --gray:#7B7B7D;
  --black:#000000;
  --white:#FFFFFF;

  --bg:#0b0b0c;
  --bg-soft:#101114;
  --bg-deep:#070708;

  --panel:rgba(255,255,255,0.06);
  --panel2:rgba(255,255,255,0.04);
  --panel3:rgba(255,255,255,0.03);

  --border:rgba(255,255,255,0.14);
  --border-strong:rgba(255,192,0,0.35);

  --text:var(--white);
  --muted:rgba(255,255,255,0.75);
  --muted-soft:rgba(255,255,255,0.58);
  --focus:rgba(255,192,0,0.25);

  --shadow-sm:0 8px 24px rgba(0,0,0,0.22);
  --shadow-md:0 16px 42px rgba(0,0,0,0.32);
  --shadow-lg:0 24px 64px rgba(0,0,0,0.40);

  --radius-sm:12px;
  --radius-md:18px;
  --radius-lg:24px;
}

*{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  line-height:1.6;
  background-color:var(--bg);
  background-image:
    radial-gradient(circle at top center, rgba(255,192,0,0.035), transparent 22%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.02), transparent 18%);
  background-repeat:no-repeat;
  background-size:1400px 700px, 900px 900px;
  background-attachment:scroll;
}

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

.container{
  width:min(1100px,92vw);
  margin:0 auto;
}

a{
  color:var(--yellow);
  text-decoration:none;
}

a:hover{
  text-decoration:underline;
}

.muted{
  color:var(--muted);
}

.small{
  font-size:0.9rem;
}

.center{
  text-align:center;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(0,0,0,0.90);
  border-bottom:3px solid var(--yellow);
  backdrop-filter:blur(10px);
}

.header-inner{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--text);
}

.brand:hover{
  text-decoration:none;
}

.brand-text{
  display:grid;
}

.brand-kicker{
  font-size:.85rem;
  color:rgba(255,255,255,0.78);
}

.brand-title{
  font-weight:900;
  letter-spacing:0.3px;
}

.logo{
  height:48px;
  width:auto;
}

/* HAMBURGER BUTTON */
.menu-toggle{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:46px;
  height:46px;
  border:1px solid rgba(255,255,255,0.18);
  border-radius:12px;
  background:rgba(255,255,255,0.04);
  cursor:pointer;
  transition:all .2s ease;
}

.menu-toggle:hover{
  border-color:var(--yellow);
  background:rgba(255,192,0,0.08);
}

.menu-toggle span{
  width:22px;
  height:2px;
  background:var(--white);
  display:block;
  border-radius:999px;
  transition:all .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2){
  opacity:0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* DROPDOWN NAV */
.nav{
  display:none;
  position:absolute;
  top:74px;
  right:0;
  width:min(280px, 84vw);
  padding:12px;
  border:1px solid var(--border);
  border-radius:16px;
  background:rgba(0,0,0,0.96);
  box-shadow:0 18px 40px rgba(0,0,0,0.38);
  flex-direction:column;
  gap:8px;
  z-index:200;
}

.nav.nav-open{
  display:flex;
}

.nav a{
  display:block;
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.03);
  color:var(--text);
  font-weight:800;
  font-size:0.95rem;
  transition:all .2s ease;
}

.nav a:hover{
  border-color:var(--yellow);
  color:var(--yellow);
  background:rgba(255,192,0,0.08);
  text-decoration:none;
}

.nav a:focus-visible,
.menu-toggle:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px var(--focus);
}

/* MOBILE HAMBURGER MENU */
.menu-toggle{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:46px;
  height:46px;
  border:1px solid rgba(255,255,255,0.18);
  border-radius:12px;
  background:rgba(255,255,255,0.04);
  cursor:pointer;
  transition:all .2s ease;
}

.menu-toggle:hover{
  border-color:var(--yellow);
  background:rgba(255,192,0,0.08);
}

.menu-toggle span{
  width:22px;
  height:2px;
  background:var(--white);
  display:block;
  border-radius:999px;
  transition:all .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2){
  opacity:0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* JOIN BANNER */
.join-banner{
  position:relative;
  background:linear-gradient(135deg, rgba(255,192,0,1) 0%, rgba(255,206,51,0.96) 100%);
  color:#000;
  padding:38px 0;
  overflow:hidden;
}

.join-banner::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(255,255,255,0.12), transparent 35%, rgba(0,0,0,0.05));
  pointer-events:none;
}

.join-banner-inner{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}

.join-text h2{
  margin:0 0 6px;
  font-size:1.6rem;
}

.join-text p{
  margin:0;
  font-weight:600;
  max-width:640px;
}

.join-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* HERO */
.hero{
  position:relative;
  min-height:70vh;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-bottom:1px solid var(--border);
}

.hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:160px;
  background:linear-gradient(to bottom, transparent, rgba(11,11,12,0.98));
  pointer-events:none;
  z-index:1;
}

.hero-media{
  position:absolute;
  inset:0;
  z-index:0;
  background:
    linear-gradient(rgba(0,0,0,0.50), rgba(0,0,0,0.65)),
    url("images/hero/scouts.jpg");
  background-size:cover;
  background-position:center;
  transform:scale(1.04);
  transition:transform 1.2s ease;
}

.hero:hover .hero-media{
  transform:scale(1.09);
}

.hero-inner{
  position:relative;
  z-index:2;
  padding:110px 0 90px;
  max-width:860px;
  text-align:center;
}

.hero-logo{
  display:block;
  margin:0 auto 8px;
  height:200px;
  width:auto;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,0.45));
}

.hero h1{
  margin:0 0 12px;
  font-size:clamp(2.2rem,4.6vw,3.4rem);
  letter-spacing:-0.4px;
  color:#fff;
  text-shadow:0 10px 24px rgba(0,0,0,0.55);
}

.lead{
  color:rgba(255,255,255,0.86);
  margin:0 auto 18px;
  max-width:62ch;
  font-weight:600;
  text-shadow:0 8px 16px rgba(0,0,0,0.35);
}

.cta-row,
.hero-buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  margin:10px 0 18px;
}

/* BUTTONS */
.btn{
  padding:10px 16px;
  border-radius:12px;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,0.35);
  background:rgba(255,255,255,0.04);
  color:var(--text);
  backdrop-filter:blur(4px);
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.btn:hover{
  transform:translateY(-2px);
  text-decoration:none;
}

.btn:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px var(--focus);
}

.btn.primary{
  background:rgba(255,192,0,0.78);
  color:#000;
  border:1px solid rgba(255,192,0,0.96);
  box-shadow:0 10px 26px rgba(255,192,0,0.16);
}

.btn.primary:hover{
  background:rgba(255,192,0,0.95);
  box-shadow:0 14px 32px rgba(255,192,0,0.30);
}

.btn.ghost{
  background:rgba(0,0,0,0.45);
  color:#fff;
  border:1px solid rgba(255,255,255,0.35);
}

.btn.ghost:hover{
  background:rgba(0,0,0,0.68);
  border-color:var(--yellow);
  color:var(--yellow);
  box-shadow:0 12px 30px rgba(0,0,0,0.24);
}

/* Join banner button overrides */
.join-banner .btn{
  backdrop-filter:none;
}

.join-banner .btn.primary{
  background:#000;
  color:#fff;
  border-color:#000;
  box-shadow:none;
}

.join-banner .btn.primary:hover{
  background:#111;
}

.join-banner .btn.ghost{
  background:transparent;
  color:#000;
  border-color:#000;
}

.join-banner .btn.ghost:hover{
  background:rgba(0,0,0,0.08);
  color:#000;
}

/* HERO NOTES */
.hero-notes{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:18px;
}

.note{
  background:rgba(0,0,0,0.45);
  border:1px solid rgba(255,255,255,0.30);
  border-radius:14px;
  padding:12px 14px;
  backdrop-filter:blur(6px);
  box-shadow:var(--shadow-sm);
}

.note-title{
  font-weight:900;
  color:var(--yellow);
  margin-bottom:4px;
}

.note-body{
  color:rgba(255,255,255,0.88);
}

/* SECTIONS */
.section{
  position:relative;
  padding:64px 0;
  background:transparent;
}

.section.alt{
  padding:64px 0;
  background:rgba(255,255,255,0.015);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.section.deep{
  padding:64px 0;
  background:rgba(255,255,255,0.02);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

/* ABOUT LAYOUT */
.split{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:20px;
  align-items:start;
}

.card{
  background:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
  box-shadow:var(--shadow-md);
}

.divider{
  height:1px;
  background:var(--border);
  margin:14px 0;
}

/* JOIN STEPS */
.steps{
  display:flex;
  flex-direction:column;
  gap:22px;
  margin-top:34px;
}

.step{
  display:flex;
  align-items:flex-start;
  gap:25px;
  background:rgba(255,255,255,0.025);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:18px;
  padding:26px 30px;
  transition:all 0.25s ease;
  box-shadow:var(--shadow-sm);
}

.step:hover{
  border-color:var(--yellow);
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
}

.step-num{
  width:60px;
  height:60px;
  border-radius:16px;
  border:2px solid var(--yellow);
  color:var(--yellow);
  background:rgba(255,192,0,0.06);
  font-weight:900;
  font-size:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.step h3{
  margin:0;
  font-size:1.4rem;
  font-weight:900;
  color:#fff;
}

.step p{
  margin:8px 0 0;
  font-size:1rem;
  color:rgba(255,255,255,0.80);
  line-height:1.5;
}

/* SIGNUP FORM */
.signup{
  margin-top:22px;
  background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.03));
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
  box-shadow:var(--shadow-md);
}

.signup-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-bottom:12px;
}

.signup-grid label{
  display:grid;
  gap:6px;
  font-weight:800;
  color:rgba(255,255,255,0.92);
}

.signup-grid label.full{
  grid-column:1 / -1;
}

.signup-grid input,
.signup-grid textarea,
.signup-grid select{
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.22);
  background:rgba(0,0,0,0.55);
  color:var(--white);
  font:inherit;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.signup-grid textarea{
  min-height:110px;
  resize:vertical;
}

.signup-grid input::placeholder,
.signup-grid textarea::placeholder{
  color:rgba(255,255,255,0.50);
}

.signup-grid input:focus,
.signup-grid textarea:focus,
.signup-grid select:focus{
  outline:none;
  border-color:var(--yellow);
  box-shadow:0 0 0 4px var(--focus);
  background:rgba(0,0,0,0.70);
}

/* GALLERY */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:16px;
  margin-top:24px;
}

.gallery-grid img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:var(--shadow-sm);
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.gallery-grid img:hover{
  transform:translateY(-3px) scale(1.015);
  border-color:rgba(255,192,0,0.55);
  box-shadow:var(--shadow-md);
}

/* GALLERY CATEGORY CARDS */
.gallery-categories{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:16px;
  margin-top:18px;
}

.gallery-card{
  display:block;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.14);
  background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
  color:var(--text);
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  box-shadow:var(--shadow-sm);
}

.gallery-card:hover{
  transform:translateY(-3px);
  border-color:rgba(255,192,0,0.55);
  box-shadow:var(--shadow-md);
  text-decoration:none;
}

.gallery-card-media{
  height:160px;
  background-size:cover;
  background-position:center;
  filter:saturate(1.05) contrast(1.05);
}

.gallery-card-body{
  padding:14px;
}

.gallery-card-title{
  font-weight:900;
  font-size:1.05rem;
  margin-bottom:4px;
}

.gallery-card-sub{
  color:rgba(255,255,255,0.78);
  font-weight:600;
  font-size:0.95rem;
}

/* PAGE HEADER */
.page-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.breadcrumb{
  color:rgba(255,255,255,0.70);
  font-weight:700;
  font-size:0.95rem;
}

.breadcrumb a{
  color:var(--yellow);
}

.breadcrumb a:hover{
  text-decoration:underline;
}

/* FAQ */
.faq{
  max-width:820px;
  margin:30px auto 0;
}

.faq-item{
  margin-bottom:14px;
  background:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border:1px solid rgba(255,255,255,0.10);
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
}

.faq-item[open]{
  border-color:rgba(255,192,0,0.35);
}

.faq-item summary{
  list-style:none;
  font-weight:700;
  cursor:pointer;
  font-size:18px;
  color:#fff;
  padding:18px 20px;
  position:relative;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item summary::after{
  content:"+";
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  color:var(--yellow);
  font-size:1.3rem;
  font-weight:700;
}

.faq-item[open] summary::after{
  content:"−";
}

.faq-item p{
  margin:0;
  padding:0 20px 18px;
  color:var(--muted);
}

/* LIGHTBOX */
.gallery-img{
  cursor:pointer;
  transition:transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.gallery-img:hover{
  transform:translateY(-2px) scale(1.01);
  opacity:0.98;
  box-shadow:var(--shadow-md);
}

.lightbox{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.86);
  z-index:9999;
  align-items:center;
  justify-content:center;
  padding:2rem;
}

.lightbox.active{
  display:flex;
}

.lightbox img{
  max-width:min(78vw,1000px);
  max-height:78vh;
  width:auto;
  height:auto;
  object-fit:contain;
  border-radius:12px;
  box-shadow:0 18px 50px rgba(0,0,0,0.45);
  border:1px solid rgba(255,255,255,0.12);
  opacity:0;
  transform:scale(0.96);
  transition:opacity 0.22s ease, transform 0.22s ease;
}

.lightbox img.is-visible{
  opacity:1;
  transform:scale(1);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next{
  position:absolute;
  background:rgba(255,255,255,0.14);
  border:none;
  color:white;
  font-size:1.8rem;
  padding:0.7rem 1rem;
  cursor:pointer;
  border-radius:999px;
  transition:background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover{
  background:rgba(255,255,255,0.24);
}

.lightbox-close{
  top:20px;
  right:20px;
}

.lightbox-prev{
  left:24px;
  top:50%;
  transform:translateY(-50%);
}

.lightbox-next{
  right:24px;
  top:50%;
  transform:translateY(-50%);
}

.lightbox-counter{
  position:absolute;
  bottom:22px;
  left:50%;
  transform:translateX(-50%);
  color:white;
  background:rgba(255,255,255,0.14);
  padding:0.55rem 0.9rem;
  border-radius:999px;
  font-size:0.95rem;
  letter-spacing:0.02em;
}

/* STAY CONNECTED BUTTONS */
.social-grid{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:16px;
  margin-top:26px;
}

.social-btn{
  padding:14px 22px;
  min-width:220px;
  text-align:center;
  border-radius:12px;
  font-weight:900;
  font-size:16px;
  border:2px solid var(--yellow);
  color:var(--yellow);
  background:rgba(255,255,255,0.05);
  box-shadow:var(--shadow-sm);
  transition:all 0.25s ease;
}

.social-btn:hover{
  background:var(--yellow);
  color:#000;
  transform:translateY(-2px);
  text-decoration:none;
  box-shadow:var(--shadow-md);
}

.instagram:hover{ background:#E1306C; border-color:#E1306C; color:#fff; }
.facebook:hover{ background:#1877F2; border-color:#1877F2; color:#fff; }
.whatsapp:hover{ background:#25D366; border-color:#25D366; color:#fff; }
.mailchimp:hover{ background:#FFE01B; border-color:#FFE01B; color:#000; }

/* CONTACT */
.contact-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:14px;
}

.mini{
  background:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border:1px solid var(--border);
  border-radius:14px;
  padding:16px;
  box-shadow:var(--shadow-sm);
}

.mini-title{
  font-weight:900;
  margin-bottom:6px;
  color:var(--yellow);
}

.mini p,
.mini a{
  margin:0;
  color:var(--text);
}

/* FOOTER */
.footer{
  margin-top:24px;
  border-top:1px solid var(--border);
  padding:22px 0 30px;
  background:#0b0b0c;
}

.footer p{
  color:var(--muted);
}

/* LEADERS PAGE */
.leaders-page-hero{
  background:#101010;
  padding:90px 20px 40px;
  border-bottom:1px solid rgba(255,192,0,0.35);
  text-align:center;
}

.leaders-page-title{
  color:#fff;
  font-size:clamp(2rem,4vw,3rem);
  font-weight:800;
  margin:0;
}

.leaders-page-subtitle{
  color:#c9c9c9;
  max-width:650px;
  margin:14px auto 0;
  line-height:1.6;
}

.leaders-kicker{
  color:var(--yellow);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:700;
  font-size:.8rem;
  margin-bottom:8px;
}

.leaders-section{
  background:#0d0d0e;
  padding:60px 20px 90px;
}

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

.leader-card{
  background:linear-gradient(180deg, #1a1a1a, #141414);
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position:relative;
  box-shadow:var(--shadow-sm);
}

.leader-card::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:3px;
  background:var(--yellow);
  opacity:.45;
}

.leader-card:hover{
  transform:translateY(-6px);
  border-color:rgba(255,192,0,.6);
  box-shadow:var(--shadow-lg);
}

.leader-card img{
  width:100%;
  height:360px;
  object-fit:cover;
  object-position:center 80%;
}

.leader-info{
  padding:18px 18px 22px;
  text-align:center;
}

.leader-info h3{
  color:#fff;
  margin:0 0 6px;
  font-size:1.1rem;
  font-weight:700;
}

.leader-info p{
  color:var(--yellow);
  font-weight:600;
  font-size:.95rem;
  margin:0;
}

/* RESPONSIVE */
@media (max-width:980px){
  .leaders-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:820px){
  .split{
    grid-template-columns:1fr;
  }

  .hero-notes{
    grid-template-columns:1fr;
  }

  .signup-grid{
    grid-template-columns:1fr;
  }

  .contact-cards{
    grid-template-columns:1fr;
  }

  .hero-inner{
    padding:95px 0 70px;
  }

  .hero-logo{
    height:160px;
  }

  .section,
  .section.alt,
  .section.deep{
    padding:56px 0;
  }

  .header-inner{
    position:relative;
  }

  .menu-toggle{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    width:44px;
    height:44px;
    border:none;
    background:transparent;
    cursor:pointer;
    margin-left:auto;
  }

  .menu-toggle span{
    width:22px;
    height:2px;
    background:var(--white);
    display:block;
    border-radius:999px;
  }

  .nav{
    display:none;
    position:absolute;
    top:74px;
    right:0;
    width:min(280px,84vw);
    padding:12px;
    border:1px solid var(--border);
    border-radius:16px;
    background:rgba(0,0,0,0.96);
    box-shadow:0 18px 40px rgba(0,0,0,0.38);
    flex-direction:column;
    gap:8px;
    z-index:200;
  }

  .nav.nav-open{
    display:flex;
  }

  .nav a{
    display:block;
    width:100%;
    padding:12px 14px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.08);
    background:rgba(255,255,255,0.03);
    color:var(--text);
    font-weight:800;
    font-size:0.95rem;
    transition:all .2s ease;
  }

  .nav a:hover{
    border-color:var(--yellow);
    color:var(--yellow);
    background:rgba(255,192,0,0.08);
    text-decoration:none;
  }
}

@media (max-width:768px){
  .lightbox{
    padding:1rem;
  }

  .lightbox img{
    max-width:88vw;
    max-height:72vh;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next{
    font-size:1.4rem;
    padding:0.55rem 0.8rem;
  }

  .lightbox-prev{
    left:10px;
  }

  .lightbox-next{
    right:10px;
  }

  .lightbox-close{
    top:10px;
    right:10px;
  }

  .lightbox-counter{
    bottom:14px;
    font-size:0.85rem;
  }
}

@media (max-width:600px){
  .leaders-grid{
    grid-template-columns:1fr;
  }

  .leader-card img{
    height:360px;
    object-fit:cover;
    object-position:center 80%;
  }

  .step{
    padding:22px 20px;
    gap:16px;
  }

  .step-num{
    width:52px;
    height:52px;
    font-size:18px;
  }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior:auto;
  }

  .hero-media{
    transition:none;
    transform:none;
  }

  .step,
  .btn,
  .social-btn,
  .gallery-grid img,
  .gallery-img,
  .leader-card,
  .gallery-card{
    transition:none;
  }
}
