.mobile-nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid oklch(0.97 0.018 80 / 0.35);
  border-radius: 999px;
  background: oklch(0.18 0.02 120 / 0.2);
  color: oklch(0.97 0.018 80);
  font-family: "Lora", Georgia, serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.mobile-nav-trigger:focus-visible {
  outline: 3px solid oklch(0.72 0.12 75 / 0.65);
  outline-offset: 3px;
}

.mobile-nav-trigger-icon {
  font-family: Arial, sans-serif;
  font-size: 1.15rem;
  line-height: 1;
}

.mobile-nav-panel {
  background: oklch(0.97 0.018 80 / 0.98);
  border-top: 1px solid oklch(0.86 0.022 78);
  box-shadow: 0 18px 30px oklch(0.18 0.02 120 / 0.16);
  backdrop-filter: blur(16px);
}

.mobile-nav-panel[hidden] {
  display: none;
}

.mobile-nav-inner {
  display: grid;
  gap: 0.25rem;
  padding-top: 0.75rem;
  padding-bottom: 1rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2.8rem;
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid oklch(0.86 0.022 78 / 0.75);
  color: var(--charcoal);
  font-family: "Lora", Georgia, serif;
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
}

.mobile-nav-link span {
  color: var(--amber);
}

.mobile-nav-link:focus-visible {
  outline: 3px solid oklch(0.62 0.13 72 / 0.35);
  outline-offset: -2px;
}

@media (min-width: 64rem) {
  .mobile-nav-trigger,
  .mobile-nav-panel {
    display: none !important;
  }
}
