/* Matches mockup inner pages (FAQ, contact, how-it-works): logo mark + company name + tagline */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.nav-logo-mark-svg {
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink, #1a1a18);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.nav-sub {
  font-size: 0.66rem;
  color: var(--sage, #7a8c7e);
  font-weight: 400;
  line-height: 1.35;
  max-width: 22rem;
}
