/* =============================================================
   GREATER LIFE LIMO — FOOTER
   Self-contained. Paste into a Custom HTML block.
   Does not conflict with Neve theme or Additional CSS.
============================================================= */

.glf{
  --glf-gold:  #c9a84c;
  --glf-gold2: #e8cc7a;
  --glf-bg:    #080808;
  --glf-bg2:   #0f0f0f;
  --glf-line:  rgba(255,255,255,.07);
  --glf-text:  rgba(255,255,255,.52);
  --glf-link:  rgba(255,255,255,.64);
  --glf-serif: 'Cormorant Garamond', Georgia, serif;
  --glf-sans:  'Jost', system-ui, sans-serif;

  width: 100vw;
  margin: 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);

  background: var(--glf-bg);
  color: var(--glf-text);
  font-family: var(--glf-sans);
  -webkit-font-smoothing: antialiased;
}

.glf *{ box-sizing: border-box; margin: 0; padding: 0; }

.glf__inner{
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

/* ---- TOP HEADLINE ---- */

.glf__top{
  padding: clamp(56px,7vw,88px) 0 clamp(40px,5vw,56px);
  border-bottom: 1px solid var(--glf-line);
}

.glf__headline{
  font-family: var(--glf-serif);
  font-size: clamp(32px,4.5vw,58px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.90);
  max-width: 22ch;
}

.glf__headline em{
  font-style: italic;
  color: var(--glf-gold2);
}

/* ---- MAIN GRID ---- */

.glf__grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr 1.6fr;
  gap: clamp(32px,4vw,64px);
  padding: clamp(40px,5vw,64px) 0;
  border-bottom: 1px solid var(--glf-line);
}

/* ---- BRAND COL ---- */

.glf__logo{
  display: block;
  max-width: 160px;
  height: auto;
  margin-bottom: 24px;
}

.glf__address{
  font-size: 14px;
  line-height: 1.70;
  color: var(--glf-text);
  margin-bottom: 18px;
}

.glf__country{
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--glf-gold);
  margin-bottom: 4px;
}

.glf__phone{
  display: inline-flex;
  align-items: center;
  font-family: var(--glf-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--glf-gold2) !important;
  text-decoration: none;
  letter-spacing: -.01em;
  transition: color .14s;
}

.glf__phone:hover{ color: var(--glf-gold2) !important; }

/* ---- NAV COLS ---- */

.glf__col-title{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.30);
  margin-bottom: 20px;
}

.glf__list{
  list-style: none;
}

.glf__list li{
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.glf__list li:last-child{ border-bottom: none; }

.glf__list a{
  font-size: 14px;
  color: var(--glf-link);
  text-decoration: none;
  line-height: 1.50;
  transition: color .14s;
}

.glf__list a:hover{ color: rgba(255,255,255,.92); }

/* ---- BOTTOM BAR ---- */

.glf__bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}

.glf__copy{
  font-size: 12px;
  color: rgba(255,255,255,.25);
  letter-spacing: .04em;
}

.glf__social{
  display: flex;
  gap: 8px;
}

.glf__icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.50);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  font-style: normal;
  transition: border-color .14s, color .14s, background .14s;
}

.glf__icon:hover{
  border-color: rgba(201,168,76,.50);
  color: var(--glf-gold2);
  background: rgba(201,168,76,.06);
}

/* ---- RESPONSIVE ---- */

@media (max-width: 980px){
  .glf__grid{
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
  }
}

@media (max-width: 580px){
  .glf__grid{
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .glf__bottom{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}