:root {
  --ink: #15191b;
  --ink-2: #22282b;
  --ink-3: #30383b;
  --gold: #f2c94c;
  --gold-dark: #d6a915;
  --gold-soft: #f4e7b5;
  --paper: #f6f5f0;
  --paper-2: #eeede7;
  --white: #ffffff;
  --text: #202628;
  --muted: #626c70;
  --line: #d9dcd8;
  --success: #17622e;
  --max: 1200px;
  --shadow: 0 18px 50px rgb(22 29 31 / 10%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
[data-en] { display: none !important; }
body.en [data-fr] { display: none !important; }
body.en [data-en] { display: revert !important; }

.top {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #343b3e;
  background: rgb(21 25 27 / 97%);
  backdrop-filter: blur(14px);
}
.nav {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: block;
  width: 288px;
  height: 82px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgb(242 201 76 / 38%);
  border-radius: 7px;
  background: #000;
}
.brand img { display: block; width: 100%; height: 100%; object-fit: contain; }
.navlinks {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #f4f5f5;
  font-size: .9rem;
  font-weight: 800;
}
.navlinks > a:not(.quote-nav):not(.nav-phone) { padding-block: 12px; }
.navlinks > a:hover, .navlinks > a.active { color: var(--gold); }
.nav-phone { white-space: nowrap; color: var(--gold); font-weight: 900; }
.quote-nav {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 7px;
  background: var(--gold);
  color: var(--ink) !important;
  text-align: center;
}
.quote-nav:hover { background: var(--gold-dark); }
.lang { display: flex; padding: 3px; border: 1px solid #5e686c; border-radius: 999px; }
.lang button {
  border: 0;
  border-radius: 99px;
  background: none;
  color: #dfe2e3;
  cursor: pointer;
  font-weight: 900;
  padding: 6px 9px;
}
.lang button.active { background: var(--gold); color: var(--ink); }
.menu {
  display: none;
  min-width: 43px;
  min-height: 43px;
  border: 1px solid #596266;
  border-radius: 7px;
  background: none;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}
.mobile-nav {
  display: none;
  padding: 8px 20px 18px;
  border-top: 1px solid #343b3e;
  background: #1b2022;
}
.mobile-nav.open { display: grid; }
.mobile-nav a { padding: 12px; border-bottom: 1px solid #343b3e; color: #fff; font-weight: 800; }
.mobile-nav a.active { color: var(--gold); }
.mobile-nav .quote-nav { margin-top: 10px; border: 0; }

.hero { color: #fff; background: var(--ink); }
.hero.home {
  min-height: 650px;
  display: flex;
  align-items: center;
  padding-block: 76px;
  background-image: linear-gradient(90deg, rgb(21 25 27 / 99%) 0%, rgb(21 25 27 / 94%) 48%, rgb(21 25 27 / 73%) 75%, rgb(21 25 27 / 58%) 100%), url('/assets/electrician-hero.webp');
  background-position: center;
  background-size: cover;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr);
  align-items: center;
  gap: 64px;
}
.eyebrow {
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: var(--gold); }
.hero h1, .page-hero h1 {
  max-width: 900px;
  margin: 14px 0 24px;
  font-size: clamp(2.75rem, 5.4vw, 5rem);
  letter-spacing: -.055em;
  line-height: .98;
}
.hero h1 em { display: block; color: var(--gold); font-style: normal; }
.lead { max-width: 700px; margin: 0 0 31px; color: #dbe0e1; font-size: 1.18rem; }
.actions { display: flex; flex-wrap: wrap; gap: 13px; }
.btn {
  min-height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 2px solid var(--gold);
  border-radius: 7px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.primary { background: var(--gold); color: var(--ink); }
.primary:hover { border-color: var(--gold-dark); background: var(--gold-dark); }
.outline { background: rgb(21 25 27 / 62%); color: #fff; }
.outline:hover { background: var(--ink-3); }
.dark-btn { border-color: var(--ink); background: var(--ink); color: #fff; }
.dark-btn:hover { background: var(--ink-3); }

.hero-card, .service-facts {
  padding: 31px;
  border-top: 5px solid var(--gold);
  border-radius: 13px;
  background: rgb(255 255 255 / 95%);
  box-shadow: 0 24px 70px rgb(0 0 0 / 38%);
  color: var(--ink);
}
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 21px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #f7edc8;
  font-size: .83rem;
  font-weight: 900;
}
.rating-pill span { color: #8c6b06; letter-spacing: .05em; }
.hero-card > strong, .service-facts > strong {
  display: block;
  margin-bottom: 15px;
  font-size: 1.35rem;
  line-height: 1.25;
}
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li {
  position: relative;
  padding: 11px 0 11px 29px;
  border-top: 1px solid #d9dcdd;
  font-weight: 800;
}
.check-list li::before { position: absolute; left: 2px; color: #8c6b06; content: '✓'; }

.trustbar { background: #fff; box-shadow: 0 12px 38px rgb(28 36 39 / 6%); }
.trustgrid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trustitem { display: block; padding: 24px 28px; border-right: 1px solid var(--line); }
.trustitem:last-child { border-right: 0; }
.trustitem strong, .trustitem span { display: block; }
.trustitem span { color: var(--muted); font-size: .9rem; }
.trust-link:hover strong { color: #8a6a0a; }

section { padding-block: 88px; }
.section-head {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 40px;
}
.section-head.compact { align-items: center; }
.section-head h2, .proof-copy h2, .local-grid h2, .faq-grid h2, .contact-details h2, .scope-card h2, .service-expertise h2 {
  margin: 8px 0 0;
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  letter-spacing: -.045em;
  line-height: 1.04;
}
.section-head p, .local-grid p, .faq-grid > div > p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.service-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  padding: 29px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 28px rgb(30 39 42 / 5%);
  transition: 180ms ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card small, .audience-grid article > span, .area-grid article > span {
  color: #95730d;
  font-weight: 900;
  letter-spacing: .12em;
}
.service-card h3 { margin: 15px 0 9px; font-size: 1.35rem; line-height: 1.2; }
.service-card p { margin: 0 0 20px; color: var(--muted); }
.text-link { margin-top: auto; color: #715606; font-weight: 900; }
.text-link.large { display: inline-block; margin-top: 21px; font-size: 1.05rem; }

.dark { background: var(--ink); color: #fff; }
.proof-grid, .expertise-grid {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 62px;
}
.proof-image { height: 560px; overflow: hidden; border-radius: 13px; }
.proof-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.proof-copy p, .service-expertise p { color: #cbd1d3; font-size: 1.05rem; }
.proof-points { margin: 27px 0 31px; border-top: 1px solid #3b4346; }
.proof-points > div {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid #3b4346;
}
.proof-points strong { color: var(--gold); }
.local-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 65px;
}
.google-card {
  display: block;
  padding: 37px;
  border: 1px solid #ddc86f;
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: 180ms ease;
}
.google-card:hover { transform: translateY(-3px); }
.google-card-profile { display: block; }
.google-card-profile:hover .text-link { color: #755c08; }
.google-card .stars { display: block; color: #b18707; font-size: 1.35rem; letter-spacing: .06em; }
.google-card .google-rating-title { display: block; margin-top: 10px; font-size: 1.65rem; }
.google-card-profile p { margin: 9px 0 20px; }
.google-review-invite { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.google-card .review-prompt { display: block; font-size: 1rem; }
.google-review-invite p { margin: 4px 0 16px; color: var(--muted); }
.google-review-button { width: 100%; min-height: 49px; }
.soft { background: var(--paper-2); }
.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: 65px;
}
.faq-list { border-top: 1px solid #bfc3bf; }
.faq-list details { border-bottom: 1px solid #bfc3bf; }
.faq-list summary {
  position: relative;
  padding: 21px 42px 21px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 900;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 19px; right: 4px; color: #8b6a07; content: '+'; font-size: 1.4rem; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list p { margin: -5px 0 21px; color: var(--muted); }

.cta { background: var(--gold-soft); }
.cta-grid { display: flex; align-items: center; justify-content: space-between; gap: 44px; }
.cta h2 { margin: 0 0 10px; font-size: clamp(2.15rem, 4vw, 3.45rem); letter-spacing: -.04em; line-height: 1.04; }
.cta p { max-width: 680px; margin: 0; }
.cta .actions { flex: 0 0 auto; }

.page-hero { padding-block: 78px; background: var(--ink); color: #fff; }
.page-hero h1 { max-width: 980px; }
.page-hero p { max-width: 780px; margin: 0; color: #d0d6d8; font-size: 1.12rem; }
.page-hero .actions { margin-top: 29px; }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: #aeb8ba;
  font-size: .82rem;
}
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs strong { color: #fff; }
.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr);
  align-items: center;
  gap: 65px;
}
.service-hero h1 { font-size: clamp(2.6rem, 5vw, 4.65rem); }
.service-facts { box-shadow: 0 20px 60px rgb(0 0 0 / 27%); }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  align-items: start;
  gap: 64px;
}
.prose h2 { margin: 0 0 18px; font-size: clamp(2.1rem, 3.6vw, 3.3rem); letter-spacing: -.04em; line-height: 1.06; }
.prose p { color: #4f595d; font-size: 1.06rem; }
.scope-card {
  position: sticky;
  top: 130px;
  padding: 31px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}
.scope-card h2 { margin-bottom: 19px; font-size: 1.8rem; }
.scope-card ul { margin: 0; padding: 0; list-style: none; }
.scope-card li { position: relative; padding: 12px 0 12px 27px; border-top: 1px solid var(--line); }
.scope-card li::before { position: absolute; left: 1px; color: #8c6b06; content: '✓'; font-weight: 900; }
.service-area-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
  align-items: start;
  gap: 32px;
}
.service-area-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.service-area-panel h2 { margin: 8px 0 9px; font-size: clamp(2rem, 3.6vw, 3.15rem); letter-spacing: -.04em; line-height: 1.05; }
.service-area-lead { margin: 0 0 25px; color: var(--muted); font-size: 1.04rem; }
.area-list { margin: 0; padding: 0; list-style: none; }
.area-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}
.area-list li > span { color: #8c6b06; font-size: .86rem; font-weight: 900; letter-spacing: .12em; }
.area-list strong { display: block; font-size: 1.08rem; line-height: 1.35; }
.area-list small { display: block; margin-top: 4px; color: var(--muted); font-size: .9rem; line-height: 1.5; }
.service-area-services { position: static; }
.service-area-services > p { margin: -5px 0 22px; color: var(--muted); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-grid article { padding: 29px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.process-grid article > span { color: #8b6a07; font-weight: 900; }
.process-grid h3 { margin: 12px 0 8px; font-size: 1.25rem; }
.process-grid p { margin: 0; color: var(--muted); }
.expertise-grid { grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr); }
.expertise-grid > img { width: 100%; height: 500px; display: block; object-fit: cover; border-radius: 13px; }
.service-expertise h2 { margin-bottom: 17px; }
.service-expertise .btn { margin-top: 12px; }

.audience-grid, .area-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.audience-grid article, .area-grid article { padding: 31px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.audience-grid article { border-color: #394144; background: var(--ink-2); }
.audience-grid article > span { color: var(--gold); }
.audience-grid h2, .area-grid h2 { margin: 13px 0 8px; font-size: 1.55rem; }
.audience-grid p { color: #c6ced0; }
.area-grid p { color: var(--muted); }

.contact-layout, .quote-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 55px;
}
.contact-details h2 { margin-bottom: 26px; }
.contact-item { padding: 18px 0; border-top: 1px solid var(--line); }
.contact-item small { display: block; color: var(--muted); font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.contact-item a, .contact-item strong { font-size: 1.2rem; font-weight: 900; }
.contact-details .actions { margin-top: 26px; }
.contact-photo { position: relative; height: 600px; overflow: hidden; border-radius: 13px; }
.contact-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.contact-photo > div { position: absolute; inset: auto 0 0; padding: 65px 25px 24px; background: linear-gradient(transparent, rgb(17 17 17 / 93%)); color: #fff; }
.contact-photo strong, .contact-photo span { display: block; }
.contact-photo strong { font-size: 1.4rem; }

.info-panel { padding: 34px; border-radius: 12px; background: var(--ink); color: #fff; }
.info-panel h2 { margin: 6px 0 13px; font-size: 2rem; line-height: 1.1; }
.info-panel p { color: #cbd1d3; }
.info-panel ol { margin: 26px 0; padding-left: 22px; }
.info-panel li { padding: 8px 0; border-bottom: 1px solid #3b4346; }
.phone-link { display: inline-block; margin-top: 11px; color: var(--gold); font-size: 1.3rem; font-weight: 900; }
.form-card { padding: 34px; border: 1px solid var(--line); border-radius: 13px; background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.form-grid > label { display: block; font-weight: 800; }
.form-grid > label.full { grid-column: 1 / -1; }
.form-grid b { color: #765b08; font-size: .78rem; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  display: block;
  margin-top: 6px;
  padding: 13px;
  border: 1px solid #aeb3b1;
  border-radius: 7px;
  outline: none;
  background: #fbfbf8;
  color: var(--text);
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: #8e6e09; box-shadow: 0 0 0 3px rgb(242 201 76 / 34%); }
.form-grid input[readonly] { border-color: #c9ccc8; background: var(--paper-2); color: #3e4649; cursor: default; }
.form-grid textarea { min-height: 170px; resize: vertical; }
.submit-btn {
  width: 100%;
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 0;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}
.submit-btn:hover { background: var(--ink-3); }
.submit-btn:disabled { cursor: wait; opacity: .76; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.spinner {
  width: 18px;
  height: 18px;
  display: none;
  margin-right: 9px;
  border: 2px solid rgb(255 255 255 / 40%);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}
.loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-status { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 8px; font-weight: 800; }
.form-status.show { display: block; }
.form-status.success { background: #e8f5ec; color: var(--success); }
.privacy { margin-bottom: 0; color: var(--muted); font-size: .86rem; }
.not-found { min-height: 62vh; display: flex; align-items: center; }

.footer { padding: 60px 0 24px; background: #101416; color: #d5d9da; }
.footer-grid { display: grid; grid-template-columns: 1.15fr .85fr .7fr 1fr; gap: 38px; }
.wordmark { color: #fff; font-size: 2rem; font-weight: 950; letter-spacing: -.04em; }
.wordmark i { color: var(--gold); font-style: normal; }
.footer p { max-width: 380px; color: #9fa9ac; }
.footer h2 { margin: 0 0 15px; color: var(--gold); font-size: .8rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.footer a { display: block; margin: 8px 0; }
.footer a:hover { color: var(--gold); }
.footer-contact { font-weight: 800; }
.credentials { display: block; }
.cmeq-box { padding: 11px; border-radius: 8px; background: #fff; }
.cmeq-box img { width: 150px; height: auto; display: block; }
.rbq-text { margin-top: 15px; padding-top: 15px; border-top: 1px solid #3b4346; }
.rbq-text strong, .rbq-text span { display: block; }
.rbq-text strong { color: #fff; }
.rbq-text span { color: #aeb6b9; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 21px; border-top: 1px solid #30373a; color: #879195; font-size: .83rem; }
.mobile-actions { display: none; }

@media (max-width: 1100px) {
  .brand { width: 248px; height: 72px; }
  .navlinks { gap: 13px; font-size: .84rem; }
  .nav-phone { display: none; }
}

@media (max-width: 900px) {
  .nav { min-height: 88px; }
  .brand { width: 238px; height: 69px; }
  .navlinks > a { display: none !important; }
  .menu { display: block; }
  .hero.home { min-height: auto; padding-block: 72px; }
  .hero-grid, .service-hero-grid, .section-head, .proof-grid, .local-grid, .faq-grid, .content-grid, .service-area-layout, .expertise-grid, .contact-layout, .quote-layout { grid-template-columns: 1fr; }
  .hero-grid, .service-hero-grid, .proof-grid, .local-grid, .faq-grid, .content-grid, .service-area-layout, .expertise-grid, .contact-layout, .quote-layout { gap: 38px; }
  .hero-card, .service-facts { max-width: 570px; }
  .trustbar { display: none; }
  .service-card-grid, .area-grid { grid-template-columns: 1fr 1fr; }
  .proof-image { height: 430px; }
  .scope-card { position: static; }
  .expertise-grid > img { height: 390px; }
  .footer-grid { grid-template-columns: 1.2fr .8fr; }
  .footer-grid > div:nth-child(3), .footer-grid > div:nth-child(4) { margin-top: 10px; }
}

@media (max-width: 700px) {
  body { padding-bottom: 66px; }
  .mobile-actions {
    position: fixed;
    inset: auto 0 0;
    z-index: 60;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    padding: 8px;
    border-top: 1px solid #3b4346;
    background: rgb(16 20 22 / 98%);
    box-shadow: 0 -8px 30px rgb(0 0 0 / 22%);
  }
  .mobile-actions a { min-height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 6px; font-weight: 900; }
  .mobile-call { color: #fff; }
  .mobile-quote { background: var(--gold); color: var(--ink); }
}

@media (max-width: 580px) {
  .wrap { width: calc(100% - 28px); }
  .nav { min-height: 82px; gap: 12px; }
  .brand { width: 205px; height: 60px; }
  .lang button { padding: 5px 7px; }
  .menu { min-width: 39px; min-height: 39px; }
  .hero.home { padding-block: 61px; background-position: 66% center; }
  .hero h1, .page-hero h1, .service-hero h1 { font-size: 2.65rem; }
  .hero h1 em { margin-top: 5px; }
  .lead, .page-hero p { font-size: 1.04rem; }
  .actions .btn { width: 100%; }
  section { padding-block: 65px; }
  .page-hero { padding-block: 59px; }
  .service-card-grid, .process-grid, .audience-grid, .area-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 24px; }
  .proof-image, .expertise-grid > img, .contact-photo { height: 340px; }
  .google-card, .hero-card, .service-facts, .scope-card, .service-area-panel, .form-card, .info-panel { padding: 24px; }
  .cta-grid { display: block; }
  .cta .actions { margin-top: 22px; }
  .form-grid > label.full { grid-column: auto; }
  .footer-grid > div:nth-child(3), .footer-grid > div:nth-child(4) { margin-top: 0; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
