header nav {
  margin-left: auto;
  gap: 34px;
  align-items: center;
}
header nav .nav-contact {
  display: inline-block !important;
  border-bottom: 1px solid currentColor;
}
header nav [aria-current="page"] {
  font-weight: 600;
}
.location-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  background: var(--paper);
  color: var(--ink);
  padding: 75px 8%;
  gap: 7%;
  align-items: center;
  text-align: left;
}
.location-copy .eyebrow {
  font-size: 11px;
}
.location-copy h2 {
  font-size: clamp(36px, 3.5vw, 58px);
  line-height: 1.14;
  letter-spacing: -1px;
  margin: 0 0 25px;
}
.location-copy h2 em {
  font-size: 0.85em;
}
.location-copy address {
  font-style: normal;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 9px;
}
.location-copy .location-note {
  margin: 0 0 28px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 74%, transparent);
}
.location-copy .text-link {
  display: inline-block;
}
.location-section iframe {
  width: 100%;
  height: 350px;
  border: 1px solid var(--line);
  background: #d9ddd2;
}
.site-footer {
  padding: 10px 8% 40px;
  background: var(--ink);
  color: var(--paper);
}
.site-footer footer {
  margin-top: 0;
}
.site-footer footer,
.contact-footer footer {
  display: grid;
  grid-template-columns: 110px 1fr auto auto;
  gap: 25px 45px;
  align-items: center;
}
.footer-social {
  display: flex;
  gap: 22px;
  font-size: 12px;
  white-space: nowrap;
}
.footer-social a {
  border-bottom: 1px solid #ffffff45;
  padding-bottom: 5px;
}
.footer-social a:hover {
  border-color: currentColor;
}
.legal-copy {
  grid-column: 1/-1;
  display: block;
  text-align: center;
  font-size: 12px;
  line-height: 1.9;
  border-top: 1px solid #ffffff30;
  padding-top: 22px;
}
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 60;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  background: #128c46;
  color: white;
  padding: 16px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px #0003;
  font-size: 14px;
  font-weight: 500;
  isolation: isolate;
}
.whatsapp-float svg {
  width: 25px;
  height: 25px;
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #25d366;
  border-radius: inherit;
  animation: whatsapp-pulse 2.3s ease-out infinite;
  z-index: -1;
  pointer-events: none;
}
.whatsapp-float:hover {
  background: #0d7339;
}
.whatsapp-float:focus-visible {
  outline: 3px solid #25d366;
  outline-offset: 5px;
}
@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  75%,
  100% {
    transform: scale(1.18, 1.4);
    opacity: 0;
  }
}
@media (max-width: 760px) {
  header nav,
  .contact-page header nav {
    gap: 14px;
  }
  header nav a,
  .contact-page header nav a {
    font-size: 12px;
  }
  header nav a:nth-child(3) {
    display: none;
  }
  .location-section {
    grid-template-columns: 1fr;
    padding: 55px 7%;
    gap: 32px;
  }
  .location-section iframe {
    height: 310px;
  }
  .site-footer footer,
  .contact-footer footer {
    grid-template-columns: 95px 1fr;
    gap: 24px;
    font-size: 12px;
  }
  .site-footer footer > a:nth-child(3),
  .contact-footer footer > a:nth-child(3) {
    grid-column: 1/-1;
  }
  .footer-social {
    grid-column: 1/-1;
  }
  .site-footer footer .legal-copy,
  .contact-footer footer .legal-copy {
    text-align: left;
    padding-right: 40px;
    padding-bottom: 42px;
    font-size: 12px;
  }
  .whatsapp-float {
    right: 18px;
    bottom: max(18px, env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
    padding: 15px;
  }
  .whatsapp-float span {
    display: none;
  }
  .contact.section-pad {
    padding-bottom: 65px;
  }
}
@media (max-width: 400px) {
  header nav a:nth-child(2),
  .contact-page header nav a:nth-child(2) {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::before {
    animation: none;
  }
}
