/* Sunbelt Signal — gallery-white product house */

:root {
  --paper: #ffffff;
  --ink: #111111;
  --quiet: #6b6b6b;
  --line: #e8e8e8;
  --orange: #f46a25;
  --orange-soft: rgba(244, 106, 37, 0.12);
  --shadow: 0 28px 80px -28px rgba(17, 17, 17, 0.28);
  --font: "Geist", "Inter", system-ui, sans-serif;
  --nav-h: 64px;
  --max: 1120px;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--nav-h);
  padding: 0.85rem var(--pad);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  z-index: 121;
}

.logo-word {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.logo-word span {
  color: var(--orange);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--quiet);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
  z-index: 121;
}

.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 22px;
  height: 16px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7.25px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7.25px) rotate(-45deg);
}

@media (max-width: 860px) {
  /* backdrop-filter on .nav creates a containing block, which traps
     position:fixed menu items inside the 64px bar. Drop it on mobile
     so the overlay can cover the whole screen. */
  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .nav-mobile-actions {
    display: flex;
  }

  .nav-links .btn-primary {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: var(--paper);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.35rem;
    padding: calc(var(--nav-h) + 2.25rem) var(--pad) 2.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 115;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.2rem;
    color: var(--ink);
  }
}

/* ---- Buttons ---- */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--orange);
  color: #fff !important;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  background: #f4f4f4;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}

.btn-sm {
  padding: 0.48rem 0.95rem;
  font-size: 0.75rem;
}

.nav-links .btn-primary {
  color: #fff !important;
  margin-left: 0.35rem;
}

/* ---- Type ---- */
.kicker,
.eyebrow,
.eyebrow-chip {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--quiet);
  margin-bottom: 1.1rem;
}

.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.eyebrow-chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.display {
  font-size: clamp(3.4rem, 9vw, 7.4rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.92;
  color: var(--ink);
}

.chapter-title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.lede {
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 400;
  color: var(--quiet);
  line-height: 1.45;
  max-width: 34rem;
  letter-spacing: -0.02em;
}

.text-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.08rem;
}

.text-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.chapter-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem 1.8rem;
  margin-top: 1.15rem;
}

.chapter-split .chapter-links {
  justify-content: flex-start;
}

/* ---- Product photography ---- */
.product-shot {
  margin: 0 auto;
  max-width: 1080px;
}

.product-shot img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: #f4f4f4;
}

.product-caption {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--quiet);
  text-align: center;
  letter-spacing: -0.01em;
}

.tour-shot {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  border-radius: 18px;
}

.tour-shot img {
  pointer-events: none;
}

.tour-play-badge {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem 0.55rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px -12px rgba(17, 17, 17, 0.45);
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.tour-play-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  position: relative;
  flex-shrink: 0;
}

.tour-play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
}

.tour-shot:hover .tour-play-badge,
.tour-shot:focus-visible .tour-play-badge {
  background: #fff;
  color: var(--orange);
}

.tour-shot:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

/* ---- Hero ---- */
.hero {
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(3.5rem, 8vh, 6.5rem) var(--pad) 4rem;
}

.hero .display {
  margin-bottom: 1.15rem;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.hero .lede {
  margin: 0 auto 2rem;
  min-width: 0;
  width: 100%;
  max-width: 34rem;
}

.hero-note {
  margin: -1.35rem auto 2rem;
  min-width: 0;
  width: 100%;
  max-width: 34rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--quiet);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  margin-bottom: clamp(2.5rem, 6vh, 4.2rem);
}

.hero-shot {
  width: min(100%, 1080px);
}

/* ---- Chapters ---- */
.chapter {
  padding: clamp(4.5rem, 10vw, 8rem) var(--pad);
  text-align: center;
}

.chapter-copy {
  max-width: 720px;
  margin: 0 auto 2.6rem;
}

.chapter-copy .lede {
  margin: 1rem auto 0;
}

.chapter-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.chapter-split .chapter-copy {
  margin: 0;
  max-width: none;
}

@media (max-width: 860px) {
  .chapter-split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .chapter-split .lede {
    margin-left: auto;
    margin-right: auto;
  }

  .chapter-split .chapter-links {
    justify-content: center;
  }

  /* Full-viewport chapters leave large empty bands on a phone,
     because the screenshot + title no longer fill one screen. */
  .hero {
    min-height: 0;
    padding: 2.25rem var(--pad) 2rem;
  }

  .hero-ctas {
    margin-bottom: 1.6rem;
  }

  .chapter {
    padding: 2.4rem var(--pad);
  }

  .chapter-copy {
    margin-bottom: 1.4rem;
  }
}

/* ---- Coverage map (homepage) ---- */
.map-art {
  max-width: 520px;
  margin: 0 auto;
}

.map-art svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.county-path.bg {
  fill: #f3f3f3;
  stroke: #dedede;
  stroke-width: 0.55;
}

.county-path.live {
  cursor: pointer;
  stroke: rgba(17, 17, 17, 0.22);
  stroke-width: 0.7;
}

.county-path.live.full {
  fill: rgba(244, 106, 37, 0.22);
}

.county-path.live.partial {
  fill: rgba(244, 106, 37, 0.1);
}

.county-path.live.is-active.full,
.county-path.live.full:hover {
  fill: rgba(244, 106, 37, 0.42);
}

.county-path.live.is-active.partial,
.county-path.live.partial:hover {
  fill: rgba(244, 106, 37, 0.24);
}

.county-hit {
  fill: transparent;
  cursor: pointer;
}

.map-info {
  min-height: 4.2rem;
  margin-top: 1.1rem;
  font-size: 0.86rem;
  color: var(--quiet);
  letter-spacing: -0.01em;
}

.map-info-county {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.map-info-region,
.map-info-cities,
.map-info-muted {
  margin-top: 0.2rem;
}

.info-badge {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
}

.pack-flag {
  font-size: 0.75em;
}

/* ---- Pricing ---- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 1080px;
  margin: 2.4rem auto 0;
  text-align: left;
}

.price-card {
  background: var(--paper);
  padding: 2rem 1.6rem 1.6rem;
}

.price-name {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--quiet);
  margin-bottom: 0.7rem;
}

.price-amount {
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price-note {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  color: var(--quiet);
}

.price-card details {
  margin-top: 1.15rem;
}

.price-card summary {
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
}

.price-card summary::-webkit-details-marker {
  display: none;
}

.price-card ul {
  margin: 0.85rem 0 0 1.05rem;
  color: var(--quiet);
  font-size: 0.82rem;
  line-height: 1.65;
}

.price-extra {
  max-width: 720px;
  margin: 2rem auto 0;
  font-size: 0.92rem;
  color: var(--quiet);
  line-height: 1.55;
}

.price-extra a {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 800px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Waitlist ---- */
.founding {
  padding: clamp(4.5rem, 9vw, 7rem) var(--pad);
  text-align: center;
  border-top: 1px solid var(--line);
}

.founding .lede {
  margin: 1rem auto 1.8rem;
}

.email-row {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.email-row input {
  font-family: inherit;
  font-size: 0.92rem;
  padding: 0.82rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  min-width: min(100%, 280px);
  outline: none;
}

.email-row input:focus {
  border-color: var(--ink);
}

.fine-text {
  margin-top: 0.9rem;
  font-size: 0.75rem;
  color: var(--quiet);
}

/* ---- Footer ---- */
footer {
  border-top: 1px solid var(--line);
  padding: 2.6rem var(--pad) 2.2rem;
  text-align: center;
}

.footer-brand {
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 1.35rem;
  margin-bottom: 1.2rem;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--quiet);
  text-decoration: none;
}

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

.footer-disc {
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.68rem;
  color: #8a8a8a;
  line-height: 1.7;
}

/* ---- Tour modal ---- */
.tour-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(17, 17, 17, 0.72);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.tour-modal.open {
  display: flex;
}

.tour-modal-box {
  position: relative;
  width: min(1100px, 100%);
  aspect-ratio: 16 / 10;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
}

.tour-modal-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.tour-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 1rem;
}

/* ---- Inner page hero ---- */
.page-hero {
  padding: clamp(3.2rem, 8vw, 5.5rem) var(--pad) 2.4rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.page-hero h1,
.page-hero .display {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.96;
  margin-bottom: 1rem;
}

.page-hero p,
.page-hero-sub {
  font-size: 1.05rem;
  color: var(--quiet);
  line-height: 1.5;
  letter-spacing: -0.02em;
  max-width: 38rem;
  margin: 0 auto;
}

.hero-meta {
  margin-top: 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--quiet);
}

/* ---- Pack product page ---- */
.pack-bar {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%) translateY(120%);
  z-index: 180;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.55rem 0.55rem 1.25rem;
  box-shadow: 0 18px 50px -24px rgba(17, 17, 17, 0.45);
  transition: transform 0.35s ease;
}

.pack-bar.is-visible {
  transform: translateX(-50%) translateY(0);
}

.pack-bar-copy {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.pack-bar-copy span {
  color: var(--quiet);
  font-weight: 500;
  margin-left: 0.45rem;
}

@media (max-width: 700px) {
  .pack-bar {
    width: calc(100% - 1.5rem);
    justify-content: space-between;
  }

  .pack-bar-copy span {
    display: none;
  }
}

.pack-chapter {
  padding: clamp(4.5rem, 10vw, 8rem) var(--pad);
  text-align: center;
}

.pack-chapter .chapter-links {
  justify-content: center;
}

.pack-close {
  text-align: center;
  padding: clamp(4.5rem, 10vw, 8rem) var(--pad);
}

@media (max-width: 860px) {
  .pack-chapter,
  .pack-close,
  .founding {
    padding: 2.4rem var(--pad);
  }

  .hero .display {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
  }
}

/* ---- Studio ---- */
.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 1080px;
  margin: 0 auto;
}

.studio-card {
  background: var(--paper);
  padding: 2.2rem 2rem;
  text-align: left;
}

.studio-card h3 {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  margin: 0.35rem 0 0.7rem;
}

.studio-card p,
.studio-card li {
  font-size: 0.9rem;
  color: var(--quiet);
  line-height: 1.6;
}

.studio-card ul {
  margin: 0.8rem 0 0 1.05rem;
}

.studio-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-cell {
  background: var(--paper);
  padding: 3rem var(--pad);
  text-align: center;
}

.stat-num {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.stat-label {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  color: var(--quiet);
}

@media (max-width: 720px) {
  .studio-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }
}

.awards-list {
  list-style: none;
  max-width: 760px;
  margin: 2rem auto 0;
  text-align: left;
}

.awards-list li {
  padding: 1.05rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  line-height: 1.5;
}

.awards-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.award-year {
  display: inline-block;
  min-width: 3.2rem;
  font-weight: 600;
  color: var(--orange);
  margin-right: 0.7rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1080px;
  margin: 2.4rem auto 0;
  text-align: left;
}

.step-num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.step-text {
  font-size: 0.88rem;
  color: var(--quiet);
  line-height: 1.55;
}

@media (max-width: 800px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .tour-play-badge {
    font-size: 0.74rem;
    padding: 0.48rem 0.8rem 0.48rem 0.62rem;
    bottom: 0.75rem;
  }
}

.pull-quote {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.35;
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink);
}

/* ---- Legal content when using site.css ---- */
.content {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.2rem var(--pad) 5rem;
}

.content h2 {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  margin: 0 0 0.7rem;
}

.content p,
.content li {
  font-size: 0.92rem;
  color: var(--quiet);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.content p strong,
.content li strong {
  color: var(--ink);
  font-weight: 600;
}

.content ul {
  padding-left: 1.2rem;
  margin-bottom: 0.85rem;
}

.content a {
  color: var(--ink);
  font-weight: 600;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--quiet);
  margin: 2.4rem 0 0.4rem;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 2rem 0;
}

.info-box,
.warning-box,
.primary-disclaimer {
  border: 1px solid var(--line);
  padding: 1.25rem 1.4rem;
  margin: 1.4rem 0;
  border-radius: 12px;
}

.info-box-label,
.primary-disclaimer-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--quiet);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.warning-box,
.primary-disclaimer {
  border-color: rgba(128, 22, 80, 0.28);
  border-left: 3px solid #801650;
}

.acceptance-strip {
  background: var(--ink);
  padding: 1.6rem 1.8rem;
  margin-top: 2.2rem;
  border-radius: 14px;
}

.acceptance-strip-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.55rem;
}

.acceptance-strip p {
  color: rgba(255, 255, 255, 0.78) !important;
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn-primary:hover {
    transform: none;
  }
}
