/* ==========================================================================
   Bibbulmun Track Demo — Cosy Community Site
   Warm, lived-in feel. Not an agency portfolio piece.
   ========================================================================== */

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

html { scroll-behavior: smooth; }

img, picture, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ------------------------------------------------------------------
   2. Base Typography
   ------------------------------------------------------------------ */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--brown-text);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brown);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: 2.4rem; margin-bottom: var(--space-lg); }
h2 { font-size: 1.8rem; margin-bottom: var(--space-md); color: var(--maroon); }
h3 { font-size: 1.4rem; margin-bottom: var(--space-sm); }
h4 { font-size: 1.2rem; margin-bottom: var(--space-sm); }

p { margin-bottom: var(--space-md); }

a {
  color: var(--maroon);
  transition: color var(--transition-fast);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ------------------------------------------------------------------
   3. Container
   ------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

/* ------------------------------------------------------------------
   4. Link-style CTAs (not pill buttons)
   ------------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--maroon);
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
}

.btn::after {
  content: ' \2192';
}

.btn:hover {
  color: var(--orange);
  border-bottom-color: var(--orange-warm);
}

.btn--primary {
  color: var(--maroon);
}

.btn--secondary {
  color: var(--forest);
  border-bottom-color: var(--forest);
}

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

/* White variant for dark backgrounds */
.btn--white {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.6);
}

.btn--white:hover {
  color: var(--orange-glow);
  border-bottom-color: var(--orange-glow);
}

/* ------------------------------------------------------------------
   5. Card Component
   ------------------------------------------------------------------ */
.card {
  background-color: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-lg);
  border-left: 3px solid var(--orange);
  transition: box-shadow var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card__image {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: calc(-1 * var(--space-lg));
  margin-bottom: var(--space-md);
  margin-left: calc(-1 * var(--space-lg) - 3px);
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card__title {
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
  color: var(--brown);
}

.card__text {
  color: var(--brown-light);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

/* ------------------------------------------------------------------
   6. Badge Component
   ------------------------------------------------------------------ */
.badge {
  display: inline-block;
  padding: 3px 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  line-height: 1;
}

.badge--beginner {
  background-color: #dce9d5;
  color: #2C4A2E;
}

.badge--intermediate {
  background-color: #f5deb3;
  color: #6B4D00;
}

.badge--experienced {
  background-color: #d4a574;
  color: #3D2B1F;
}

.badge--type {
  background-color: var(--forest);
  color: #fff;
}

/* ------------------------------------------------------------------
   7. Section Component
   ------------------------------------------------------------------ */
.section {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  background-color: var(--cream);
}

.section--alt {
  background-color: var(--sand);
}

.section--dark {
  background-color: var(--forest-dark);
  color: var(--cream);
}

.section--dark h2 { color: var(--orange-glow); }

.section__heading {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

/* ------------------------------------------------------------------
   8. Trail Marker Badges
   ------------------------------------------------------------------ */
.trail-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--orange);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  border-radius: 50%;
}

/* ------------------------------------------------------------------
   9. Grid Utility
   ------------------------------------------------------------------ */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

/* ------------------------------------------------------------------
   10. Navigation — Forest green with orange trim
   ------------------------------------------------------------------ */
.nav {
  background: var(--forest);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1100;
  box-shadow: 0 2px 8px rgba(0, 20, 0, 0.2);
  border-bottom: 3px solid var(--orange);
}

.nav__brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__brand svg { flex-shrink: 0; }

.nav__links {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav__links a {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 1rem;
  transition: background 0.15s;
  border-radius: 3px 3px 0 0;
}

.nav__links a:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ------------------------------------------------------------------
   11. Mobile Menu
   ------------------------------------------------------------------ */
.nav__mobile-overlay {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 260px; height: 100dvh;
  background: var(--forest);
  z-index: 1105;
  padding: 4rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s;
}

.nav__mobile-overlay.open { transform: translateX(0); }

.nav__mobile-overlay a {
  display: block;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.nav__mobile-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1104;
  opacity: 0;
  transition: opacity 0.3s;
}

.nav__mobile-scrim.open { opacity: 1; }

/* ------------------------------------------------------------------
   12. Breadcrumb
   ------------------------------------------------------------------ */
.breadcrumb {
  padding: var(--space-sm) 0;
  font-size: 0.85rem;
  color: var(--brown-light);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xs);
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.breadcrumb__item:not(:last-child)::after {
  content: "\203A";
  color: var(--brown-light);
  margin-left: var(--space-xs);
}

.breadcrumb__link { color: var(--forest); }
.breadcrumb__link:hover { color: var(--orange); }
.breadcrumb__current { color: var(--brown-light); }

/* ------------------------------------------------------------------
   13. Hero Section — Photo with dark overlay
   ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 15, 8, 0.5);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: var(--space-3xl) var(--space-md) var(--space-xl);
}

.hero__content h1 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: var(--space-sm);
}

.hero__content p {
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero--small { min-height: 25vh; }

/* ------------------------------------------------------------------
   14. Footer — Forest dark with orange accents
   ------------------------------------------------------------------ */
.footer {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 2.5rem 2rem 1.5rem;
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__col h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--orange-glow);
  margin-bottom: 0.6rem;
}

.footer__col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  padding: 0.2rem 0;
  transition: color 0.15s;
  text-decoration: none;
}

.footer__col a:hover { color: #fff; opacity: 0.9; }

.footer__bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer__contact a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer__contact a:hover { color: rgba(255,255,255,0.8); }

.footer__boodja {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--orange-glow);
  opacity: 0.7;
}

/* ------------------------------------------------------------------
   15. About Page Layout
   ------------------------------------------------------------------ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.about-content h2 { margin-top: var(--space-2xl); }
.about-content h2:first-child { margin-top: 0; }

.about-content ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.about-content ul li { margin-bottom: var(--space-sm); }

.about-sidebar .card {
  position: sticky;
  top: calc(55px + var(--space-lg));
}

.about-sidebar .card h3 { margin-bottom: var(--space-md); }

.about-sidebar .card a {
  display: block;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--sand);
  color: var(--forest);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.about-sidebar .card a:last-child { border-bottom: none; }
.about-sidebar .card a:hover { color: var(--orange); }

/* ------------------------------------------------------------------
   16. Map Frame & Info Panel
   ------------------------------------------------------------------ */
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--brown);
  box-shadow:
    0 0 0 1px rgba(92, 64, 51, 0.05),
    0 4px 20px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  margin-bottom: var(--space-lg);
  position: relative;
}

.map-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.08);
  z-index: 500;
}

.map-info {
  background-color: #fff;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  position: relative;
  animation: mapInfoSlideIn 0.3s ease-out;
}

@keyframes mapInfoSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.map-info__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.map-info__header h3 {
  color: var(--brown);
  margin-bottom: var(--space-xs);
}

.map-info__route {
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.map-info__stats {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
  padding: var(--space-sm) 0;
  border-top: 1px solid rgba(92, 64, 51, 0.08);
  border-bottom: 1px solid rgba(92, 64, 51, 0.08);
}

.map-info__stat {
  display: flex;
  flex-direction: column;
}

.map-info__stat-val {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.2;
}

.map-info__stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brown-light);
  opacity: 0.6;
}

.map-info__terrain {
  font-size: 0.85rem;
  color: var(--brown-light);
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.map-info__highlight {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--brown-text);
}

.map-info__close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--brown-light);
  flex-shrink: 0;
}

.map-info__close:hover { color: var(--brown); }

/* Custom Leaflet popup styling */
.bibb-popup .leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  font-family: var(--font-body);
  padding: 0;
}

.bibb-popup .leaflet-popup-content {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.bibb-popup .leaflet-popup-tip {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.bibb-popup__inner {
  padding: 1rem 1.2rem;
}

.bibb-popup__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.25rem;
}

.bibb-popup__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  margin-bottom: 0.25rem;
}

.bibb-popup__badge--start {
  background: var(--forest);
  color: #fff;
}

.bibb-popup__badge--end {
  background: var(--maroon);
  color: #fff;
}

.bibb-popup__divider {
  border: none;
  border-top: 1px solid rgba(92, 64, 51, 0.1);
  margin: 0.6rem 0;
}

.bibb-popup__section {
  margin-bottom: 0.5rem;
}

.bibb-popup__section:last-child {
  margin-bottom: 0;
}

.bibb-popup__section strong {
  font-size: 0.82rem;
  color: var(--brown);
  display: block;
  margin-bottom: 0.15rem;
}

.bibb-popup__stats {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--brown-light);
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.bibb-popup__difficulty {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  background: var(--cream);
  color: var(--brown);
}

/* Custom Leaflet tooltip styling */
.bibb-tooltip {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--brown);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.35rem 0.7rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.bibb-tooltip::before {
  border-top-color: var(--brown);
}

@media (max-width: 768px) {
  .map-info__stats {
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-md);
  }
}

/* ------------------------------------------------------------------
   17. Filter Buttons (Events page)
   ------------------------------------------------------------------ */
.filter-btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid var(--forest);
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.filter-btn:hover {
  background-color: var(--forest);
  color: #fff;
}

.filter-btn.active {
  background-color: var(--forest);
  color: #fff;
}

/* ------------------------------------------------------------------
   18. Pricing Cards (Membership page)
   ------------------------------------------------------------------ */
.pricing-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  display: flex;
  flex-direction: column;
}

.pricing-card__tier {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brown-light);
  margin-bottom: var(--space-sm);
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: var(--space-xs);
}

.pricing-card__period {
  font-size: 0.9rem;
  color: var(--brown-light);
  margin-bottom: var(--space-lg);
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

.pricing-card__features li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--sand);
  font-size: 0.95rem;
}

.pricing-card__features li:last-child { border-bottom: none; }

.pricing-card--featured {
  border: 2px solid var(--orange);
  position: relative;
}

.pricing-card--featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--orange);
  color: #fff;
  padding: 3px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ------------------------------------------------------------------
   19. Contact Form
   ------------------------------------------------------------------ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
  color: var(--brown);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--sand);
  border-radius: var(--radius-md);
  background-color: #fff;
  color: var(--brown-text);
  transition: border-color var(--transition-fast);
  margin-bottom: var(--space-md);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  outline: none;
}

/* ------------------------------------------------------------------
   20. Discount Banner (Shop)
   ------------------------------------------------------------------ */
.discount-banner {
  background-color: var(--orange);
  color: #fff;
  text-align: center;
  padding: var(--space-md);
  font-weight: 600;
  font-size: 0.95rem;
}

.discount-banner a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
}

/* ------------------------------------------------------------------
   21. Info Cards grid
   ------------------------------------------------------------------ */
.info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--orange);
}

.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  color: var(--brown);
}

/* ------------------------------------------------------------------
   22. Product Cards (Shop)
   ------------------------------------------------------------------ */
.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.product-card:hover { box-shadow: var(--shadow-md); }

.product-card__image {
  height: 220px;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  padding: var(--space-lg);
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: var(--space-xs);
}

.product-card__price {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--maroon);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

/* ==========================================================================
   Responsive — Tablet (>=768px)
   ========================================================================== */
@media (min-width: 768px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }

  .hero__content h1 { font-size: 2.8rem; }

  .nav__links { display: flex; }
  .nav__hamburger { display: none; }

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

  #map { height: 500px; }

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

/* ==========================================================================
   Responsive — Desktop (>=1024px)
   ========================================================================== */
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   Responsive — Mobile (<768px)
   ========================================================================== */
@media (max-width: 767px) {
  .nav__links { display: none; }
  .nav__hamburger { display: block; }
  .nav__mobile-overlay { display: block; }
  .nav__mobile-scrim { display: block; }

  .footer__inner {
    flex-direction: column;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
