@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  --max-width: 1160px;
  --bg: #f4f6fa;
  --ink: #131a2a;
  --muted: #5a6378;
  --line: #d7deea;
  --surface: #ffffff;
  --surface-soft: #eef3ff;
  --brand: #0d4eff;
  --brand-deep: #0736b4;
  --accent: #ff9f1a;
  --accent-deep: #d77900;
  --dark: #0f1526;
  --ok-bg: #e9fdf4;
  --ok-line: #90efc3;
  --ok-text: #05663e;
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 14px 30px rgba(15, 21, 38, 0.08);
  --shadow-lift: 0 22px 44px rgba(13, 25, 55, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at 8% 6%, rgba(13, 78, 255, 0.16), transparent 37%),
    radial-gradient(circle at 92% 0%, rgba(255, 159, 26, 0.2), transparent 36%),
    var(--bg);
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.16;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  top: -50px;
  left: 16px;
  z-index: 120;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  background: var(--brand-deep);
}

.skip-link:focus {
  top: 10px;
}

.top-strip {
  background: var(--dark);
  color: #d4defa;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.top-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.top-strip p {
  font-size: 0.9rem;
}

.top-strip a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.top-strip a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(101, 116, 154, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

.brand {
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand-deep);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2px;
}

.nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 11px;
  border-radius: 9px;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 3px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 170ms ease;
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.nav a.active {
  color: var(--brand-deep);
  background: rgba(13, 78, 255, 0.11);
}

.nav-toggle {
  width: 44px;
  height: 40px;
  border: 1px solid #ccd5ea;
  border-radius: 11px;
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: #243045;
  border-radius: 99px;
}

main section {
  padding: 44px 0;
}

.hero {
  padding-top: 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: 24px;
  align-items: start;
}

.hero-content {
  padding: 12px 6px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  max-width: 18ch;
}

.lead {
  color: var(--muted);
  max-width: 58ch;
  margin-top: 10px;
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid transparent;
  border-radius: 12px;
  min-height: 44px;
  padding: 11px 18px;
  line-height: 1.1;
  font-weight: 800;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, background-color 170ms ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  box-shadow: 0 12px 28px rgba(13, 78, 255, 0.3);
}

.btn.primary:hover {
  box-shadow: 0 16px 32px rgba(13, 78, 255, 0.35);
}

.btn.primary,
.btn.light {
  min-width: 170px;
}

.btn.light {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn.full {
  width: 100%;
}

.hero-points {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 0 0 2px rgba(255, 159, 26, 0.24);
}

.hero-stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(13, 78, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(13, 78, 255, 0.16), rgba(255, 159, 26, 0.16)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.66));
}

.stat-card {
  background: linear-gradient(145deg, #0d4eff 0%, #0736b4 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: 0 14px 28px rgba(7, 25, 78, 0.28);
  color: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, background 220ms ease;
}

.hero-stats .stat-card.visible {
  background: linear-gradient(145deg, #0d4eff 0%, #0736b4 100%);
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-stats .stat-card:nth-child(2),
.hero-stats .stat-card:nth-child(2).visible {
  background: linear-gradient(145deg, #3d4454 0%, #1f2532 100%);
}

.hero-stats .stat-card:nth-child(3),
.hero-stats .stat-card:nth-child(3).visible {
  background: linear-gradient(145deg, #0a8f7b 0%, #06665a 100%);
}

.hero-stats .stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(7, 25, 78, 0.35);
}

.stat-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.83rem;
}

.enquiry-card {
  background: linear-gradient(160deg, #fff, #f2f5ff);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lift);
  padding: 20px;
}

#enquiry {
  scroll-margin-top: 118px;
}

#categories {
  scroll-margin-top: 118px;
}

#electrician-services {
  scroll-margin-top: 118px;
}

#why-us {
  scroll-margin-top: 118px;
}

#testimonials {
  scroll-margin-top: 118px;
}

#how-it-works {
  scroll-margin-top: 118px;
}

#visit {
  scroll-margin-top: 118px;
}

#faq {
  scroll-margin-top: 118px;
}

.enquiry-card h2 {
  margin-bottom: 8px;
}

.enquiry-card > p {
  color: var(--muted);
  margin-bottom: 12px;
}

.enquiry-form {
  display: grid;
  gap: 10px;
}

.enquiry-form label {
  display: grid;
  gap: 4px;
}

.enquiry-form span {
  font-size: 0.82rem;
  font-weight: 700;
  color: #2a344c;
}

.enquiry-form input,
.enquiry-form textarea {
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c6d2ea;
  border-radius: 10px;
  padding: 10px 12px;
}

.enquiry-form textarea {
  min-height: 90px;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: var(--brand);
  outline: 2px solid rgba(13, 78, 255, 0.17);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.enquiry-form small {
  color: var(--muted);
  font-size: 0.78rem;
}

.success {
  background: var(--ok-bg);
  border: 1px solid var(--ok-line);
  color: var(--ok-text);
  border-radius: 10px;
  padding: 10px;
  margin-top: 12px;
  min-height: 44px;
  transition: opacity 180ms ease;
}

.hidden {
  display: none;
}

.success.hidden {
  display: block;
  opacity: 0;
  visibility: hidden;
}

.section-heading {
  margin-bottom: 14px;
}

.categories {
  position: relative;
}

.categories::before {
  content: "";
  position: absolute;
  inset: 36px 0 auto;
  height: 120px;
  background: linear-gradient(180deg, rgba(13, 78, 255, 0.07), transparent);
  pointer-events: none;
}

.category-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 17px;
  box-shadow: var(--shadow-soft);
}

.category-grid .panel {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-grid .panel h3 {
  transition: color 180ms ease;
}

.category-grid .panel:hover,
.category-grid .panel:focus-within {
  background: linear-gradient(160deg, #ffffff, #eef3ff);
  transform: translateY(-4px);
  border-color: rgba(13, 78, 255, 0.35);
  box-shadow: 0 18px 30px rgba(13, 25, 55, 0.14);
}

.category-grid .panel:hover h3,
.category-grid .panel:focus-within h3 {
  color: var(--brand-deep);
}

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

.electrician-services {
  position: relative;
}

.electrician-services::before {
  content: "";
  position: absolute;
  inset: 20px 0 auto;
  height: 140px;
  background: linear-gradient(180deg, rgba(255, 159, 26, 0.1), transparent);
  pointer-events: none;
}

.service-tabs {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

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

.expert-card {
  background: linear-gradient(165deg, #ffffff, #f0f5ff);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.expert-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #d4e0ff;
}

.expert-card h3 {
  margin: 10px 0 4px;
  font-size: 1rem;
}

.expert-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.why-card {
  background: linear-gradient(165deg, #101726, #15213a);
  border-radius: var(--radius-xl);
  color: #deecff;
  padding: 22px;
  box-shadow: var(--shadow-lift);
}

.why-card h3 {
  color: #fff;
  margin-bottom: 10px;
}

.why-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.why-card li {
  color: #c7d7f4;
}

.testimonial-carousel {
  position: relative;
  margin-top: 10px;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  --testimonial-gap: 14px;
  display: flex;
  gap: var(--testimonial-gap);
  transition: transform 320ms ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - (var(--testimonial-gap) * 2)) / 3);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.customer-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d6e2ff;
  flex-shrink: 0;
}

.testimonial-head h3 {
  margin: 0;
  font-size: 1rem;
}

.review-stars {
  margin-top: 2px;
  color: #e08d00;
  font-weight: 700;
  font-size: 0.9rem;
}

.review-stars span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.testimonial-text {
  color: var(--muted);
}

.testimonial-control {
  position: absolute;
  top: calc(50% - 18px);
  width: 36px;
  height: 36px;
  border: 1px solid #c7d4ee;
  border-radius: 50%;
  background: #fff;
  color: #1f2a44;
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.testimonial-control.prev {
  left: -16px;
}

.testimonial-control.next {
  right: -16px;
}

.testimonial-control:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.testimonial-dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: #c8d3ea;
  cursor: pointer;
}

.testimonial-dot.active {
  width: 24px;
  background: var(--brand-deep);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 17px;
  box-shadow: var(--shadow-soft);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

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

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 14px;
}

.visit-card,
.map-card,
details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.visit-card,
.map-card {
  padding: 18px;
}

.visit-card p {
  margin-top: 8px;
}

.visit-card a {
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: none;
}

.visit-card a:hover {
  text-decoration: underline;
}

.map-card h3 {
  margin-bottom: 8px;
}

.map-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.map-embed {
  border-radius: 14px;
  border: 1px solid #bdd0ff;
  overflow: hidden;
  min-height: 240px;
  background: var(--surface-soft);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
}

.map-direction {
  margin-top: 12px;
}

details {
  padding: 14px 16px;
  margin-top: 10px;
}

summary {
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

details p {
  margin-top: 8px;
  color: var(--muted);
}

.final-cta {
  padding-top: 16px;
  padding-bottom: 54px;
}

.final-cta-inner {
  border-radius: var(--radius-xl);
  background: linear-gradient(130deg, #0d4eff, #ff9f1a);
  color: #fff;
  box-shadow: var(--shadow-lift);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.final-cta-inner h2 {
  margin: 0;
  max-width: 28ch;
}

.final-cta-inner .btn.primary {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.site-footer {
  background:
    radial-gradient(circle at 12% -10%, rgba(255, 159, 26, 0.28), transparent 42%),
    radial-gradient(circle at 94% 0%, rgba(13, 78, 255, 0.34), transparent 48%),
    #0e1526;
  color: #c7d6f5;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
  padding-top: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(199, 214, 245, 0.25);
}

.footer-logo {
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
}

.footer-brand p {
  margin-top: 8px;
  max-width: 44ch;
}

.dealership-section {
  padding-top: 10px;
}

.dealership-brands {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.dealership-brands h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1rem;
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
}

.brand-logo-wrap {
  width: 124px;
  height: 42px;
  border-radius: 10px;
  background: #fff;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.brand-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: var(--brand-deep);
  background: rgba(13, 78, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 700;
}

.footer-col h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1rem;
}

.footer-col p {
  margin: 6px 0;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.footer-links a,
.footer-col a {
  text-decoration: none;
  color: #d8e5ff;
}

.footer-links a:hover,
.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 18px;
  font-size: 0.86rem;
  color: #aabbdc;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .hero-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-stats,
  .steps {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

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

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

  .testimonial-card {
    flex-basis: calc((100% - var(--testimonial-gap)) / 2);
  }

  .testimonial-control.prev {
    left: -10px;
  }

  .testimonial-control.next {
    right: -10px;
  }
}

@media (max-width: 820px) {
  .container {
    padding: 18px;
  }

  .header-inner {
    justify-content: flex-start;
  }

  .brand {
    margin-left: 12px;
  }

  .top-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
    order: -1;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: auto;
    width: min(78vw, 320px);
    display: grid;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px;
    box-shadow: var(--shadow-soft);
    max-height: min(70vh, 420px);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-105%);
    transition: opacity 220ms ease, transform 220ms ease;
    z-index: 120;
  }

  .nav.open {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav a {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px;
  }

  #enquiry {
    scroll-margin-top: 148px;
  }

  #categories {
    scroll-margin-top: 148px;
  }

  #electrician-services {
    scroll-margin-top: 148px;
  }

  #why-us {
    scroll-margin-top: 148px;
  }

  #testimonials {
    scroll-margin-top: 148px;
  }

  #how-it-works {
    scroll-margin-top: 148px;
  }

  #visit {
    scroll-margin-top: 148px;
  }

  #faq {
    scroll-margin-top: 148px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  main section {
    padding: 36px 0;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-cta,
  .final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cta .btn,
  .final-cta-inner .btn,
  .map-direction {
    width: 100%;
    min-width: 0;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

  .testimonial-card {
    flex-basis: 100%;
  }

  .testimonial-control {
    top: auto;
    bottom: -48px;
  }

  .testimonial-control.prev {
    left: calc(50% - 44px);
  }

  .testimonial-control.next {
    right: calc(50% - 44px);
  }

  .testimonial-dots {
    margin-top: 56px;
  }

  .top-strip p {
    font-size: 0.82rem;
  }
}

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

  * {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
