@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── FOOTER ── */
.hairtc-footer{ background:#0F172A; padding:56px 0 0; font-family:'Inter',sans-serif }
.hf-inner{ max-width:1200px; margin:0 auto; padding:0 24px }

.hf-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,.07)
}

.hf-brand{}
.hf-logo-link{ display:inline-block; margin-bottom:14px }
.hf-logo-img{ height:34px; width:auto; display:block; filter:brightness(10) }
.hf-desc{ font-size:13px; color:#475569; line-height:1.7; max-width:240px }

.hf-col{}
.hf-col-title{
  font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:#334155; margin-bottom:14px
}
.hf-links{ display:flex; flex-direction:column; gap:9px }
.hf-link{ font-size:13px; color:#475569; text-decoration:none; transition:color .15s; display:block }
.hf-link:hover{ color:#60A5FA }

/* Disclaimer bar */
.hf-disclaimer{
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.05)
}
.hf-disclaimer p{
  font-size:11px; color:#334155; line-height:1.7; max-width:900px
}
.hf-disclaimer a{ color:#475569; text-decoration:underline }
.hf-disclaimer a:hover{ color:#60A5FA }

/* Bottom bar */
.hf-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding:18px 0; gap:16px; flex-wrap:wrap
}
.hf-copy{ font-size:12px; color:#334155 }
.hf-bottom-links{ display:flex; align-items:center; gap:8px; flex-wrap:wrap }
.hf-bottom-link{ font-size:12px; color:#334155; text-decoration:none; transition:color .15s }
.hf-bottom-link:hover{ color:#60A5FA }
.hf-bottom-sep{ font-size:12px; color:#1e293b }

/* Hide GP default footer content */
.site-footer .inside-footer{ display:none }
.site-footer .footer-bar{ display:none }
.site-footer{ padding:0!important; background:transparent!important; margin:0!important }

/* ── CONTENT PAGES (About, Privacy, Terms etc.) ── */
.entry-content h2{
  font-family:'Playfair Display',serif;
  font-size:24px; font-weight:700; color:#0F172A;
  margin:36px 0 12px; letter-spacing:-.01em; line-height:1.25
}
.entry-content h2:first-child{ margin-top:0 }
.entry-content p{
  font-size:15px; color:#334155; line-height:1.8;
  margin-bottom:16px; font-family:'Inter',sans-serif
}
.entry-content p em{ color:#64748B; font-style:italic }
.entry-content strong{ font-weight:600; color:#0F172A }
.entry-content a{ color:#2563EB; text-decoration:underline }
.entry-content a:hover{ color:#1D4ED8 }
.entry-content ul, .entry-content ol{
  margin:0 0 16px 20px; font-size:15px; color:#334155; line-height:1.8
}

/* ── RESPONSIVE ── */
@media(max-width:1100px){
  .hf-grid{ grid-template-columns:1fr 1fr 1fr; gap:28px }
  .hf-brand{ grid-column:1/-1 }
  .hf-desc{ max-width:100% }
}
@media(max-width:768px){
  .hf-grid{ grid-template-columns:1fr 1fr; gap:24px; padding-bottom:28px }
  .hf-brand{ grid-column:1/-1 }
  .hf-bottom{ flex-direction:column; align-items:flex-start; gap:8px }
  .hf-bottom-links{ gap:6px }
}
@media(max-width:480px){
  .hf-grid{ grid-template-columns:1fr }
}