/* ==========================================================================
   Next Level Landscaping — nextlevelpsl.com
   Palette is drawn from the Treasure Coast itself: deep sabal-palm shade,
   coquina shell, and Indian River citrus rind for the accent.
   ========================================================================== */

:root {
  /* Color */
  --canopy:        #0F2419;  /* deep shade under a live oak */
  --canopy-2:      #17352A;
  --palmetto:      #2E6B4A;
  --frond:         #4E8F63;
  --shell:         #EEF0E8;  /* crushed coquina / limestone */
  --shell-2:       #F7F8F3;
  --sand:          #DCD8C9;
  --citrus:        #F2A31C;  /* Indian River grapefruit rind */
  --citrus-deep:   #C97E08;
  --ink:           #132018;
  --muted:         #5B6C61;
  --white:         #FFFFFF;

  /* Type */
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body:    "Newsreader", Georgia, "Times New Roman", serif;
  --util:    "Archivo", "Helvetica Neue", Arial, sans-serif;

  /* Space + shape */
  --gut: clamp(1.25rem, 4vw, 3rem);
  --maxw: 1180px;
  --r: 4px;
  --r-lg: 10px;
  --shadow: 0 1px 2px rgba(15,36,25,.06), 0 8px 28px rgba(15,36,25,.08);
  --shadow-lift: 0 2px 4px rgba(15,36,25,.08), 0 18px 44px rgba(15,36,25,.14);
}

/* --------------------------------------------------------------- Reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
body {
  margin: 0;
  background: var(--shell);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1.02rem, .35vw + .95rem, 1.14rem);
  line-height: 1.65;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--palmetto); text-underline-offset: .18em; }
a:hover { color: var(--citrus-deep); }
:focus-visible {
  outline: 3px solid var(--citrus);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------------------------------------------------------- Typography -- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-variation-settings: "wdth" 112;
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6.4vw, 4.6rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 1.6vw, 1.45rem); font-variation-settings: "wdth" 105; letter-spacing: -.01em; }
h4 { font-size: 1.05rem; font-variation-settings: "wdth" 100; }
p { margin: 0 0 1.1em; text-wrap: pretty; }
.lede { font-size: clamp(1.15rem, 1.4vw, 1.34rem); line-height: 1.55; color: var(--muted); }
.dark .lede { color: rgba(238,240,232,.78); }

/* The eyebrow is a wayfinding label, set in the utility face. */
.eyebrow {
  font-family: var(--util);
  font-variation-settings: "wdth" 100;
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--citrus-deep);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--citrus);
  flex: none;
}
.dark .eyebrow { color: var(--citrus); }

/* --------------------------------------------------------------- Layout -- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.wrap-narrow { max-width: 760px; }
.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--tight { padding-block: clamp(2.5rem, 4.5vw, 3.5rem); }
.dark { background: var(--canopy); color: var(--shell); }
.dark h1, .dark h2, .dark h3 { color: var(--white); }
.dark a { color: var(--citrus); }
.tint { background: var(--shell-2); }
.grid { display: grid; gap: clamp(1.1rem, 2.2vw, 1.75rem); }
.g-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.g-3 { grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); }
.g-4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.split { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr .95fr; } }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--citrus); color: var(--canopy);
  padding: .8rem 1.2rem; font-family: var(--util); font-weight: 700;
}
.skip:focus { left: .5rem; top: .5rem; }

/* -------------------------------------------------------------- Buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--util); font-weight: 700; font-size: .96rem;
  font-variation-settings: "wdth" 102;
  letter-spacing: .005em;
  padding: .95rem 1.6rem;
  border: 2px solid transparent;
  border-radius: var(--r);
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, background-color .16s ease, box-shadow .16s ease, color .16s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--citrus); color: var(--canopy); box-shadow: 0 4px 0 var(--citrus-deep); }
.btn--primary:hover { background: #FFB43A; color: var(--canopy); box-shadow: 0 6px 0 var(--citrus-deep); }
.btn--solid { background: var(--palmetto); color: var(--white); box-shadow: 0 4px 0 #1E4A33; }
.btn--solid:hover { background: #367C56; color: var(--white); box-shadow: 0 6px 0 #1E4A33; }
.btn--ghost { border-color: rgba(238,240,232,.42); color: var(--shell); background: transparent; }
.btn--ghost:hover { border-color: var(--citrus); color: var(--citrus); background: rgba(242,163,28,.08); }
.btn--outline { border-color: var(--palmetto); color: var(--palmetto); background: transparent; }
.btn--outline:hover { background: var(--palmetto); color: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

/* --------------------------------------------------------------- Header -- */
.topbar {
  background: var(--canopy-2); color: rgba(238,240,232,.85);
  font-family: var(--util); font-size: .8rem; font-weight: 500;
  letter-spacing: .02em;
  border-bottom: 1px solid rgba(238,240,232,.1);
}
.topbar .wrap { display: flex; flex-wrap: wrap; gap: .3rem 1.5rem; justify-content: center; padding-block: .5rem; }
.topbar span { display: inline-flex; align-items: center; gap: .4rem; }
@media (max-width: 700px) { .topbar span.opt { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--canopy);
  border-bottom: 1px solid rgba(238,240,232,.12);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 1rem;
  min-height: 74px; padding-block: .7rem;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; flex: none; }
.brand svg { width: 40px; height: 40px; flex: none; }
.brand-name {
  font-family: var(--util); font-weight: 900; font-variation-settings: "wdth" 108;
  font-size: 1.12rem; letter-spacing: -.015em; line-height: 1;
  color: var(--white); text-transform: uppercase;
}
.brand-sub {
  display: block; font-weight: 500; font-size: .6rem; letter-spacing: .22em;
  color: var(--citrus); margin-top: .28rem;
}
.nav { margin-left: auto; display: flex; align-items: center; gap: .2rem; }
.nav a {
  font-family: var(--util); font-size: .89rem; font-weight: 600;
  color: rgba(238,240,232,.86); text-decoration: none;
  padding: .55rem .72rem; border-radius: var(--r);
  transition: color .15s, background-color .15s;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--citrus); background: rgba(238,240,232,.06); }
.header-cta { display: flex; align-items: center; gap: .6rem; margin-left: .6rem; }
.header-phone {
  font-family: var(--util); font-weight: 800; font-size: 1rem;
  color: var(--white); text-decoration: none; white-space: nowrap;
}
.header-phone:hover { color: var(--citrus); }
.header-phone small { display: block; font-size: .6rem; font-weight: 500; letter-spacing: .14em; color: var(--citrus); text-transform: uppercase; }
.burger {
  display: none; margin-left: auto;
  background: transparent; border: 1.5px solid rgba(238,240,232,.3);
  border-radius: var(--r); padding: .55rem .7rem; cursor: pointer;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--shell); margin: 4px 0; transition: transform .2s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .burger { display: block; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--canopy-2); flex-direction: column; align-items: stretch;
    padding: .6rem var(--gut) 1.2rem; gap: 0;
    border-bottom: 3px solid var(--citrus);
  }
  .nav.open { display: flex; }
  .nav a { padding: .85rem .2rem; border-bottom: 1px solid rgba(238,240,232,.09); border-radius: 0; }
  .header-cta { margin: 1rem 0 0; flex-direction: column; align-items: stretch; }
  .header-cta .btn { width: 100%; }
  .header-phone { text-align: center; padding: .5rem 0; }
}

/* ----------------------------------------------------------------- Hero -- */
/* Signature element: a layered sabal-palm canopy the content sits beneath. */
.hero { position: relative; background: var(--canopy); color: var(--shell); overflow: hidden; }
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 120px;
  background: linear-gradient(180deg, transparent, rgba(15,36,25,.75));
  pointer-events: none;
}
.hero-sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 60% at 72% 8%, rgba(242,163,28,.20), transparent 62%),
    radial-gradient(70% 55% at 12% 92%, rgba(46,107,74,.42), transparent 65%);
}
.hero-canopy { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-canopy .frond { transform-origin: top center; }
@media (prefers-reduced-motion: no-preference) {
  .hero-canopy .frond { animation: sway 11s ease-in-out infinite; }
  .hero-canopy .frond:nth-of-type(2) { animation-duration: 14s; animation-delay: -3s; }
  .hero-canopy .frond:nth-of-type(3) { animation-duration: 16s; animation-delay: -7s; }
  .hero-canopy .frond:nth-of-type(4) { animation-duration: 13s; animation-delay: -5s; }
}
@keyframes sway {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(1.6deg); }
}
.hero-inner { position: relative; z-index: 2; padding-block: clamp(3.5rem, 9vw, 7rem); }
.hero-inner .lede { max-width: 54ch; }
.hero h1 { max-width: 15ch; }
.hero h1 em {
  font-style: normal; color: var(--citrus);
  display: inline-block;
}
.hero-note {
  font-family: var(--util); font-size: .82rem; font-weight: 500;
  color: rgba(238,240,232,.6); margin-top: 1.1rem;
}

/* Trust strip sits directly under the hero, in the sand tone. */
.trust {
  background: var(--sand);
  border-block: 1px solid rgba(19,32,24,.1);
}
.trust ul {
  list-style: none; margin: 0; padding-block: 1.05rem;
  display: grid; gap: .5rem 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.trust li {
  font-family: var(--util); font-size: .84rem; font-weight: 600;
  display: flex; align-items: center; gap: .55rem; color: var(--ink);
}
.trust svg { width: 17px; height: 17px; flex: none; color: var(--palmetto); }

/* ---------------------------------------------------------------- Cards -- */
.card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
a.card { text-decoration: none; color: var(--ink); display: block; }
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--frond); }
.card h3 { margin-bottom: .45rem; }
.card p { margin-bottom: 0; font-size: .98rem; color: var(--muted); }
.card-ico {
  width: 46px; height: 46px; margin-bottom: 1rem;
  display: grid; place-items: center;
  background: var(--shell); border-radius: 50%;
  color: var(--palmetto);
}
.card-ico svg { width: 24px; height: 24px; }
.card-more {
  font-family: var(--util); font-size: .84rem; font-weight: 700;
  color: var(--palmetto); margin-top: 1rem; display: inline-flex; gap: .35rem;
}
a.card:hover .card-more { color: var(--citrus-deep); }
a.card:hover .card-more span { transform: translateX(3px); }
.card-more span { transition: transform .18s ease; }

/* Stat / proof band */
.stats { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.stat b {
  display: block; font-family: var(--display); font-weight: 900;
  font-variation-settings: "wdth" 116;
  font-size: clamp(2.1rem, 4vw, 3rem); line-height: 1; color: var(--citrus);
}
.stat span { font-family: var(--util); font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: rgba(238,240,232,.75); }

/* --------------------------------------------------------------- Lists -- */
.checks { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: .65rem; }
.checks li { display: flex; gap: .7rem; align-items: flex-start; font-size: 1rem; }
.checks li::before {
  content: ""; flex: none; margin-top: .42em;
  width: 9px; height: 9px; border-radius: 2px;
  background: var(--citrus);
  transform: rotate(45deg);
}
.cols-2 { columns: 2; column-gap: 2rem; }
@media (max-width: 640px) { .cols-2 { columns: 1; } }

/* ------------------------------------------------------------- Reviews -- */
.review {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.stars { display: flex; gap: 2px; color: var(--citrus); margin-bottom: .9rem; }
.stars svg { width: 17px; height: 17px; }
.review blockquote { margin: 0 0 1.1rem; font-size: 1.03rem; line-height: 1.6; }
.review figcaption { margin-top: auto; font-family: var(--util); font-size: .84rem; font-weight: 700; color: var(--ink); }
.review figcaption em { display: block; font-style: normal; font-weight: 500; color: var(--muted); margin-top: .15rem; }

/* ----------------------------------------------------------------- FAQ -- */
.faq { border-top: 1px solid var(--sand); }
.faq details { border-bottom: 1px solid var(--sand); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.25rem 2.5rem 1.25rem 0;
  font-family: var(--display); font-weight: 700; font-variation-settings: "wdth" 104;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.3;
  position: relative; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .35rem; top: 1.65rem;
  width: 13px; height: 13px;
  border-right: 2.5px solid var(--citrus-deep); border-bottom: 2.5px solid var(--citrus-deep);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.9rem; }
.faq summary:hover { color: var(--palmetto); }
.faq .answer { padding: 0 2.5rem 1.4rem 0; color: var(--muted); }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- Steps -- */
/* Numbered because the estimate really is a sequence the customer moves through. */
.steps { counter-reset: step; display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.step { position: relative; padding-top: 3.2rem; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--display); font-weight: 900; font-variation-settings: "wdth" 118;
  font-size: 2.2rem; line-height: 1; color: var(--citrus);
}
.step::after {
  content: ""; position: absolute; top: 2.6rem; left: 0; width: 34px; height: 3px; background: var(--palmetto);
}
.step h3 { margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .98rem; margin: 0; }
.dark .step p { color: rgba(238,240,232,.72); }

/* ----------------------------------------------------------------- Form -- */
.quote-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--sand); border-top: 5px solid var(--citrus);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-lift);
}
.field { margin-bottom: 1.05rem; }
.field label {
  display: block; font-family: var(--util); font-size: .8rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; color: var(--ink); margin-bottom: .4rem;
}
.field .req { color: var(--citrus-deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .9rem;
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: var(--shell-2);
  border: 1.5px solid var(--sand); border-radius: var(--r);
  transition: border-color .15s, background-color .15s;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { background: var(--white); border-color: var(--palmetto); }
.field-row { display: grid; gap: 0 1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .84rem; color: var(--muted); margin: 1rem 0 0; }
.form-status {
  margin-top: 1rem; padding: .85rem 1rem; border-radius: var(--r);
  font-family: var(--util); font-size: .9rem; font-weight: 600; display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: #E7F2EA; color: #1E4A33; border: 1px solid #B7D9C3; }
.form-status.err { background: #FBEDE3; color: #8C4A12; border: 1px solid #EFCDA9; }

/* ----------------------------------------------------------- Area chips -- */
.chips { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; margin: 0; padding: 0; }
.chips a, .chips span {
  display: inline-block; font-family: var(--util); font-size: .84rem; font-weight: 600;
  padding: .48rem .9rem; border-radius: 100px;
  background: var(--white); border: 1px solid var(--sand); color: var(--ink); text-decoration: none;
  transition: background-color .15s, border-color .15s, color .15s;
}
.chips a:hover { background: var(--palmetto); border-color: var(--palmetto); color: var(--white); }
.dark .chips a, .dark .chips span { background: rgba(238,240,232,.07); border-color: rgba(238,240,232,.2); color: var(--shell); }
.dark .chips a:hover { background: var(--citrus); border-color: var(--citrus); color: var(--canopy); }

/* ------------------------------------------------------------ CTA band -- */
.cta-band { background: var(--palmetto); color: var(--white); }
.cta-band h2 { color: var(--white); max-width: 20ch; }
.cta-band p { color: rgba(255,255,255,.88); max-width: 52ch; }
.cta-band .wrap { display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 860px) { .cta-band .wrap { grid-template-columns: 1.3fr .7fr; } }
.cta-band .btn-row { margin-top: 0; justify-content: flex-start; }
@media (min-width: 860px) { .cta-band .btn-row { justify-content: flex-end; } }

/* ------------------------------------------------------------ Page head -- */
.pagehead { background: var(--canopy); color: var(--shell); position: relative; overflow: hidden; }
.pagehead::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 100% at 88% 0%, rgba(242,163,28,.16), transparent 60%),
              radial-gradient(60% 90% at 5% 100%, rgba(46,107,74,.4), transparent 65%);
}
.pagehead .wrap { position: relative; z-index: 1; padding-block: clamp(2.6rem, 6vw, 4.4rem); }
.pagehead h1 { max-width: 20ch; }
.pagehead .lede { max-width: 62ch; margin-bottom: 0; }
.crumbs {
  font-family: var(--util); font-size: .78rem; font-weight: 500;
  color: rgba(238,240,232,.6); margin-bottom: 1.1rem;
}
.crumbs a { color: rgba(238,240,232,.8); text-decoration: none; }
.crumbs a:hover { color: var(--citrus); }
.crumbs span { margin-inline: .45rem; }

/* --------------------------------------------------------------- Prose -- */
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; }
.prose > :first-child { margin-top: 0; }
.prose ul { padding-left: 1.15rem; }
.prose li { margin-bottom: .45rem; }

/* -------------------------------------------------------------- Footer -- */
.site-footer { background: var(--canopy); color: rgba(238,240,232,.74); font-size: .94rem; }
.site-footer .wrap { padding-block: clamp(2.8rem, 5vw, 4rem); }
.foot-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.foot-grid h4 {
  font-family: var(--util); font-size: .76rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--citrus); margin-bottom: .9rem;
}
.foot-grid ul { list-style: none; margin: 0; padding: 0; }
.foot-grid li { margin-bottom: .5rem; }
.foot-grid a { color: rgba(238,240,232,.78); text-decoration: none; }
.foot-grid a:hover { color: var(--citrus); text-decoration: underline; }
.foot-brand p { max-width: 34ch; font-size: .92rem; }
.foot-brand .brand { margin-bottom: 1rem; }
.legal {
  margin-top: 2.5rem; padding-top: 1.4rem; border-top: 1px solid rgba(238,240,232,.13);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-family: var(--util); font-size: .8rem; color: rgba(238,240,232,.55);
}
.legal a { color: rgba(238,240,232,.7); text-decoration: none; }

/* Sticky mobile call bar — the highest-intent action on a phone. */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 1px; background: rgba(15,36,25,.2);
  box-shadow: 0 -6px 24px rgba(15,36,25,.18);
}
.callbar a {
  flex: 1; text-align: center; padding: .95rem .5rem;
  font-family: var(--util); font-weight: 800; font-size: .95rem; text-decoration: none;
}
.callbar .c1 { background: var(--citrus); color: var(--canopy); }
.callbar .c2 { background: var(--palmetto); color: var(--white); }
@media (max-width: 760px) {
  .callbar { display: flex; }
  body { padding-bottom: 56px; }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
