:root{
  --bg:#ffffff;
  --text:#0b0b0b;
  --muted:#6a6a6a;
  --line:#e9e9e9;

  --accent:#ff4a1a;      /* solid */
  --accent2:#ff6a00;     /* outline */
  --shadow: 0 10px 30px rgba(0,0,0,.12);
  --radius: 12px;
  --max: 1180px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: "Poppins", system-ui, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* Container */
.container{
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */


/* =========================
   FOOTER (Pixel perfect)
========================= */

.siteFooter{
  background:#070707;
  color:#fff;
  padding: 46px 0 22px;
  margin-top: 60px;
}

.siteFooter__top{
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.siteFooter__brand{
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .4px;
  margin-left: 10px;
}

.siteFooter__line{
  height: 1px;
  background: rgba(255,255,255,.25);
  margin: 12px 0 34px;
}

.siteFooter__line--bottom{
  margin: 34px 0 18px;
}

/* Grid */
.siteFooter__grid{
  display:grid;
  grid-template-columns: 1.25fr 1.25fr .8fr 1.2fr;
  column-gap: 80px;
  row-gap: 30px;
  align-items:start;
  padding-left: 10px;
}

/* Column titles */
.footCol__title{
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
}

/* Links */
.footLink{
  display:block;
  color: rgba(255,255,255,.78);
  text-decoration:none;
  font-size: 14px;
  line-height: 2.1;
}

.footLink:hover{
  color:#fff;
}

/* Payment row centered */
.footPayRow{
  grid-column: 1 / -1;
  display:flex;
  justify-content:center;
  gap: 18px;
  margin-top: -10px;
}

.payPh{
  width: 70px;
  height: 38px;
  border-radius: 6px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,.85);
}

/* Bottom bar */
.siteFooter__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 16px;
  padding-left: 10px;
}

.footCopy{
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
}

.footBottomLinks{
  display:flex;
  gap: 26px;
  flex-wrap:wrap;
}

.footBottomLink{
  color: rgba(255,255,255,.78);
  text-decoration:none;
  font-size: 14px;
}

.footBottomLink:hover{
  color:#fff;
}

.footSocial{
  display:flex;
  align-items:center;
  gap: 14px;
}

/* Social icons */
.socialIcon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  font-size: 13px;
  font-weight: 700;
  opacity: .95;
}

.socialIcon:hover{
  opacity: 1;
  border-color: rgba(255,255,255,.6);
}

/* Responsive footer */
@media (max-width: 1024px){
  .siteFooter__grid{
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
  }
  .footPayRow{ margin-top: 10px; }
}

@media (max-width: 640px){
  .container{ width: calc(100% - 28px); }
  .mobileNav__inner{ width: calc(100% - 28px); }

  .siteFooter__brand{ font-size: 22px; }
  .siteFooter__grid{ grid-template-columns: 1fr; }
  .footBottomLinks{ gap: 14px; }
}