/* ============================================================
   Grey Highway — Main Stylesheet
   Visual benchmark: Linear (linear.app)
   Near-black bg, muted sage accent, typography-forward
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --bg: #0a0a0b;
  --bg-surface: #111113;
  --bg-elevated: #18181b;
  --border: #1e1e22;
  --border-subtle: #161618;
  --text-primary: #e8e8e8;
  --text-secondary: #8a8a8a;
  --text-tertiary: #555558;
  --accent: #7c9a82;
  --accent-light: #a3bfa8;
  --accent-dark: #5a7560;
  --accent-muted: rgba(124, 154, 130, 0.12);
  --accent-glow: rgba(124, 154, 130, 0.06);
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'DM Mono', 'SF Mono', 'Fira Code', monospace;
  --size-xs: 0.75rem;
  --size-sm: 0.875rem;
  --size-base: 1rem;
  --size-lg: 1.125rem;
  --size-xl: 1.25rem;
  --size-2xl: 1.5rem;
  --size-3xl: 2rem;
  --size-4xl: 2.75rem;
  --size-5xl: 3.75rem;
  --size-6xl: 5rem;
  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.65;
  --leading-relaxed: 1.8;
  --tracking-tight: -0.03em;
  --tracking-normal: -0.01em;
  --tracking-wide: 0.08em;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --container-max: 1120px;
  --container-narrow: 780px;
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: var(--size-base);
  font-weight: 400;
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
  color: var(--text-primary);
  background-color: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-light);
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

img, svg {
  display: block;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
}

ul, ol {
  list-style: none;
}

/* --- Utility --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.text-accent {
  color: var(--accent);
}

.mono {
  font-family: var(--font-mono);
  font-size: var(--size-xs);
  font-weight: 400;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- SVG Line Draw --- */
.svg-draw {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: svgDraw 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes svgDraw {
  to {
    stroke-dashoffset: 0;
  }
}

/* --- Shimmer CTA --- */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 40%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.06) 60%,
    transparent 100%
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--size-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(124, 154, 130, 0.2);
}

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

.btn--ghost:hover {
  color: var(--text-primary);
  border-color: var(--text-tertiary);
  transform: translateY(-1px);
}

.btn--large {
  padding: 1rem 2rem;
  font-size: var(--size-base);
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-base);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.logo-mark {
  display: flex;
  align-items: center;
  color: var(--accent);
}

.logo-text {
  font-family: var(--font-display);
  font-size: var(--size-xl);
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  font-size: var(--size-sm);
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--accent-muted);
}

.nav-link.active {
  color: var(--accent);
}

.nav-link--cta {
  color: var(--accent);
  border: 1px solid var(--accent-dark);
  margin-left: 0.5rem;
}

.nav-link--cta:hover {
  background: var(--accent-muted);
  color: var(--accent-light);
  border-color: var(--accent);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 5rem 1.5rem 2rem;
    background: var(--bg-surface);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: 105;
  }

  .nav-list.nav-open {
    transform: translateX(0);
  }

  .nav-link {
    width: 100%;
    padding: 0.75rem 0;
    font-size: var(--size-base);
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-link--cta {
    margin-left: 0;
    margin-top: 1rem;
    text-align: center;
    justify-content: center;
    display: flex;
  }
}

/* --- Main Content Offset --- */
main {
  padding-top: 64px;
}

/* --- Hero --- */
.hero {
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.75) 0%,
    rgba(10, 10, 15, 0.85) 50%,
    rgba(10, 10, 15, 0.95) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.hero-title {
  font-size: var(--size-5xl);
  font-weight: 500;
  line-height: var(--leading-tight);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: var(--size-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-title {
    font-size: var(--size-4xl);
  }

  .hero-visual {
    order: -1;
  }

  .hero-svg {
    max-width: 260px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 5rem 0 3rem;
  }

  .hero-title {
    font-size: var(--size-3xl);
  }

  .hero-subtitle {
    font-size: var(--size-base);
  }
}

/* --- Sections --- */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.section-title {
  font-size: var(--size-3xl);
  font-weight: 500;
}

.section--pillars {
  border-top: 1px solid var(--border-subtle);
}

.section--disclaimer {
  padding: 4rem 0;
}

.section--topics {
  border-top: 1px solid var(--border-subtle);
}

.section--cta {
  padding: 6rem 0;
  border-top: 1px solid var(--border-subtle);
}

/* --- Semi-translucent background textures --- */
.bg-texture {
  position: relative;
}

.bg-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.bg-texture > * {
  position: relative;
  z-index: 1;
}

.bg-texture-1::before {
  background-image: url('/images/bg-texture-1.webp');
}

.bg-texture-2::before {
  background-image: url('/images/bg-texture-2.webp');
}

/* --- Pillar Cards --- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar-card {
  padding: 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base), transform var(--transition-slow), box-shadow var(--transition-slow);
}

.pillar-card:hover {
  border-color: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.pillar-icon {
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.pillar-title {
  font-family: var(--font-display);
  font-size: var(--size-2xl);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pillar-text {
  font-size: var(--size-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* --- Disclaimer Block --- */
.disclaimer-block {
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--accent-muted);
  border: 1px solid rgba(124, 154, 130, 0.2);
  border-radius: var(--radius-md);
}

.disclaimer-icon {
  flex-shrink: 0;
  color: var(--accent);
  padding-top: 0.125rem;
}

.disclaimer-title {
  font-family: var(--font-body);
  font-size: var(--size-sm);
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}

.disclaimer-content p {
  font-size: var(--size-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* --- Topics Grid --- */
.topics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.topic-tag {
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: var(--size-xs);
  font-weight: 400;
  letter-spacing: var(--tracking-wide);
  color: var(--text-secondary);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.topic-tag:hover {
  border-color: var(--accent-dark);
  color: var(--accent);
  transform: translateY(-1px);
}

/* --- CTA Block --- */
.cta-block {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.cta-title {
  font-size: var(--size-4xl);
  font-weight: 500;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: var(--size-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: 2rem;
}

/* --- Page Header --- */
.page-header {
  padding: 5rem 0 3rem;
  max-width: var(--container-narrow);
}

.page-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
}

.page-title {
  font-size: var(--size-4xl);
  font-weight: 500;
  margin-bottom: 1rem;
}

.page-description {
  font-size: var(--size-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 600px;
}

@media (max-width: 480px) {
  .page-title {
    font-size: var(--size-3xl);
  }
}

/* --- Prose (Content) --- */
.prose {
  max-width: var(--container-narrow);
  padding-bottom: 6rem;
}

.prose h2 {
  font-size: var(--size-2xl);
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.prose h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.prose h3 {
  font-size: var(--size-xl);
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1.25rem;
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
}

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

.prose ul, .prose ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose li {
  margin-bottom: 0.5rem;
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
}

.prose li strong {
  color: var(--text-primary);
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(124, 154, 130, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition-fast), color var(--transition-fast);
}

.prose a:hover {
  color: var(--accent-light);
  text-decoration-color: var(--accent-light);
}

.prose blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--accent-dark);
  background: var(--bg-surface);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.prose blockquote p {
  margin-bottom: 0;
  font-style: italic;
}

.prose code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  padding: 0.15em 0.4em;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--accent-light);
}

.prose hr {
  margin: 2.5rem 0;
  border: none;
  border-top: 1px solid var(--border);
}

.prose em {
  font-style: italic;
  color: var(--text-secondary);
}

/* --- Join CTA in content --- */
.join-cta {
  margin: 2rem 0;
  text-align: center;
}

/* --- List Items --- */
.list-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.list-item:last-child {
  border-bottom: none;
}

.list-item-title {
  font-family: var(--font-display);
  font-size: var(--size-2xl);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.list-item-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.list-item-title a:hover {
  color: var(--accent);
}

.list-item-desc {
  font-size: var(--size-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* --- Footer --- */
.site-footer {
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.logo--footer {
  margin-bottom: 1rem;
}

.logo--footer .logo-text {
  font-size: var(--size-lg);
}

.footer-tagline {
  font-size: var(--size-sm);
  color: var(--text-tertiary);
  line-height: var(--leading-relaxed);
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  font-size: var(--size-sm);
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-disclaimer {
  font-size: var(--size-xs);
  color: var(--text-tertiary);
  line-height: var(--leading-relaxed);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-copy {
  font-size: var(--size-xs);
  color: var(--text-tertiary);
}

.footer-tga {
  font-size: var(--size-xs);
  color: var(--text-tertiary);
  font-style: italic;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* --- Selection --- */
::selection {
  background: var(--accent-muted);
  color: var(--accent-light);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-tertiary);
}

/* --- Focus styles for accessibility --- */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- Skip link (accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--bg);
  font-size: var(--size-sm);
  font-weight: 500;
  border-radius: var(--radius-sm);
  z-index: 200;
}

.skip-link:focus {
  top: 0.5rem;
}

/* --- Nav Dropdown --- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.nav-dropdown-toggle svg {
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
  z-index: 200;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: var(--size-sm);
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.dropdown-link:hover {
  color: var(--text-primary);
  background: var(--accent-muted);
}

.dropdown-divider {
  border-top: 1px solid var(--border-subtle);
  margin-top: 0.25rem;
  padding-top: 0.25rem;
}

.dropdown-label {
  display: block;
  padding: 0.35rem 1rem 0.15rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-tertiary);
}

@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), opacity var(--transition-fast);
  }

  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }

  .dropdown-link {
    padding: 0.5rem 0;
    font-size: var(--size-sm);
    border-bottom: 1px solid var(--border-subtle);
  }

  .dropdown-label {
    padding: 0.5rem 0 0.25rem;
  }

  .nav-dropdown-toggle {
    width: 100%;
    padding: 0.75rem 0;
    font-size: var(--size-base);
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-dropdown-toggle:hover {
    color: var(--text-primary);
  }

  .nav-dropdown-toggle.active {
    color: var(--accent);
  }
}

/* --- Print --- */
@media print {
  .site-header, .site-footer, .hero-visual, .btn {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .prose p, .prose li {
    color: #333;
  }
}
