/*
Ekule Premium Frame v1.0.0
Custom global header and footer
*/

:root{
  --ekf-red:#e52636;
  --ekf-red-dark:#c91829;
  --ekf-blue:#9edff4;
  --ekf-blue-soft:#eaf8fd;
  --ekf-navy:#07192e;
  --ekf-navy-2:#0b2945;
  --ekf-ink:#0a192b;
  --ekf-muted:#718090;
  --ekf-line:#dce7ed;
  --ekf-white:#fff;
}

/* Hide common legacy theme / Elementor header and footer containers.
   The custom Ekule frame remains untouched because it has its own classes. */
body.ekf-active #masthead:not(.ekf-header),
body.ekf-active #site-header:not(.ekf-header),
body.ekf-active header.site-header:not(.ekf-header),
body.ekf-active .site-header:not(.ekf-header),
body.ekf-active .elementor-location-header,
body.ekf-active .header-area:not(.ekf-header),
body.ekf-active .main-header:not(.ekf-header),
body.ekf-active .theme-header:not(.ekf-header),
body.ekf-active #colophon:not(.ekf-footer),
body.ekf-active #site-footer:not(.ekf-footer),
body.ekf-active footer.site-footer:not(.ekf-footer),
body.ekf-active .site-footer:not(.ekf-footer),
body.ekf-active .elementor-location-footer,
body.ekf-active .footer-area:not(.ekf-footer),
body.ekf-active .main-footer:not(.ekf-footer),
body.ekf-active .theme-footer:not(.ekf-footer){
  display:none!important;
}

.ekf-header,
.ekf-footer{
  font-family:"Manrope",Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}

.ekf-header *,
.ekf-header *::before,
.ekf-header *::after,
.ekf-footer *,
.ekf-footer *::before,
.ekf-footer *::after{
  box-sizing:border-box;
}

.ekf-header a,
.ekf-footer a{
  text-decoration:none!important;
}

/* =========================================================
   HEADER
========================================================= */

.ekf-header{
  position:sticky;
  top:0;
  z-index:99990;
  width:100%;
  background:transparent;
  pointer-events:none;
}

body.admin-bar .ekf-header{top:32px}

.ekf-header__bar{
  width:100%;
  padding:10px 14px 0;
  transition:padding .35s cubic-bezier(.2,.7,.2,1);
}

.ekf-header__inner{
  position:relative;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  width:min(1260px,100%);
  min-height:72px;
  margin:0 auto;
  padding:0 12px 0 18px;
  border:1px solid rgba(7,25,46,.09);
  border-radius:19px;
  background:rgba(255,255,255,.92);
  box-shadow:0 10px 32px rgba(7,25,46,.065);
  backdrop-filter:blur(18px) saturate(145%);
  -webkit-backdrop-filter:blur(18px) saturate(145%);
  pointer-events:auto;
  transition:
    min-height .35s cubic-bezier(.2,.7,.2,1),
    border-radius .35s ease,
    box-shadow .35s ease,
    background .35s ease,
    transform .35s ease;
}

.ekf-header__inner::before{
  content:"";
  position:absolute;
  left:18px;
  top:-1px;
  width:44px;
  height:2px;
  border-radius:999px;
  background:var(--ekf-red);
}

.ekf-header.is-scrolled .ekf-header__bar{
  padding-top:7px;
}

.ekf-header.is-scrolled .ekf-header__inner{
  min-height:62px;
  border-radius:16px;
  background:rgba(255,255,255,.84);
  box-shadow:0 16px 44px rgba(7,25,46,.12);
}

.ekf-brand{
  display:inline-flex!important;
  align-items:center;
  gap:11px;
  justify-self:start;
  min-width:0;
}

.ekf-brand__logo-wrap{
  display:flex;
  align-items:center;
  height:46px;
}

.ekf-brand__logo{
  display:block!important;
  width:auto!important;
  max-width:145px!important;
  max-height:42px!important;
  object-fit:contain!important;
  transition:transform .35s ease;
}

.ekf-brand:hover .ekf-brand__logo{
  transform:translateY(-1px);
}

.ekf-brand__signal{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--ekf-red);
  box-shadow:0 0 0 5px rgba(229,38,54,.08);
  opacity:0;
  transform:scale(.7);
  transition:opacity .3s ease,transform .3s ease;
}

.ekf-header.is-scrolled .ekf-brand__signal{
  opacity:1;
  transform:scale(1);
}

.ekf-nav{
  display:flex;
  align-items:center;
  justify-self:center;
  gap:5px;
  padding:4px;
  border:1px solid #e4ebef;
  border-radius:999px;
  background:#f8fbfc;
}

.ekf-nav a{
  position:relative;
  display:flex!important;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 17px;
  overflow:hidden;
  border-radius:999px;
  color:#536272!important;
  font-size:11px!important;
  font-weight:700!important;
  line-height:1!important;
  transition:color .25s ease,background .25s ease,transform .25s ease;
}

.ekf-nav a::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:#fff;
  box-shadow:0 5px 16px rgba(7,25,46,.07);
  opacity:0;
  transform:scale(.86);
  transition:opacity .25s ease,transform .25s ease;
}

.ekf-nav a span{
  position:relative;
  z-index:1;
  color:inherit!important;
}

.ekf-nav a:hover,
.ekf-nav a.is-current{
  color:var(--ekf-ink)!important;
}

.ekf-nav a:hover::before,
.ekf-nav a.is-current::before{
  opacity:1;
  transform:scale(1);
}

.ekf-nav a.is-current::after{
  content:"";
  position:absolute;
  z-index:2;
  left:50%;
  bottom:4px;
  width:4px;
  height:4px;
  border-radius:50%;
  background:var(--ekf-red);
  transform:translateX(-50%);
}

.ekf-header__actions{
  display:flex;
  align-items:center;
  justify-self:end;
  gap:13px;
}

.ekf-header__status{
  display:flex;
  align-items:center;
  gap:7px;
  color:#8995a1;
  font-size:8px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.ekf-header__status i{
  display:block;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#29a66a;
  box-shadow:0 0 0 4px rgba(41,166,106,.09);
}

.ekf-contact{
  display:inline-flex!important;
  align-items:center;
  gap:12px;
  min-height:46px;
  padding:0 7px 0 17px;
  border-radius:999px;
  background:var(--ekf-red)!important;
  color:#fff!important;
  font-size:11px!important;
  font-weight:800!important;
  box-shadow:0 12px 28px rgba(229,38,54,.18);
  transition:background .25s ease,transform .3s cubic-bezier(.2,.7,.2,1),box-shadow .25s ease;
}

.ekf-contact span{
  color:#fff!important;
}

.ekf-contact:hover{
  background:var(--ekf-red-dark)!important;
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(229,38,54,.24);
  color:#fff!important;
}

.ekf-monogram{
  display:grid!important;
  place-items:center!important;
  width:32px;
  height:32px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:50%;
  background:rgba(255,255,255,.15);
  color:#fff!important;
  font-style:normal;
  font-size:10px;
  line-height:1;
  font-weight:800;
  letter-spacing:-.04em;
  transition:transform .4s cubic-bezier(.2,.7,.2,1),background .25s ease;
}

.ekf-contact:hover .ekf-monogram{
  transform:rotate(20deg);
  background:rgba(255,255,255,.22);
}

.ekf-menu-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:44px;
  padding:0 12px;
  border:1px solid #dde7ec;
  border-radius:999px;
  background:#fff;
  color:var(--ekf-ink);
  cursor:pointer;
}

.ekf-menu-toggle__label{
  font-size:9px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.ekf-menu-toggle__lines{
  position:relative;
  display:block;
  width:18px;
  height:12px;
}

.ekf-menu-toggle__lines i{
  position:absolute;
  right:0;
  display:block;
  height:1.5px;
  border-radius:999px;
  background:var(--ekf-ink);
  transition:top .28s ease,transform .28s ease,width .28s ease;
}

.ekf-menu-toggle__lines i:first-child{
  top:2px;
  width:18px;
}

.ekf-menu-toggle__lines i:last-child{
  top:9px;
  width:12px;
}

.ekf-header.menu-open .ekf-menu-toggle__lines i:first-child{
  top:6px;
  transform:rotate(45deg);
}

.ekf-header.menu-open .ekf-menu-toggle__lines i:last-child{
  top:6px;
  width:18px;
  transform:rotate(-45deg);
}

/* Mobile overlay */

.ekf-mobile-panel{
  position:fixed;
  z-index:-1;
  inset:0;
  display:none;
  overflow:hidden;
  background:
    radial-gradient(circle at 85% 15%,rgba(158,223,244,.14),transparent 26%),
    var(--ekf-navy);
  color:#fff;
  pointer-events:none;
  opacity:0;
  visibility:hidden;
  transition:opacity .4s ease,visibility .4s ease;
}

body.admin-bar .ekf-mobile-panel{
  top:46px;
}

.ekf-mobile-panel__grid{
  position:absolute;
  inset:0;
  opacity:.09;
  background-image:
    linear-gradient(rgba(255,255,255,.11) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.11) 1px,transparent 1px);
  background-size:54px 54px;
  mask-image:linear-gradient(to bottom,#000,transparent 85%);
}

.ekf-mobile-panel__word{
  position:absolute;
  right:-.08em;
  bottom:-.12em;
  color:rgba(255,255,255,.045);
  font-size:34vw;
  line-height:.75;
  font-weight:800;
  letter-spacing:-.09em;
  pointer-events:none;
}

.ekf-mobile-panel__inner{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  width:min(100% - 36px,620px);
  height:100%;
  margin:0 auto;
  padding:120px 0 34px;
}

.ekf-mobile-panel__meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.ekf-mobile-panel__meta span{
  color:var(--ekf-blue);
  font-size:8px;
  font-weight:800;
  letter-spacing:.17em;
}

.ekf-mobile-panel__meta small{
  color:#879db1;
  font-size:8px;
}

.ekf-mobile-nav{
  display:flex;
  flex-direction:column;
  margin:auto 0;
}

.ekf-mobile-nav a{
  display:grid!important;
  grid-template-columns:42px 1fr;
  align-items:center;
  min-height:83px;
  border-bottom:1px solid rgba(255,255,255,.11);
  color:#fff!important;
  opacity:0;
  transform:translateY(24px);
  transition:
    color .25s ease,
    padding-left .3s ease,
    opacity .55s ease,
    transform .55s cubic-bezier(.2,.7,.2,1);
}

.ekf-mobile-nav a small{
  color:var(--ekf-red);
  font-size:8px;
  font-weight:800;
}

.ekf-mobile-nav a strong{
  color:#fff!important;
  font-size:clamp(27px,7vw,39px);
  line-height:1;
  letter-spacing:-.045em;
  font-weight:600;
}

.ekf-mobile-nav a:hover{
  padding-left:8px;
  color:var(--ekf-blue)!important;
}

.ekf-mobile-nav a:hover strong{
  color:var(--ekf-blue)!important;
}

.ekf-header.menu-open .ekf-mobile-nav a{
  opacity:1;
  transform:none;
}

.ekf-header.menu-open .ekf-mobile-nav a:nth-child(1){transition-delay:.12s}
.ekf-header.menu-open .ekf-mobile-nav a:nth-child(2){transition-delay:.19s}
.ekf-header.menu-open .ekf-mobile-nav a:nth-child(3){transition-delay:.26s}

.ekf-mobile-panel__bottom{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.12);
}

.ekf-mobile-panel__bottom small,
.ekf-mobile-panel__bottom a{
  display:block;
}

.ekf-mobile-panel__bottom small{
  margin-bottom:6px;
  color:#678198;
  font-size:7px;
  font-weight:800;
  letter-spacing:.14em;
}

.ekf-mobile-panel__bottom a{
  color:#fff!important;
  font-size:11px!important;
  font-weight:700!important;
}

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

.ekf-footer{
  position:relative;
  overflow:hidden;
  background:var(--ekf-navy);
  color:#fff;
  isolation:isolate;
}

.ekf-footer-shell{
  width:min(1240px,calc(100% - 46px));
  margin-inline:auto;
}

.ekf-footer__halo{
  position:absolute;
  z-index:-1;
  right:-200px;
  top:-260px;
  width:700px;
  height:700px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(158,223,244,.13),rgba(158,223,244,0) 68%);
}

.ekf-footer__grid-bg{
  position:absolute;
  z-index:-2;
  inset:0;
  opacity:.075;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.14) 1px,transparent 1px);
  background-size:62px 62px;
  mask-image:linear-gradient(to right,transparent 5%,#000 70%,#000 100%);
}

.ekf-footer__top{
  padding:88px 0 67px;
  border-bottom:1px solid rgba(255,255,255,.11);
}

.ekf-footer__top .ekf-footer-shell{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:80px;
  align-items:end;
}

.ekf-footer__eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  color:var(--ekf-blue);
  font-size:8px;
  font-weight:800;
  letter-spacing:.17em;
}

.ekf-footer__eyebrow i{
  width:28px;
  height:1px;
  background:currentColor;
}

.ekf-footer__statement h2{
  max-width:760px;
  margin:0;
  color:#fff;
  font-size:clamp(45px,5.7vw,76px);
  line-height:.95;
  letter-spacing:-.06em;
  font-weight:600;
}

.ekf-footer__statement h2 span{
  display:block;
  color:var(--ekf-blue);
  font-weight:500;
}

.ekf-footer__statement p{
  max-width:610px;
  margin:23px 0 0;
  color:#91a5b7;
  font-size:11px;
  line-height:1.8;
}

.ekf-footer__cta{
  padding:25px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:20px;
  background:rgba(255,255,255,.045);
  backdrop-filter:blur(10px);
}

.ekf-footer__cta small,
.ekf-footer__cta strong{
  display:block;
}

.ekf-footer__cta small{
  margin-bottom:9px;
  color:#6f899f;
  font-size:7px;
  font-weight:800;
  letter-spacing:.15em;
}

.ekf-footer__cta strong{
  margin-bottom:22px;
  color:#fff;
  font-size:20px;
  letter-spacing:-.035em;
}

.ekf-footer__cta > a{
  display:flex!important;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  min-height:49px;
  padding:0 8px 0 16px;
  border-radius:999px;
  background:var(--ekf-red)!important;
  color:#fff!important;
  font-size:10px!important;
  font-weight:800!important;
  transition:background .25s ease,transform .25s ease;
}

.ekf-footer__cta > a span{
  color:#fff!important;
}

.ekf-footer__cta > a:hover{
  background:var(--ekf-red-dark)!important;
  transform:translateY(-2px);
}

.ekf-monogram--light{
  background:#fff!important;
  border-color:#fff!important;
  color:var(--ekf-navy)!important;
}

.ekf-footer__middle{
  padding:55px 0;
  border-bottom:1px solid rgba(255,255,255,.1);
}

.ekf-footer__columns{
  display:grid;
  grid-template-columns:1.45fr .65fr 1fr 1fr;
  gap:54px;
}

.ekf-footer__brand img{
  display:block!important;
  width:auto!important;
  max-width:158px!important;
  max-height:52px!important;
  object-fit:contain!important;
  filter:brightness(0) invert(1);
}

.ekf-footer__brand p{
  max-width:280px;
  margin:20px 0 18px;
  color:#869bad;
  font-size:10px;
  line-height:1.7;
}

.ekf-footer__location{
  display:flex;
  align-items:center;
  gap:9px;
  color:#fff;
  font-size:9px;
  font-weight:700;
}

.ekf-footer__location i{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--ekf-red);
  box-shadow:0 0 0 5px rgba(229,38,54,.08);
}

.ekf-footer__links small,
.ekf-footer__contact > small,
.ekf-footer__hours > small{
  display:block;
  margin-bottom:18px;
  color:#617d94;
  font-size:7px;
  font-weight:800;
  letter-spacing:.16em;
}

.ekf-footer__links a{
  position:relative;
  display:block!important;
  width:max-content;
  margin-bottom:12px;
  padding-bottom:2px;
  color:#d9e1e7!important;
  font-size:10px!important;
  font-weight:650!important;
  transition:color .25s ease,transform .25s ease;
}

.ekf-footer__links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:1px;
  background:var(--ekf-red);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .3s ease;
}

.ekf-footer__links a:hover{
  color:#fff!important;
  transform:translateX(3px);
}

.ekf-footer__links a:hover::after{
  transform:scaleX(1);
}

.ekf-footer__contact a{
  display:block!important;
  margin-bottom:18px;
}

.ekf-footer__contact a span,
.ekf-footer__contact a strong{
  display:block;
}

.ekf-footer__contact a span,
.ekf-footer__hours p span{
  margin-bottom:4px;
  color:#617d94;
  font-size:7px;
  font-weight:700;
}

.ekf-footer__contact a strong,
.ekf-footer__hours p strong{
  color:#e6edf2!important;
  font-size:10px;
  line-height:1.45;
  font-weight:650;
}

.ekf-footer__contact a:hover strong{
  color:var(--ekf-blue)!important;
}

.ekf-footer__hours p{
  margin:0 0 17px;
}

.ekf-footer__hours p span,
.ekf-footer__hours p strong{
  display:block;
}

.ekf-footer__bottom{
  padding:19px 0 22px;
}

.ekf-footer__bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  color:#60778b;
  font-size:8px;
}

.ekf-footer__signature{
  display:flex;
  align-items:center;
  gap:8px;
  color:#8298aa;
  font-weight:700;
  letter-spacing:.07em;
}

.ekf-footer__signature i{
  width:22px;
  height:1px;
  background:var(--ekf-red);
}

.ekf-footer__big-e{
  position:absolute;
  z-index:-1;
  right:-.07em;
  bottom:-.22em;
  color:rgba(255,255,255,.025);
  font-size:460px;
  line-height:.8;
  font-weight:800;
  letter-spacing:-.1em;
  pointer-events:none;
}

/* Footer reveal */
[data-ekf-footer-reveal]{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .75s ease,transform .75s cubic-bezier(.2,.7,.2,1);
}

[data-ekf-footer-reveal].is-visible{
  opacity:1;
  transform:none;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:980px){
  .ekf-header__status{display:none}

  .ekf-footer__columns{
    grid-template-columns:1.2fr .8fr 1fr;
  }

  .ekf-footer__hours{
    grid-column:1 / -1;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.1);
  }

  .ekf-footer__hours > small{
    grid-column:1 / -1;
    margin-bottom:0;
  }
}

@media (max-width:760px){
  body.admin-bar .ekf-header{top:46px}

  .ekf-header__bar{
    padding:7px 8px 0;
  }

  .ekf-header__inner{
    grid-template-columns:1fr auto;
    min-height:62px;
    padding:0 7px 0 13px;
    border-radius:16px;
  }

  .ekf-header__inner::before{
    left:13px;
    width:34px;
  }

  .ekf-brand__logo-wrap{height:40px}

  .ekf-brand__logo{
    max-width:123px!important;
    max-height:37px!important;
  }

  .ekf-nav,
  .ekf-contact{
    display:none!important;
  }

  .ekf-menu-toggle{
    display:flex;
  }

  .ekf-mobile-panel{
    display:block;
  }

  .ekf-header.menu-open .ekf-mobile-panel{
    z-index:-1;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }

  body.ekf-menu-open{
    overflow:hidden!important;
  }

  .ekf-footer__top{
    padding:68px 0 54px;
  }

  .ekf-footer__top .ekf-footer-shell{
    grid-template-columns:1fr;
    gap:38px;
  }

  .ekf-footer__statement h2{
    font-size:clamp(43px,12vw,62px);
  }

  .ekf-footer__statement p{
    font-size:10px;
  }

  .ekf-footer__cta{
    max-width:440px;
  }

  .ekf-footer__columns{
    grid-template-columns:1fr 1fr;
    gap:38px 24px;
  }

  .ekf-footer__brand{
    grid-column:1 / -1;
    padding-bottom:25px;
    border-bottom:1px solid rgba(255,255,255,.1);
  }

  .ekf-footer__hours{
    grid-template-columns:1fr 1fr;
  }

  .ekf-footer__big-e{
    right:-.15em;
    font-size:300px;
  }
}

@media (max-width:520px){
  .ekf-mobile-panel__inner{
    width:calc(100% - 28px);
    padding-top:100px;
  }

  .ekf-mobile-panel__meta{
    align-items:flex-start;
    flex-direction:column;
    gap:7px;
  }

  .ekf-mobile-nav a{
    min-height:76px;
  }

  .ekf-mobile-nav a strong{
    font-size:31px;
  }

  .ekf-mobile-panel__bottom{
    grid-template-columns:1fr;
    gap:13px;
  }

  .ekf-footer-shell{
    width:calc(100% - 28px);
  }

  .ekf-footer__top{
    padding-top:61px;
  }

  .ekf-footer__statement h2{
    font-size:42px;
  }

  .ekf-footer__columns{
    grid-template-columns:1fr;
  }

  .ekf-footer__brand,
  .ekf-footer__hours{
    grid-column:auto;
  }

  .ekf-footer__links,
  .ekf-footer__contact,
  .ekf-footer__hours{
    padding-top:24px;
    border-top:1px solid rgba(255,255,255,.1);
  }

  .ekf-footer__hours{
    display:block;
  }

  .ekf-footer__bottom-inner{
    align-items:flex-start;
    flex-direction:column;
    gap:10px;
  }
}
