/* ==========================================================================
   Suncoast Site Works — styles.css
   Light & vibrant: white base, ink text, violet→coral gradient accents.
   Fonts: Sora (headings) / Figtree (body). Mobile-first.
   ========================================================================== */

:root {
  --ink: #191927;
  --muted: #565471;
  --white: #ffffff;
  --violet: #7C3AED;
  --coral: #FB7185;
  --grad: linear-gradient(120deg, #7C3AED 0%, #FB7185 100%);
  --grad-soft: linear-gradient(120deg, rgba(124, 58, 237, 0.08), rgba(251, 113, 133, 0.08));
  --soft: #F7F5FC;
  --line: #E9E5F6;
  --r-lg: 28px;
  --r-md: 20px;
  --r-pill: 999px;
  --shadow: 0 10px 30px -12px rgba(25, 25, 39, 0.18);
  --shadow-lift: 0 24px 48px -16px rgba(124, 58, 237, 0.25);
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

::selection { background: var(--violet); color: #fff; }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 7.5vw, 4.75rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4.5vw, 2.75rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); font-weight: 700; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--violet); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--coral); }

.wrap {
  width: min(1140px, 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding: clamp(3.5rem, 9vw, 6.5rem) 0; }
.section-soft { background: var(--soft); }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.9rem;
}

.lede {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  color: var(--muted);
  max-width: 42em;
}

.center { text-align: center; }
.center .lede { margin-inline: auto; }

/* --- Skip link --------------------------------------------------------- */

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 12px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* --- Buttons ------------------------------------------------------------ */

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  padding: 0.85rem 1.7rem;
  border-radius: var(--r-pill);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(124, 58, 237, 0.5);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-3px) rotate(-0.5deg);
  box-shadow: var(--shadow-lift);
}

.btn-ghost {
  color: var(--ink);
  border: 2px solid var(--line);
  background: var(--white);
}
.btn-ghost:hover {
  color: var(--violet);
  border-color: var(--violet);
  transform: translateY(-3px);
}

/* --- Header --------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--ink); }
.brand .logo { width: 34px; height: 34px; flex: none; }
.brand em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 10px;
  background: none;
  border: 0;
  cursor: pointer;
  border-radius: 12px;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.site-nav { display: none; }
.site-nav.open {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1rem 1.25rem 1.5rem;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-nav a {
  display: block;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
}
.site-nav a:hover { background: var(--grad-soft); color: var(--violet); }

.site-nav .nav-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.9rem 0.75rem 0.25rem;
}

.site-nav .btn-nav {
  margin-top: 0.75rem;
  background: var(--grad);
  color: #fff;
  text-align: center;
  border-radius: var(--r-pill);
  padding: 0.7rem 1.4rem;
}
.site-nav .btn-nav:hover { color: #fff; background: var(--grad); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }

  .site-nav { display: block; position: static; }
  .site-nav > ul {
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
  }
  .site-nav .nav-label { display: none; }

  .site-nav .has-sub { position: relative; }
  .site-nav .sub {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 270px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    box-shadow: var(--shadow);
    padding: 0.5rem;
    flex-direction: column;
  }
  .site-nav .has-sub:hover .sub,
  .site-nav .has-sub:focus-within .sub { display: flex; }

  .site-nav .sub-trigger::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
  }
  .site-nav .btn-nav { margin: 0 0 0 0.5rem; }
}

/* --- Hero ------------------------------------------------------------------ */

.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 7.5rem) 0 clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}
.hero-blob-1 {
  width: 480px; height: 480px;
  top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.45), transparent 65%);
}
.hero-blob-2 {
  width: 420px; height: 420px;
  bottom: -180px; left: -140px;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.45), transparent 65%);
}

.hero h1 { max-width: 13em; }
.hero .lede { margin-bottom: 2rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 2.25rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.chips li {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line);
  background: var(--white);
}
.chips li:nth-child(odd) { transform: rotate(-1.2deg); }
.chips li:nth-child(even) { transform: rotate(1.2deg); }
.chips li::before { content: "✦ "; color: var(--coral); }

/* Squiggle underline accent */
.squiggle {
  position: relative;
  white-space: nowrap;
}
.squiggle svg {
  position: absolute;
  left: 0;
  bottom: -0.14em;
  width: 100%;
  height: 0.26em;
  overflow: visible;
}

/* --- Marquee ---------------------------------------------------------------- */

.marquee {
  border-block: 1px solid var(--line);
  padding: 0.9rem 0;
  overflow: hidden;
  background: var(--white);
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  color: var(--muted);
}
.marquee span::after { content: " ✦"; color: var(--coral); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; flex-wrap: wrap; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* --- Cards ------------------------------------------------------------------ */

.card-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.25rem;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .card-grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: var(--shadow-lift);
  border-color: transparent;
  color: var(--ink);
}
.card:hover::before { opacity: 1; }

.card h3 { margin-bottom: 0.35rem; }
.card p { color: var(--muted); font-size: 0.98rem; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  background: var(--grad-soft);
}
.card-icon svg { width: 26px; height: 26px; }

.card-link {
  margin-top: auto;
  padding-top: 0.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.card-link::after { content: " →"; }

/* --- Checklist ("what a site needs") ----------------------------------------- */

.check-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 2.25rem;
}
@media (min-width: 720px) { .check-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1020px) { .check-grid { grid-template-columns: 1fr 1fr 1fr; } }

.check-item {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1.5px solid var(--line);
  padding: 1.4rem 1.3rem;
}
.check-item h3 { font-size: 1.08rem; display: flex; gap: 0.6rem; align-items: baseline; }
.check-item h3::before {
  content: "✓";
  flex: none;
  font-size: 0.85rem;
  width: 1.5em;
  height: 1.5em;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  transform: translateY(0.15em);
}
.check-item p { color: var(--muted); font-size: 0.97rem; }

/* --- Process -------------------------------------------------------------------- */

.steps {
  counter-reset: step;
  display: grid;
  gap: 1.25rem;
  margin-top: 2.25rem;
  list-style: none;
  padding: 0;
}
@media (min-width: 720px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1020px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.steps li {
  counter-increment: step;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--line);
  padding: 1.6rem 1.4rem;
}
.steps li::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.7rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.steps h3 { font-size: 1.12rem; }
.steps p { color: var(--muted); font-size: 0.97rem; }

/* --- Split / prose ------------------------------------------------------------------ */

.split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 5fr 6fr; gap: 4rem; }
  .split-sticky { position: sticky; top: 6rem; }
}

.prose { max-width: 46em; }
.prose h2 { margin-top: 1.6em; font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 0.5em; }
.prose li::marker { color: var(--coral); }

/* --- Gradient panel -------------------------------------------------------------------- */

.panel {
  background: var(--grad);
  border-radius: var(--r-lg);
  color: #fff;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  position: relative;
  overflow: hidden;
}
.panel::after {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  top: -110px; right: -90px;
}
.panel > * { position: relative; z-index: 1; }
.panel h2, .panel h3 { color: #fff; }
.panel p { color: rgba(255, 255, 255, 0.92); }
.panel .btn-ghost {
  background: #fff;
  border-color: #fff;
  color: var(--violet);
}
.panel .btn-ghost:hover { color: var(--coral); transform: translateY(-3px); }
.panel ul { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.panel li { padding: 0.35rem 0; font-weight: 600; }
.panel li::before { content: "✦ "; color: #FFD8E1; }

/* --- Trio row ----------------------------------------------------------------------------- */

.trio {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.25rem;
}
@media (min-width: 720px) { .trio { grid-template-columns: 1fr 1fr 1fr; } }

.trio-item {
  border-radius: var(--r-md);
  padding: 1.5rem 1.4rem;
  background: var(--grad-soft);
}
.trio-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.3rem;
}
.trio-item span { color: var(--muted); font-size: 0.97rem; }

/* --- FAQ -------------------------------------------------------------------------------------- */

.faq-list { margin-top: 2rem; display: grid; gap: 0.9rem; max-width: 800px; }
.center-block { margin-inline: auto; }

details.faq {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 0.2s ease;
}
details.faq[open] { border-color: var(--violet); }

details.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 1.1rem 1.3rem;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  flex: none;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform 0.2s ease;
}
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq .faq-a { padding: 0 1.3rem 1.2rem; color: var(--muted); }

/* --- CTA band ------------------------------------------------------------------------------------- */

.cta-band { padding: clamp(3rem, 8vw, 5.5rem) 0; }
.cta-inner {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(2.25rem, 6vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before,
.cta-inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
}
.cta-inner::before {
  width: 300px; height: 300px;
  background: var(--violet);
  top: -140px; left: -80px;
}
.cta-inner::after {
  width: 300px; height: 300px;
  background: var(--coral);
  bottom: -140px; right: -80px;
}
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { color: #fff; }
.cta-inner p { color: rgba(255, 255, 255, 0.8); max-width: 36em; margin-inline: auto; }
.cta-inner .btn-primary { margin-top: 1.25rem; }

/* --- Page hero (interior) ---------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  padding: clamp(3.25rem, 8vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); max-width: 16em; }
.page-hero .hero-blob-1 { width: 380px; height: 380px; top: -180px; }

.breadcrumb {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--violet); }
.breadcrumb span::before { content: " / "; color: var(--coral); }

/* --- Forms --------------------------------------------------------------------------------------------- */

.form-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}

.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}

.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--soft);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 0.75rem 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15);
  background: var(--white);
}
.field textarea { min-height: 150px; resize: vertical; }

.form-note { font-size: 0.9rem; color: var(--muted); margin-top: 1rem; }

.hidden { display: none !important; }

/* --- Footer ------------------------------------------------------------------------------------------------ */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(3rem, 7vw, 4.5rem) 0 2rem;
  margin-top: auto;
}

.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 820px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
}

.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.97rem; max-width: 30em; }
.footer-brand a { color: #fff; font-weight: 600; }
.footer-brand a:hover { color: var(--coral); }

.footer-tag {
  font-family: var(--font-head);
  font-weight: 600;
  background: linear-gradient(120deg, #B79CF6, #FDA7B6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-footer h2.footer-h {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer ul a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.97rem;
}
.site-footer ul a:hover { color: #fff; }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

/* --- 404 -------------------------------------------------------------------------------------------------------- */

.err-hero { text-align: center; padding: clamp(4rem, 12vw, 8rem) 0; position: relative; overflow: hidden; }
.err-code {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(6rem, 22vw, 12rem);
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}
.err-hero .hero-actions { justify-content: center; margin-top: 2rem; }
.err-hero .lede { margin-inline: auto; }

/* --- Reveal on scroll --------------------------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* mobile fixes */
.card-grid > *, .check-grid > *, .steps > li, .split > *, .trio > *, .footer-grid > *, .form-grid > * { min-width: 0; }
.site-footer, .footer-bottom, .prose, .card { overflow-wrap: break-word; }
@media (max-width: 899px) {
  .nav-toggle { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
  .site-nav.open { max-height: calc(100vh - 70px); overflow-y: auto; }
  .site-nav a { min-height: 44px; display: flex; align-items: center; }
  .site-nav .btn-nav { justify-content: center; }
}
@media (max-width: 819px) {
  .site-footer li { margin-bottom: 0; }
  .site-footer ul a { display: inline-block; padding: 0.5rem 0; }
}
