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

.footer-lhag{
  --footer-bg:#7b1b20;
  --footer-text:#fff8ee;
  --footer-line:rgba(255,248,238,.18);

  width:100%;
  overflow:hidden;

  background:var(--footer-bg);
  color:var(--footer-text);

  font-family:"Montserrat",sans-serif;
}

.footer-lhag a{
  color:inherit;
  text-decoration:none;
}


/* =========================
   STAY WITH LITTLE / NEWSLETTER
   Width matched with main content sections
========================= */

.footer-lhag__newsletter{
  --lhag-section-width:min(1250px,74vw);

  width:100%;
  background:#edeae5;
  color:#151515;
  /*border-top:1px solid rgba(123,27,32,.08);*/
}

.footer-lhag__newsletter-inner{
  width:var(--lhag-section-width);
  max-width:var(--lhag-section-width);
  margin:0 auto;
  min-height:100px;
  padding:50px 0 0px;

  display:grid;
  grid-template-columns:minmax(220px,.75fr) minmax(340px,1.15fr) minmax(330px,.95fr);
  gap:48px;
  align-items:center;
}

.footer-lhag__newsletter h3{
  margin:0;
  font-family:"Americana","Lora",serif;
  font-size:30px;
  line-height:1.08;
  font-weight:400;
  letter-spacing:.005em;
  color:#151515;
  text-transform:none;
}

.footer-lhag__newsletter p{
  margin:0;
  max-width:560px;
  font-size:13px;
  line-height:1.58;
  font-weight:400;
  letter-spacing:.012em;
  color:rgba(21,21,21,.66);
}

.footer-lhag__newsletter-form{
  width:100%;
  display:flex;
  align-items:center;
  gap:12px;
}

.footer-lhag__newsletter-label{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.footer-lhag__newsletter input{
  flex:1 1 auto;
  min-width:0;
  width:100%;
  height:42px;
  border:1px solid rgba(123,27,32,.32);
  background: #f4f2ed;
  padding:0 14px;
  font-family:"Montserrat",sans-serif;
  font-size:13px;
  color:#151515;
  outline:none;

  transition:border-color .3s ease, background .3s ease;
}

.footer-lhag__newsletter input:focus{
  border-color:rgba(123,27,32,.72);
  background:rgba(123,27,32,.018);
}

.footer-lhag__newsletter button{
  flex:0 0 126px;
  width:126px;
  height:42px;
  border:1px solid #8b0304;
  background:#8b0304;
  color:#fff8ee;
  cursor:pointer;

  font-family:"Montserrat",sans-serif;
  font-size:11px;
  line-height:1;
  font-weight:700;
  letter-spacing:.11em;
  text-transform:uppercase;

  transition:background .32s ease, color .32s ease, transform .32s ease, border-color .32s ease;
}

.footer-lhag__newsletter button:hover{
  background:transparent;
  color:#8b0304;
  transform:translateY(-1px);
}


.footer-lhag__newsletter-message{
  grid-column:3 / 4;
  min-height:0;
  margin-top:-34px;

  opacity:0;
  transform:translateY(6px);
  pointer-events:none;

  font-family:"Montserrat",sans-serif;
  font-size:12px;
  line-height:1.45;
  font-weight:600;
  letter-spacing:.01em;

  transition:opacity .35s ease, transform .35s ease;
}

.footer-lhag__newsletter-message.is-show{
  opacity:1;
  transform:translateY(0);
}

.footer-lhag__newsletter-message.is-success{
  color:#7b1b20;
}

.footer-lhag__newsletter-message.is-error{
  color:#b34b38;
}

.footer-lhag__newsletter button:disabled{
  opacity:.68;
  cursor:not-allowed;
  transform:none;
}


@media(max-width:1320px){
  .footer-lhag__newsletter{
    --lhag-section-width:min(1120px,82vw);
  }
}

@media(max-width:980px){
  .footer-lhag__newsletter{
    --lhag-section-width:min(760px,88vw);
  }

  .footer-lhag__newsletter-inner{
    min-height:auto;
    padding:36px 0 34px;
    grid-template-columns:1fr;
    gap:18px;
    text-align:center;
    justify-items:center;
  }

  .footer-lhag__newsletter h3{
    font-size:29px;
  }

  .footer-lhag__newsletter p{
    max-width:520px;
  }

  .footer-lhag__newsletter-form{
    max-width:520px;
    margin-top:6px;
  }

  .footer-lhag__newsletter-message{
    grid-column:auto;
    margin-top:-6px;
    text-align:center;
  }
}

@media(max-width:560px){
  .footer-lhag__newsletter{
    --lhag-section-width:100%;
  }

  .footer-lhag__newsletter-inner{
    width:100%;
    max-width:100%;
    padding:34px 22px 32px;
  }

  .footer-lhag__newsletter h3{
    font-size:27px;
  }

  .footer-lhag__newsletter p{
    font-size:13px;
    line-height:1.62;
  }

  .footer-lhag__newsletter-form{
    max-width:100%;
    gap:9px;
  }

  .footer-lhag__newsletter input{
    height:42px;
    padding:0 11px;
  }

  .footer-lhag__newsletter button{
    flex-basis:104px;
    width:104px;
    height:42px;
    font-size:10px;
    letter-spacing:.08em;
  }

  .footer-lhag__newsletter-message{
    width:100%;
    padding:0 4px;
    font-size:12px;
  }
}

/* =========================
   TOP
========================= */

.footer-lhag__top{
  min-height:300px;

  padding:56px 72px 66px;

  display:grid;
  grid-template-columns:minmax(280px,1fr) minmax(560px,34vw);

  column-gap:80px;
  align-items:start;
}

/* LOGO */

.footer-lhag__brand{
  padding-top:2px;
}

.footer-lhag__brand img{
  width:120px;
  max-width:100%;
  height:auto;
  display:block;
}

/* COLUMNS */

.footer-lhag__columns{
  display:grid;
  grid-template-columns:1fr 1fr 1.45fr;

  gap:42px;
  align-items:start;
}

/* FOOTER LINK BLOCKS */

.footer-lhag__col,
.footer-lhag__contact{
  text-align:left;
}

.footer-lhag__col h4{
  margin:0 0 10px;

  font-family:"Americana","Lora",serif;
  font-size:16px;
  line-height:1.18;
  font-weight:400;

  color:var(--footer-text);
}

.footer-lhag__col ul{
  list-style:none;
  margin:0;
  padding:0;
}

.footer-lhag__col li,
.footer-lhag__contact p{
  margin:0 0 7px;

  font-size:14px;
  line-height:1.45;
  font-weight:400;

  color:rgba(255,248,238,.95);
}

/* LINKS */

.footer-lhag__col a,
.footer-lhag__legal a{
  position:relative;
  display:inline-block;

  transition:
    opacity .3s ease,
    transform .3s ease;
}

.footer-lhag__col a::after,
.footer-lhag__legal a::after{
  content:"";

  position:absolute;
  left:0;
  bottom:-3px;

  width:100%;
  height:1px;

  background:currentColor;

  transform:scaleX(0);
  transform-origin:right;

  transition:transform .38s cubic-bezier(.22,.72,.22,1);
}

.footer-lhag__col a:hover,
.footer-lhag__legal a:hover{
  opacity:.78;
}

.footer-lhag__col a:hover::after,
.footer-lhag__legal a:hover::after{
  transform:scaleX(1);
  transform-origin:left;
}

/* =========================
   BOTTOM
========================= */

.footer-lhag__bottom{
  min-height:90px;

  border-top:1px solid var(--footer-line);

  padding:22px 72px;

  display:grid;
  grid-template-columns:1fr auto 1fr;

  align-items:center;
  gap:40px;
}

/* COPYRIGHT */

.footer-lhag__copyright,
.footer-lhag__legal a{
  font-size:12px;
  line-height:1.4;
  font-weight:400;

  color:rgba(255,248,238,.96);
}

/* =========================
   SOCIAL
========================= */

.footer-lhag__social{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}

.footer-lhag__social a{
  width:42px;
  height:42px;

  border:1px solid rgba(255,248,238,.26);
  border-radius:50%;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  color:rgba(255,248,238,.92);

  transition:
    border-color .35s ease,
    background .35s ease,
    transform .35s ease,
    color .35s ease,
    opacity .35s ease;
}

.footer-lhag__social svg{
  width:16px;
  height:16px;

  display:block;

  fill:none;
  stroke:currentColor;
  stroke-width:1.55;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.footer-lhag__social a:hover{
  transform:translateY(-2px);

  border-color:rgba(255,248,238,.65);
  background:rgba(255,248,238,.06);

  color:#fff;
}

/* =========================
   LEGAL
========================= */

.footer-lhag__legal{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  flex-wrap:wrap;

  gap:22px;

  text-align:right;
}

.footer-lhag__legal a{
  white-space:nowrap;
}

/* =========================
   TABLET
========================= */

@media(max-width:1200px){

  .footer-lhag__top{
    grid-template-columns:38% 1fr;
    column-gap:52px;
  }

  .footer-lhag__columns{
    gap:30px;
  }

  .footer-lhag__bottom{
    grid-template-columns:1fr;

    justify-items:center;
    text-align:center;

    gap:18px;
  }

  .footer-lhag__legal{
    justify-content:center;
    text-align:center;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

  .footer-lhag__top{
    min-height:auto;

    padding:54px 28px 46px;

    grid-template-columns:1fr;

    gap:42px;

    text-align:center;
  }

  .footer-lhag__brand{
    display:flex;
    justify-content:center;
  }

  .footer-lhag__brand img{
    width:190px;
  }

  .footer-lhag__columns{
    grid-template-columns:1fr 1fr;

    gap:34px 28px;

    text-align:left;
  }

  .footer-lhag__contact{
    grid-column:1 / -1;
    padding-top:10px;
  }

  .footer-lhag__bottom{
    padding:24px 24px 30px;
  }

  .footer-lhag__social{
    gap:16px;
  }

  .footer-lhag__legal{
    justify-content:center;
    text-align:center;
  }
}


@media(max-width:900px){
  .footer-lhag__columns,
  .footer-lhag__col,
  .footer-lhag__contact{
    text-align:left;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:520px){

  .footer-lhag__top{
    padding:46px 20px 38px;
  }

  .footer-lhag__brand img{
    width:165px;
  }

  .footer-lhag__columns{
    gap:28px 22px;
  }

  .footer-lhag__col h4{
    font-size:18px;
    margin-bottom:10px;
  }

  .footer-lhag__col li,
  .footer-lhag__contact p{
    font-size:14px;
    line-height:1.5;
  }

  .footer-lhag__copyright,
  .footer-lhag__legal a{
    font-size:12px;
    letter-spacing:.04em;
  }

  .footer-lhag__legal{
    gap:10px 16px;
  }

  .footer-lhag__social a{
    width:38px;
    height:38px;
  }

  .footer-lhag__social svg{
    width:15px;
    height:15px;
  }
}

/* =========================================================
   FINAL FOOTER LINK STANDARD
   Normalized links and hover color on red footer background.
   Hover stays warm ivory, never red on red.
========================================================= */
.footer-lhag__top a,
.footer-lhag__bottom a,
.footer-lhag__legal a,
.footer-lhag__social a{
  color:rgba(255,248,238,.92) !important;
  text-decoration:none !important;
}

.footer-lhag__top a:hover,
.footer-lhag__top a:focus-visible,
.footer-lhag__bottom a:hover,
.footer-lhag__bottom a:focus-visible,
.footer-lhag__legal a:hover,
.footer-lhag__legal a:focus-visible{
  color:#fff8ee !important;
  opacity:1 !important;
}

.footer-lhag__col a::after,
.footer-lhag__legal a::after{
  background:rgba(255,248,238,.82) !important;
}

.footer-lhag__social a:hover,
.footer-lhag__social a:focus-visible{
  color:#fff8ee !important;
  border-color:rgba(255,248,238,.68) !important;
  background:rgba(255,248,238,.08) !important;
  opacity:1 !important;
}

.footer-lhag__newsletter a,
.footer-lhag__newsletter a:hover,
.footer-lhag__newsletter a:focus-visible{
  color:#8b0304 !important;
}
