:root {
  --ink: #10231f;
  --forest: #14532d;
  --teal: #0f766e;
  --aqua: #14b8a6;
  --lime: #84cc16;
  --paper: #ffffff;
  --cream: #f7fbf6;
  --mist: #e9f7f4;
  --line: #d8e8e3;
  --muted: #5d6f69;
  --shadow: 0 18px 48px rgba(16, 35, 31, 0.14);
  --shadow-soft: 0 12px 32px rgba(16, 35, 31, 0.1);
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(216, 232, 227, 0.9);
  backdrop-filter: blur(16px);
  transition: box-shadow 200ms ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-soft);
}

.top-strip {
  background: var(--teal);
  color: white;
  font-size: 0.86rem;
  font-weight: 900;
}

.top-strip-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-strip a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-bar {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: var(--radius);
}

.brand span {
  display: grid;
  line-height: 1.08;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  color: var(--muted);
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-left: auto;
  color: #2d463f;
  font-weight: 850;
}

.main-nav a:hover,
.nav-call:hover {
  color: var(--teal);
}

.nav-call {
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--teal);
  font-weight: 950;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 112px));
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 75% 25%, rgba(20, 184, 166, 0.2), transparent 32%),
    linear-gradient(90deg, rgba(16, 35, 31, 0.92) 0%, rgba(16, 35, 31, 0.76) 46%, rgba(16, 35, 31, 0.26) 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-copy {
  max-width: 780px;
  color: white;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.15rem;
  max-width: 760px;
  font-size: clamp(3rem, 5.6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.25rem;
  line-height: 1.18;
}

.hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  line-height: 1.65;
}

.hero-copy p.hero-areas {
  margin-top: 0.9rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.55rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.25rem;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 950;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--teal), var(--aqua));
  color: white;
  box-shadow: 0 14px 30px rgba(20, 184, 166, 0.28);
}

.button-light {
  background: white;
  color: var(--ink);
}

.full-width {
  width: 100%;
}

.hero-card {
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
}

.hero-card p {
  color: var(--muted);
  line-height: 1.55;
}

.hero-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius);
  background: var(--mist);
  font-weight: 850;
}

.hero-card-note {
  margin: 1rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(15, 118, 110, 0.18);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--teal, #0f766e);
}

.quick-actions {
  position: relative;
  z-index: 2;
  margin-top: -3rem;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.quick-grid a {
  min-height: 148px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.quick-grid span {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--teal);
  font-size: 1.7rem;
  font-weight: 950;
}

.quick-grid strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
}

.quick-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.areas-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2.5rem;
}

.counties {
  margin-top: 2.5rem;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.counties h3 {
  margin-bottom: 0.4rem;
}

.counties p {
  margin-bottom: 1.1rem;
  color: var(--muted);
  line-height: 1.65;
}

.counties-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.counties-list li {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--mist);
  color: var(--teal);
  font-weight: 700;
}

.section {
  padding: 5.5rem 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading.narrow {
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.section-heading p:not(.eyebrow),
.service-list p,
.why-grid p,
.faq-list p,
.quote-intro p {
  color: var(--muted);
  line-height: 1.65;
}

.section-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.services-section,
.faq-section {
  background: var(--cream);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-list article,
.why-grid article,
.result-card,
.lead-form,
.phone-panel,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.service-list article,
.why-grid article {
  padding: 1.35rem;
}

.service-list span {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--mist);
  color: var(--teal);
  font-weight: 950;
}

.results-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 1.25rem;
}

.result-card {
  overflow: hidden;
}

.slider {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #dbe8e3;
}

.slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider .after {
  clip-path: inset(0 0 0 50%);
}

.slider-range {
  position: absolute;
  z-index: 3;
  inset: auto 1rem 1rem;
  width: calc(100% - 2rem);
  accent-color: var(--teal);
}

.photo-label {
  position: absolute;
  z-index: 2;
  top: 1rem;
  padding: 0.42rem 0.65rem;
  border-radius: var(--radius);
  background: rgba(16, 35, 31, 0.82);
  color: white;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.before-label {
  left: 1rem;
}

.after-label {
  right: 1rem;
}

.split-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 282px;
}

.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-copy {
  padding: 1.35rem;
}

.card-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.why-section {
  background: var(--ink);
  color: white;
}

.why-section .section-heading p,
.why-section .eyebrow {
  color: var(--aqua);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.why-grid article {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.why-grid strong {
  display: block;
  margin-bottom: 0.55rem;
  color: white;
  font-size: 1.08rem;
}

.why-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.reviews-head .section-heading {
  margin-bottom: 0;
}

.rating-summary {
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  padding: 1.1rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}

.rating-summary strong {
  font-size: 2.6rem;
  line-height: 1;
  color: var(--teal);
}

.rating-summary small {
  color: var(--muted);
  font-weight: 850;
}

.stars {
  color: #f5a623;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
}

.reviews-carousel {
  margin-top: 2.5rem;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    transition: none;
  }
}

.review-slide {
  flex: 0 0 100%;
  width: 100%;
  margin: 0;
}

.review-slide p {
  font-size: 1.25rem;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.reviews-nav,
.reviews-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.reviews-nav {
  width: 2.9rem;
  height: 2.9rem;
  font-size: 1.5rem;
  line-height: 1;
  padding-bottom: 0.15rem;
}

.reviews-toggle {
  height: 2.9rem;
  padding: 0 1.2rem;
  font-weight: 850;
  font-size: 0.95rem;
}

.reviews-nav:hover,
.reviews-toggle:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
}

.reviews-nav:focus-visible,
.reviews-toggle:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.reviews-toggle-icon {
  width: 0.7rem;
  height: 0.85rem;
  /* Pause icon (two bars) by default */
  border-left: 0.22rem solid currentColor;
  border-right: 0.22rem solid currentColor;
}

.reviews-toggle[aria-pressed="true"] .reviews-toggle-icon {
  /* Play icon (triangle) when paused */
  width: 0;
  height: 0;
  border-left: 0.75rem solid currentColor;
  border-right: 0;
  border-top: 0.45rem solid transparent;
  border-bottom: 0.45rem solid transparent;
}

.reviews-dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.reviews-dot {
  width: 0.7rem;
  height: 0.7rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.reviews-dot:hover {
  background: var(--muted);
}

.reviews-dot[aria-selected="true"] {
  background: var(--teal);
  transform: scale(1.3);
}

.reviews-dot:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.review-card p {
  margin: 0;
  color: var(--ink);
  line-height: 1.6;
}

.review-card footer {
  margin-top: auto;
  padding-top: 0.4rem;
  border-top: 1px solid var(--line);
}

.review-card footer strong {
  display: block;
}

.review-card footer span {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}

.review-cta {
  align-items: flex-start;
  justify-content: center;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, var(--mist), white);
}

.review-cta strong {
  font-size: 1.25rem;
}

.review-cta p {
  color: var(--muted);
}

.estimate-section {
  background: var(--cream);
}

.estimate-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.estimate-points {
  display: grid;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.estimate-points li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}

.estimate-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 950;
}

.estimate-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.estimate-form {
  display: grid;
  gap: 0.9rem;
}

.estimate-form label {
  display: grid;
  gap: 0.38rem;
  font-weight: 850;
}

.estimate-form select,
.estimate-form input {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.estimate-form select:focus,
.estimate-form input:focus {
  outline: 3px solid rgba(20, 184, 166, 0.42);
  outline-offset: 3px;
}

.estimate-result {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
}

.estimate-result-label {
  margin: 0;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.estimate-average {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 3.6rem);
  font-weight: 950;
  line-height: 1;
}

.estimate-range {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.estimate-range strong {
  color: white;
}

.estimate-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.5;
}

.estimate-result .button {
  margin-top: auto;
}

.quote-section {
  background: linear-gradient(135deg, var(--mist), white);
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 2rem;
  align-items: start;
}

.phone-panel {
  display: block;
  margin-top: 1.5rem;
  padding: 1.25rem;
}

.phone-panel span,
.phone-panel strong {
  display: block;
}

.phone-panel span {
  color: var(--muted);
  font-weight: 850;
}

.phone-panel strong {
  margin-top: 0.25rem;
  color: var(--teal);
  font-size: 1.65rem;
}

.lead-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
}

.lead-form label {
  display: grid;
  gap: 0.38rem;
  font-weight: 850;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.button:focus-visible,
.nav-call:focus-visible,
.menu-toggle:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(20, 184, 166, 0.42);
  outline-offset: 3px;
}

.hidden {
  display: none;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  padding: 1.15rem 1.25rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 950;
}

.faq-list p {
  margin-top: 0.9rem;
  margin-bottom: 0;
}

.site-footer {
  background: #0a1815;
  color: white;
  padding: 3rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
  gap: 2rem;
}

.footer-grid img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.footer-grid p,
.footer-grid a,
.footer-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid strong,
.footer-grid a,
.footer-grid span {
  margin-bottom: 0.65rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .main-nav,
  .nav-call {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    position: fixed;
    inset: 112px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem 20px 1.3rem;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .mobile-menu.open {
    display: grid;
  }

  .hero-layout,
  .section-split,
  .results-grid,
  .quote-layout,
  .faq-layout,
  .footer-grid,
  .estimate-layout,
  .estimate-card {
    grid-template-columns: 1fr;
  }

  .review-slide p {
    font-size: 1.1rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    max-width: 520px;
  }

  .quick-grid {
    grid-template-columns: 1fr;
  }

  .quick-actions {
    margin-top: 0;
    padding-top: 1rem;
    background: var(--cream);
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1160px);
  }

  .top-strip-inner {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.12rem;
    padding: 0.45rem 0;
  }

  .nav-bar {
    min-height: 72px;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.78rem;
  }

  .mobile-menu {
    inset: 126px 0 auto;
  }

  .hero-layout {
    padding: 3.35rem 0 2rem;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
    line-height: 0.98;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-card {
    display: none;
  }

  .quick-grid a {
    min-height: auto;
  }

  .section {
    padding: 3.75rem 0;
  }

  .service-list,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .reviews-head {
    align-items: flex-start;
  }

  .slider {
    min-height: 310px;
  }

  .split-photo {
    min-height: 230px;
  }

  .phone-panel strong {
    font-size: 1.35rem;
  }

  .mobile-cta {
    position: fixed;
    z-index: 45;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .mobile-cta a {
    padding: 0.9rem 0.35rem;
    color: white;
    text-align: center;
    font-weight: 950;
    font-size: 0.9rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
