/* eMobile Repairs v2.1 - mobile-first, professional
   v2: Customizations section; reviews/testimonials removed until real feedback */

:root {
  --navy: #0b1f33;
  --navy-mid: #14304a;
  --blue: #0ea5e9;
  --blue-dark: #0284c7;
  --blue-soft: #e0f2fe;
  --sky: #7dd3fc;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --white: #ffffff;
  /* Sampled from Header Logo.png canvas (warm off-white) */
  --nav-bg: #f1f0eb;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1080px;
  --nav-h: 72px;
  --pad: 1.15rem;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 8px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

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

a {
  color: var(--blue-dark);
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

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

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 6px 18px rgba(14, 165, 233, 0.32);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border-color: var(--white);
}

/* Secondary button on light backgrounds (hero) */
.btn-secondary-dark {
  background: var(--white);
  color: var(--navy);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.btn-secondary-dark:hover,
.btn-secondary-dark:focus-visible {
  background: var(--blue-soft);
  color: var(--navy);
  border-color: #bae6fd;
}

.btn-full {
  width: 100%;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--nav-bg);
  border-bottom: 1px solid #e4e2db;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  height: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

/* Wide header brand mark — no feather / blend effects */
.logo {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  max-width: min(620px, calc(100% - 56px));
  line-height: 0;
}

.logo img {
  display: block;
  height: 54px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain;
  object-position: left center;
}

.nav-menu {
  display: none;
  list-style: none;
}

.nav-menu a {
  display: block;
  color: var(--gray-700);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.nav-menu a.nav-cta {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  margin-top: 0.35rem;
}

.nav-menu a.nav-cta:hover,
.nav-menu a.nav-cta:focus-visible {
  background: var(--blue-dark);
  color: var(--white);
}

.mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  position: relative;
  transition: transform var(--ease), background var(--ease);
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.mobile-menu-btn[aria-expanded="true"] .hamburger {
  background: transparent;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile open menu panel */
.nav-menu.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  padding: 0.75rem var(--pad) 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  max-height: calc(100dvh - var(--nav-h));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  gap: 0.15rem;
}

/* ---------- Hero — logo as faded background (same style as old stock bike) ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) var(--pad) 3rem;
  color: var(--white);
  /* Solid color fallback, then gradient wash, then logo behind it */
  background-color: var(--navy);
  /* Empty-middle brand logo as faded hero background */
  background-image:
    linear-gradient(
      155deg,
      rgba(11, 31, 51, 0.9) 0%,
      rgba(20, 48, 74, 0.84) 48%,
      rgba(2, 132, 199, 0.72) 100%
    ),
    url("hero-logo.jpg?v=20260710e");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, transparent 0%, rgba(11, 31, 51, 0.3) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 40rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.9rem;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(125, 211, 252, 0.35);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(1.75rem, 7vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 1.75rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 22rem;
  margin-inline: auto;
}

.hero-actions .btn {
  width: 100%;
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--navy);
  color: var(--white);
  padding: 1.15rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 0.75rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  min-width: 0;
}

.trust-item i {
  color: var(--sky);
  font-size: 1.05rem;
  flex-shrink: 0;
  width: 1.2rem;
  text-align: center;
}

/* ---------- Sections ---------- */
.section {
  padding: 3.25rem 0;
}

.section-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.55rem;
}

.section-header h2,
.about-content h2 {
  font-size: clamp(1.55rem, 5.5vw, 2.15rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.section-desc {
  color: var(--gray-500);
  font-size: 1.02rem;
  line-height: 1.65;
}

/* ---------- Services ---------- */
.services {
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.service-card > p {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.service-card ul {
  display: grid;
  gap: 0.45rem;
}

.service-card li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.98rem;
  color: var(--gray-700);
  line-height: 1.4;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.devices-we-serve {
  margin-top: 2rem;
  text-align: center;
}

.devices-we-serve h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.9rem;
}

.device-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.device-pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--navy-mid);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.device-pills i {
  color: var(--blue);
}

.device-icon-svg {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  color: var(--blue);
  display: block;
  overflow: visible;
}

.device-pill-scooter {
  gap: 0.45rem;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
  background: var(--gray-200);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content .section-label {
  text-align: left;
}

.about-content p {
  color: var(--gray-500);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.about-list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.about-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.4;
}

.about-list i {
  color: var(--blue);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ---------- Photo strip ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.photo-strip img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95);
}

/* ---------- Areas ---------- */
.areas {
  background: var(--gray-50);
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.area {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 1rem 0.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-mid);
  box-shadow: var(--shadow-sm);
  line-height: 1.25;
}

/* ---------- Customizations ---------- */
.customizations {
  background: var(--white);
}

.custom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.custom-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.custom-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}

.custom-card h3 {
  font-size: 1.12rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.custom-card p {
  color: var(--gray-500);
  font-size: 0.98rem;
  line-height: 1.55;
}

.custom-cta {
  margin-top: 2rem;
  text-align: center;
  padding: 1.5rem 1.25rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.custom-cta p {
  color: var(--gray-700);
  font-size: 1.02rem;
  font-weight: 500;
  margin-bottom: 1.1rem;
  line-height: 1.5;
  max-width: 36rem;
  margin-inline: auto;
}

/* ---------- Contact ---------- */
.contact {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 55%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem;
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-row label span {
  color: var(--blue);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  color: var(--gray-900);
  font-family: inherit;
  font-size: 16px; /* prevents iOS zoom */
  line-height: 1.4;
  -webkit-appearance: none;
  appearance: none;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.16);
}

.form-row textarea {
  min-height: 130px;
  resize: vertical;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-note {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.45;
  min-height: 1.2em;
}

.form-note.success { color: #059669; }
.form-note.error { color: #dc2626; }

#form-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  box-shadow: var(--shadow-lg);
}

.info-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
}

.info-card ul {
  display: grid;
  gap: 1.05rem;
  margin-bottom: 1.35rem;
}

.info-card li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.info-card li i {
  color: var(--sky);
  width: 1.2rem;
  text-align: center;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.info-card strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.info-card span,
.info-card a {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.45;
  word-break: break-word;
}

.info-card a:hover {
  color: var(--sky);
}

.info-card .btn-secondary {
  border-color: rgba(255, 255, 255, 0.35);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 2.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-bottom: 1.75rem;
}

.footer-logo {
  height: 42px !important;
  width: auto !important;
  max-width: 200px !important;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
  padding: 0.35rem 0.55rem;
  margin-bottom: 0.85rem;
}

.footer-brand p {
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 28rem;
}

.footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.footer-links ul {
  display: grid;
  gap: 0.4rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  padding: 0.2rem 0;
}

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

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-links a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.social-links a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.social-nextdoor-icon {
  width: 1.15em;
  height: 1.15em;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.1rem 0;
  text-align: center;
  font-size: 0.88rem;
}

/* ---------- Tablet+ ---------- */
@media (min-width: 640px) {
  :root {
    --pad: 1.5rem;
    --nav-h: 76px;
  }

  body {
    font-size: 16px;
  }

  .logo {
    max-width: min(540px, calc(100% - 56px));
  }

  .logo img {
    height: 58px !important;
  }

  .hero-actions {
    flex-direction: row;
    max-width: none;
    justify-content: center;
  }

  .hero-actions .btn {
    width: auto;
    min-width: 11rem;
  }

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

  .trust-item {
    justify-content: center;
    font-size: 0.9rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 36rem;
    margin-inline: auto;
  }

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

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

  .photo-strip img {
    height: 150px;
  }

  .section {
    padding: 4rem 0;
  }
}

/* ---------- Desktop nav + multi-column ---------- */
@media (min-width: 960px) {
  :root {
    --nav-h: 82px;
    --pad: 1.75rem;
  }

  .mobile-menu-btn {
    display: none;
  }

  .nav-menu {
    display: flex !important;
    position: static !important;
    flex-direction: row;
    align-items: center;
    max-height: none;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    gap: 0.15rem;
  }

  .nav-menu a {
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    white-space: nowrap;
  }

  .nav-menu a.nav-cta {
    margin-top: 0;
    margin-left: 0.25rem;
    padding: 0.55rem 1.05rem;
  }

  .logo {
    max-width: min(640px, 58vw);
  }

  .logo img {
    height: 64px !important;
  }

  .hero {
    min-height: min(88vh, 700px);
    padding: calc(var(--nav-h) + 3rem) var(--pad) 4rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-sub {
    font-size: 1.12rem;
  }

  .section {
    padding: 5rem 0;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    gap: 1.25rem;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .about-image {
    aspect-ratio: 4 / 3;
  }

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

  .custom-card:hover {
    box-shadow: var(--shadow);
    border-color: #bae6fd;
    transform: translateY(-2px);
    transition: box-shadow var(--ease), border-color var(--ease), transform var(--ease);
  }

  .contact-grid {
    grid-template-columns: 1.2fr 0.9fr;
    gap: 1.5rem;
    max-width: none;
  }

  .contact-form,
  .info-card {
    padding: 1.75rem;
  }

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

  .service-card:hover {
    box-shadow: var(--shadow);
    border-color: #bae6fd;
    transform: translateY(-2px);
    transition: box-shadow var(--ease), border-color var(--ease), transform var(--ease);
  }

  .area:hover {
    border-color: var(--blue);
    color: var(--blue-dark);
  }
}

@media (min-width: 640px) and (max-width: 959px) {
  .services-grid {
    max-width: 34rem;
  }

  .contact-grid {
    max-width: 34rem;
    margin-inline: auto;
  }

  .custom-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 40rem;
    margin-inline: auto;
  }
}

@media (hover: none) {
  .service-card:hover,
  .custom-card:hover,
  .area:hover {
    transform: none;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
