/* ============================================
   THROUGH THE FOG - Landing Page Styles
   A Gentle Guide to Grief and Healing
   ============================================ */

/* CSS Variables */
:root {
  /* Brand Colors - Grief palette: muted, soft, dawn-like */
  --blue-primary: #5B7C99;
  --blue-dark: #3D5A73;
  --blue-light: #8BA5BB;
  --navy: #2C3E50;

  /* Fog/Dawn palette */
  --fog-dark: #6B7B8C;
  --fog-medium: #9AACBC;
  --fog-light: #C8D4DE;
  --fog-pale: #E8EEF2;
  --lavender-soft: #B8B5D1;
  --lavender-pale: #E0DEF0;
  --dawn-warm: #D4C4B0;
  --dawn-light: #F5F0E8;
  --cream: #FAF8F5;

  /* Neutrals */
  --text-dark: #2D3436;
  --text-medium: #5A6268;
  --text-light: #8B939A;
  --white: #FFFFFF;
  --border: #E0E4E8;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 6rem;
  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
}

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

a:hover {
  color: var(--blue-dark);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--fog-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(91, 124, 153, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91, 124, 153, 0.4);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--blue-primary);
  border: 2px solid var(--blue-primary);
}

.btn-secondary:hover {
  background: var(--blue-primary);
  color: var(--white);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 36px;
  width: auto;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: var(--text-medium);
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--blue-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  z-index: 999;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-medium);
  font-size: 1rem;
  font-weight: 500;
}

.mobile-nav a:hover {
  background: var(--fog-pale);
  color: var(--blue-primary);
}

.mobile-nav .btn {
  margin: 1rem 1.5rem;
  width: calc(100% - 3rem);
  text-align: center;
}

/* Hero Section */
.hero {
  padding: calc(var(--section-padding) + 4rem) 0 var(--section-padding);
  background: linear-gradient(180deg, var(--fog-pale) 0%, var(--cream) 50%, var(--dawn-light) 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue-primary);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--fog-dark);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-cta {
  margin-bottom: 2rem;
}

.hero-price {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--text-medium);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-price strong {
  font-size: 1.75rem;
  color: var(--navy);
}

.launch-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  background: var(--blue-primary);
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
}

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

.hero-includes span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-medium);
  background: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

.hero-includes svg {
  color: var(--blue-primary);
}

/* Hero Mockup Image */
.hero-mockup {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Social Proof */
.social-proof {
  padding: 4rem 0;
  background: var(--navy);
  color: var(--white);
}

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--fog-light);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--fog-medium);
  max-width: 180px;
  margin: 0 auto;
  line-height: 1.5;
}

.proof-message {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  color: var(--fog-light);
  font-size: 1rem;
  font-style: italic;
}

/* Problem Section */
.problem {
  padding: var(--section-padding) 0;
  background: var(--cream);
}

.problem h2 {
  text-align: center;
}

.problem-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  color: var(--text-medium);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.problem-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  border-left: 4px solid var(--fog-medium);
}

.problem-card p {
  color: var(--text-medium);
  margin-bottom: 0;
  font-style: italic;
  line-height: 1.8;
}

.problem-cta {
  text-align: center;
  font-size: 1.25rem;
  color: var(--navy);
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--font-heading);
}

/* Solution Section */
.solution {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--fog-pale) 0%, var(--white) 100%);
}

.solution-content {
  max-width: 900px;
  margin: 0 auto;
}

.solution h2 {
  text-align: center;
}

.solution-intro {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 3rem;
  color: var(--text-medium);
}

.solution-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  color: var(--blue-primary);
}

.feature h4 {
  margin-bottom: 0.25rem;
  color: var(--navy);
}

.feature p {
  color: var(--text-medium);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

/* What You Get Section */
.what-you-get {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.what-you-get h2 {
  text-align: center;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.bundle-item {
  background: var(--fog-pale);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--fog-light);
}

.bundle-icon {
  color: var(--fog-dark);
  margin-bottom: 1rem;
}

.bundle-item h3 {
  margin-bottom: 0.5rem;
}

.bundle-format {
  font-size: 0.875rem;
  color: var(--blue-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.bundle-item > p:last-of-type {
  color: var(--text-medium);
  font-size: 0.9375rem;
}

.bundle-total {
  text-align: center;
  padding: 3rem;
  background: var(--navy);
  border-radius: 16px;
  color: var(--white);
}

.bundle-total .launch-badge {
  margin-bottom: 1rem;
}

.total-price {
  margin-bottom: 0.5rem;
}

.total-price strong {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
}

.price-note {
  font-size: 1rem;
  color: var(--fog-light);
  margin-bottom: 1.5rem;
}

/* Audio Preview Section */
.audio-preview {
  padding: var(--section-padding) 0;
  background: var(--fog-pale);
}

.audio-preview h2 {
  text-align: center;
}

.audio-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-medium);
}

.audio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.audio-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.audio-preview-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  background: var(--blue-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.audio-card h4 {
  margin-bottom: 0.5rem;
  color: var(--fog-dark);
}

.audio-card p {
  font-size: 0.875rem;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.audio-card audio {
  width: 100%;
  height: 40px;
}

/* Chapters Section */
.chapters {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.chapters h2 {
  text-align: center;
}

.chapters-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-medium);
}

.chapters-list {
  max-width: 900px;
  margin: 0 auto;
}

.chapter-item {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

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

.chapter-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--fog-light);
  flex-shrink: 0;
  width: 60px;
}

.chapter-content h3 {
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.chapter-content p {
  color: var(--text-medium);
  margin-bottom: 0;
}

/* Testimonials */
.testimonials {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--fog-pale) 0%, var(--cream) 100%);
}

.testimonials h2 {
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.testimonial-stars {
  color: #F5B041;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.author-name {
  display: block;
  font-weight: 600;
  color: var(--navy);
}

.author-info {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* About Section */
.about {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  margin-bottom: 2rem;
}

.about p {
  color: var(--text-medium);
  font-size: 1.0625rem;
  line-height: 1.9;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.value {
  padding: 1.5rem;
  background: var(--fog-pale);
  border-radius: 12px;
}

.value h4 {
  color: var(--fog-dark);
  margin-bottom: 0.5rem;
}

.value p {
  color: var(--text-medium);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* FAQ Section */
.faq {
  padding: var(--section-padding) 0;
  background: var(--fog-pale);
}

.faq h2 {
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.faq-item summary {
  padding: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--fog-dark);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-medium);
  margin-bottom: 0;
}

/* Crisis Resources */
.crisis-resources {
  padding: var(--section-padding) 0;
  background: var(--dawn-light);
  border-top: 3px solid var(--blue-primary);
}

.crisis-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.crisis-content h2 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.crisis-content > p {
  color: var(--text-medium);
  font-size: 1.0625rem;
  margin-bottom: 2.5rem;
}

.crisis-contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.crisis-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: left;
}

.crisis-item h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.crisis-item p {
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.crisis-item a {
  color: var(--blue-primary);
  text-decoration: underline;
}

.crisis-note {
  color: var(--text-light);
  font-size: 0.8125rem;
}

.crisis-reminder {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--fog-dark);
  margin-bottom: 0;
}

/* Final CTA */
.final-cta {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 100%);
  color: var(--white);
}

.final-cta h2 {
  text-align: center;
  color: var(--white);
}

.cta-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--fog-light);
  font-size: 1.125rem;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem;
}

.cta-includes h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-includes ul {
  list-style: none;
}

.cta-includes li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--fog-light);
}

.cta-includes svg {
  color: var(--fog-light);
  flex-shrink: 0;
}

.cta-price {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.price-current {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin: 0.5rem 0 1.5rem;
  display: block;
}

.guarantee-text {
  font-size: 0.9375rem;
  color: var(--fog-light);
  margin-top: 1.25rem;
  font-style: italic;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--navy);
  padding: 4rem 0 2rem;
  color: var(--fog-light);
}

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

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-brand img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.footer-brand p {
  font-size: 0.8125rem;
  color: var(--fog-light);
  line-height: 1.6;
  margin: 0;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links a {
  display: block;
  color: var(--fog-light);
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.875rem;
}

.disclaimer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-light);
}

.company-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.company-info p {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.company-info a {
  color: var(--fog-light);
}

.company-info a:hover {
  color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-includes {
    justify-content: center;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .solution-features {
    grid-template-columns: 1fr;
  }

  .bundle-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .cta-box {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    align-items: center;
  }

  .crisis-contacts {
    grid-template-columns: 1fr;
  }

  .crisis-item {
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  .header .container {
    flex-wrap: nowrap;
  }

  .nav {
    display: none;
  }

  .header .btn-sm {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: calc(var(--section-padding) + 3rem) 0 var(--section-padding);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .proof-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .stat {
    flex: 0 0 45%;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .audio-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .chapter-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .chapter-number {
    width: auto;
    font-size: 1.5rem;
  }

  .price-current {
    font-size: 3rem;
  }

  .total-price strong {
    font-size: 2.5rem;
  }

  .cta-box {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 3rem;
  }

  .container {
    padding: 0 1rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }

  .btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .price-current {
    font-size: 2.5rem;
  }

  .total-price strong {
    font-size: 2rem;
  }

  .hero-price strong {
    font-size: 1.5rem;
  }

  .proof-stats {
    gap: 1.5rem;
  }

  .stat {
    flex: 0 0 100%;
  }

  .bundle-item {
    padding: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .faq-item summary {
    padding: 1rem;
    font-size: 0.9375rem;
  }

  .faq-item p {
    padding: 0 1rem 1rem;
    font-size: 0.9375rem;
  }

  .footer-brand img {
    height: 50px;
  }

  .crisis-reminder {
    font-size: 1.125rem;
  }
}
