/* ============================================================
EXECUTIVE HUNTER — LAYOUT
Global layout structure
============================================================ */


/* ============================================================
GLOBAL CONTAINER
============================================================ */

.container{

width:100%;
max-width:1200px;

margin:auto;
padding:0 24px;

}


/* ============================================================
LAYOUT CORE
============================================================ */

section{

width:100%;
min-height:100vh;

padding:140px 0;

display:flex;
align-items:center;

}


/* ============================================================
FOOTER
============================================================ */

.footer{

background:#0b1320;
color:#ffffff;

padding:80px 0 40px;

}

.footer-inner{

display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:40px;

}

.footer-logo{

font-family:"Cormorant Garamond", serif;
font-size:26px;

margin-bottom:16px;

}

.footer-description{

opacity:.7;
line-height:1.6;

max-width:320px;

}

.footer-col h4{

margin-bottom:14px;
font-size:16px;

}

.footer-col a{

display:block;

color:#ffffff;
opacity:.7;

text-decoration:none;

margin-bottom:8px;

}

.footer-col a:hover{

opacity:1;

}

.footer-bottom{

margin-top:60px;

border-top:1px solid rgba(255,255,255,.1);

padding-top:20px;

}

.footer-bottom-inner{

display:flex;
justify-content:space-between;

font-size:14px;
opacity:.6;

}
/* ============================================================
FOOTER SOCIALS (added 26/05/26)
============================================================ */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  transition: color .2s ease, transform .2s ease, background .2s ease;
}
.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: #c9a84c;
  transform: translateY(-2px);
}
.footer-social-link:focus-visible {
  outline: 2px solid rgba(201, 168, 76, .5);
  outline-offset: 2px;
}
