/* Mobile navigation */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--brown);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }

.mobile-close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 2rem;
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.mobile-close:hover { color: var(--white); }

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  list-style: none;
  padding: 0; margin: 0;
}
.mobile-nav ul li a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
}
.mobile-nav ul li a:hover { color: var(--sage); }
.mobile-cta {
  background: var(--sage) !important;
  color: var(--brown) !important;
  padding: 12px 32px !important;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
}
