*{box-sizing:border-box;margin:0;padding:0}
:root{
  --team-green:#325525;
  --team-red:#aa2526;
  --team-sand:#cbc5ad;

  --manava-orange:#f29300;
  --manava-red:#e00723;
  --manava-blue:#1437f5;
  --manava-yellow:#fae924;

  --bg:#f6f7f3;
  --bg-gradient-top:rgba(255,255,255,.75);
  --bg-gradient-bottom-1:#f8faf6;
  --bg-gradient-bottom-2:#f3f6f1;
  --surface:#ffffff;
  --surface-2:#eef2eb;
  --surface-3:#f9faf7;
  --text:#182119;
  --muted:#5e6b60;
  --line:#d9e1d6;
  --line-strong:#c4cec0;
  --nav-bg:rgba(17,22,18,.78);
  --nav-line:rgba(255,255,255,.08);
  --nav-link:rgba(255,255,255,.88);
  --nav-link-hover-bg:rgba(255,255,255,.12);
  --nav-link-hover-text:#fff;
  --mobile-nav-bg:#1b261d;
  --footer-bg:#152019;
  --footer-text:#dbe4dc;
  --footer-muted:#9db29f;
  --footer-brand-text:#afbfaf;
  --glass-surface:rgba(255,255,255,.92);
  --glass-strong:rgba(255,255,255,.1);
  --glass-line:rgba(255,255,255,.16);
  --glass-panel:rgba(255,255,255,.08);
  --stats-panel:rgba(255,255,255,.06);
  --stats-line:rgba(255,255,255,.1);
  --shadow:0 18px 50px rgba(21,29,22,.08);
  --shadow-soft:0 10px 26px rgba(21,29,22,.05);
  --radius:18px;
  --radius-lg:28px;
  --container:1120px;
}

:root[data-theme="dark"]{
  --bg:#0d1410;
  --bg-gradient-top:rgba(64,110,80,.18);
  --bg-gradient-bottom-1:#101813;
  --bg-gradient-bottom-2:#0b120e;
  --surface:#121b15;
  --surface-2:#162019;
  --surface-3:#1a241d;
  --text:#edf4ee;
  --muted:#a6b6aa;
  --line:#253329;
  --line-strong:#35463a;
  --nav-bg:rgba(7,11,8,.82);
  --nav-line:rgba(255,255,255,.06);
  --nav-link:rgba(237,244,238,.9);
  --nav-link-hover-bg:rgba(255,255,255,.08);
  --nav-link-hover-text:#fff;
  --mobile-nav-bg:#111913;
  --footer-bg:#09100b;
  --footer-text:#e5efe7;
  --footer-muted:#8ea291;
  --footer-brand-text:#9fb2a2;
  --glass-surface:rgba(18,27,21,.92);
  --glass-strong:rgba(255,255,255,.06);
  --glass-line:rgba(255,255,255,.08);
  --glass-panel:rgba(255,255,255,.04);
  --stats-panel:rgba(255,255,255,.05);
  --stats-line:rgba(255,255,255,.08);
  --shadow:0 22px 60px rgba(0,0,0,.34);
  --shadow-soft:0 12px 28px rgba(0,0,0,.22);
}

html{scroll-behavior:smooth;scroll-padding-top:90px}
body{
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(circle at top left, var(--bg-gradient-top), transparent 32%),
    linear-gradient(180deg,var(--bg-gradient-bottom-1) 0%,var(--bg-gradient-bottom-2) 100%);
  color:var(--text);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  transition:background .25s ease,color .25s ease;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.container{max-width:var(--container);margin:0 auto;padding:0 1.2rem}
main{position:relative;z-index:1}

body.theme-team{
  --brand:var(--team-green);
  --brand-2:#213d1a;
  --accent:var(--team-red);
  --accent-soft:#f7e4e3;
  --brand-soft:#e6ece2;
}
body.theme-manava{
  --brand:var(--manava-blue);
  --brand-2:#0d258f;
  --accent:var(--manava-orange);
  --accent-soft:#fff0dc;
  --brand-soft:#e6ebff;
}
body.theme-mixed{
  --brand:var(--team-green);
  --brand-2:var(--manava-blue);
  --accent:var(--manava-orange);
  --accent-soft:#fff0dc;
  --brand-soft:#e9efe5;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
}
.skip-link:focus{
  left:1rem;
  top:1rem;
  z-index:100;
  background:#fff;
  color:#000;
  padding:.8rem 1rem;
  border-radius:12px;
  box-shadow:var(--shadow);
}

.navbar{
  position:fixed;
  top:0;left:0;right:0;
  z-index:50;
  background:var(--nav-bg);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--nav-line);
}
.nav-container{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  max-width:var(--container);
  margin:0 auto;
  padding:0 1.2rem;
}
.nav-logo{display:flex;align-items:center;gap:.7rem;color:#fff;font-weight:700;min-width:0}
.nav-logo-img{
  width:42px;height:42px;object-fit:contain;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  padding:4px;
}
.logo-text{white-space:nowrap}
.nav-links{display:flex;align-items:center;gap:.2rem;list-style:none}
.nav-links a{
  color:var(--nav-link);
  padding:.62rem .92rem;
  border-radius:999px;
  font-size:.94rem;
  transition:background .2s ease,color .2s ease,transform .2s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"]{
  background:var(--nav-link-hover-bg);
  color:var(--nav-link-hover-text);
}
.nav-cta{
  background:var(--accent);
  color:#fff!important;
  font-weight:800;
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}
.nav-cta:hover,
.nav-cta:focus-visible{transform:translateY(-1px)}
.nav-toggle{display:none;background:none;border:0;padding:.3rem;cursor:pointer}
.nav-toggle span{
  display:block;
  width:24px;
  height:2px;
  background:#fff;
  margin:5px 0;
  border-radius:99px;
}

.theme-toggle{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.62rem .92rem;
  border-radius:999px;
  border:1px solid var(--nav-line);
  background:rgba(255,255,255,.06);
  color:#fff;
  font:inherit;
  font-size:.94rem;
  font-weight:700;
  cursor:pointer;
  transition:background .2s ease,transform .2s ease,border-color .2s ease;
}
.theme-toggle:hover,
.theme-toggle:focus-visible{
  background:var(--nav-link-hover-bg);
  transform:translateY(-1px);
}
.theme-toggle-icon{
  font-size:1rem;
  line-height:1;
}
:root[data-theme="dark"] .theme-toggle{
  background:rgba(255,255,255,.08);
}

.hero{
  padding:136px 0 78px;
  background:
    radial-gradient(circle at 82% 18%,rgba(255,255,255,.16),transparent 25%),
    radial-gradient(circle at 20% 80%,rgba(255,255,255,.08),transparent 26%),
    linear-gradient(135deg,var(--brand-2),var(--brand) 58%,#122014 100%);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.hero::after{
  content:"";
  position:absolute;
  inset:auto -8% -70px auto;
  width:340px;height:340px;
  background:rgba(255,255,255,.06);
  filter:blur(4px);
  border-radius:50%;
}
.hero-overlay{display:none}
.hero-content{
  position:relative;
  z-index:1;
  max-width:920px;
  margin:0 auto;
  text-align:center;
  padding:0 1.2rem;
}
.hero-logo{
  width:118px;
  margin:0 auto 1rem;
  border-radius:50%;
  padding:.45rem;
  background:rgba(255,255,255,.1);
  box-shadow:0 20px 50px rgba(0,0,0,.16);
}
.hero-badge{
  display:inline-block;
  padding:.34rem .85rem;
  border:1px solid rgba(255,255,255,.34);
  background:rgba(255,255,255,.06);
  border-radius:999px;
  font-size:.74rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:1rem;
}
.hero h1{
  font-family:"Playfair Display",Georgia,serif;
  font-size:clamp(2.25rem,6vw,4.4rem);
  line-height:1.07;
  letter-spacing:-.02em;
  margin-bottom:.95rem;
}
.hero .accent{color:var(--team-sand)}
body.theme-manava .hero .accent{color:var(--manava-yellow)}
.hero-tagline{
  font-size:clamp(1rem,2vw,1.2rem);
  opacity:.96;
  max-width:760px;
  margin:0 auto .75rem;
}
.hero-desc{
  max-width:720px;
  margin:0 auto 1.7rem;
  opacity:.92;
  font-size:1rem;
}
.hero-actions{display:flex;gap:.8rem;justify-content:center;flex-wrap:wrap}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  border-radius:999px;
  padding:.86rem 1.35rem;
  font-weight:800;
  border:1px solid transparent;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease,filter .2s ease;
}
.btn:hover,
.btn:focus-visible{transform:translateY(-2px)}
.btn-primary{
  background:var(--accent);
  color:#fff;
  box-shadow:0 14px 34px rgba(0,0,0,.16);
}
.btn-primary:hover,.btn-primary:focus-visible{filter:brightness(1.04)}
.btn-outline{
  border-color:rgba(255,255,255,.55);
  color:#fff;
  background:rgba(255,255,255,.04);
}
.btn-outline:hover,.btn-outline:focus-visible{background:rgba(255,255,255,.1)}
.btn-outline-dark{
  border-color:var(--line-strong);
  color:var(--text);
  background:#fff;
}
.btn-lg{padding:1rem 1.6rem}

.section{padding:76px 0}
.section-header{text-align:center;max-width:760px;margin:0 auto 2.4rem}
.section-tag{
  display:inline-block;
  font-size:.74rem;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--accent);
  font-weight:800;
}
.section-header h2{
  font-family:"Playfair Display",Georgia,serif;
  font-size:clamp(1.7rem,4.2vw,2.7rem);
  line-height:1.15;
  margin-top:.45rem;
}
.section-header p{color:var(--muted);margin-top:.65rem}
.lead{font-size:1.06rem;color:var(--text)}

.about{position:relative}
.about::before{
  content:"";
  position:absolute;
  inset:22px auto auto 0;
  width:180px;height:180px;
  background:var(--brand-soft);
  filter:blur(30px);
  border-radius:50%;
  opacity:.45;
  pointer-events:none;
}
.about-grid,
.grid-2{display:grid;grid-template-columns:1.2fr .8fr;gap:1.2rem;align-items:start}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}

.card,
.about-text,
.about-focus,
.mission-card,
.event-card,
.contact-card{
  background:var(--glass-surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:1.35rem;
  box-shadow:var(--shadow-soft);
}
.card:hover,
.mission-card:hover,
.event-card:hover,
.contact-card:hover,
.about-focus:hover,
.about-text:hover{
  transform:translateY(-3px);
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
  box-shadow:var(--shadow);
  border-color:var(--line-strong);
}
.card h3,
.about-focus h3,
.mission-card h3,
.event-card h3,
.contact-card h3{
  font-family:"Playfair Display",Georgia,serif;
  margin-bottom:.45rem;
  line-height:1.2;
}
.about-text p+p{margin-top:.85rem;color:var(--muted)}
.focus-list,
.icon-list{list-style:none;display:grid;gap:.6rem}
.icon-list li,
.focus-list li{
  display:flex;
  gap:.7rem;
  align-items:flex-start;
  padding:.56rem 0;
  border-bottom:1px dashed var(--line);
}
.icon-list li:last-child,
.focus-list li:last-child{border-bottom:0;padding-bottom:0}
.icon-dot,
.focus-icon{
  width:12px;height:12px;
  min-width:12px;
  margin-top:.42rem;
  border-radius:50%;
  background:var(--accent);
  color:transparent;
  flex-shrink:0;
}
.focus-icon{display:inline-block}
.icon-only-list .focus-icon{background:linear-gradient(135deg,var(--accent),var(--brand))}

.stats-bar,
.stats{
  color:#fff;
  padding:28px 0;
  background:linear-gradient(135deg,var(--brand-2),var(--brand));
}
body.theme-mixed .stats-bar,
body.theme-mixed .stats{background:linear-gradient(135deg,#213d1a,#1437f5)}
.stats-row{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;text-align:center}
.stat{
  padding:1.1rem 1rem;
  border-radius:18px;
  background:var(--stats-panel);
  border:1px solid var(--stats-line);
}
.stat-number{
  display:block;
  font-family:"Playfair Display",Georgia,serif;
  font-size:2rem;
  font-weight:800;
  line-height:1.1;
}
.stat-label{display:block;font-size:.84rem;opacity:.82;margin-top:.3rem}

.missions{background:linear-gradient(180deg,var(--surface-2),var(--surface-3))}
.missions-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.mission-icon-wrap,
.badge-mini{
  display:inline-flex;
  width:42px;height:42px;
  border-radius:14px;
  background:var(--accent-soft);
  align-items:center;justify-content:center;
  color:var(--brand);
  font-weight:800;
  margin-bottom:.7rem;
}
.mission-card p{color:var(--muted);font-size:.96rem}

.events{background:transparent}
.events-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.event-card{
  position:relative;
  overflow:hidden;
}
.event-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:4px;
  background:linear-gradient(90deg,var(--brand),var(--accent));
}
.event-tag,
.event-type{
  display:inline-flex;
  align-items:center;
  font-size:.72rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
  padding:.28rem .62rem;
  border-radius:999px;
  background:var(--accent-soft);
  color:var(--brand);
  margin-bottom:.75rem;
}
.event-meta{display:grid;gap:.28rem;font-size:.92rem;color:var(--muted);margin:.5rem 0 .72rem}
.event-link{font-weight:800;color:var(--brand)}
.event-link:hover,.event-link:focus-visible{color:var(--accent)}

.contact-intro{
  max-width:720px;
  margin:0 auto 1.7rem;
  text-align:center;
  color:var(--muted);
}
.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.contact-card{text-align:center}
.contact-icon{
  display:inline-flex;
  min-width:46px;height:46px;
  padding:0 .55rem;
  border-radius:14px;
  background:var(--accent-soft);
  align-items:center;
  justify-content:center;
  font-weight:800;
  color:var(--brand);
  margin-bottom:.5rem;
}
.contact-card a{color:var(--brand);font-weight:700;word-break:break-word}
.contact-cta{margin-top:1.6rem;text-align:center}

.cta-band{
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#fff;
  border-radius:24px;
  padding:1.55rem;
  margin-top:.6rem;
  box-shadow:var(--shadow);
}
.cta-band h3{font-family:"Playfair Display",Georgia,serif;font-size:1.5rem;line-height:1.15}
.cta-band p{opacity:.92;margin:.55rem 0 1rem}

.footer{
  background:var(--footer-bg);
  color:var(--footer-text);
  padding:50px 0 26px;
  margin-top:28px;
}
body.theme-manava .footer{background:var(--footer-bg)}
.footer-top{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:1.5rem;
  padding-bottom:1.3rem;
  border-bottom:1px solid rgba(255,255,255,.09);
}
.footer-brand p{color:var(--footer-brand-text);margin-top:.45rem}
.footer-logos{display:flex;gap:.7rem;margin-bottom:.55rem;flex-wrap:wrap}
.footer-logo{
  height:46px;width:auto;
  border-radius:10px;
  background:rgba(255,255,255,.08);
  padding:4px;
}
.footer h4{
  font-size:.78rem;
  letter-spacing:.09em;
  text-transform:uppercase;
  color:var(--footer-muted);
  margin-bottom:.5rem;
}
.footer ul{list-style:none;display:grid;gap:.38rem}
.footer a:hover,.footer a:focus-visible{color:#fff}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
  padding-top:1rem;
  font-size:.86rem;
  color:var(--footer-muted);
}
.footer-motto{font-style:italic}

.mobile-contact-cta{
  display:none;
  position:fixed;
  left:.8rem;right:.8rem;bottom:.8rem;
  z-index:60;
  background:var(--accent);
  color:#fff;
  text-align:center;
  padding:.9rem 1rem;
  border-radius:999px;
  font-weight:800;
  box-shadow:0 18px 36px rgba(0,0,0,.22);
}

.hero-home-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:1.4rem;align-items:center;text-align:left}
.hero-copy{max-width:640px}
.hero-home .hero-actions{justify-content:flex-start}
.hero-panel.glass-card{
  background:var(--glass-strong);
  border:1px solid var(--glass-line);
  box-shadow:0 20px 60px rgba(0,0,0,.16);
  backdrop-filter:blur(10px);
  color:#fff;
}
.hero-panel-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.8rem;margin-top:1rem}
.hero-metric{
  padding:.95rem;
  border-radius:16px;
  background:var(--glass-panel);
  border:1px solid var(--glass-line);
}
.hero-metric strong{display:block;font-family:"Playfair Display",Georgia,serif;font-size:1.6rem;line-height:1.1}
.hero-metric span{display:block;font-size:.9rem;opacity:.9;margin-top:.2rem}

.intro-strip{padding-top:30px;padding-bottom:22px}
.intro-strip-card{
  text-align:center;
  font-size:1.02rem;
  font-weight:600;
  background:linear-gradient(135deg,#fff,var(--surface-3));
}

.v2-split{align-items:stretch}
.elevated-card{height:100%}
.value-section{padding-top:18px}
.value-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.value-card h3{font-family:"Playfair Display",Georgia,serif;margin:.35rem 0 .5rem}
.value-card p{color:var(--muted)}
.value-kicker{
  display:inline-flex;
  padding:.28rem .62rem;
  border-radius:999px;
  background:var(--brand-soft);
  color:var(--brand);
  font-size:.74rem;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.spotlight-section{padding-top:18px}
.spotlight-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}
.spotlight-card{position:relative;overflow:hidden}
.spotlight-card::after{
  content:"";
  position:absolute;
  right:-32px;
  bottom:-32px;
  width:120px;height:120px;
  background:var(--brand-soft);
  border-radius:50%;
  opacity:.6;
}
.spotlight-card > *{position:relative;z-index:1}
.single-spotlight{grid-template-columns:1fr}
.spotlight-large{text-align:center;padding:1.8rem}
.text-link{font-weight:800;color:var(--brand)}
.text-link:hover,.text-link:focus-visible{color:var(--accent)}

.engagement-section{padding-top:18px}
.engagement-banner{
  display:grid;
  grid-template-columns:1.1fr .9fr auto;
  gap:1rem;
  align-items:center;
  background:linear-gradient(135deg,var(--surface),var(--surface-3));
}
.engagement-banner p{color:var(--muted)}

.page-hero .hero-content.narrow-hero{max-width:820px}
.page-intro-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:1rem}
.intro-card h2{font-family:"Playfair Display",Georgia,serif;line-height:1.15;margin:.45rem 0 .75rem}
.info-card h3{margin-bottom:.6rem}
.compact-section{padding-top:22px}
.legal-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}
.legal-card h2,.legal-card h3{font-family:"Playfair Display",Georgia,serif;margin-bottom:.55rem}
.legal-card h3{margin-top:1rem}

.reveal{opacity:0;transform:translateY(22px);transition:opacity .55s ease,transform .55s ease}
.reveal.revealed{opacity:1;transform:translateY(0)}

:focus-visible{
  outline:3px solid color-mix(in srgb, var(--accent) 72%, white 28%);
  outline-offset:3px;
}

@media (max-width:960px){
  .hero-home-grid,
  .about-grid,
  .grid-2,
  .grid-3,
  .missions-grid,
  .events-grid,
  .value-grid,
  .spotlight-grid,
  .page-intro-grid,
  .legal-grid,
  .stats-row,
  .contact-grid,
  .footer-top{grid-template-columns:1fr 1fr}
  .engagement-banner{grid-template-columns:1fr}
}

@media (max-width:768px){
  html{scroll-padding-top:80px}
  .nav-toggle{display:block}
  .nav-links{
    position:fixed;
    inset:74px 0 auto 0;
    background:var(--mobile-nav-bg);
    display:grid;
    gap:.35rem;
    padding:.9rem 1rem 1rem;
    border-bottom:1px solid rgba(255,255,255,.08);
    transform:translateY(-115%);
    transition:transform .22s ease;
  }
  body.theme-manava .nav-links{background:var(--mobile-nav-bg)}
  .nav-links.open{transform:translateY(0)}
  .nav-links a{padding:.82rem 1rem;border-radius:14px}
  .hero-home-grid,
  .about-grid,
  .grid-2,
  .grid-3,
  .missions-grid,
  .events-grid,
  .value-grid,
  .spotlight-grid,
  .page-intro-grid,
  .legal-grid,
  .stats-row,
  .contact-grid,
  .footer-top,
  .footer-bottom{grid-template-columns:1fr;display:grid}
  .hero{padding-top:114px;padding-bottom:68px}
  .hero-home-grid{text-align:center}
  .hero-copy{max-width:none}
  .hero-home .hero-actions{justify-content:center}
  .hero-panel-grid{grid-template-columns:1fr 1fr}
  .hero-logo{width:100px}
  .section{padding:62px 0}
  .mobile-contact-cta{display:block}
  body{padding-bottom:78px}
}

@media (max-width:520px){
  .container,.nav-container,.hero-content{padding-left:1rem;padding-right:1rem}
  .hero-actions{flex-direction:column}
  .hero-actions .btn{width:100%}
  .btn,.mobile-contact-cta{min-height:48px}
  .card,
  .about-text,
  .about-focus,
  .mission-card,
  .event-card,
  .contact-card,
  .cta-band{padding:1.15rem}
}
