:root {
  --navy-950: #071e2b;
  --navy-900: #0b2b3b;
  --navy-800: #123d50;
  --blue-600: #006f9f;
  --blue-500: #08aeea;
  --blue-100: #dff5ff;
  --orange-600: #963306;
  --orange-500: #bb430f;
  --orange-100: #fff0e8;
  --ink: #14252e;
  --muted: #5a6b74;
  --line: #d9e3e8;
  --surface: #ffffff;
  --surface-soft: #f4f8fa;
  --success: #177245;
  --danger: #b42318;
  --shadow-sm: 0 8px 24px rgb(7 30 43 / 8%);
  --shadow-lg: 0 24px 60px rgb(7 30 43 / 16%);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  font-weight: 780;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h3 {
  font-size: 1.28rem;
}

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

.section {
  padding-block: clamp(72px, 9vw, 120px);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy-950);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--blue-600);
  outline-offset: 3px;
}

.eyebrow {
  margin-bottom: 14px;
  color: #8ce1ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--blue-600);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--orange-500);
  box-shadow: 0 10px 26px rgb(240 106 36 / 28%);
}

.button-primary:hover {
  background: var(--orange-600);
  box-shadow: 0 14px 30px rgb(240 106 36 / 36%);
}

.button-ghost {
  color: #fff;
  background: rgb(255 255 255 / 8%);
  border-color: rgb(255 255 255 / 48%);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgb(255 255 255 / 16%);
}

.button-light {
  color: var(--navy-950);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.button-outline {
  color: var(--navy-950);
  border-color: #adc2cc;
  background: transparent;
}

.button-outline:hover {
  border-color: var(--navy-900);
  background: var(--surface-soft);
}

.button-danger {
  color: #fff;
  background: var(--danger);
}

.button-small {
  min-height: 40px;
  padding: 9px 17px;
  font-size: 0.9rem;
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  color: var(--blue-600);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgb(11 43 59 / 10%);
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 8px 30px rgb(7 30 43 / 4%);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 64px), 1500px);
  min-height: 92px;
  align-items: center;
  gap: 34px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 154px;
  height: 78px;
  object-fit: contain;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  margin-left: auto;
  border: 1px solid #e4ecef;
  background: var(--surface-soft);
  border-radius: 999px;
}

.primary-navigation a {
  position: relative;
  padding: 10px 18px;
  color: var(--navy-900);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.primary-navigation a::after {
  display: none;
}

.primary-navigation a:hover,
.primary-navigation a[aria-current="page"] {
  color: var(--navy-950);
  background: #fff;
  box-shadow: 0 5px 16px rgb(7 30 43 / 9%);
}

.header-call {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 11px;
  padding-left: 18px;
  color: var(--navy-900);
  border-left: 1px solid var(--line);
  line-height: 1.15;
  text-decoration: none;
}

.header-call-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--orange-500);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgb(240 106 36 / 25%);
  transition: transform 180ms ease;
}

.header-call:hover .header-call-icon {
  transform: rotate(-8deg) scale(1.06);
}

.header-call-copy {
  display: flex;
  flex-direction: column;
}

.header-call-copy small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header-call strong {
  font-size: 1rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] > span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.messages {
  position: fixed;
  z-index: 120;
  top: 104px;
  right: 20px;
  width: min(420px, calc(100% - 40px));
  margin-right: max(0px, calc((100vw - var(--container)) / 2));
}

.message {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.message-success {
  border-left: 5px solid var(--success);
}

.message-error {
  border-left: 5px solid var(--danger);
}

.message-close {
  padding: 0;
  color: var(--muted);
  border: 0;
  background: transparent;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(650px, 82vh, 850px);
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgb(5 25 36 / 95%) 0%, rgb(5 25 36 / 82%) 46%, rgb(5 25 36 / 28%) 80%),
    linear-gradient(0deg, rgb(5 25 36 / 55%) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 90px;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: #fff;
}

.hero-lead {
  max-width: 710px;
  margin-bottom: 34px;
  color: #dbe9ee;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  padding: 0;
  margin: 0;
  color: #fff;
  list-style: none;
  font-size: 0.94rem;
  font-weight: 650;
}

.hero-points span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  margin-right: 6px;
  place-items: center;
  color: var(--navy-950);
  background: #8ce1ff;
  border-radius: 50%;
  font-size: 0.75rem;
}

.trust-strip {
  position: relative;
  z-index: 2;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  display: flex;
  min-height: 110px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 36px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid strong {
  color: var(--navy-900);
  font-size: 1.12rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.social-band {
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.social-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.social-band .eyebrow {
  margin-bottom: 7px;
}

.social-band h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-links-prominent {
  flex: 0 0 auto;
  margin-top: 0;
}

.social-button {
  display: inline-flex;
  min-width: 162px;
  min-height: 54px;
  align-items: center;
  gap: 11px;
  padding: 9px 16px;
  border: 1px solid transparent;
  border-radius: 14px;
  line-height: 1.15;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.social-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.social-button svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.social-button span {
  display: flex;
  flex-direction: column;
}

.social-button small {
  font-size: 0.7rem;
  font-weight: 650;
}

.social-button strong {
  font-size: 0.96rem;
}

.social-facebook {
  color: #fff;
  background: #1769c2;
}

.social-facebook small {
  color: #e9f3ff;
}

.social-google {
  color: var(--navy-950);
  border-color: #cbd8de;
  background: #fff;
}

.social-google small {
  color: var(--muted);
}

.services-section {
  background: var(--surface-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 46px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 270px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 18px rgb(7 30 43 / 4%);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card::after {
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 110px;
  height: 110px;
  background: var(--blue-100);
  border-radius: 50%;
  content: "";
  transition: transform 200ms ease;
}

.service-card:hover {
  border-color: #b5dae9;
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}

.service-card:hover::after {
  transform: scale(1.2);
}

.service-number {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--blue-600);
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
}

.process-section {
  background: #fff;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 10vw, 130px);
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 140px;
}

.process-copy h2 {
  margin-bottom: 24px;
}

.process-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding-block: 32px;
  border-bottom: 1px solid var(--line);
}

.process-list li:first-child {
  padding-top: 0;
}

.process-list li > span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--blue-600);
  background: var(--blue-100);
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 850;
}

.process-list h3 {
  margin-bottom: 8px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-cta {
  padding-block: 70px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgb(8 174 234 / 28%), transparent 35%),
    var(--navy-900);
}

.gallery-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.gallery-cta h2 {
  margin-bottom: 12px;
  color: #fff;
}

.gallery-cta p:last-child {
  margin-bottom: 0;
  color: #c9dce4;
}

.reviews-section {
  background: #fff;
}

.reviews-heading > p {
  max-width: 520px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.reviews-summary {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgb(140 225 255 / 23%), transparent 34%),
    var(--navy-900);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.provider-name {
  color: var(--blue-600);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-summary .provider-name {
  color: #9be7ff;
}

.rating-value {
  margin-block: 12px 2px;
  color: #fff;
  font-size: 4.5rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.review-stars {
  display: flex;
  gap: 2px;
  color: #e89b00;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.star-empty {
  color: #bfccd2;
}

.reviews-summary .review-stars {
  color: #ffd166;
  font-size: 1.25rem;
}

.reviews-summary .star-empty {
  color: #6e8995;
}

.reviews-summary p {
  margin: 17px 0 24px;
  color: #c8dbe3;
}

.reviews-summary .text-link {
  color: #fff;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 22px rgb(7 30 43 / 5%);
}

.review-card header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy-950);
  background: var(--blue-100);
  border-radius: 50%;
  font-weight: 850;
}

.review-card h3 {
  margin-bottom: 2px;
  overflow-wrap: anywhere;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.review-card time {
  color: var(--muted);
  font-size: 0.78rem;
}

.review-card > p {
  margin: 14px 0 20px;
  color: #435963;
}

.review-card > a {
  margin-top: auto;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 750;
  text-underline-offset: 3px;
}

.reviews-method-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.reviews-profile-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid #c8dce4;
  background:
    radial-gradient(circle at 95% 5%, rgb(8 174 234 / 13%), transparent 30%),
    var(--surface-soft);
  border-radius: var(--radius-lg);
}

.reviews-profile-card h3 {
  margin: 9px 0 10px;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
}

.reviews-profile-card p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
}

.reviews-profile-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
}

.fixly-reviews-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 235px;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  margin-top: 24px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid #ddd5fb;
  background:
    radial-gradient(circle at 92% 8%, rgb(103 61 230 / 12%), transparent 34%),
    #fbfaff;
  border-radius: var(--radius-lg);
}

.fixly-reviews-copy h3 {
  margin: 9px 0 10px;
  font-size: clamp(1.4rem, 2.7vw, 2rem);
}

.fixly-reviews-copy p {
  max-width: 670px;
  margin-bottom: 22px;
  color: var(--muted);
}

.fixly-reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fixly-certificate-panel {
  display: grid;
  min-height: 220px;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 20px;
  border: 1px solid #e3def4;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgb(51 32 112 / 8%);
  text-align: center;
}

.fixly-certificate-link {
  display: block;
  border-radius: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.fixly-certificate-link:hover {
  box-shadow: 0 10px 24px rgb(51 32 112 / 13%);
  transform: translateY(-2px);
}

.fixly-certificate-link img {
  display: block;
  width: 175px;
  max-width: 100%;
  height: auto;
  border: 0;
}

.fixly-certificate-panel small {
  max-width: 180px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.coverage-section {
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgb(8 174 234 / 17%), transparent 30%),
    var(--navy-950);
}

.coverage-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(50px, 8vw, 105px);
}

.coverage-copy h2 {
  margin-bottom: 22px;
  color: #fff;
}

.coverage-copy > p:not(.eyebrow) {
  color: #c8dbe3;
  font-size: 1.05rem;
}

.coverage-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 30px 0 34px;
  list-style: none;
}

.coverage-towns li {
  padding: 7px 12px;
  color: #e9f6fb;
  border: 1px solid rgb(255 255 255 / 16%);
  background: rgb(255 255 255 / 7%);
  border-radius: 999px;
  font-size: 0.82rem;
}

.coverage-map {
  position: relative;
  padding: 22px 22px 16px;
  overflow: hidden;
  color: var(--navy-950);
  background: #eef7fa;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgb(0 0 0 / 27%);
}

.coverage-map svg {
  display: block;
  width: 100%;
  height: auto;
}

.coverage-map > p {
  margin: -3px 8px 5px;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.map-label {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  color: var(--navy-900);
  background: rgb(255 255 255 / 88%);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.7rem;
  font-weight: 750;
}

.map-label span {
  width: 10px;
  height: 10px;
  background: var(--blue-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgb(8 174 234 / 15%);
}

.map-contour {
  fill: none;
  stroke: #c1dbe5;
  stroke-width: 18;
  stroke-linecap: round;
  opacity: 0.62;
}

.map-contour-secondary {
  stroke: #d5e8ee;
  stroke-width: 10;
}

.map-range {
  fill: rgb(8 174 234 / 7%);
  stroke: #58bde2;
  stroke-dasharray: 8 9;
  stroke-width: 2;
}

.map-range-inner {
  fill: rgb(8 174 234 / 9%);
  opacity: 0.72;
}

.map-center-halo {
  fill: rgb(8 174 234 / 20%);
}

.map-center,
.map-place circle {
  fill: var(--blue-600);
  stroke: #fff;
  stroke-width: 3;
}

.map-city,
.map-place text {
  fill: var(--navy-900);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.map-city-main {
  font-size: 15px;
  font-weight: 850;
}

.faq-section {
  background: var(--surface-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 9vw, 120px);
}

.faq-intro > p:last-child {
  color: var(--muted);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:first-child {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--navy-950);
  font-size: 1.08rem;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary:focus-visible {
  border-radius: 8px;
  outline-offset: -2px;
}

.faq-list summary span {
  flex: 0 0 auto;
  color: var(--blue-600);
  font-size: 1.7rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.22, 1, .36, 1);
}

.faq-answer > div {
  overflow: hidden;
}

html:not(.js) .faq-answer {
  height: auto;
}

.faq-answer p {
  padding: 0 54px 26px 0;
  margin: 0;
  color: var(--muted);
}

.contact-section {
  color: #fff;
  background:
    radial-gradient(circle at 0 100%, rgb(8 174 234 / 18%), transparent 34%),
    var(--navy-950);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(55px, 9vw, 115px);
  align-items: start;
}

.contact-copy {
  padding-top: 22px;
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy > p:not(.eyebrow) {
  color: #c8dbe3;
  font-size: 1.06rem;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.contact-methods > * {
  display: flex;
  flex-direction: column;
  padding: 17px 20px;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 14%);
  background: rgb(255 255 255 / 5%);
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.contact-methods a:hover {
  border-color: rgb(140 225 255 / 55%);
  background: rgb(255 255 255 / 9%);
}

.contact-methods span {
  color: #9bb5c0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-methods strong {
  overflow-wrap: anywhere;
  font-size: 1.07rem;
}

.contact-form-card,
.panel-card {
  padding: clamp(28px, 5vw, 50px);
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form-card h2 {
  margin-bottom: 6px;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.form-intro {
  margin-bottom: 30px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-field {
  min-width: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--navy-900);
  font-size: 0.91rem;
  font-weight: 740;
}

.form-field label span {
  color: var(--danger);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid #c7d5dc;
  background: #fff;
  border-radius: 9px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input[type="file"] {
  height: auto;
  padding: 9px;
  background: var(--surface-soft);
}

.form-field input[type="file"]::file-selector-button {
  padding: 8px 13px;
  margin-right: 12px;
  color: #fff;
  border: 0;
  background: var(--navy-900);
  border-radius: 7px;
  font-weight: 700;
  cursor: pointer;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgb(8 174 234 / 12%);
  outline: none;
}

.form-field.has-error input,
.form-field.has-error textarea {
  border-color: var(--danger);
}

.field-help,
.privacy-note {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.field-errors,
.form-errors {
  color: var(--danger);
  font-size: 0.84rem;
  font-weight: 650;
}

.field-errors ul,
.form-errors ul {
  padding: 0;
  margin: 7px 0 0;
  list-style: none;
}

.form-errors {
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #f0bbb7;
  background: #fff4f3;
  border-radius: var(--radius-sm);
}

.form-field .captcha {
  width: auto;
  height: 54px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.form-field:has(.captcha) input {
  display: block;
  max-width: 240px;
}

.privacy-note {
  margin-block: 20px;
}

.site-footer {
  padding-top: 70px;
  color: #b9cbd3;
  background: #061a24;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 60px;
}

.footer-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.footer-wordmark > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy-950);
  background: var(--blue-500);
  border-radius: 13px 13px 13px 3px;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.footer-brand p {
  margin: 24px 0 8px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 760;
  line-height: 1.35;
}

.footer-brand > span {
  font-size: 0.9rem;
}

.footer-brand .social-links {
  margin-top: 24px;
}

.footer-brand .social-button {
  min-width: 0;
  min-height: 46px;
  padding: 7px 11px;
}

.footer-brand .social-button svg {
  width: 24px;
  height: 24px;
}

.footer-brand .social-button span {
  font-size: inherit;
}

.footer-brand .social-button small {
  display: none;
}

.footer-brand .social-google {
  background: #fff;
}

.site-footer h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.footer-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.92rem;
}

.footer-list a,
.footer-admin-link,
.link-button {
  color: #b9cbd3;
  text-decoration: none;
}

.footer-list a:hover,
.footer-admin-link:hover,
.link-button:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-admin-link,
.link-button {
  font-size: 0.86rem;
}

.logout-form {
  margin-top: 14px;
}

.footer-staff-links {
  padding-top: 16px;
  margin-top: 18px;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.link-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.footer-bottom {
  padding-block: 22px;
  border-top: 1px solid rgb(255 255 255 / 9%);
  font-size: 0.82rem;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-credits {
  display: grid;
  gap: 3px;
  margin-right: auto;
}

.footer-credits small {
  color: #91a9b4;
  font-size: 0.74rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-bottom a {
  color: #b9cbd3;
  text-decoration: none;
}

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

.mobile-call {
  display: none;
}

.page-hero {
  padding-block: clamp(70px, 9vw, 110px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 25%, rgb(8 174 234 / 28%), transparent 30%),
    var(--navy-900);
}

.page-hero-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.page-hero h1 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
}

.page-hero p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  color: #c8dbe3;
  font-size: 1.08rem;
}

.gallery-section {
  background: var(--surface-soft);
}

.gallery-section > .container {
  width: min(calc(100% - 72px), 1720px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 30px);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: #dfe9ed;
  border: 1px solid rgb(11 43 59 / 8%);
  border-radius: 24px;
  box-shadow: 0 14px 38px rgb(7 30 43 / 10%);
}

.gallery-open {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-open img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.gallery-open span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 12px;
  color: #fff;
  background: rgb(7 30 43 / 78%);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-open:hover img {
  transform: scale(1.045);
}

.gallery-open:hover span,
.gallery-open:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.gallery-admin-actions {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
}

.gallery-admin-actions form {
  margin: 0;
}

.gallery-tool {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  color: var(--navy-950);
  border: 0;
  background: rgb(255 255 255 / 94%);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  font-size: 1.25rem;
  font-weight: 800;
  cursor: pointer;
}

.gallery-tool:hover {
  background: var(--blue-100);
}

.gallery-tool-danger {
  color: #fff;
  background: var(--danger);
}

.gallery-tool-danger:hover {
  background: #8f1c14;
}

.image-modal[hidden] {
  display: none;
}

.image-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  padding: 28px;
  place-items: center;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(2 13 19 / 92%);
  backdrop-filter: blur(7px);
  cursor: zoom-out;
}

.image-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: min(1500px, 95vw);
  max-height: 92vh;
  place-items: center;
  pointer-events: auto;
}

.image-modal-panel img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.image-modal-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  place-items: center;
  color: var(--navy-950);
  border: 0;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.image-modal-close:hover {
  color: #fff;
  background: var(--orange-500);
  transform: rotate(90deg);
}

/* Privacy policy */
.legal-hero {
  padding-block: clamp(62px, 7vw, 90px);
}

.legal-section {
  background: var(--surface-soft);
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 830px);
  justify-content: center;
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 9px;
  padding: 25px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-nav strong {
  margin-bottom: 8px;
  color: var(--navy-950);
}

.legal-nav a {
  padding-block: 4px;
  color: var(--muted);
  font-size: 0.91rem;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--blue-600);
}

.legal-content {
  padding: clamp(30px, 5vw, 60px);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.legal-updated {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.86rem;
}

.legal-warning {
  padding: 20px 22px;
  margin-bottom: 36px;
  color: #723109;
  border: 1px solid #f4c899;
  background: #fff7ed;
  border-radius: var(--radius-sm);
}

.legal-warning p {
  margin: 5px 0 0;
}

.legal-content section {
  scroll-margin-top: 125px;
}

.legal-content section + section {
  padding-top: 35px;
  margin-top: 35px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 19px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.025em;
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}

.legal-content p,
.legal-content li {
  color: #465b66;
}

.legal-content a {
  color: var(--blue-600);
  font-weight: 700;
  text-underline-offset: 3px;
}

.legal-content code {
  padding: 2px 6px;
  color: var(--navy-900);
  background: var(--blue-100);
  border-radius: 5px;
}

/* Progressive reveal: content remains visible when JavaScript is unavailable. */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms cubic-bezier(.22, 1, .36, 1), transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.reveal-ready [data-reveal="left"] {
  transform: translateX(-30px);
}

.reveal-ready [data-reveal="right"] {
  transform: translateX(30px);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-ready .service-card:nth-child(2),
.reveal-ready .gallery-item:nth-child(even),
.reveal-ready .process-list li:nth-child(2) {
  transition-delay: 90ms;
}

.reveal-ready .service-card:nth-child(3n),
.reveal-ready .process-list li:nth-child(3) {
  transition-delay: 180ms;
}

.empty-state {
  max-width: 680px;
  padding: 70px 30px;
  margin-inline: auto;
  text-align: center;
}

.empty-state p {
  margin-bottom: 28px;
  color: var(--muted);
}

.panel-page,
.status-page {
  min-height: 65vh;
  padding-block: clamp(70px, 10vw, 120px);
  background: var(--surface-soft);
}

.panel-container {
  max-width: 880px;
}

.panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 35px;
}

.panel-heading h1 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.panel-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.panel-card .form-field {
  margin-bottom: 25px;
}

.login-container {
  max-width: 540px;
}

.login-card h1 {
  margin-bottom: 12px;
  font-size: clamp(2.1rem, 5vw, 3.1rem);
}

.login-card .form-field {
  margin-bottom: 20px;
}

.status-card {
  max-width: 760px;
  padding: clamp(40px, 7vw, 80px);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.status-card h1 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
}

.status-card > p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.status-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 26px;
  place-items: center;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 850;
}

.status-success {
  color: var(--success);
  background: #e4f6ed;
}

.status-error {
  color: var(--danger);
  background: #fff0ef;
}

.status-code {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-600);
  font-size: clamp(3.5rem, 12vw, 7rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.06em;
}

.status-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}

@media (max-width: 1500px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1020px) {
  .header-inner {
    gap: 18px;
  }

  .header-call {
    padding-left: 8px;
    border-left: 0;
  }

  .header-call-copy {
    display: none;
  }

  .primary-navigation a {
    padding-inline: 12px;
  }

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

  .reviews-layout {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .review-cards {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 50px;
  }

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

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

@media (max-width: 820px) {
  .reveal-ready [data-reveal="left"],
  .reveal-ready [data-reveal="right"] {
    transform: translateY(24px);
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    width: min(calc(100% - 32px), var(--container));
    min-height: 76px;
  }

  .brand img {
    width: 116px;
    height: 58px;
  }

  .header-call {
    display: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .primary-navigation {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 6px;
    padding: 16px;
    border-top: 1px solid var(--line);
    background: #fff;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
    border-radius: 0 0 18px 18px;
    box-shadow: var(--shadow-sm);
  }

  .js .primary-navigation {
    display: none;
  }

  .js .primary-navigation.is-open {
    display: grid;
  }

  .primary-navigation a {
    padding: 12px 16px;
    border-radius: 8px;
  }

  .gallery-section > .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }

  .primary-navigation a:hover {
    background: var(--surface-soft);
  }

  .primary-navigation a::after {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgb(5 25 36 / 93%), rgb(5 25 36 / 70%));
  }

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

  .trust-grid > div {
    min-height: 0;
    padding: 20px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .process-layout,
  .faq-layout,
  .contact-layout,
  .coverage-layout,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .social-band-inner,
  .reviews-profile-card,
  .fixly-reviews-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .fixly-reviews-card {
    grid-template-columns: 1fr;
  }

  .fixly-certificate-panel {
    width: 100%;
  }

  .social-links-prominent,
  .reviews-profile-actions {
    width: 100%;
  }

  .social-links-prominent .social-button {
    flex: 1 1 180px;
  }

  .reviews-profile-actions .button {
    width: min(100%, 240px);
    min-width: 0;
    flex: 0 0 auto;
  }

  .section-heading {
    gap: 20px;
  }

  .process-copy {
    position: static;
  }

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

  .contact-copy {
    padding-top: 0;
  }

  .mobile-call {
    position: fixed;
    z-index: 90;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 14px;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    background: var(--orange-500);
    border-radius: 999px;
    box-shadow: 0 12px 34px rgb(7 30 43 / 28%);
    font-weight: 800;
    text-decoration: none;
  }

  .site-footer {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section {
    padding-block: 68px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media img {
    object-position: center;
  }

  .social-band-inner,
  .social-links-prominent {
    display: grid;
    grid-template-columns: 1fr;
  }

  .social-links-prominent .social-button {
    width: 100%;
  }

  .reviews-profile-card {
    border-radius: var(--radius-md);
  }

  .reviews-profile-actions .button {
    width: min(100%, 240px);
  }

  .fixly-reviews-actions,
  .fixly-reviews-actions .button {
    width: 100%;
  }

  .coverage-map {
    padding: 14px 10px 12px;
    border-radius: var(--radius-md);
  }

  .map-label {
    position: static;
    width: fit-content;
    margin: 4px 6px -12px;
  }

  .hero-content {
    padding-block: 70px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
  }

  .service-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .process-list li > span {
    width: 44px;
    height: 44px;
  }

  .contact-form-card,
  .panel-card {
    border-radius: var(--radius-md);
  }

  .messages {
    top: 88px;
    right: 12px;
    width: calc(100% - 24px);
    margin-right: 0;
  }

  .footer-grid {
    gap: 34px;
  }

  .page-hero {
    padding-block: 62px;
  }

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

  .image-modal {
    padding: 12px;
  }

  .image-modal-close {
    top: 8px;
    right: 8px;
  }

  .footer-bottom .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-bottom-links {
    gap: 16px;
  }

  .legal-content {
    padding: 26px 20px;
  }

  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-card {
    border-radius: var(--radius-md);
  }
}

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

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

  .reveal-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
