
:root{
  --red:#d51521;
  --red-dark:#b40b16;
  --red-soft:#ffe6e9;
  --text:#1d1f23;
  --text-soft:#626872;
  --line:#e7e8ec;
  --line-strong:#d9dbe0;
  --white:#ffffff;
  --bg:#fafafb;
  --bg-soft:#f3f4f7;
  --shadow:0 18px 50px rgba(27,31,39,.08);
  --shadow-soft:0 10px 24px rgba(27,31,39,.06);
  --radius-xl:34px;
  --radius-lg:26px;
  --radius-md:20px;
  --radius-sm:14px;
  --container:1260px;
  --transition:.35s ease;
}

*,
*::before,
*::after{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:"Inter","Manrope",system-ui,-apple-system,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#ffffff 0%,#fbfbfc 60%,#f6f7f9 100%);
  overflow-x:hidden;
}

img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
button,input,textarea{font:inherit}
button{cursor:pointer}

.page-bg{
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 10% 10%, rgba(213,21,33,.06), transparent 0 20%),
    radial-gradient(circle at 90% 15%, rgba(213,21,33,.05), transparent 0 18%),
    radial-gradient(circle at 50% 85%, rgba(213,21,33,.04), transparent 0 18%);
}

.container{
  width:min(calc(100% - 32px), var(--container));
  margin-inline:auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(0,0,0,.05);
}

.nav-wrap{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand-logo{
  width:56px;
  height:56px;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  box-shadow:var(--shadow-soft);
  padding:10px;
}

.brand-logo img{width:100%;height:100%;object-fit:contain}
.brand-copy{display:grid;gap:4px}
.brand-copy strong{font-size:1rem}
.brand-copy small{font-size:.83rem;color:var(--text-soft)}

.desktop-nav{
  display:flex;
  align-items:center;
  gap:26px;
}

.desktop-nav a{
  color:var(--text-soft);
  font-weight:600;
  position:relative;
  transition:color var(--transition);
}

.desktop-nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  height:2px;
  background:var(--red);
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform var(--transition);
}

.desktop-nav a:hover{color:var(--text)}
.desktop-nav a:hover::after{transform:scaleX(1)}

.nav-actions{display:flex;align-items:center;gap:12px}

.header-btn,
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:none;
  transition:transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.header-btn{
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  background:var(--red);
  color:#fff;
  font-weight:700;
  box-shadow:0 12px 28px rgba(213,21,33,.18);
}

.header-btn:hover{transform:translateY(-2px)}

.menu-toggle{
  width:48px;
  height:48px;
  border-radius:16px;
  display:none;
  border:1px solid var(--line);
  background:#fff;
  padding:0;
}

.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:#1d1f23;
  margin:5px auto;
  border-radius:999px;
  transition:all .25s ease;
}

.menu-toggle.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle.active span:nth-child(2){opacity:0}
.menu-toggle.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.mobile-nav{
  display:none;
  flex-direction:column;
  gap:10px;
  padding:0 16px 18px;
}

.mobile-nav.open{display:flex}
.mobile-nav a{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px 16px;
  color:var(--text-soft);
}
.mobile-nav-cta{
  background:var(--red)!important;
  color:#fff!important;
  font-weight:700;
}

.hero{
  position:relative;
  padding:24px 0 16px;
}

.hero-slider{
  position:relative;
  overflow:hidden;
  border-radius:32px;
  width:min(calc(100% - 32px), 1320px);
  margin:0 auto;
  box-shadow:var(--shadow);
}

.hero-slide{
  position:relative;
  display:none;
  min-height:720px;
  overflow:hidden;
}

.hero-slide.active{
  display:block;
  animation:fade .7s ease;
}

@keyframes fade{
  from{opacity:0;transform:translateY(10px)}
  to{opacity:1;transform:translateY(0)}
}

.hero-media{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.82) 34%, rgba(255,255,255,.30) 64%, rgba(255,255,255,.10) 100%),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.16));
}

.hero-content{
  position:relative;
  z-index:2;
  min-height:720px;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  align-items:center;
  gap:34px;
  padding:48px 0;
}

.hero-badge,
.eyebrow{
  display:inline-flex;
  min-height:40px;
  padding:0 16px;
  align-items:center;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--red-dark);
  font-size:.84rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  box-shadow:var(--shadow-soft);
}

.hero-left h1,
.hero-left h2{
  margin:18px 0 14px;
  font-size:clamp(2.8rem,6vw,5.3rem);
  line-height:.95;
  letter-spacing:-.05em;
  max-width:12ch;
}

.hero-left h1 span,
.hero-left h2 span{
  color:var(--red-dark);
}

.hero-left p{
  max-width:58ch;
  color:var(--text-soft);
  line-height:1.8;
  font-size:1.06rem;
  margin:0;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.btn{
  min-height:56px;
  padding:0 24px;
  border-radius:999px;
  font-weight:800;
}

.btn-primary{
  background:var(--red);
  color:#fff;
  box-shadow:0 16px 34px rgba(213,21,33,.18);
}

.btn-primary:hover{transform:translateY(-2px)}
.btn-secondary{
  background:#fff;
  color:var(--text);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:28px;
}

.stat-card{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(255,255,255,.9);
  box-shadow:var(--shadow-soft);
  border-radius:22px;
  padding:18px;
}

.stat-card strong{
  display:block;
  font-size:1.9rem;
  color:var(--red-dark);
  margin-bottom:8px;
}

.stat-card span{
  color:var(--text-soft);
  line-height:1.55;
  font-size:.93rem;
}

.hero-right{display:grid;justify-items:end}

.hero-panel,
.quote-box,
.side-card{
  background:rgba(255,255,255,.90);
  border:1px solid rgba(255,255,255,.92);
  box-shadow:var(--shadow);
}

.hero-panel{
  width:min(100%,460px);
  border-radius:28px;
  padding:28px;
}

.hero-panel-top small,
.quote-box small{
  color:var(--red-dark);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.hero-panel h2{
  margin:10px 0 0;
  font-size:clamp(1.5rem,3vw,2.3rem);
  line-height:1.1;
  letter-spacing:-.04em;
}

.hero-panel-list{
  display:grid;
  gap:12px;
  margin-top:22px;
}

.hero-panel-list div{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px 16px;
  color:var(--text-soft);
  line-height:1.6;
}

.quote-box{
  width:min(100%,380px);
  border-radius:26px;
  padding:24px;
}

.quote-box p{
  margin:10px 0 0;
  line-height:1.8;
  color:var(--text-soft);
}

.side-card{
  width:min(100%,380px);
  border-radius:24px;
  padding:20px;
  display:flex;
  gap:16px;
  align-items:center;
}

.side-card img{
  width:64px;height:64px;object-fit:contain;
  background:#fff;border:1px solid var(--line);
  border-radius:16px;padding:10px;
}

.side-card strong{display:block;margin-bottom:8px}
.side-card span{line-height:1.7;color:var(--text-soft);font-size:.94rem}

.slider-controls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-top:20px;
}

.slider-arrow{
  width:54px;height:54px;border:none;border-radius:18px;
  background:#fff;border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  font-size:1.2rem;
}

.slider-dots{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  flex:1;
}

.slider-dot{
  width:12px;height:12px;border:none;border-radius:50%;
  background:#d1d4da;
}

.slider-dot.active{
  width:36px;border-radius:999px;background:var(--red);
}

.quick-band{
  padding:18px 0 6px;
}

.quick-band-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.quick-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:20px;
  box-shadow:var(--shadow-soft);
}

.quick-item span{
  display:block;
  color:var(--red-dark);
  font-weight:800;
  font-size:.84rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:8px;
}

.quick-item strong{
  font-size:1rem;
  line-height:1.5;
}

.section{padding:92px 0}
.section-light{background:var(--bg-soft)}

.section-head{
  max-width:900px;
  margin-bottom:34px;
}

.section-head h2{
  margin:14px 0 12px;
  font-size:clamp(2rem,4vw,3.8rem);
  line-height:1;
  letter-spacing:-.05em;
}

.section-head p{
  margin:0;
  color:var(--text-soft);
  line-height:1.8;
  font-size:1.05rem;
}

.vision-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.vision-card,
.agenda-mini,
.project-card,
.news-card,
.contact-card,
.map-card,
.detail-card{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}

.vision-card{
  border-radius:26px;
  padding:24px;
}

.icon-box{
  width:54px;height:54px;
  border-radius:16px;
  background:var(--red-soft);
  display:grid;place-items:center;
  color:var(--red-dark);
  font-weight:900;
  margin-bottom:18px;
}

.vision-card h3{margin:0 0 10px;font-size:1.2rem}
.vision-card p{margin:0;color:var(--text-soft);line-height:1.75}

.manifesto-card{
  margin-top:24px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:32px;
  box-shadow:var(--shadow);
  padding:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.manifesto-copy small{
  display:block;
  color:var(--red-dark);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:8px;
}

.manifesto-copy h3{
  margin:0;
  font-size:clamp(1.4rem,3vw,2.3rem);
  line-height:1.15;
  letter-spacing:-.04em;
  max-width:22ch;
}

.manifesto-btn{white-space:nowrap}

.leader-layout{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:22px;
  align-items:start;
}

.leader-photo-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.leader-photo-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.leader-info{display:grid;gap:18px}

.leader-top-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow-soft);
  padding:26px;
}

.leader-top-card small{
  color:var(--red-dark);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.leader-top-card h3{
  margin:12px 0;
  font-size:clamp(1.4rem,3vw,2.2rem);
  line-height:1.12;
  letter-spacing:-.04em;
}

.leader-top-card p{margin:0;color:var(--text-soft);line-height:1.8}

.leader-detail-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.detail-card{
  border-radius:24px;
  padding:22px;
}

.detail-card span{
  display:block;
  color:var(--red-dark);
  font-weight:800;
  font-size:.84rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:10px;
}

.detail-card h4{margin:0 0 10px;font-size:1.1rem}
.detail-card p{margin:0;color:var(--text-soft);line-height:1.75}

.agenda-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:20px;
}

.agenda-feature{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  box-shadow:var(--shadow);
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1fr;
}

.agenda-image{
  min-height:360px;
  background-size:cover;
  background-position:center;
}

.agenda-body{
  padding:26px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.agenda-body small{
  color:var(--red-dark);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.agenda-body h3{
  margin:12px 0;
  font-size:clamp(1.5rem,3vw,2.35rem);
  line-height:1.12;
  letter-spacing:-.04em;
}

.agenda-body p{margin:0 0 14px;color:var(--text-soft);line-height:1.8}
.agenda-body a{font-weight:800;color:var(--red-dark)}

.agenda-side{
  display:grid;
  gap:16px;
}

.agenda-mini{
  border-radius:24px;
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.agenda-mini span{
  color:var(--red-dark);
  font-weight:800;
  font-size:.84rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:10px;
}
.agenda-mini h4{margin:0;font-size:1.12rem;line-height:1.55}

.project-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:22px;
}

.tab-btn,
.filter-btn{
  min-height:46px;
  padding:0 18px;
  border:none;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--text-soft);
  font-weight:700;
  transition:all var(--transition);
}

.tab-btn.active,
.filter-btn.active{
  background:var(--red);
  color:#fff;
  border-color:var(--red);
  box-shadow:0 14px 30px rgba(213,21,33,.16);
}

.tab-panel{display:none}
.tab-panel.active{display:block;animation:fade .4s ease}

.project-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.project-card{
  border-radius:26px;
  overflow:hidden;
}

.project-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-bottom:1px solid var(--line);
}

.project-card-body{padding:22px}
.project-card-body small{
  color:var(--red-dark);
  font-weight:800;
  font-size:.84rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.project-card-body h3{
  margin:10px 0;
  font-size:1.17rem;
  line-height:1.5;
}
.project-card-body p{margin:0;color:var(--text-soft);line-height:1.75}

.wide-political-banner{
  margin-top:24px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:32px;
  box-shadow:var(--shadow);
  overflow:hidden;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  align-items:center;
}

.wide-banner-image{
  min-height:280px;
  background:linear-gradient(135deg,#fff2f3,#fff);
  display:grid;
  place-items:center;
  padding:20px;
}

.wide-banner-image img{
  max-height:240px;
  object-fit:contain;
}

.wide-banner-copy{padding:28px}
.wide-banner-copy small{
  color:var(--red-dark);
  font-weight:800;
  font-size:.84rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.wide-banner-copy h3{
  margin:12px 0;
  font-size:clamp(1.6rem,3vw,2.5rem);
  line-height:1.12;
  letter-spacing:-.04em;
}
.wide-banner-copy p{margin:0;color:var(--text-soft);line-height:1.8}

.news-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:22px;
  flex-wrap:wrap;
}

.filter-group{display:flex;flex-wrap:wrap;gap:10px}

.search-input{
  min-height:48px;
  min-width:min(100%,320px);
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  padding:0 18px;
  outline:none;
  box-shadow:var(--shadow-soft);
}

.news-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.news-card{
  border-radius:26px;
  overflow:hidden;
}

.news-card.hidden{display:none}

.news-card img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-bottom:1px solid var(--line);
}

.news-card-body{padding:22px}
.news-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:14px;
  color:var(--text-soft);
  font-size:.88rem;
}

.news-meta span{
  display:inline-flex;
  min-height:28px;
  align-items:center;
  padding:0 10px;
  border-radius:999px;
  background:var(--red-soft);
  color:var(--red-dark);
  font-weight:800;
}

.news-card h3{
  margin:0 0 10px;
  font-size:1.16rem;
  line-height:1.5;
}

.news-card p{margin:0 0 14px;color:var(--text-soft);line-height:1.75}
.news-card a{font-weight:800;color:var(--red-dark)}

.join-wrap{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:34px;
  box-shadow:var(--shadow);
  padding:30px;
}

.join-copy h2{
  margin:14px 0 12px;
  font-size:clamp(2rem,4vw,3.3rem);
  line-height:1;
  letter-spacing:-.05em;
  max-width:12ch;
}
.join-copy p{margin:0;color:var(--text-soft);line-height:1.8}

.join-form{display:grid;gap:16px}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.join-form label{display:grid;gap:8px}
.join-form span{color:var(--text-soft)}
.join-form input,
.join-form textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:18px;
  padding:15px 16px;
  outline:none;
  background:#fff;
}
.full-btn{width:100%}

.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:20px;
}

.contact-card,
.map-card{
  border-radius:30px;
  padding:28px;
}

.contact-card h3{
  margin:0 0 14px;
  font-size:1.55rem;
}
.contact-card ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:12px;
}
.contact-card li{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px 16px;
  line-height:1.7;
  color:var(--text-soft);
}
.social-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}
.social-row a{
  display:inline-flex;
  min-height:38px;
  align-items:center;
  padding:0 14px;
  border-radius:999px;
  background:#fff2f3;
  color:var(--red-dark);
  font-weight:700;
}

.map-card{
  position:relative;
  overflow:hidden;
  min-height:380px;
}

.map-pattern{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='600' viewBox='0 0 800 600'><rect width='800' height='600' fill='%23f5f6f8'/><g stroke='%23d5d9df' stroke-width='1' fill='none'><path d='M0 60h800'/><path d='M0 120h800'/><path d='M0 180h800'/><path d='M0 240h800'/><path d='M0 300h800'/><path d='M0 360h800'/><path d='M0 420h800'/><path d='M0 480h800'/><path d='M0 540h800'/><path d='M80 0v600'/><path d='M160 0v600'/><path d='M240 0v600'/><path d='M320 0v600'/><path d='M400 0v600'/><path d='M480 0v600'/><path d='M560 0v600'/><path d='M640 0v600'/><path d='M720 0v600'/></g><circle cx='470' cy='290' r='11' fill='%23d51521'/></svg>") center/cover no-repeat;
}

.map-content{
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  background:rgba(255,255,255,.95);
  border:1px solid rgba(255,255,255,.94);
  border-radius:22px;
  padding:22px;
  box-shadow:var(--shadow);
}

.map-content h3{margin:0 0 8px}
.map-content p{margin:0;color:var(--text-soft);line-height:1.75}

.site-footer{
  padding:28px 0 40px;
  border-top:1px solid var(--line);
  background:#fff;
}

.footer-wrap{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-start;
}

.footer-wrap strong{display:block;margin-bottom:8px}
.footer-wrap p{margin:0;color:var(--text-soft);line-height:1.7}
.footer-links{display:flex;flex-wrap:wrap;gap:16px}
.footer-links a{color:var(--text-soft);font-weight:600}

.toast{
  position:fixed;
  right:18px;
  bottom:18px;
  background:#1f232b;
  color:#fff;
  border-radius:18px;
  padding:14px 16px;
  box-shadow:var(--shadow);
  opacity:0;
  transform:translateY(16px);
  pointer-events:none;
  transition:all var(--transition);
  z-index:60;
}

.toast.show{
  opacity:1;
  transform:translateY(0);
}

@media (max-width: 1180px){
  .hero-content,
  .leader-layout,
  .agenda-grid,
  .join-wrap,
  .contact-grid,
  .wide-political-banner{
    grid-template-columns:1fr;
  }

  .vision-grid,
  .quick-band-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .project-grid,
  .news-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-right{justify-items:start}
}

@media (max-width: 920px){
  .desktop-nav,
  .header-btn{
    display:none;
  }

  .menu-toggle{display:block}

  .hero-content,
  .agenda-feature{
    grid-template-columns:1fr;
  }

  .hero-slide,
  .hero-content{
    min-height:auto;
  }

  .hero-content{padding:42px 0}
  .hero-left h1,
  .hero-left h2{
    font-size:clamp(2.4rem,10vw,4.4rem);
  }

  .hero-stats,
  .leader-detail-grid,
  .form-grid,
  .project-grid,
  .news-grid,
  .vision-grid,
  .quick-band-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .nav-wrap{min-height:76px}
  .brand-logo{width:48px;height:48px;border-radius:16px}
  .hero-slider{border-radius:24px}
  .hero-slide{min-height:unset}
  .hero-content{padding:28px 0}
  .hero-actions .btn{width:100%}
  .slider-arrow{width:46px;height:46px;border-radius:14px}
  .section{padding:74px 0}
  .manifesto-card,
  .join-wrap,
  .contact-card,
  .map-card,
  .agenda-body,
  .hero-panel,
  .quote-box,
  .leader-top-card,
  .detail-card,
  .project-card-body,
  .news-card-body{
    padding:22px;
  }
  .footer-wrap{flex-direction:column}
  .toast{left:16px;right:16px}
}


/* editorial refresh tweaks */
.hero-left h1,.hero-left h2,.section-head h2,.manifesto-copy h3,.leader-top-card h3,.agenda-body h3,.wide-banner-copy h3{
  text-wrap:balance;
}
.news-card h3,.project-card-body h3,.detail-card h4,.agenda-mini h4{
  text-wrap:pretty;
}


/* ==== Responsive/Menu/Slider repair pack ==== */

.mobile-nav-overlay{
  position:fixed;
  inset:0;
  background:rgba(12,16,22,.34);
  opacity:0;
  visibility:hidden;
  transition:opacity var(--transition), visibility var(--transition);
  z-index:58;
}
.mobile-nav-overlay.open{
  opacity:1;
  visibility:visible;
}

.mobile-nav{
  z-index:59;
}

.mobile-nav-head{
  display:none;
}

.mobile-nav-brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.mobile-nav-brand img{
  width:42px;
  height:42px;
  padding:7px;
  border-radius:14px;
  background:#fff;
  border:1px solid var(--line);
}

.mobile-nav-brand strong{
  display:block;
  font-size:.92rem;
}

.mobile-nav-brand small{
  display:block;
  color:var(--text-soft);
  font-size:.78rem;
}

.mobile-nav-close{
  width:40px;
  height:40px;
  border:none;
  border-radius:14px;
  background:var(--bg-soft);
  font-size:1.7rem;
  line-height:1;
}

.form-helper{
  color:var(--text-soft);
  line-height:1.6;
}

.popup{
  position:fixed;
  inset:0;
  display:grid;
  place-items:center;
  background:rgba(12,16,22,.34);
  opacity:0;
  visibility:hidden;
  transition:opacity var(--transition), visibility var(--transition);
  z-index:90;
  padding:18px;
}

.popup.show{
  opacity:1;
  visibility:visible;
}

.popup-box{
  width:min(100%, 420px);
  background:#fff;
  border-radius:26px;
  box-shadow:0 24px 60px rgba(0,0,0,.14);
  padding:24px 18px 18px;
  position:relative;
  text-align:center;
}

.popup-close{
  position:absolute;
  right:10px;
  top:10px;
  width:38px;
  height:38px;
  border:none;
  border-radius:12px;
  background:var(--bg-soft);
  font-size:1.55rem;
}

.popup-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin:0 auto 12px;
  background:var(--red-soft);
  color:var(--red-dark);
  font-size:1.65rem;
  font-weight:900;
}

.popup-box h3{
  margin:0 0 8px;
  font-size:1.35rem;
}

.popup-box p{
  margin:0;
  color:var(--text-soft);
  line-height:1.7;
}

.mobile-bottom-bar{
  position:fixed;
  left:10px;
  right:10px;
  bottom:10px;
  display:none;
  grid-template-columns:repeat(4,1fr);
  gap:6px;
  padding:8px;
  border-radius:20px;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.98);
  box-shadow:0 20px 40px rgba(16,22,30,.12);
  z-index:55;
}

.mobile-bottom-bar a{
  min-height:54px;
  display:grid;
  place-items:center;
  gap:2px;
  border-radius:16px;
  color:var(--text-soft);
  font-weight:700;
  font-size:.75rem;
}

.mobile-bottom-bar span{
  font-size:1rem;
  line-height:1;
}

@media (max-width: 920px){
  .mobile-nav{
    position:fixed;
    top:0;
    right:0;
    width:min(88vw, 360px);
    height:100dvh;
    overflow:auto;
    background:#fff;
    padding:16px;
    gap:10px;
    transform:translateX(100%);
    transition:transform var(--transition);
    box-shadow:-24px 0 50px rgba(0,0,0,.14);
    display:grid !important;
    align-content:start;
  }

  .mobile-nav.open{
    transform:translateX(0);
  }

  .mobile-nav-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:6px;
  }

  .hero{
    padding-top:16px;
  }

  .hero-slider{
    width:min(calc(100% - 24px), 1320px);
    border-radius:24px;
  }

  .hero-slide{
    min-height:auto;
  }

  .hero-content{
    gap:22px;
    padding:34px 0;
  }

  .hero-left h1,
  .hero-left h2{
    font-size:clamp(2.35rem, 9vw, 4.2rem);
    max-width:100%;
  }

  .hero-left p{
    font-size:1rem;
  }

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

  .hero-actions .btn{
    width:100%;
  }

  .hero-stats{
    grid-template-columns:1fr;
    gap:12px;
  }

  .hero-right{
    justify-items:start;
  }

  .hero-panel,
  .quote-box,
  .side-card{
    width:100%;
  }

  .agenda-feature,
  .featured-news,
  .hero-content{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .container{
    width:min(calc(100% - 20px), var(--container));
  }

  .nav-wrap{
    min-height:74px;
    gap:12px;
  }

  .brand{
    gap:10px;
    min-width:0;
    flex:1;
  }

  .brand-logo{
    width:46px;
    height:46px;
    border-radius:16px;
    padding:8px;
  }

  .brand-copy{
    min-width:0;
  }

  .brand-copy strong{
    font-size:.88rem;
    line-height:1.15;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .brand-copy small{
    font-size:.72rem;
    line-height:1.15;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .menu-toggle{
    width:44px;
    height:44px;
    border-radius:14px;
  }

  .hero{
    padding:14px 0 8px;
  }

  .hero-slider{
    border-radius:22px;
  }

  .hero-content{
    padding:24px 0;
    gap:18px;
  }

  .hero-left h1,
  .hero-left h2{
    font-size:clamp(2rem, 9.4vw, 3.1rem);
    line-height:.98;
  }

  .hero-left p,
  .section-head p,
  .leader-top-card p,
  .agenda-body p,
  .news-card p,
  .join-copy p{
    font-size:.97rem;
    line-height:1.72;
  }

  .hero-panel,
  .quote-box,
  .side-card,
  .manifesto-card,
  .join-wrap,
  .contact-card,
  .map-card,
  .agenda-body,
  .leader-top-card,
  .detail-card,
  .project-card-body,
  .news-card-body{
    padding:18px;
  }

  .hero-panel h2,
  .agenda-body h3,
  .wide-banner-copy h3{
    font-size:1.35rem;
    line-height:1.25;
  }

  .hero-panel-list div{
    padding:12px 14px;
    border-radius:16px;
    font-size:.94rem;
  }

  .stat-card{
    padding:16px;
    border-radius:18px;
  }

  .stat-card strong{
    font-size:1.6rem;
  }

  .slider-controls{
    gap:10px;
    padding-top:14px;
  }

  .slider-arrow{
    width:44px;
    height:44px;
    border-radius:14px;
    flex:0 0 44px;
  }

  .slider-dot.active{
    width:28px;
  }

  .quick-band{
    padding-top:10px;
  }

  .quick-item{
    padding:16px;
    border-radius:18px;
  }

  .section{
    padding:68px 0;
  }

  .section-head{
    margin-bottom:22px;
  }

  .section-head h2{
    font-size:clamp(1.7rem, 8vw, 2.45rem);
    line-height:1.05;
  }

  .vision-card,
  .agenda-mini,
  .project-card,
  .news-card,
  .contact-card,
  .map-card,
  .detail-card{
    border-radius:20px;
  }

  .leader-photo-card,
  .leader-top-card,
  .manifesto-card,
  .wide-political-banner{
    border-radius:22px;
  }

  .leader-photo-card img{
    aspect-ratio:4/4.1;
  }

  .project-tabs,
  .filter-group{
    grid-template-columns:1fr 1fr;
    display:grid;
    gap:10px;
  }

  .tab-btn,
  .filter-btn{
    width:100%;
    min-height:42px;
    font-size:.88rem;
    padding:0 12px;
  }

  .project-card img,
  .news-card img{
    height:200px;
  }

  .news-toolbar{
    align-items:stretch;
  }

  .search-input{
    width:100%;
    min-width:0;
  }

  .join-wrap{
    padding:20px;
    border-radius:24px;
  }

  .join-copy h2{
    font-size:clamp(1.8rem, 8vw, 2.7rem);
  }

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

  .join-form input,
  .join-form textarea{
    padding:14px;
    border-radius:16px;
  }

  .social-row{
    grid-template-columns:1fr 1fr;
    display:grid;
    gap:10px;
  }

  .map-card{
    min-height:320px;
  }

  .footer-wrap{
    flex-direction:column;
    gap:12px;
  }

  .site-footer{
    padding-bottom:94px;
  }

  .mobile-bottom-bar{
    display:grid;
  }
}


/* ==== dropdown mobile menu restore ==== */
.mobile-overlay{
  display:none !important;
}

@media (max-width: 920px){
  .mobile-menu{
    position:absolute !important;
    top:100% !important;
    right:12px !important;
    left:12px !important;
    width:auto !important;
    height:auto !important;
    max-height:78vh !important;
    overflow:auto !important;
    background:#fff !important;
    padding:14px !important;
    display:none !important;
    align-content:start !important;
    gap:10px !important;
    transform:none !important;
    box-shadow:0 22px 50px rgba(0,0,0,.12) !important;
    border:1px solid var(--line) !important;
    border-radius:22px !important;
  }

  .mobile-menu.open{
    display:grid !important;
  }

  .mobile-nav-head{
    display:flex !important;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:4px;
  }
}

@media (min-width: 921px){
  .mobile-menu{
    display:none !important;
  }
}


/* ===== FINAL hard fix: mobile/tablet menu must open downward ===== */
@media (max-width: 920px){
  .site-header{
    overflow:visible !important;
  }

  .mobile-menu,
  .dropdown-menu{
    position:absolute !important;
    top:100% !important;
    left:12px !important;
    right:12px !important;
    width:auto !important;
    max-width:none !important;
    height:auto !important;
    max-height:78vh !important;
    overflow:auto !important;
    transform:none !important;
    translate:none !important;
    inset:auto !important;
    display:none !important;
    background:#fff !important;
    padding:14px !important;
    border:1px solid var(--line) !important;
    border-radius:22px !important;
    box-shadow:0 22px 50px rgba(0,0,0,.12) !important;
    z-index:80 !important;
  }

  .mobile-menu.open,
  .dropdown-menu.open{
    display:grid !important;
  }

  .mobile-nav-head{
    display:flex !important;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:4px;
  }
}

@media (min-width: 921px){
  .mobile-menu,
  .dropdown-menu{
    display:none !important;
  }
}


/* final menu hard fix */
@media (max-width: 920px){
  .site-header{
    overflow:visible !important;
  }
  .mobile-menu,
  .dropdown-menu{
    position:absolute !important;
    top:100% !important;
    left:12px !important;
    right:12px !important;
    bottom:auto !important;
    width:auto !important;
    max-width:none !important;
    height:auto !important;
    max-height:78vh !important;
    overflow:auto !important;
    inset:auto !important;
    transform:none !important;
    display:none !important;
    background:#fff !important;
    padding:14px !important;
    border:1px solid var(--line) !important;
    border-radius:22px !important;
    box-shadow:0 22px 50px rgba(0,0,0,.12) !important;
    z-index:80 !important;
  }
  .mobile-menu.open,
  .dropdown-menu.open{
    display:grid !important;
  }
  .mobile-nav-head{
    display:flex !important;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:4px;
  }
}
@media (min-width: 921px){
  .mobile-menu,
  .dropdown-menu{
    display:none !important;
  }
}


/* definitive dropdown menu fix */
@media (max-width: 920px){
  .site-header{overflow:visible !important;}
  #mobileMenu{
    position:absolute !important;
    top:100% !important;
    left:12px !important;
    right:12px !important;
    bottom:auto !important;
    width:auto !important;
    max-width:none !important;
    height:auto !important;
    max-height:78vh !important;
    overflow:auto !important;
    inset:auto !important;
    transform:none !important;
    display:none !important;
    background:#fff !important;
    padding:14px !important;
    border:1px solid var(--line) !important;
    border-radius:22px !important;
    box-shadow:0 22px 50px rgba(0,0,0,.12) !important;
    z-index:80 !important;
    gap:10px !important;
    align-content:start !important;
  }
  #mobileMenu.open{
    display:grid !important;
  }
  .mobile-nav-head{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:12px !important;
    margin-bottom:4px !important;
  }
}
@media (min-width: 921px){
  #mobileMenu{
    display:none !important;
  }
}


/* ===== refined full-width glass dropdown menu for mobile & tablet ===== */
@media (max-width: 920px){
  #mobileMenu{
    top:calc(100% + 8px) !important;
    left:8px !important;
    right:8px !important;
    width:auto !important;
    max-width:none !important;
    max-height:calc(100vh - 96px) !important;
    padding:14px !important;
    border-radius:24px !important;
    background:rgba(255,255,255,.86) !important;
    border:1px solid rgba(255,255,255,.92) !important;
    backdrop-filter:blur(18px) saturate(140%) !important;
    -webkit-backdrop-filter:blur(18px) saturate(140%) !important;
    box-shadow:0 24px 60px rgba(15,22,30,.16) !important;
  }

  #mobileMenu a{
    min-height:50px !important;
    padding:14px 16px !important;
    border-radius:16px !important;
    background:rgba(255,255,255,.74) !important;
    border:1px solid rgba(229,232,238,.95) !important;
    color:var(--ink) !important;
    box-shadow:0 6px 16px rgba(18,25,34,.04) !important;
  }

  #mobileMenu a:hover{
    background:rgba(255,255,255,.96) !important;
  }

  .mobile-nav-head{
    padding:2px 2px 6px !important;
  }

  .mobile-nav-brand img{
    background:rgba(255,255,255,.92) !important;
    box-shadow:0 8px 18px rgba(18,25,34,.06) !important;
  }

  .mobile-nav-close{
    background:rgba(255,255,255,.85) !important;
    border:1px solid rgba(229,232,238,.95) !important;
    box-shadow:0 8px 18px rgba(18,25,34,.05) !important;
  }

  .mobile-highlight{
    background:linear-gradient(180deg, rgba(255,242,243,.92), rgba(255,255,255,.88)) !important;
    border:1px solid rgba(255,215,218,.95) !important;
    backdrop-filter:blur(12px) !important;
    -webkit-backdrop-filter:blur(12px) !important;
    border-radius:18px !important;
    padding:16px !important;
  }
}

@media (max-width: 640px){
  #mobileMenu{
    left:6px !important;
    right:6px !important;
    top:calc(100% + 6px) !important;
    max-height:calc(100vh - 88px) !important;
    padding:12px !important;
    border-radius:22px !important;
  }

  #mobileMenu a{
    min-height:48px !important;
    padding:13px 14px !important;
    font-size:.92rem !important;
  }

  .mobile-nav-brand strong{
    font-size:.88rem !important;
  }

  .mobile-nav-brand small{
    font-size:.74rem !important;
  }

  .mobile-highlight{
    padding:14px !important;
  }
}
