/* ==========================================================================
   Peters Safety Kwik – Main Styles
   ========================================================================== */

:root {
  --bg: #111111;
  --bg-elevated: #1a1a1a;
  --bg-panel: #ffffff;
  --bg-muted: #f5f5f5;
  --text: #1a1a1a;
  --text-inverse: #ffffff;
  --text-muted: #5c5c5c;
  --accent: #0077cc;
  --accent-hover: #005fa3;
  --emergency: #d32f2f;
  --emergency-hover: #b71c1c;
  --border: #e5e5e5;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --header-h: 78px;
  --font: "Montserrat", system-ui, -apple-system, sans-serif;
  --container: 1140px;
  --transition: 0.28s ease;
  --whatsapp: #25d366;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-muted);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 10000;
  border-radius: var(--radius-sm);
}

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

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--emergency));
  z-index: 10001;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  background: rgba(17, 17, 17, 0.97);
}

.header-inner {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo img {
  width: clamp(140px, 24vw, 210px);
  height: auto;
  filter: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.primary-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-nav {
  padding: 0.55rem 1.1rem !important;
  font-size: 0.85rem !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 119, 204, 0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: #fff;
  color: var(--bg);
  border-color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: #ccc;
}

.btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-emergency {
  background: #fff;
  color: var(--emergency);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1rem 1.8rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

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

.btn-emergency-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-emergency-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: var(--text-inverse);
  overflow: hidden;
  background: var(--bg);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: brightness(1.22) contrast(1.05) saturate(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 45%, rgba(0, 0, 0, 0.35) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.08) 40%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  padding: 5rem 0 4.5rem;
}

.hero-content > * {
  max-width: 36rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  border-left: 3px solid var(--accent);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 0 6px 6px 0;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw + 1rem, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.35em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65), 0 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
  font-size: clamp(1.15rem, 1.5vw + 0.8rem, 1.65rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-lead {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.75rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

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

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */
.stats {
  background: var(--bg);
  color: #fff;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  text-align: center;
}

.stat-card {
  padding: 1rem;
}

.stat-number {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.stat-text {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.stat-label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.section-header {
  max-width: 42rem;
  margin-bottom: 2.75rem;
}

.section-header.centered,
.section-header {
  text-align: left;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 2.5vw + 0.8rem, 2.5rem);
  color: var(--text);
}

.section-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0;
}

.section-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

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

.feature-card,
.service-card,
.fleet-card,
.testimonial-card,
.contact-card {
  background: var(--bg-panel);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover,
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-icon,
.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(0, 119, 204, 0.1);
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.feature-icon svg,
.service-icon svg {
  width: 32px;
  height: 32px;
}

.feature-card h3,
.service-card h3,
.fleet-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.feature-card p,
.service-card p,
.fleet-card p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Why Us */
.why-us {
  background: var(--bg-muted);
}

/* Services */
.services {
  background: #fff;
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
}

.service-link::after {
  content: " →";
}

.services-extra {
  margin-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 48rem;
  margin-inline: auto;
}

/* About */
.about {
  background: var(--bg-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.about-content p {
  color: var(--text-muted);
}

.about-list {
  margin: 1.25rem 0 1.75rem;
}

.about-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  font-weight: 500;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.about-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-media figcaption {
  background: var(--bg);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.85rem 1.1rem;
  font-size: 0.85rem;
}

/* Fleet */
.fleet {
  background: var(--bg);
  color: #fff;
}

.fleet .section-eyebrow {
  color: #5eb3ef;
}

.fleet .section-header h2 {
  color: #fff;
}

.fleet .section-intro {
  color: rgba(255, 255, 255, 0.72);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.fleet-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  color: #fff;
}

.fleet-card h3 {
  color: #fff;
}

.fleet-card p {
  color: rgba(255, 255, 255, 0.7);
}

.fleet-card:hover {
  border-color: rgba(0, 119, 204, 0.5);
  transform: translateY(-4px);
}

/* Workshop */
.workshop {
  background: #fff;
}

.workshop-showcase {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.workshop-showcase img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

/* Gallery */
.gallery {
  background: var(--bg-muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.gallery-item {
  border: 0;
  padding: 0;
  margin: 0;
  background: var(--bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 119, 204, 0);
  transition: background var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover::after {
  background: rgba(0, 119, 204, 0.18);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(0, 0, 0, 0.92);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-image {
  max-width: min(90vw, 1000px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
}

.lightbox-prev {
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Emergency */
.emergency {
  background: linear-gradient(135deg, #c62828 0%, var(--emergency) 50%, #9a0007 100%);
  color: #fff;
  padding: clamp(3rem, 5vw, 4rem) 0;
}

.emergency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.emergency-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.emergency h2 {
  font-size: clamp(1.6rem, 2.5vw + 0.5rem, 2.2rem);
  margin-bottom: 0.5rem;
}

.emergency-copy {
  max-width: 36rem;
}

.emergency-copy p:last-child {
  margin: 0;
  opacity: 0.92;
}

.emergency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Testimonials */
.testimonials {
  background: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  margin: 0;
}

.testimonial-card p {
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-card footer {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  font-style: normal;
}

/* FAQ */
.faq {
  background: var(--bg-muted);
}

.faq-list {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--accent);
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.35rem 1.25rem;
  color: var(--text-muted);
}

.faq-answer p {
  margin: 0;
}

/* Contact */
.contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.contact-card h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
  color: var(--text);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--accent);
}

.muted {
  color: var(--text-muted) !important;
  font-weight: 400 !important;
  font-size: 0.9rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.hours-list li:last-child {
  border-bottom: 0;
}

.hours-emergency {
  color: var(--emergency);
  font-weight: 700;
  margin-top: 0.35rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
  background: var(--bg-muted);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand img {
  margin-bottom: 1rem;
  width: 150px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 22rem;
}

.site-footer h3 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.site-footer li {
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom p {
  margin: 0;
}

/* --------------------------------------------------------------------------
   Floating actions
   -------------------------------------------------------------------------- */
.float-actions {
  position: fixed;
  right: 1.1rem;
  bottom: 5.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: transform var(--transition), box-shadow var(--transition);
}

.float-btn:hover {
  transform: translateY(-2px) scale(1.03);
  color: #fff !important;
}

.float-call {
  background: var(--accent);
}

.float-wa {
  background: var(--whatsapp);
}

.float-label {
  display: inline;
}

/* Mobile emergency bar */
.mobile-emergency {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  background: var(--emergency);
}

.mobile-emergency a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  color: #fff !important;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.3;
}

.mobile-emergency strong {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Back to top */
.back-to-top {
  position: fixed;
  left: 1.1rem;
  bottom: 5.5rem;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--bg);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
}
