/* Michigan Treetop Media — Creator Hub
   Deep forest green + warm wood/amber. Mobile-first. */

:root {
  --forest: #1a3d2e;
  --forest-deep: #0f281c;
  --forest-mid: #2a5a42;
  --forest-light: #3d7a5c;
  --amber: #c4a35a;
  --amber-warm: #d4a574;
  --amber-light: #e8c98a;
  --wood: #8b6914;
  --cream: #f7f3eb;
  --cream-dark: #ebe4d6;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(15, 40, 28, 0.12);
  --shadow-lg: 0 8px 28px rgba(15, 40, 28, 0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --nav-h: 56px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  line-height: 1.5;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-bottom: calc(var(--nav-h) + var(--safe-bottom) + 28px);
}

img { max-width: 100%; display: block; }
a { color: var(--forest-mid); text-decoration: none; }
a:hover { color: var(--amber); }
ul { list-style: none; }

/* ——— Top bar (brand) ——— */
.topbar {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 12px 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 2px solid var(--amber);
  text-align: center;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: var(--cream);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.logo:hover { color: var(--amber-light); opacity: 0.95; }
.logo-text {
  display: none; /* horizontal logo image carries the brand */
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--forest-light), var(--forest));
  border: 2px solid var(--amber);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.topbar-tag {
  font-size: 0.7rem;
  color: var(--amber-light);
  opacity: 0.9;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* ——— Sticky bottom nav (phone-first) ——— */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(var(--nav-h) + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background: var(--forest-deep);
  border-top: 2px solid var(--amber);
  display: flex;
  z-index: 50;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: rgba(247, 243, 235, 0.65);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.15s, background 0.15s;
  padding: 6px 2px;
}
.bottom-nav a:hover,
.bottom-nav a.active {
  color: var(--amber-light);
  background: rgba(196, 163, 90, 0.08);
}
.bottom-nav .nav-icon {
  font-size: 1.15rem;
  line-height: 1;
}

/* ——— Layout ——— */
.wrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 16px;
}

.page-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 4px;
  letter-spacing: -0.03em;
  text-align: center;
}
.page-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  text-align: center;
}

.section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest);
  margin: 28px 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  border-radius: 2px;
}

/* ——— Hero ——— */
.hero {
  background: linear-gradient(160deg, var(--forest-deep) 0%, var(--forest) 55%, var(--forest-mid) 100%);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: visible;
  text-align: center;
  z-index: 2;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 90% 10%, rgba(196,163,90,0.25), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(61,122,92,0.4), transparent 45%);
  pointer-events: none;
  overflow: hidden;
}
.hero > * { position: relative; }
.hero h1 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.hero h1 span { color: var(--amber-light); }
.hero p {
  font-size: 0.95rem;
  opacity: 0.9;
  max-width: 28ch;
  margin: 0 auto 18px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  justify-content: center;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s, background 0.15s, color 0.15s, border-color 0.15s;
  text-decoration: none;
  font-family: inherit;
}
.btn:active { transform: scale(0.97); }
.btn-amber {
  background: var(--amber);
  color: var(--forest-deep);
}
.btn-amber:hover { background: var(--amber-light); color: var(--forest-deep); }
.btn-outline {
  background: transparent;
  border-color: var(--amber);
  color: var(--amber-light);
}
.btn-outline:hover { background: rgba(196,163,90,0.15); color: var(--cream); }
.btn-forest {
  background: var(--forest);
  color: var(--cream);
}
.btn-forest:hover { background: var(--forest-mid); color: var(--cream); }
.btn-amazon {
  background: #ff9900;
  color: #111;
  width: 100%;
  margin-top: auto;
}
.btn-amazon:hover { background: #ffad33; color: #111; }
.btn-sm { padding: 7px 14px; font-size: 0.8rem; }
.btn-block { width: 100%; }

/* ——— Video embed placeholder ——— */
.video-embed {
  background: var(--forest-deep);
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--cream);
  border: 2px dashed var(--amber);
  margin-bottom: 8px;
  text-align: center;
  padding: 20px;
}
.video-embed .play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--forest-deep);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow);
}
.video-embed strong { font-size: 1rem; }
.video-embed span { font-size: 0.8rem; opacity: 0.7; }

/* ——— Cards & grids ——— */
.grid {
  display: grid;
  gap: 14px;
}
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-videos { grid-template-columns: 1fr; }
.grid-products { grid-template-columns: 1fr 1fr; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(26, 61, 46, 0.08);
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.card-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.3;
}
.card .blurb {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.card .price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--wood);
  margin-top: 2px;
}
.card .seen-in {
  font-size: 0.72rem;
  color: var(--forest-light);
  font-style: italic;
}

/* Placeholder images */
.ph {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--cream-dark), #d4cfc4);
  display: grid;
  place-items: center;
  font-size: 2rem;
  position: relative;
  overflow: hidden;
}
.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,61,46,0.08));
}
.ph-video {
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, var(--forest), var(--forest-mid));
  color: var(--amber-light);
  font-size: 2.2rem;
}
.ph-guide {
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, var(--forest-mid), var(--forest));
  color: var(--amber-light);
  font-size: 2rem;
}

/* Product photos from videos */
.product-img {
  display: block;
  width: 100%;
  height: 96px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  background: var(--cream-dark, #e8e4dc);
}
@media (min-width: 640px) {
  .product-img {
    height: auto;
    aspect-ratio: 16 / 10;
    max-height: 180px;
  }
}
.card.product .ph { display: none; }


.badge {
  display: inline-block;
  background: var(--forest);
  color: var(--amber-light);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ——— Video cards ——— */
.video-card .card-body { gap: 8px; }
.video-card h3 { font-size: 0.95rem; }
.video-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ——— Filters ——— */
.filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filters::-webkit-scrollbar { display: none; }
.filter-btn {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 999px;
  border: 2px solid var(--forest);
  background: transparent;
  color: var(--forest);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--forest);
  color: var(--cream);
}

.product-card[hidden],
.card.product[hidden],
.product.is-hidden {
  display: none !important;
}

/* ——— CTA band ——— */
.cta-band {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  margin: 24px 0;
  box-shadow: var(--shadow);
}
.cta-band h2 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.cta-band p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 16px;
}

/* ——— About ——— */
.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--amber);
}
.about-card p {
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.about-card p:last-child { margin-bottom: 0; }
.email-box {
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--forest-light);
  font-size: 0.9rem;
}
.email-box strong { color: var(--forest); }
.email-box a { font-weight: 700; }

/* ——— Guide cards ——— */
.guide-card .card-body { gap: 8px; }
.guide-card h3 { font-size: 1rem; }
.read-more {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--amber);
  margin-top: auto;
}
.read-more:hover { color: var(--wood); }

/* ——— Footer ——— */
.site-footer {
  margin-top: auto;
  padding: 24px 16px 16px;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  border-top: 1px solid var(--cream-dark);
  background: var(--cream-dark);
}
.site-footer .brand-line {
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 6px;
  font-size: 0.8rem;
}
.site-footer .disclaimer {
  max-width: 420px;
  margin: 0 auto 8px;
  line-height: 1.4;
}

/* ——— Desktop polish ——— */
@media (min-width: 640px) {
  body { padding-bottom: 0; }
  .bottom-nav {
    position: static;
    height: auto;
    padding: 0;
    border-top: none;
    border-bottom: 2px solid var(--amber);
    justify-content: center;
    gap: 4px;
  }
  .bottom-nav a {
    flex: 0 0 auto;
    flex-direction: row;
    gap: 6px;
    padding: 12px 18px;
    font-size: 0.85rem;
  }
  .wrap { max-width: 900px; padding: 24px; }
  .grid-products { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 40px 36px; }
  .hero h1 { font-size: 2.25rem; }
  .hero p { max-width: 40ch; font-size: 1.05rem; }
  .topbar { padding: 12px 24px; }
}

@media (min-width: 900px) {
  .grid-videos { grid-template-columns: repeat(2, 1fr); }
  .grid-guides { grid-template-columns: repeat(2, 1fr); }
}


/* YouTube embed */
.video-embed-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 — more reliable than aspect-ratio alone on mobile */
  border-radius: 14px;
  overflow: hidden;
  background: var(--green-deep, #0f2419);
  margin-bottom: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  flex-shrink: 0;
  z-index: 1;
  isolation: isolate;
}
.yt-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  border: 0;
  z-index: 1;
}
.video-cap {
  font-size: 0.9rem;
  color: var(--text-muted, #5c6b62);
  margin: 0 0 20px;
}
.video-cap a { color: var(--amber, #c4a35a); font-weight: 700; }
.thumb-link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: #0f2419;
}
.yt-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
  background: #0f2419;
}
.video-card .thumb-link {
  flex: 0 0 auto;
  width: 100%;
  max-height: none;
}
.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(196,163,90,.95);
  color: #0f2419;
  display: grid;
  place-items: center;
  font-size: 18px;
  pointer-events: none;
}
.video-card h3 a { color: inherit; text-decoration: none; }
.video-card h3 a:hover { text-decoration: underline; }

.logo-img {
  width: auto;
  height: 56px;
  max-width: min(320px, 86vw);
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
  box-shadow: none;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.45));
  background: transparent;
}
@media (min-width: 640px) {
  .logo-img { height: 68px; max-width: 400px; }
  .topbar { padding: 14px 24px 16px; }
}

/* Single-column video cards: comfy actions */
.video-card .card-body {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}
.video-card .card-body .badge { margin-right: auto; }
.video-card .card-body h3 {
  flex: 1 1 100%;
  font-size: 1.05rem;
}
.video-card .btn-sm { min-height: 40px; padding: 0 14px; }

/* ——— Contact / business inquiries ——— */
.contact-layout {
  display: grid;
  gap: 18px;
}
.contact-form {
  padding: 18px 16px 20px;
  gap: 14px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
}
.contact-form .field em {
  font-weight: 500;
  color: var(--text-muted);
  font-style: normal;
  font-size: 0.78rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  font-weight: 500;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid rgba(26, 61, 46, 0.18);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231a3d2e' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.25);
}
.contact-form textarea { resize: vertical; min-height: 140px; line-height: 1.45; }
.contact-form .hp {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
}
.btn-block { width: 100%; justify-content: center; text-align: center; }
.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}
.form-alert {
  background: #e8f5ee;
  border: 1.5px solid var(--forest-light);
  color: var(--forest);
  padding: 14px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.contact-aside .aside-title {
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: 8px;
}
.inquiry-list {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}
.inquiry-list li {
  padding: 10px 12px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest);
  border-left: 3px solid var(--amber);
}
.footer-links {
  margin: 6px 0 10px;
  font-size: 0.85rem;
}
.footer-links a { color: var(--amber-light); font-weight: 600; }
.footer-links a:hover { color: var(--amber); }
@media (min-width: 720px) {
  .contact-layout {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

/* Buy Me a Coffee */
.bmc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--amber-light) !important;
}
.bmc-link:hover { color: var(--amber) !important; text-decoration: underline; }
.bmc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffdd00;
  color: #0d0c22 !important;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  margin: 10px 0 4px;
}
.bmc-btn:hover { filter: brightness(1.05); color: #0d0c22 !important; }
.site-footer .bmc-wrap { margin: 10px 0 8px; }

.storefront { text-align: center; margin: 0 0 16px; }
.filters { justify-content: center; }

/* ——— Live stream ——— */
.live-wrap { margin-bottom: 8px; }
.live-frame {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  background: #0f2419;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  flex-shrink: 0;
  isolation: isolate;
}
.live-frame .yt-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  border: 0;
}
.live-cap {
  margin: 10px 0 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--text-muted);
}
.live-cap a { color: var(--amber); font-weight: 700; }
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e74c3c;
  box-shadow: 0 0 0 0 rgba(231,76,60,.5);
  animation: livepulse 1.6s ease-out infinite;
}
@keyframes livepulse {
  0% { box-shadow: 0 0 0 0 rgba(231,76,60,.45); }
  70% { box-shadow: 0 0 0 8px rgba(231,76,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(231,76,60,0); }
}

.btn-coffee {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #ffdd00;
  color: #0d0c22 !important;
  font-weight: 800;
  border: 2px solid #ffdd00;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
}
.btn-coffee:hover {
  filter: brightness(1.05);
  color: #0d0c22 !important;
}
.hero-actions .btn-coffee { min-height: 44px; }

#video-grid { gap: 16px; }
#video-grid .video-card h3 { font-size: 1rem; }

/* ——— About page / home about ——— */
.about-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.about-head-compact {
  align-items: flex-start;
  margin-bottom: 10px;
}
.about-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--amber);
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.about-avatar-sm {
  width: 56px;
  height: 56px;
  border-width: 2px;
}
.about-name {
  margin: 0;
  font-size: 1.15rem;
  color: var(--forest);
}
.about-tagline {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px !important;
}
.about-home {
  margin: 8px 0 28px;
}
.about-home-card {
  padding: 18px 16px;
}
.about-home-lead {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.about-home-more {
  margin: 0 !important;
  text-align: right;
}

/* ——— Mobile polish (phone glitches) ——— */
.hero p {
  margin-left: auto;
  margin-right: auto;
}
.wrap {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
@media (max-width: 639px) {
  .about-head-compact {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-head {
    flex-wrap: wrap;
  }
  .about-home-lead {
    text-align: center;
  }
  .about-home-more {
    text-align: center;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn,
  .hero-actions .btn-coffee {
    width: 100%;
  }
  .bottom-nav a {
    font-size: 0.62rem;
    padding: 6px 1px;
  }
  .site-footer {
    padding-bottom: 12px;
  }
}
