/* mattgaugerx — Modern dark site with backstage tokens */
/* Heavy black, easy on the eyes, rich interactivity */

:root {
  --font-display: "Newsreader", "Iowan Old Style", Palatino, serif;
  --font-body: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-whisper: "Courier Prime", "Courier New", Courier, ui-monospace, monospace;
  --bg: #0B0B0B;
  --bg-band: #101010;
  --paper: #E8E4DC;
  --muted: #8E8A82;
  --rule: rgba(232, 228, 220, 0.14);
  --dust: #C4B49A;
  --focus: #E8E4DC;
  --text: #E8E4DC;
  --text-muted: #8E8A82;
  --card-bg: #101010;
  --border: rgba(232, 228, 220, 0.14);
  --mxg-display: var(--font-display);
  --mxg-body: var(--font-body);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--mxg-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 1.125rem;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--dust);
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule, var(--border));
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
  padding: 0;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mxg-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  color: var(--paper, var(--text));
}

.logo-mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--dust);
}

.logo:hover .logo-mark {
  opacity: 0.9;
  filter: brightness(1.15);
}

/* Corner MXG mark — does not replace profile photo */
.rabbit-hole {
  position: fixed;
  left: 18px;
  right: auto;
  bottom: 18px;
  z-index: 90;
  width: 14px;
  height: 14px;
  opacity: 0.28;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.rabbit-hole img,
.rabbit-hole svg {
  width: 100%;
  height: 100%;
  display: block;
}
.rabbit-hole:hover {
  opacity: 0.85;
  transform: scale(1.12);
}

.brand-corner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 44px;
  height: 44px;
  opacity: 0.55;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: auto;
}

.brand-corner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-corner:hover {
  opacity: 0.95;
  transform: scale(1.06);
}

@media (max-width: 640px) {
  .rabbit-hole {
    width: 12px;
    height: 12px;
    left: 12px;
    right: auto;
    bottom: 12px;
    opacity: 0.22;
  }
  .brand-corner {
    width: 36px;
    height: 36px;
    right: 12px;
    bottom: 12px;
    opacity: 0.4;
  }

  .logo-mark {
    width: 24px;
    height: 24px;
  }
}

.nav-drawer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 28px;
  min-width: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-family: var(--mxg-body);
  font-size: 0.9375rem;
  color: var(--muted, var(--text-muted));
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--paper, var(--text));
}

.nav-links a.nav-active {
  color: var(--paper, var(--text));
  border-bottom-color: var(--paper, var(--text));
}

.nav-links-room {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin: -6px -4px -6px auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper, #E8E4DC);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
}

.nav-toggle-bar {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  background: var(--paper, #E8E4DC);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-bar:nth-child(1) { top: 15px; }
.nav-toggle-bar:nth-child(2) { top: 21px; }
.nav-toggle-bar:nth-child(3) { top: 27px; }

nav.is-open .nav-toggle-bar:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

nav.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

nav.is-open .nav-toggle-bar:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.socials a:hover {
  color: var(--dust);
  transform: translateY(-1px);
}

.socials svg {
  width: 18px;
  height: 18px;
}

/* Hero */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
}

.hero .profile-stack {
  --photo: 73px;
  --logo: clamp(120px, 17vw, 180px);
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  margin: 0 auto 48px;
  overflow: hidden;
  border-radius: clamp(12px, 2vw, 22px);
  outline: none;
}

.hero .profile-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  border-radius: clamp(12px, 2vw, 22px);
  z-index: 1;
  filter: saturate(0.92) contrast(1.05);
}

.hero .profile-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(ellipse 28% 38% at 52% 48%, rgba(255, 196, 120, 0.22), transparent 72%);
  transition: opacity 0.35s ease;
}

.hero .profile-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: clamp(12px, 2vw, 22px);
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at 50% 52%, rgba(13, 13, 13, 0.02) 0%, rgba(13, 13, 13, 0.18) 72%, rgba(13, 13, 13, 0.38) 100%);
}

.hero .profile-back {
  transition: filter 0.25s ease;
}

.hero .profile-stack:hover::before,
.hero .profile-stack:focus-within::before {
  opacity: 1;
  animation: tower-glow 2.6s ease-in-out infinite;
}

.hero .profile-stack:hover .profile-back,
.hero .profile-stack:focus-within .profile-back {
  animation: tower-flicker 2.6s ease-in-out infinite;
}

@keyframes tower-flicker {
  0%, 100% { filter: saturate(0.92) contrast(1.05) brightness(1); }
  5% { filter: saturate(1) contrast(1.18) brightness(1.16); }
  8% { filter: saturate(0.88) contrast(1.02) brightness(0.9); }
  13% { filter: saturate(1.05) contrast(1.22) brightness(1.2); }
  18% { filter: saturate(0.94) contrast(1.06) brightness(1.02); }
  32% { filter: saturate(1) contrast(1.14) brightness(1.1); }
  36% { filter: saturate(0.9) contrast(1.01) brightness(0.88); }
  41% { filter: saturate(1.04) contrast(1.18) brightness(1.14); }
  60% { filter: saturate(0.93) contrast(1.05) brightness(1); }
  74% { filter: saturate(0.98) contrast(1.12) brightness(1.08); }
  78% { filter: saturate(0.9) contrast(1.03) brightness(0.93); }
  84% { filter: saturate(1.02) contrast(1.16) brightness(1.12); }
}

@keyframes tower-glow {
  0%, 100% { opacity: 0.35; }
  5% { opacity: 0.85; }
  8% { opacity: 0.2; }
  13% { opacity: 1; }
  18% { opacity: 0.4; }
  32% { opacity: 0.7; }
  36% { opacity: 0.15; }
  41% { opacity: 0.9; }
  60% { opacity: 0.35; }
  74% { opacity: 0.65; }
  78% { opacity: 0.2; }
  84% { opacity: 0.8; }
}

@media (prefers-reduced-motion: reduce) {
  .hero .profile-stack:hover::before,
  .hero .profile-stack:focus-within::before {
    animation: none;
    opacity: 0.45;
  }
  .hero .profile-stack:hover .profile-back,
  .hero .profile-stack:focus-within .profile-back {
    animation: none;
    filter: saturate(1) contrast(1.08) brightness(1.06);
  }
}

.hero .profile-mark {
  position: absolute;
  top: 6%;
  right: 4.5%;
  width: var(--logo);
  height: var(--logo);
  z-index: 4;
  pointer-events: none;
}

.hero .profile-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.hero .profile-photo {
  position: absolute;
  width: var(--photo);
  height: var(--photo);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
  z-index: 4;
  background: #111;
  box-shadow: 0 0 0 2px rgba(13, 13, 13, 0.7), 0 8px 18px rgba(0, 0, 0, 0.45);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero .profile-stack:hover .profile-photo {
  transform: translate(-50%, -50%) scale(1.06);
}

.hero h1 {
  font-family: var(--mxg-display);
  font-size: 3.2rem;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 780px;
  margin: 0 auto 20px;
}

.hero h1 .text-highlight {
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}

.hero h1 .text-highlight:hover {
  color: var(--dust);
  transform: translateY(-2px);
}

/* Subtle gradient accent under the main line for visual interest */
.hero h1::after {
  content: '';
  display: block;
  width: 120px;
  height: 3px;
  margin: 20px auto 0;
  background: var(--paper);
  border-radius: 3px;
  opacity: 0.7;
}

.hero .tagline {
  font-size: 1.35rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
}

.hero .tagline .closer-text {
  transition: color 0.3s ease;
}

.hero .tagline:hover .closer-text {
  color: var(--dust);
}

.cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: var(--mxg-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--paper);
  color: #0B0B0B;
}

.btn-primary:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--dust);
  color: var(--dust);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  font-family: var(--mxg-display);
  font-size: 1.65rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 560px;
}

/* Mission */
.mission {
  background: #0A0A0A;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mission p {
  max-width: 720px;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.mission strong {
  color: var(--text);
  font-weight: 600;
}

.how-grid,
.family-grid,
.map-domain-grid,
.pillar-row {
  display: grid;
  gap: 16px;
}

.how-grid {
  grid-template-columns: repeat(3, 1fr);
}

.family-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.pillar-row {
  grid-template-columns: 1fr 1fr;
  margin: 36px 0 12px;
}

.how-card,
.family-card,
.pillar-card,
.map-domain {
  display: block;
  padding: 22px 22px 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: inherit;
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.how-card h3,
.family-card h3,
.map-domain h3 {
  font-family: var(--mxg-display);
  font-size: 1.12rem;
  margin: 4px 0 8px;
}

.how-card p,
.family-card p,
.pillar-card p,
.map-domain p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.how-card:hover,
.family-card:hover,
.map-domain:hover {
  border-color: var(--dust);
  transform: translateY(-2px);
  color: inherit;
}

.map-page {
  padding-top: 48px;
  max-width: 960px;
}

.map-family {
  margin-top: 40px;
  padding-top: 8px;
}

.map-family h2 {
  font-family: var(--mxg-display);
  font-size: 1.25rem;
  color: var(--dust);
  margin-bottom: 6px;
}

.map-family-blurb {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.map-domain-grid {
  grid-template-columns: repeat(2, 1fr);
}

.map-count {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dust);
}

@media (max-width: 800px) {
  .how-grid,
  .family-grid,
  .pillar-row,
  .map-domain-grid {
    grid-template-columns: 1fr;
  }
}

/* Questions library page */
.questions-page {
  padding-top: 48px;
  padding-bottom: 80px;
  max-width: 800px;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--dust);
}

.questions-page-title {
  font-size: clamp(1.75rem, 4vw, 2.15rem);
  margin-bottom: 12px;
}

.questions-toolbar {
  margin: 36px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.q-search {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--text);
  font-family: var(--mxg-display);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.q-search:focus {
  border-color: var(--dust);
}

.q-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.q-chip {
  appearance: none;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--mxg-display);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.q-chip:hover {
  border-color: var(--dust);
  color: var(--dust);
}

.q-chip.is-active {
  background: var(--paper);
  border-color: transparent;
  color: var(--bg);
}

.q-sort-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.q-sort {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--text);
  font-family: var(--mxg-display);
  font-size: 0.9rem;
}

.q-count {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.questions-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.q-group {
  margin-bottom: 12px;
}

.q-group-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dust);
  margin: 28px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.q-group:first-child .q-group-title {
  margin-top: 8px;
}

.q-group-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.questions-loading,
.questions-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 0;
}

.question-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 28px 24px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.question-card:hover {
  border-color: var(--dust);
  box-shadow: none;
}

.question-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin-bottom: 14px;
}

.question-series {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dust);
}

.question-hook {
  font-family: var(--mxg-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  margin: 0 0 14px;
}

.post-link {
  margin: 0 0 12px;
  font-size: 0.88rem;
}

.post-link a {
  color: var(--dust);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.question-note {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 16px;
}

.question-closer {
  margin: 0;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--dust);
}

/* Encouragement library (was Soft truths) */
.vibe-page,
.encourage-page {
  padding-top: 48px;
  padding-bottom: 80px;
  max-width: 800px;
}

.vibe-page-title,
.encourage-page-title {
  font-size: clamp(1.75rem, 4vw, 2.15rem);
  margin-bottom: 12px;
}

.vibe-card,
.encourage-card {
  border-color: var(--rule);
  background: var(--bg-band);
}

.vibe-card:hover,
.encourage-card:hover {
  border-color: var(--dust);
  box-shadow: none;
}

.vibe-line {
  font-weight: 500;
  letter-spacing: -0.01em;
}

.vibe-body {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 14px;
}

.vibe-closer {
  opacity: 0.95;
}

.vibe-bridge {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.vibe-bridge a {
  color: var(--dust);
  font-weight: 600;
  margin-left: 6px;
}

.vibe-home {
  text-align: center;
  background: var(--bg);
}

.vibe-home .container {
  max-width: 640px;
}

.vibe-home-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dust);
  margin-bottom: 12px;
}

.vibe-footer-closer {
  color: var(--dust);
}

/* Community */
.community-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}

.community-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 2px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.community-links a:hover {
  border-color: var(--dust);
  color: var(--dust);
  transform: scale(1.05);
}

.community-links svg {
  width: 28px;
  height: 28px;
}

/* Footer */
.studio-door {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  opacity: 0.35;
}
.studio-door:hover {
  opacity: 0.9;
  color: var(--dust);
}

footer {
  background: #0A0A0A;
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  text-align: center;
  color: var(--text-muted);
}

.closer {
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 20px;
  font-style: italic;
}

/* Utility */
.gradient-text {
  background: var(--paper);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mouse-reactive {
  position: relative;
  overflow: hidden;
}

.mouse-reactive::after {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
  transition: background-position 0.05s;
}

/* Responsive */
@media (max-width: 900px) {
  .hero .profile-stack {
    --logo: clamp(108px, 22vw, 150px);
    --photo: 64px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.4rem;
  }
  .hero .profile-stack {
    --logo: clamp(96px, 26vw, 132px);
    --photo: 56px;
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .hero .profile-stack {
    --logo: clamp(88px, 30vw, 116px);
    --photo: 50px;
    aspect-ratio: 4 / 3;
  }
}

@media (orientation: landscape) and (max-height: 700px) {
  .hero {
    padding: 56px 0 48px;
  }
  .hero .profile-stack {
    --logo: clamp(96px, 18vh, 140px);
    --photo: 56px;
    width: min(720px, 80vw);
    aspect-ratio: 16 / 9;
  }
}

/* Expert polish: focus states + icon improvements */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.question-card:focus-within {
  border-color: var(--dust);
}

@media (max-width: 800px) {
  .nav-toggle {
    display: block !important;
  }

  .nav-drawer {
    display: none;
    position: absolute;
    top: 100%;
    left: -24px;
    right: -24px;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 4px 24px 18px;
    background: rgba(11, 11, 11, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
  }

  nav.is-open .nav-drawer {
    display: flex;
  }

  .nav-links,
  .nav-links-room,
  .nav-links-studio {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    justify-content: flex-start;
  }

  .nav-links a,
  .nav-links-room a,
  .nav-links-studio a {
    display: block;
    padding: 13px 0;
    font-size: 1.02rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links-room,
  .nav-links-studio {
    border-top: 1px solid var(--border);
    margin-top: 6px;
    padding-top: 6px;
  }

  .nav-drawer .socials {
    padding-top: 16px;
    gap: 18px;
  }

  .truths-nav {
    display: block;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .q-count {
    margin-left: 0;
    width: 100%;
  }
}
