:root{
  --green:#00451d;
  --green2:#006b2e;
  --red:#BB1E10;
  --text:#111827;
  --muted:#475467;
  --line:#e5e7eb;
  --white:#fff;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:#fff;
}
a{text-decoration:none;color:inherit}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:10000;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,.12);
}

.brand-strip{
  height:72px;
  display:grid;
  grid-template-columns:82px minmax(0,1fr) 82px;
  align-items:center;
  padding:5px 6%;
  gap:12px;
  background:#fff;
}

.brand-logo-box{
  display:flex;
  align-items:center;
  justify-content:center;
}

.brand-logo-box img{
  width:54px;
  height:54px;
  object-fit:contain;
}

.logo-placeholder{
  width:50px;
  height:50px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--green2);
  color:#fff;
  font-size:10px;
  font-weight:900;
}
.logo-placeholder.right{
  border-radius:6px;
  background:linear-gradient(135deg,#111,#fff,var(--red),var(--green2));
}

.brand-title{
  text-align:center;
  overflow:hidden;
}

.brand-title h1{
  margin:0;
  color:var(--green);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(24px,3vw,38px);
  line-height:1;
  font-weight:800;
  letter-spacing:.035em;
  white-space:nowrap;
}

/* MENU */
.mainnav{
  position:relative;
  height:52px;
  background:var(--green);
  border-bottom:4px solid var(--red);
  z-index:10001;
}

.nav-wrap{
  width:min(1200px,94%);
  margin:0 auto;
  position:relative;
}

.menu{
  height:52px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:42px;
  margin:0;
  padding:0;
  list-style:none;
}

.menu>li{
  position:relative;
}

.menu>li>a{
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:15px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.02em;
  padding:0 4px;
}

.menu>li>a.active{
  border-bottom:4px solid var(--red);
  margin-bottom:-4px;
}

/* only submenu parents get hover */
.menu>li:not(.has-mega):hover>a{
  background:transparent;
  color:#fff;
}

.has-mega:hover>a{
  color:#fff;
}

.has-mega:hover>a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-4px;
  transform:translateX(-50%);
  border-left:11px solid transparent;
  border-right:11px solid transparent;
  border-bottom:11px solid #fff;
  z-index:20002;
}

/* MEGA MENU */
.mega-menu{
  position:absolute;
  top:52px;
  left:50%;
  transform:translateX(-50%) translateY(8px);
  width:390px;
  background:#fff;
  border-top:5px solid var(--red);
  border-radius:0 0 7px 7px;
  box-shadow:0 22px 55px rgba(0,0,0,.25);
  padding:18px 20px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.16s ease;
  z-index:20000;
}

.business-menu,
.committee-menu{
  width:430px;
}

.has-mega:hover .mega-menu,
.mega-menu:hover{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}

.mega-head{
  display:grid;
  grid-template-columns:48px 1fr;
  gap:14px;
  align-items:start;
  padding-bottom:14px;
  margin-bottom:6px;
  border-bottom:1px solid var(--line);
}

.mega-head>span{
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--green);
  color:#fff;
  font-size:24px;
}

.mega-head h3{
  margin:0;
  color:var(--green);
  font-size:19px;
  font-weight:900;
  text-transform:uppercase;
}

.mega-head h3::after{
  content:"";
  display:block;
  width:34px;
  height:3px;
  background:var(--red);
  margin-top:6px;
}

.mega-head p{
  margin:8px 0 0;
  color:#111;
  font-size:14px;
  line-height:1.35;
}

.mega-row{
  display:grid;
  grid-template-columns:42px 1fr 12px;
  gap:12px;
  align-items:center;
  padding:11px 0;
  border-bottom:1px solid var(--line);
}

.mega-row:last-child{
  border-bottom:0;
}

.mega-row>span{
  width:38px;
  height:38px;
  border-radius:7px;
  display:grid;
  place-items:center;
  background:#eaf3ec;
  color:var(--green);
  font-size:20px;
}

.mega-row strong{
  display:block;
  color:var(--green);
  font-size:14px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:2px;
}

.mega-row em{
  display:block;
  color:#333;
  font-size:12px;
  font-style:normal;
  line-height:1.25;
}

.mega-row b{
  font-size:24px;
  font-weight:400;
}

.mega-row:hover{
  background:#fbfdfb;
}

.mega-row:hover>span{
  background:var(--green);
  color:#fff;
}

/* SLIDER */
.hero-slider{
  position:relative;
  height:500px;
  overflow:hidden;
  background:#111;
  z-index:1;
}

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  visibility:hidden;
  transition:opacity .65s ease;
}

.hero-slide.active{
  opacity:1;
  visibility:visible;
}

.fallback-slide{
  background-image:url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1800&q=80");
}

.hero-shade{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.72),rgba(0,69,29,.35),rgba(0,0,0,.10));
}

.hero-copy{
  position:relative;
  z-index:2;
  width:min(1200px,94%);
  height:100%;
  margin:auto;
  display:flex;
  flex-direction:column;
  justify-content:center;
  color:#fff;
}

.hero-copy h2{
  max-width:650px;
  margin:0 0 18px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(32px,4vw,56px);
  line-height:1.12;
  text-shadow:0 3px 12px rgba(0,0,0,.45);
}

.hero-copy p{
  max-width:620px;
  margin:0 0 24px;
  font-size:18px;
  line-height:1.45;
}

.hero-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero-buttons a{
  background:var(--green2);
  color:#fff;
  padding:13px 22px;
  border-radius:4px;
  font-weight:900;
  font-size:14px;
}

.hero-buttons .outline{
  background:rgba(0,0,0,.28);
  border:1px solid #fff;
}

.slider-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  border:0;
  background:rgba(0,0,0,.55);
  color:#fff;
  font-size:34px;
  cursor:pointer;
  z-index:5;
}
.slider-arrow.left{left:24px}
.slider-arrow.right{right:24px}

.slider-dots{
  position:absolute;
  left:50%;
  bottom:20px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:5;
}
.slider-dots span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#fff;
}
.slider-dots .on{
  background:var(--green2);
  outline:2px solid #fff;
}

/* FOOTER */
.footer{
  background:var(--green);
  color:#fff;
  border-top:4px solid var(--red);
}

.footer-inner{
  width:min(1200px,94%);
  margin:auto;
  display:grid;
  grid-template-columns:1.3fr .8fr 1fr;
  gap:40px;
  padding:32px 0;
}

.footer h3,.footer h4{margin-top:0}
.footer a{display:block;color:#fff;margin:6px 0}
.footer p{font-size:14px;line-height:1.5}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.15);
  text-align:center;
  padding:12px;
  font-size:13px;
}

/* MOBILE */
.menu-toggle{
  display:none;
}

@media(max-width:900px){
  .brand-strip{
    height:62px;
    grid-template-columns:52px 1fr 52px;
    padding:4px 8px;
  }

  .brand-logo-box img,
  .logo-placeholder{
    width:42px;
    height:42px;
  }

  .brand-title h1{
    font-size:clamp(16px,4vw,22px);
    white-space:nowrap;
    letter-spacing:.01em;
  }

  .mainnav{
    height:auto;
  }

  .menu-toggle{
    display:block;
    width:100%;
    border:0;
    background:var(--green);
    color:#fff;
    padding:13px;
    font-weight:900;
    text-transform:uppercase;
  }

  .nav-wrap{
    width:100%;
  }

  .menu{
    display:none;
    height:auto;
    flex-direction:column;
    align-items:stretch;
    gap:0;
  }

  body.menu-open .menu{
    display:flex;
  }

  .menu>li>a{
    height:auto;
    justify-content:flex-start;
    padding:14px 18px;
    border-bottom:1px solid rgba(255,255,255,.15);
  }

  .has-mega:hover>a::after{
    display:none;
  }

  .mega-menu,
  .business-menu,
  .committee-menu{
    position:static;
    width:100%;
    transform:none;
    display:none;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    border-radius:0;
    box-shadow:none;
  }

  .has-mega:hover .mega-menu{
    display:block;
    transform:none;
  }

  .hero-slider{
    height:420px;
  }

  .hero-copy{
    padding:0 18px;
  }

  .hero-copy h2{
    font-size:30px;
  }

  .hero-copy p{
    font-size:15px;
  }

  .slider-arrow{
    display:none;
  }

  .footer-inner{
    grid-template-columns:1fr;
  }
}

/* SLIDER FLOATING ICONS - RESTORED */
.hero-slider{
  overflow:visible !important;
  margin-bottom:78px !important;
}

.slider-quick-links{
  position:absolute;
  left:50%;
  bottom:-68px;
  transform:translateX(-50%);
  width:min(1080px,90%);
  min-height:126px;
  background:#fff;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-radius:6px;
  box-shadow:0 14px 34px rgba(0,0,0,.18);
  z-index:20;
  border-top:4px solid #BB1E10;
  overflow:hidden;
}

.slider-quick-links a{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  text-align:center;
  padding:18px 14px;
  border-right:1px solid #e5e7eb;
  transition:.18s ease;
}

.slider-quick-links a:last-child{
  border-right:0;
}

.slider-quick-links a:hover{
  background:#f6fbf7;
  transform:translateY(-2px);
}

.slider-quick-links span{
  color:#00451d;
  font-size:32px;
  line-height:1;
}

.slider-quick-links strong{
  color:#00451d;
  font-size:15px;
  font-weight:900;
  text-transform:uppercase;
}

.slider-quick-links em{
  color:#475467;
  font-size:12px;
  font-style:normal;
}

.footer{
  margin-top:0 !important;
}

@media(max-width:900px){
  .hero-slider{
    margin-bottom:0 !important;
  }

  .slider-quick-links{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:100%;
    grid-template-columns:repeat(2,1fr);
    border-radius:0;
  }
}

@media(max-width:520px){
  .slider-quick-links{
    grid-template-columns:1fr;
  }

  .slider-quick-links a{
    border-right:0;
    border-bottom:1px solid #e5e7eb;
  }
}
