.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(251, 248, 241, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav.is-scrolled {
  box-shadow: 0 14px 38px rgba(48, 39, 30, 0.08);
}

.nav-container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 13px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 205px;
}

.nav-logo-img {
  width: 44px;
  height: 54px;
  object-fit: contain;
}

.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  color: var(--ink);
}

.nav-wordmark span:first-child {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.34rem;
  font-weight: 600;
}

.nav-wordmark span:last-child {
  color: var(--beige-600);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--beige-100);
  color: var(--ink);
}

.nav-links .nav-cta {
  margin-left: 6px;
  background: var(--ink);
  color: var(--beige-50);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  background: var(--beige-600);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--beige-50);
  align-items: center;
  justify-content: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  content: "";
  transition: all 0.3s ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -6px;
}

.menu-toggle span::after {
  position: absolute;
  top: 6px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.footer {
  background: var(--ink);
  color: rgba(251, 248, 241, 0.72);
  padding: 84px 32px 32px;
}

.ft {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr 0.85fr 1fr 1.05fr;
  gap: 56px;
}

.footer .nav-brand {
  min-width: auto;
}

.footer .nav-wordmark,
.footer .nav-wordmark span:first-child {
  color: var(--beige-50);
}

.footer .nav-wordmark span:last-child {
  color: var(--beige-300);
}

.ft-brand p {
  max-width: 340px;
  margin-top: 22px;
  color: rgba(251, 248, 241, 0.68);
  font-size: 0.95rem;
}

.ft-socials {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}
.fsoc {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(251, 248, 241, 0.3);
  color: var(--beige-50);
  transition: all 0.3s ease;
}
.fsoc svg {
  width: 18px;
  height: 18px;
}
.fsoc:hover {
  transform: translateY(-2px);
  background: var(--beige-600);
}
.fsoc[aria-label="Instagram"]:hover {
  background: #E1306C;
}
.fsoc[aria-label="Facebook"]:hover {
  background: #1877F2;
}
.fsoc[aria-label="WhatsApp"]:hover {
  background: #25D366;
}
.ft-col h5 {
  margin: 0 0 20px;
  color: var(--beige-200);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ft-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ft-col li {
  margin-bottom: 11px;
  color: rgba(251, 248, 241, 0.66);
  font-size: 0.94rem;
}

.ft-col a:hover {
  color: var(--beige-100);
}

.ft-ci {
  margin-bottom: 12px;
  color: rgba(251, 248, 241, 0.68);
  font-size: 0.94rem;
}

.ft-text-link {
  display: inline-flex;
  margin-top: 4px;
  color: var(--beige-200);
  font-size: 0.86rem;
  font-weight: 600;
}

.ft-text-link:hover {
  color: var(--beige-50);
}

.footer .btn-dark {
  margin-top: 14px;
  border-color: rgba(251, 248, 241, 0.24);
  background: var(--beige-100);
  color: var(--ink);
}

.footer .btn-dark:hover {
  background: var(--beige-300);
}

.ft-div {
  width: min(100%, var(--container));
  margin: 60px auto 24px;
  border: 0;
  border-top: 1px solid rgba(251, 248, 241, 0.12);
}

.ft-btm {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(251, 248, 241, 0.48);
  font-size: 0.84rem;
}

.ft-btm a {
  color: rgba(251, 248, 241, 0.72);
}

.ft-btm a:hover {
  color: var(--beige-50);
}
.whatsapp-lead {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1100;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(251, 248, 241, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04); /* subtle glass */
  backdrop-filter: blur(8px);
  box-shadow: var(--soft-shadow);
  transition: all 0.3s ease;
  animation: whatsappPulse 2.5s infinite;
}

.whatsapp-lead svg {
  width: 38px;
  height: 38px;
  transition: transform 0.3s ease;
}

.whatsapp-lead:hover {
  background: var(--beige-600);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

.whatsapp-lead:hover svg {
  transform: scale(1.1);
}

.whatsapp-lead::after {
  content: "Chat on WhatsApp";
  position: absolute;
  right: 85px;
  background: #111;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.whatsapp-lead:hover::after {
  opacity: 1;
  transform: translateX(0);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.08);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@media (max-width: 940px) {
  .nav-container {
    padding: 11px 20px;
  }

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

  .nav-links {
    position: fixed;
    top: 77px;
    left: 20px;
    right: 20px;
    z-index: 1001;
    display: grid;
    gap: 8px;
    padding: 16px;
    background: var(--beige-50);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a,
  .nav-links .nav-cta {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .ft {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }
}

@media (max-width: 620px) {
  .nav-brand {
    min-width: auto;
  }

  .nav-wordmark span:first-child {
    font-size: 1.08rem;
  }

  .nav-wordmark span:last-child {
    font-size: 0.66rem;
  }

  .footer {
    padding: 70px 20px 96px;
  }

  .ft {
    grid-template-columns: 1fr;
  }

  .ft-btm {
    flex-direction: column;
  }

  .whatsapp-lead {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }

  .whatsapp-lead svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-lead::after {
    display: none;
  }
}
