.site-nav {
  position: fixed;
  top: var(--env-banner-h, 0px);
  left: 0;
  right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 0.5px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}

.site-nav.scrolled {
  background: rgba(0, 0, 0, 0.92);
  border-bottom-color: var(--line, #2a2a2a);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 3vw, 2.75rem);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  width: 176px;
  flex-shrink: 0;
  color: var(--white, #f5f5f5);
  text-decoration: none;
}

.nav-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  min-width: 0;
  gap: clamp(0.95rem, 1.8vw, 1.35rem);
  margin-left: clamp(1.3rem, 3vw, 2.6rem);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--body, sans-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.nav-active {
  color: var(--gold, #c8a870);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.55rem, 1vw, 0.95rem);
  flex-shrink: 0;
}

.nav-cta,
.nav-cta-outline {
  font-family: var(--body, sans-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.nav-cta {
  padding: 9px 17px;
  color: var(--black, #0a0a0a);
  background: var(--white, #f5f5f5);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.nav-cta:hover {
  color: var(--black, #0a0a0a);
  background: var(--gold, #c8a870);
  box-shadow: none;
  transform: translateY(-2px);
}

.nav-cta-outline {
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.nav-cta-outline:hover {
  color: var(--white, #f5f5f5);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold, #c8a870);
  transform: translateY(-2px);
}

.ret-wrap {
  position: relative;
  z-index: 300;
}

.ret-btn {
  height: 64px;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--body, sans-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ret-btn:hover {
  color: var(--gold, #c8a870);
}

.ret-dd {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 300;
  min-width: 190px;
  background: #0d0d0d;
  border: 0.5px solid rgba(255, 255, 255, 0.28);
}

.ret-dd.open {
  display: block;
}

.ret-di {
  display: block;
  width: 100%;
  padding: 12px 18px;
  color: var(--white, #f5f5f5);
  background: transparent;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.12);
  font-family: var(--body, sans-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.055em;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
}

.ret-di:last-child {
  border-bottom: 0;
}

.ret-di:hover {
  color: var(--gold, #c8a870);
  background: #1a1a1a;
}

.nav-ham {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-ham span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white, #f5f5f5);
}

.mob-menu {
  display: none;
  position: fixed;
  inset: var(--env-banner-h, 0px) 0 0;
  z-index: 760;
  padding: clamp(1.25rem, 5vw, 1.75rem);
  flex-direction: column;
  overflow-y: auto;
  background: #000;
}

.mob-menu.open {
  display: flex;
}

.mob-close {
  align-self: flex-end;
  margin: 0 -0.4rem 1.75rem 0;
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white, #f5f5f5);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.mob-actions {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.mob-cta {
  min-height: 48px;
  padding: 0.95rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white, #f5f5f5);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-family: var(--body, sans-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.mob-cta-primary {
  color: var(--black, #0a0a0a);
  background: var(--white, #f5f5f5);
  border-color: var(--white, #f5f5f5);
}

.mob-item {
  display: block;
  padding: 1rem 0;
  color: var(--white, #f5f5f5);
  border-bottom: 0.5px solid var(--line, #2a2a2a);
  font-family: var(--body, sans-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.mob-item:hover,
.mob-item.nav-active {
  color: var(--gold, #c8a870);
}

.mob-section-label {
  margin: 1.25rem 0 0.25rem;
  color: var(--gold, #c8a870);
  font-family: var(--body, sans-serif);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mob-subitem {
  display: block;
  padding: 0.75rem 0;
  color: var(--muted, #a0a0a0);
  border-bottom: 0.5px solid var(--line, #2a2a2a);
  font-family: var(--body, sans-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

a.footer-social-status {
  text-decoration: none;
}

a.footer-social-status:hover {
  color: var(--gold, #c8a870);
}

.footer-social-status {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-instagram,
.footer-whatsapp {
  min-height: 42px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 6px;
  color: #fff;
  font-family: var(--body, sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-instagram {
  background: linear-gradient(115deg, #feda75 0%, #fa7e1e 24%, #d62976 50%, #962fbf 76%, #4f5bd5 100%);
  box-shadow: 0 8px 22px rgba(150, 47, 191, 0.2);
}

.footer-instagram:hover {
  color: #fff;
  filter: saturate(1.08) brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 11px 28px rgba(214, 41, 118, 0.28);
}

.footer-whatsapp {
  background: linear-gradient(115deg, #25d366 0%, #1fbd5b 52%, #128c7e 100%);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.16);
}

.footer-whatsapp:hover {
  color: #fff;
  filter: saturate(1.08) brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 11px 28px rgba(37, 211, 102, 0.24);
}

.footer-instagram svg,
.footer-whatsapp svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

@media (prefers-reduced-motion: reduce) {
  .footer-instagram:hover,
  .footer-whatsapp:hover {
    transform: none;
  }
}

.review-note {
  padding: 0 0 0 1rem;
  border: 0;
  border-left: 1px solid rgba(200, 168, 112, 0.55);
  background: transparent;
}

@media (max-width: 1080px) {
  .nav-inner {
    gap: 0.75rem;
  }

  .nav-links {
    gap: 0.8rem;
    margin-left: 0.7rem;
  }

  .nav-links a,
  .ret-btn {
    font-size: 11px;
    letter-spacing: 0.025em;
  }

  .nav-cta,
  .nav-cta-outline {
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 0.035em;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-actions {
    display: none !important;
  }

  .nav-ham {
    display: flex;
  }

  .nav-logo {
    width: 140px;
  }
}

@media (max-width: 640px) {
  .mob-item {
    padding: 0.85rem 0;
    font-size: 17px;
  }
}
