:root{
  --bg-0:#16d120;      /* page */
  --bg-1:#0f3a2a;      /* hero */
  --card:rgba(18,63,46,.62);
  --line:rgba(255,255,255,.10);

  --text:#f3f7f5;
  --muted:rgb(243, 247, 245);

  --brand:#f4b229;     /* CTA */
  --brand-2:#ffcc4d;

  --radius:22px;
  --shadow:0 18px 50px rgba(0,0,0,.35);
  --shadow-soft:0 12px 30px rgba(0,0,0,.22);

  --container:1160px;
}

*{box-sizing:border-box}
html,body{height:100%; max-width:100%; overflow-x:hidden}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 30% 10%, rgba(244,178,41,.16), transparent 55%),
    radial-gradient(900px 600px at 90% 20%, rgba(255,255,255,.08), transparent 50%),
    var(--bg-0);
  line-height:1.55;
}

img{max-width:100%; height:auto; display:block}
a{color:inherit}
.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

.skiplink{
  position:absolute;
  left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skiplink:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  z-index:9999;
}

/* Topbar */
.topbar{
  background: rgba(0,0,0,.25);
  border-bottom:1px solid var(--line);
  font-size:14px;
}
.topbar__grid{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  flex-wrap:wrap;
}
.topbar__muted{color:rgba(255,255,255,.78)}
.topbar__link{color:rgba(255,255,255,.92); text-decoration:none}
.topbar__link:hover{text-decoration:underline}
.topbar__sep{opacity:.6; margin:0 6px}
.topbar__right{display:flex; gap:8px; align-items:center; flex-wrap:wrap}

/* Header */
.header{
  position:static;
  /* position:sticky; */
  top:0;
  z-index:50;
  backdrop-filter:saturate(140%) blur(10px);
  background: rgba(11,43,32,.65);
  border-bottom:1px solid var(--line);
}
.header__grid{
  display:grid;
  grid-template-columns: 1fr auto auto;
  align-items:center;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  gap:12px;
  align-items:center;
  text-decoration:none;
  min-width: 0;
max-width: 100%;
}
.brand__logo{
  width: clamp(220px, 48vw, 560px);
height:auto;
max-width:100%;
flex-shrink:1;
  /*border-radius:14px;
  overflow:hidden;
  /* background: rgba(255,255,255,.06); --> */
  background: none;
  /*border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow-soft);*/
}
.brand__logo img{width:100%; height:100%; object-fit:contain; padding:6px}
.brand__name{font-weight:800; letter-spacing:.2px}
.brand__sub{font-size:15px; color:var(--muted)}

.nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav__link{
  text-decoration:none;
  color:rgba(255,255,255,.82);
  font-weight:650;
  font-size:15px;
  padding:8px 10px;
  border-radius:999px;
}
.nav__link:hover{background:rgba(255,255,255,.06)}
.nav__link.is-active{background:rgba(255,255,255,.10); color:#fff}

.header__cta{display:flex; justify-content:flex-end}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.2px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, opacity .12s ease;
  white-space:nowrap;
}
.btn:focus-visible{
  outline:3px solid rgba(244,178,41,.55);
  outline-offset:3px;
}
.btn:hover{transform: translateY(-1px)}
.btn--primary{
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  color:#1a1a1a;
}
.btn--outline{
  background: transparent;
  border-color: rgba(255,255,255,.34);
  color:#fff;
}
.btn--outline:hover{background:rgba(255,255,255,.06)}
.btn--ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
}
.btn--ghost:hover{background:rgba(255,255,255,.10)}
.btn--soft{
  background: rgba(244,178,41,.14);
  border-color: rgba(244,178,41,.22);
}

/* Page head (for subpages) */
.pagehead{
  padding:34px 0 10px;
  background: linear-gradient(180deg, rgba(15,58,42,.85), rgba(11,43,32,.0));
}
.pagehead h1{
  margin:0 0 8px;
  font-size: clamp(28px, 3vw, 46px);
  letter-spacing:-.4px;
}
.lead{margin:0; color: rgba(255,255,255,.90); font-size: clamp(16px, 1.4vw, 20px)}

/* Hero */
.hero{
  padding:54px 0 26px;
  background: linear-gradient(180deg, rgba(15,58,42,.85), rgba(11,43,32,.0));
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:start;
}
.hero h1{
  font-size: clamp(34px, 4.3vw, 64px);
  line-height:1.05;
  letter-spacing:-.6px;
  margin:0 0 14px;
}
.hero__text{
  color: var(--muted);
  max-width:60ch;
  margin:0 0 22px;
}
.hero__buttons{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 18px}

.bullets{
  margin:18px 0 0;
  padding:0;
  list-style:none;
  /*     
  display:flex;*/
  display:block;
  gap:18px;
  flex-wrap:wrap;
  color: rgba(255,255,255,.85);
}
.bullets li{
  position:relative;
  padding-left:14px;
}
.bullets li::before{
  content:"";
  position:absolute;
  left:0; top:.62em;
  width:6px; height:6px;
  border-radius:99px;
  background: rgba(255,255,255,.60);
}

/* Cards */
.card{
  background: var(--card);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
}
.card h2, .card h3{margin:0 0 10px}
.card p{margin:0 0 14px}
.muted{color:var(--muted)}

.card--contact{
  padding:22px;
  position:sticky;
  top:92px;
}

.contactList{display:grid; gap:10px; margin:14px 0 14px}
.contactRow{
  display:grid;
  grid-template-columns: 92px 1fr;
  gap:12px;
  padding:10px 12px;
  border-radius:16px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}
.contactRow__label{color:rgba(255,255,255,.70); font-weight:750; font-size:14px}
.contactRow__value{color:#fff; text-decoration:none}
.contactRow__value:hover{text-decoration:underline}

.hours{margin-top:10px; display:grid; gap:8px}
.hours__row{display:flex; gap:10px; align-items:flex-start; color:rgba(255,255,255,.86)}
.dot{
  width:7px; height:7px; border-radius:99px;
  background: var(--brand);
  margin-top:.45em;
  flex:0 0 auto;
}
.card__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}

/* Sections */
.section{padding:28px 0 64px}
.section__head{margin-bottom:18px}
.section__head h2{margin:0 0 6px; font-size: clamp(22px, 2.1vw, 34px)}
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.grid2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
}
.link{color: rgba(255,255,255,.92); text-decoration:none; font-weight:800}
.link:hover{text-decoration:underline}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.88);
  font-weight:750;
  margin: 0 10px 10px 0;
}

/* Lists */
.cleanlist{margin:0; padding-left:18px; color: rgba(255,255,255,.88)}
.cleanlist li{margin: 8px 0}

/* Forms */
.form{
  display:grid;
  gap:12px;
}
.field label{
  display:block;
  font-weight:750;
  margin:0 0 6px;
  color: rgba(255,255,255,.92);
}
.field input, .field textarea, .field select{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus{
  border-color: rgba(244,178,41,.45);
  box-shadow: 0 0 0 3px rgba(244,178,41,.18);
}
.field textarea{min-height:120px; resize:vertical}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.18);
  padding:26px 0;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1fr auto auto;
  gap:18px;
  align-items:center;
}
.footer__brand{font-weight:900; margin-bottom:6px}
.footer__links, .footer__contact{display:flex; gap:14px; flex-wrap:wrap}
.footer a{text-decoration:none; color: rgba(255,255,255,.86)}
.footer a:hover{text-decoration:underline}

/* Mobile nav */
.navtoggle{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  cursor:pointer;
}
.navtoggle span{display:block; height:2px; margin:6px 10px; background: rgba(255,255,255,.86); border-radius:99px}
.mobileNav{
  border-top:1px solid var(--line);
  background: rgba(11,43,32,.85);
}
.mobileNav__grid{
  display:grid;
  gap:10px;
  padding:16px 0 18px;
}
.mobileNav a{
  padding:10px 12px;
  border-radius:14px;
  text-decoration:none;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}
.mobileNav__mail{background: rgba(244,178,41,.12); border-color: rgba(244,178,41,.22)}

/* Responsive */
@media (max-width: 980px){
  .header__grid{grid-template-columns: 1fr auto; }
  .nav, .header__cta{display:none}
  .navtoggle{display:inline-block; justify-self:end}
  .hero__grid{grid-template-columns: 1fr; }
  .card--contact{position:relative; top:auto}
  .grid3{grid-template-columns: 1fr; }
  .grid2{grid-template-columns: 1fr; }
  .footer__grid{grid-template-columns: 1fr; }
}


@media (max-width: 980px){
  .brand__logo{width: clamp(240px, 58vw, 420px);}
}

@media (max-width: 600px){
  .container{padding-left:14px; padding-right:14px;}
  .header__grid{grid-template-columns: minmax(0,1fr) auto; gap:10px;}
  .brand__logo{width: clamp(210px, 62vw, 320px);}
  .topbar{font-size:13px;}
  .contactRow{grid-template-columns: 1fr; gap:6px;}
  .btn{max-width:100%;}
}

@media (min-width: 981px){
  .brand__logo{width: clamp(360px, 34vw, 560px);}
}

@media (min-width: 1280px){
  .brand__logo{width: 560px;}
}
