/* ============================================================
   Nonnanest — Site Chrome
   Shared CSS for nav, footer, and disclaimer across all pages.
   Extracted from index.html on Aug 6, 2026 as part of the
   cohesion pass. Do not edit inline in pages — edit here.
   ============================================================ */

:root {
  --soft-teal: #559092;
  --deep-teal: #3D6B6D;
  --sage: #7FA8A0;
  --pale-aqua: #C8E3DF;
  --mist: #E4EFEE;
  --warm-white: #FAF8F5;
  --cream: #F5F0EA;
  --linen: #EDE7DF;
  --sand: #D4CCC2;
  --warm-sand: #D4CCC2;
  --clay: #B8A99A;
  --earth: #5C4F43;
  --bark: #8C7B6B;
  --charcoal: #2C2520;
  --warm-gray: #6B6560;
  --alert-red: #C45B4A;
}

/* ===== WORDMARK ===== */
.wordmark {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(237, 231, 223, 0.6);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--earth);
  letter-spacing: 0.2px;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--deep-teal); }
.nav-cta {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--warm-white) !important;
  background: var(--deep-teal);
  padding: 10px 22px;
  border-radius: 8px;
  transition: all 0.25s;
}
.nav-cta:hover {
  background: var(--soft-teal) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 150;
  background: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; cursor: pointer; padding: 8px;
  color: var(--charcoal); transition: color 0.2s;
}
.mobile-nav-close:hover { color: var(--deep-teal); }
.mobile-nav a {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--charcoal);
  padding: 14px 0;
  transition: color 0.2s;
  letter-spacing: -0.5px;
  text-decoration: none;
}
.mobile-nav a:hover { color: var(--deep-teal); }
.mobile-nav .mobile-nav-cta {
  margin-top: 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--warm-white);
  background: var(--deep-teal);
  padding: 16px 40px;
  border-radius: 12px;
  transition: all 0.25s;
}
.mobile-nav .mobile-nav-cta:hover { background: var(--soft-teal); }

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  color: var(--warm-sand);
  padding: 80px 48px 40px;
  font-family: 'Outfit', sans-serif;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: var(--clay);
  margin-top: 16px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { color: var(--clay); transition: color 0.2s; text-decoration: none; }
.footer-social a:hover { color: var(--warm-white); }
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-sand);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--clay);
  margin-bottom: 12px;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-col a:hover { color: var(--pale-aqua); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--warm-gray); margin: 0; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 12px;
  color: var(--warm-gray);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-bottom-links a:hover { color: var(--pale-aqua); }
.wellness-disclaimer {
  font-size: 11px;
  color: var(--warm-gray);
  line-height: 1.6;
  max-width: 900px;
  margin: 24px auto 0;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-style: italic;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .nav-links { gap: 20px; }
}
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  footer { padding: 60px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Inner pages (support, guide, article, legal) use <main> after nav.
   Compensate for the fixed nav so content isn't clipped. Homepage and
   other landing pages use <section class="hero"> instead of <main> and
   are unaffected by this rule. */
main { padding-top: 96px; }
@media (max-width: 900px) {
  main { padding-top: 72px; }
}
