/* Canonical footer shared by every page. */
.site-footer {
  position: relative;
  height: auto;
  margin: 0;
  padding: 88px 0 24px;
  overflow: visible;
  background: #f7f3ea;
  color: #53615d;
}

.site-footer .container {
  position: relative;
  z-index: 1;
  width: min(100%, 1440px);
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 32px;
}

.footer-decoration {
  position: absolute;
  z-index: 0;
  top: 34px;
  right: 34px;
  width: min(260px, 20vw);
  height: auto;
  opacity: .07;
  pointer-events: none;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(150px, .75fr) minmax(190px, .9fr) minmax(240px, 1fr);
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
}

.footer-brand,
.footer-column {
  position: relative;
  min-width: 0;
  margin: 0;
}

.footer-logo {
  display: block;
  width: min(240px, 100%);
  margin-bottom: 24px;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.site-footer .footer-brand p {
  max-width: 400px;
  margin: 0;
  color: #62706c;
  font-size: 15px;
  line-height: 1.7;
}

.site-footer .footer-column h2 {
  margin: 4px 0 22px;
  color: #203832;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

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

.footer-column li {
  margin: 0 0 10px;
  padding: 0;
}

.site-footer a {
  color: #64716d;
}

.footer-column li a {
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  transition: color .2s ease, transform .2s ease;
}

.footer-column li a:hover,
.footer-column li a:focus-visible {
  color: #185a4e;
  transform: translateX(3px);
}

.footer-contact-block {
  margin-bottom: 25px;
}

.footer-contact-block strong,
.footer-contact-block span,
.footer-contact-block a {
  display: block;
}

.footer-contact-block strong {
  margin-bottom: 5px;
  color: #263d37;
  font-size: 15px;
  font-weight: 600;
}

.footer-contact-block span,
.footer-contact-block a {
  color: #6d7975;
  font-size: 15px;
  line-height: 1.55;
}

.footer-contact-block a:hover {
  color: #185a4e;
}

.site-footer .footer-book {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 18px;
  align-items: center;
  gap: 16px;
  border-radius: 999px;
  background: #185a4e;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background-color .2s ease, transform .2s ease;
}

.site-footer .footer-book:hover {
  background: #103f38;
  color: #fff;
  transform: translateY(-2px);
}

.footer-wordmark {
  margin-top: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(24, 90, 78, .16);
}

.footer-wordmark-text {
  max-width: 100%;
  color: #185a4e;
  font-size: clamp(54px, 7.5vw, 132px);
  font-weight: 500;
  line-height: .84;
  letter-spacing: -.055em;
  overflow-wrap: anywhere;
}

.footer-wordmark-text span {
  display: block;
}

.footer-wordmark-text span:last-child {
  margin-left: clamp(0px, 8vw, 120px);
  color: #829177;
  font-weight: 400;
}

.footer-note {
  margin-top: 42px;
  color: #737e7a;
  font-size: 13px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  margin-top: 28px;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(24, 90, 78, .14);
  color: #687570;
  font-size: 13px;
  line-height: 1.5;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.footer-bottom a {
  color: #53625d;
  transition: color .2s ease;
}

.footer-bottom a:hover {
  color: #185a4e;
}

.site-footer a:focus-visible {
  outline: 3px solid #b99152;
  outline-offset: 3px;
}

@media (max-width: 1199px) {
  .site-footer {
    padding-top: 72px;
  }

  .site-footer .container {
    padding-inline: 28px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 64px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-logo {
    width: 215px;
  }

  .footer-decoration {
    width: min(200px, 22vw);
  }

  .footer-wordmark-text {
    font-size: clamp(52px, 9vw, 100px);
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding-top: 56px;
  }

  .site-footer .container {
    padding-inline: 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 22px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo {
    width: 195px;
  }

  .site-footer .footer-brand p {
    max-width: 100%;
  }

  .footer-decoration {
    display: none;
  }

  .footer-wordmark {
    margin-top: 26px;
    padding-top: 32px;
  }

  .footer-wordmark-text {
    font-size: clamp(42px, 14vw, 72px);
    line-height: .9;
  }

  .footer-wordmark-text span:last-child {
    margin-top: 5px;
    margin-left: 0;
  }

  .footer-note {
    margin-top: 34px;
  }

  .footer-bottom {
    margin-top: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom nav {
    gap: 9px 18px;
  }
}

@media (max-width: 390px) {
  .footer-bottom nav {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Floating WhatsApp Button */
.lh-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}

.lh-whatsapp-float:hover {
  background-color: #20BA5A;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3), 0 4px 8px rgba(0, 0, 0, 0.12);
  color: #fff;
}

.lh-whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@media (max-width: 768px) {
  .lh-whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .lh-whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* Social media icons under brand paragraph */
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(32, 56, 50, 0.05);
  border: 1px solid rgba(32, 56, 50, 0.08);
  color: #53615d;
  font-size: 16px;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}

.footer-social-icon:hover {
  background: #185a4e;
  border-color: #185a4e;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(24, 90, 78, 0.15);
}
