/* ================================================================
   Hilf Al-Fudul Foundation — Widget Styles v4.0
   Teal #0D3B38 · Gold #C8962B · Cream #F7F3EC
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,400;1,700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --haf-teal:  #0D3B38;
  --haf-mid:   #1D7C6E;
  --haf-gold:  #C8962B;
  --haf-goldl: #E8B84B;
  --haf-cream: #F7F3EC;
  --haf-white: #FFFFFF;
  --haf-dark:  #0A0F0E;
  --haf-gray:  #6B7472;
  --haf-fd: 'Cormorant Garamond', Georgia, serif;
  --haf-fb: 'DM Sans', sans-serif;
  --haf-tr: .35s cubic-bezier(.4,0,.2,1);
  --haf-r:  12px;
}

/* ── Full-width breakout ────────────────────────────────
   Each widget stretches to 100vw regardless of the
   Elementor column/section it lives in.
─────────────────────────────────────────────────────── */
.elementor-widget-haf_hero,
.elementor-widget-haf_visions,
.elementor-widget-haf_activities,
.elementor-widget-haf_stats,
.elementor-widget-haf_donate_cta {
  width:        100vw !important;
  max-width:    100vw !important;
  margin-left:  calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  box-sizing:   border-box;
}
/* Remove Elementor widget's default padding */
.elementor-widget-haf_hero .elementor-widget-container,
.elementor-widget-haf_visions .elementor-widget-container,
.elementor-widget-haf_activities .elementor-widget-container,
.elementor-widget-haf_stats .elementor-widget-container,
.elementor-widget-haf_donate_cta .elementor-widget-container {
  padding: 0 !important;
  margin:  0 !important;
}

/* ── Inner container ────────────────────────────────────*/
.haf-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

/* ── Label pill ─────────────────────────────────────────*/
.haf-label {
  display: inline-block;
  font-family: var(--haf-fb);
  font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--haf-gold);
  padding: 4px 14px;
  border: 1px solid var(--haf-gold);
  border-radius: 100px;
  margin-bottom: 18px;
}

/* ── Buttons ────────────────────────────────────────────*/
.haf-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--haf-fb); font-size: 13px; font-weight: 600; letter-spacing: .06em;
  text-decoration: none; padding: 14px 32px; border-radius: 6px;
  border: 2px solid transparent; transition: var(--haf-tr); cursor: pointer;
}
.haf-btn--gold  { background: var(--haf-gold); color: var(--haf-dark); }
.haf-btn--gold:hover  { background: var(--haf-goldl); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,150,43,.35); }
.haf-btn--ghost { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.haf-btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.haf-btn--white { background: #fff; color: var(--haf-teal); }
.haf-btn--white:hover { background: var(--haf-cream); transform: translateY(-2px); }

/* ================================================================
   HERO
================================================================ */
.haf-hero {
  min-height: 100vh; width: 100%;
  display: flex; align-items: center;
  background: var(--haf-teal); background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.haf-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(13,59,56,.93) 0%,rgba(13,59,56,.7) 55%,rgba(10,15,14,.9) 100%);
}
.haf-hero__deco1 {
  position: absolute; right: -140px; top: 50%; transform: translateY(-50%);
  width: 700px; height: 700px;
  border: 110px solid rgba(200,150,43,.07); border-radius: 50%; pointer-events: none; z-index: 1;
}
.haf-hero__deco2 {
  position: absolute; right: 50px; top: 50%; transform: translateY(-50%);
  width: 440px; height: 440px;
  border: 1px solid rgba(200,150,43,.15); border-radius: 50%; pointer-events: none; z-index: 1;
}
.haf-hero__wrap {
  position: relative; z-index: 2; width: 100%;
  max-width: 1240px; margin: 0 auto; padding: 120px 40px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.haf-hero__tagline {
  font-family: var(--haf-fb); font-size: 10px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--haf-gold);
  padding: 4px 14px; border: 1px solid var(--haf-gold);
  border-radius: 100px; display: inline-block; margin-bottom: 28px;
}
.haf-hero__title {
  font-family: var(--haf-fd); font-size: clamp(56px,7vw,92px);
  line-height: .95; font-weight: 700; color: #fff;
  margin: 0 0 26px; display: flex; flex-direction: column;
}
.haf-hero__title span { color: var(--haf-gold); font-style: italic; }
.haf-hero__sub  { font-family: var(--haf-fb); font-size: 17px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,.72); margin: 0 0 42px; max-width: 420px; }
.haf-hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.haf-hero__social { display: flex; flex-direction: column; gap: 14px; }

.haf-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px; border-radius: 50px; max-width: 300px;
  font-family: var(--haf-fb); font-size: 14px; font-weight: 600;
  text-decoration: none; border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px); transition: var(--haf-tr);
}
.haf-badge svg { width: 20px; height: 20px; flex-shrink: 0; }
.haf-badge--yt { background: rgba(200,0,0,.88); color: #fff; }
.haf-badge--ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.haf-badge--tw { background: rgba(10,10,10,.85); color: #fff; }
.haf-badge:hover { transform: translateX(8px) scale(1.02); box-shadow: 0 8px 28px rgba(0,0,0,.3); }

.haf-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 5px; z-index: 2;
}
.haf-scroll-hint span { display: block; width: 2px; height: 8px; background: rgba(255,255,255,.35); border-radius: 2px; }
.haf-scroll-hint span:nth-child(1) { animation: hafBlink 1.4s ease-in-out infinite; }
.haf-scroll-hint span:nth-child(2) { animation: hafBlink 1.4s ease-in-out .2s infinite; }
.haf-scroll-hint span:nth-child(3) { animation: hafBlink 1.4s ease-in-out .4s infinite; }

/* ================================================================
   VISION / MISSION / VALUES
================================================================ */
.haf-visions { background: var(--haf-cream); padding: 100px 0; width: 100%; }
.haf-visions__intro { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.haf-visions__text  { font-family: var(--haf-fb); font-size: 17px; font-weight: 300; line-height: 1.85; color: var(--haf-gray); margin: 0; }
.haf-visions__grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

.haf-vcard {
  background: #fff; border-radius: var(--haf-r); padding: 40px 36px;
  position: relative; overflow: hidden;
  box-shadow: 0 2px 16px rgba(13,59,56,.06); transition: var(--haf-tr);
}
.haf-vcard:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(13,59,56,.14); }
.haf-vcard__bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--accent, var(--haf-gold));
  transform: scaleX(0); transform-origin: left; transition: var(--haf-tr);
}
.haf-vcard:hover .haf-vcard__bar { transform: scaleX(1); }
.haf-vcard__icon  { font-size: 36px; margin-bottom: 18px; line-height: 1; }
.haf-vcard__title { font-family: var(--haf-fd); font-size: 26px; font-weight: 700; color: var(--haf-teal); margin: 0 0 12px; }
.haf-vcard__text  { font-family: var(--haf-fb); font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--haf-gray); margin: 0; }

/* ================================================================
   ACTIVITIES GRID
================================================================ */
.haf-activities { background: #fff; padding: 100px 0; width: 100%; }

.haf-sec-header { text-align: center; margin-bottom: 52px; }
.haf-sec-title  { font-family: var(--haf-fd); font-size: clamp(36px,4.5vw,58px); font-weight: 700; color: var(--haf-teal); margin: 0; }

.haf-acts-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
}

/* ─── Activity card ───────────────────────────────────── */
.haf-act {
  position: relative;
  border-radius: var(--haf-r);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: var(--haf-tr);
  /* CRITICAL: explicit height so cards are always visible */
  height: 380px;
  min-height: 380px;
  /* flex column to push body to bottom */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.haf-act--featured { height: 380px; }

.haf-act__emoji {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -65%);
  font-size: 64px;
  opacity: .25;
  pointer-events: none;
  transition: var(--haf-tr);
  z-index: 1;
  line-height: 1;
}
.haf-act:hover .haf-act__emoji { opacity: 0; transform: translate(-50%,-75%) scale(.7); }

.haf-act__overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,.82) 100%);
  transition: var(--haf-tr);
}
.haf-act:hover .haf-act__overlay {
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.9) 100%);
}
.haf-act:hover { transform: scale(1.025); box-shadow: 0 24px 60px rgba(0,0,0,.28); }

.haf-act__body {
  position: relative;
  z-index: 3;        /* above overlay */
  padding: 28px;
}
.haf-act__title {
  font-family: var(--haf-fd); font-size: 22px; font-weight: 700;
  color: #fff; margin: 0 0 8px;
  /* Always show title */
  display: block;
}
.haf-act__desc {
  font-family: var(--haf-fb); font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.8); line-height: 1.6; margin: 0 0 14px;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height var(--haf-tr), opacity var(--haf-tr);
}
.haf-act--featured .haf-act__desc,
.haf-act:hover     .haf-act__desc { max-height: 80px; opacity: 1; }

.haf-act__link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--haf-fb); font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--haf-gold); text-decoration: none; transition: var(--haf-tr);
}
.haf-act__link svg { width: 14px; height: 14px; transition: transform var(--haf-tr); }
.haf-act__link:hover svg { transform: translateX(4px); }

/* ================================================================
   STATISTICS
================================================================ */
.haf-stats { background: var(--haf-teal); padding: 80px 0; width: 100%; }
.haf-stats__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.haf-stat { text-align: center; padding: 20px 0; border-right: 1px solid rgba(255,255,255,.1); }
.haf-stat:last-child { border-right: none; }
.haf-stat__num   { font-family: var(--haf-fd); font-size: clamp(48px,5vw,72px); font-weight: 700; color: var(--haf-gold); line-height: 1; margin-bottom: 10px; }
.haf-stat__label { font-family: var(--haf-fb); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); }

/* ================================================================
   DONATION CTA
================================================================ */
.haf-cta {
  position: relative; padding: 110px 0;
  background: var(--haf-teal);
  background-image: linear-gradient(135deg, var(--haf-teal) 0%, #18504B 50%, var(--haf-mid) 100%);
  background-size: cover; background-position: center;
  overflow: hidden; width: 100%;
}
.haf-cta__overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(13,59,56,.9) 0%,rgba(29,124,110,.82) 100%); }
.haf-cta__deco    { position: absolute; top: -120px; right: -120px; width: 480px; height: 480px; border: 80px solid rgba(200,150,43,.1); border-radius: 50%; pointer-events: none; }
.haf-cta__inner   { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.haf-cta__heading { font-family: var(--haf-fd); font-size: clamp(34px,4vw,56px); font-weight: 700; color: #fff; margin: 0 0 14px; }
.haf-cta__sub     { font-family: var(--haf-fb); font-size: 16px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,.72); margin: 0; max-width: 520px; }

/* ── Animations ─────────────────────────────────────────*/
@keyframes hafBlink { 0%,100%{opacity:.2;transform:scaleY(.6)} 50%{opacity:1;transform:scaleY(1)} }

/* ── Responsive ─────────────────────────────────────────*/
@media (max-width: 1024px) {
  .haf-hero__wrap { grid-template-columns: 1fr; padding: 100px 32px 60px; }
  .haf-hero__social { flex-direction: row; flex-wrap: wrap; }
  .haf-visions__grid { grid-template-columns: 1fr 1fr; }
  .haf-acts-grid { grid-template-columns: 1fr 1fr; }
  .haf-act, .haf-act--featured { height: 300px; min-height: 300px; }
  .haf-stats__grid { grid-template-columns: 1fr 1fr; }
  .haf-stat:nth-child(2) { border-right: none; }
}
@media (max-width: 640px) {
  .haf-inner { padding: 0 20px; }
  .haf-visions__grid { grid-template-columns: 1fr; }
  .haf-acts-grid { grid-template-columns: 1fr; }
  .haf-act, .haf-act--featured { height: 280px; min-height: 280px; }
  .haf-stats__grid { grid-template-columns: 1fr 1fr; }
  .haf-cta__inner { flex-direction: column; text-align: center; align-items: center; }
  .haf-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .haf-stat:last-child { border-bottom: none; }
}

/* ================================================================
   HEADER
================================================================ */
.elementor-widget-haf_header {
  width:        100vw !important;
  max-width:    100vw !important;
  margin-left:  calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  box-sizing:   border-box;
}
.elementor-widget-haf_header .elementor-widget-container { padding: 0 !important; margin: 0 !important; }

.haf-header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(13,59,56,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  width: 100%;
}
.haf-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1400px; margin: 0 auto; padding: 0 32px; height: 68px; gap: 16px;
  /* Prevent logo from stretching the header */
  overflow: hidden;
}

/* Logo — strictly constrained so it never breaks the header row */
.haf-header__logo {
  display: flex; align-items: center; text-decoration: none;
  flex-shrink: 0;
  /* hard cap: never taller than the header */
  max-height: 56px;
  overflow: hidden;
}
.haf-header__logo img {
  height: 48px;
  max-height: 48px;
  width: auto;
  max-width: 180px;   /* prevent very wide logos from pushing nav off-screen */
  object-fit: contain;
  display: block;
}
.haf-header__logo-text {
  display: flex; align-items: center; gap: 10px;
}
.haf-header__logo-icon { font-size: 22px; }
.haf-header__logo-text div { display: flex; flex-direction: column; line-height: 1.2; }
.haf-header__logo-text strong { font-family: var(--haf-fd); font-size: 16px; font-weight: 700; color: #fff; }
.haf-header__logo-text span  { font-family: var(--haf-fb); font-size: 9px; font-weight: 600; letter-spacing: .14em; color: var(--haf-gold); text-transform: uppercase; }

/* Nav */
.haf-nav { flex: 1; overflow: visible; }
.haf-nav__list { display: flex; align-items: center; list-style: none; gap: 2px; margin: 0; padding: 0; flex-wrap: nowrap; }
.haf-nav__item { position: relative; }

.haf-nav__link,
.haf-nav__link--btn {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--haf-fb); font-size: 12.5px; font-weight: 500;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  padding: 8px 10px; border-radius: 6px;
  white-space: nowrap;
  background: none; border: none; cursor: pointer;
  transition: color .25s, background .25s;
  line-height: 1;
}
.haf-nav__link:hover,
.haf-nav__link--btn:hover { color: var(--haf-gold); background: rgba(255,255,255,.06); }
.haf-nav__link--active { color: #fff; border-bottom: 2px solid var(--haf-gold); border-radius: 0; }

.haf-nav__chevron { width: 10px; height: 7px; flex-shrink: 0; transition: transform .25s; }
.haf-nav__item--mega:hover .haf-nav__chevron,
.haf-nav__item--mega.haf-open .haf-nav__chevron { transform: rotate(180deg); }

/* Mega dropdown */
.haf-mega {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%);
  background: #0f3330; border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.4);
  min-width: 240px; padding: 8px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s, transform .2s, visibility .2s;
  transform: translateX(-50%) translateY(-6px);
  z-index: 9999;
}
.haf-nav__item--mega:hover .haf-mega,
.haf-nav__item--mega.haf-open .haf-mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.haf-mega__inner { display: flex; gap: 8px; }
.haf-mega__col { min-width: 200px; }
.haf-mega__heading {
  font-family: var(--haf-fb); font-size: 9px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--haf-gold);
  padding: 8px 12px 6px; margin: 0;
}
.haf-mega__list { list-style: none; margin: 0; padding: 0; }
.haf-mega__list li a {
  display: block; padding: 8px 12px; border-radius: 6px;
  font-family: var(--haf-fb); font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,.75); text-decoration: none;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.haf-mega__list li a:hover { background: rgba(200,150,43,.15); color: var(--haf-gold); }

/* Corporate mega: wider */
.haf-mega--corporate { min-width: 280px; }

/* Right side */
.haf-header__right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.haf-header__phone {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.6);
}
.haf-header__phone svg { width: 22px; height: 22px; color: var(--haf-gold); flex-shrink: 0; }
.haf-header__phone div { display: flex; flex-direction: column; line-height: 1.25; }
.haf-header__phone span  { font-size: 9px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.haf-header__phone strong { font-size: 12px; font-weight: 600; color: #fff; }
.haf-header__cta {
  background: var(--haf-gold); color: var(--haf-dark);
  font-family: var(--haf-fb); font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  padding: 9px 18px; border-radius: 6px; white-space: nowrap;
  transition: background .25s, transform .25s;
  flex-shrink: 0;
}
.haf-header__cta:hover { background: var(--haf-goldl); transform: translateY(-1px); }

/* Hamburger */
.haf-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: none; border: none; cursor: pointer;
  flex-shrink: 0; padding: 4px;
}
.haf-hamburger span {
  display: block; height: 2px; border-radius: 2px; background: #fff;
  transition: transform .3s, opacity .3s;
}
.haf-hamburger.haf-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.haf-hamburger.haf-open span:nth-child(2) { opacity: 0; }
.haf-hamburger.haf-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.haf-mobile-menu {
  display: none; background: #0a2a28;
  border-top: 1px solid rgba(255,255,255,.08);
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
}
.haf-mobile-menu.haf-open { max-height: 90vh; overflow-y: auto; }
.haf-mobile-menu__list { list-style: none; margin: 0; padding: 12px 0; }
.haf-mobile-menu__list > li { border-bottom: 1px solid rgba(255,255,255,.06); }
.haf-mobile-menu__list > li > a,
.haf-mobile-menu__toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 24px;
  font-family: var(--haf-fb); font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.85); text-decoration: none;
  background: none; border: none; cursor: pointer; text-align: left;
}
.haf-mobile-menu__toggle svg { width: 12px; height: 8px; transition: transform .25s; }
.haf-mobile-menu__group.haf-open > button svg { transform: rotate(180deg); }
.haf-mobile-menu__group ul {
  list-style: none; margin: 0; padding: 0 0 8px;
  background: rgba(0,0,0,.2);
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.haf-mobile-menu__group.haf-open > ul { max-height: 600px; }
.haf-mobile-menu__group ul li a {
  display: block; padding: 10px 24px 10px 36px;
  font-family: var(--haf-fb); font-size: 13px; color: rgba(255,255,255,.6);
  text-decoration: none; transition: color .2s;
}
.haf-mobile-menu__group ul li a:hover { color: var(--haf-gold); }

/* Responsive nav */
@media (max-width: 1100px) {
  .haf-header__phone { display: none; }
}
@media (max-width: 900px) {
  .haf-nav { display: none; }
  .haf-hamburger { display: flex; }
  .haf-mobile-menu { display: block; }
  .haf-header__inner { height: 60px; padding: 0 20px; }
}

/* ================================================================
   FOOTER
================================================================ */
.elementor-widget-haf_footer {
  width:        100vw !important;
  max-width:    100vw !important;
  margin-left:  calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  box-sizing:   border-box;
}
.elementor-widget-haf_footer .elementor-widget-container { padding: 0 !important; margin: 0 !important; }

.haf-footer { background: var(--haf-dark); border-top: 1px solid rgba(255,255,255,.06); }

.haf-footer__top { padding: 72px 0 56px; }

.haf-footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
}

.haf-footer__logo { height: 52px; width: auto; margin-bottom: 16px; display: block; }
.haf-footer__logo-text {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--haf-fd); font-size: 20px; font-weight: 700;
  color: #fff; margin-bottom: 16px;
}
.haf-footer__logo-text span { font-size: 24px; }

.haf-footer__tagline {
  font-family: var(--haf-fb); font-size: 13px; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,.4); margin: 0 0 24px; max-width: 280px;
}
.haf-footer__social { display: flex; gap: 10px; }
.haf-footer__social-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); text-decoration: none; transition: .25s;
}
.haf-footer__social-icon svg { width: 16px; height: 16px; }
.haf-footer__social-icon:hover { background: var(--haf-gold); color: var(--haf-dark); }

.haf-footer__col-title {
  font-family: var(--haf-fb); font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--haf-gold);
  margin: 0 0 20px;
}
.haf-footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.haf-footer__links a {
  font-family: var(--haf-fb); font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s;
}
.haf-footer__links a:hover { color: #fff; }

.haf-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 24px 0;
}
.haf-footer__bottom-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.haf-footer__bottom-inner span { font-family: var(--haf-fb); font-size: 12px; color: rgba(255,255,255,.28); }
.haf-footer__privacy { font-family: var(--haf-fb); font-size: 12px; color: rgba(255,255,255,.28); text-decoration: none; transition: color .2s; }
.haf-footer__privacy:hover { color: var(--haf-gold); }

@media (max-width: 1024px) {
  .haf-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .haf-footer__grid { grid-template-columns: 1fr; }
  .haf-footer__bottom-inner { flex-direction: column; text-align: center; }
}
