:root {
  --navy-950: #081a35;
  --navy-900: #10294d;
  --navy-800: #17375f;
  --navy-700: #214a78;
  --gold-500: #e3aa18;
  --gold-400: #f2bd32;
  --gold-300: #f8d277;
  --white: #ffffff;
  --gray-50: #f7f9fc;
  --gray-100: #eef2f7;
  --gray-200: #dfe6ee;
  --gray-400: #93a0af;
  --gray-600: #556271;
  --gray-800: #25313f;
  --shadow-sm: 0 8px 24px rgba(9, 26, 51, 0.08);
  --shadow-md: 0 18px 50px rgba(9, 26, 51, 0.14);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-800);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.top-bar {
  color: var(--white);
  background: var(--navy-950);
  font-size: 0.88rem;
}

.top-bar__content {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-bar p {
  margin: 0;
}

.top-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.top-bar svg {
  width: 17px;
  color: var(--gold-400);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 41, 77, 0.08);
  backdrop-filter: blur(12px);
}

.header__content {
  min-height: 100px;
  display: grid;
  grid-template-columns: minmax(220px, 310px) 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 290px;
}

.brand img {
  width: 100%;
  height: 84px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  color: var(--navy-950);
  font-size: 0.95rem;
  font-weight: 800;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--gold-500);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--navy-950);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(227, 170, 24, 0.45);
  outline-offset: 3px;
}

.button svg {
  width: 19px;
}

.button--gold {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  box-shadow: 0 10px 26px rgba(227, 170, 24, 0.26);
}

.button--gold:hover {
  box-shadow: 0 14px 30px rgba(227, 170, 24, 0.34);
}

.button--outline-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.8);
}

.button--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button--full {
  width: 100%;
}

.header__call {
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: url("../images/hero-hvac.jpg");
  background-position: 68% center;
  background-size: cover;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(8, 26, 53, 0.98) 0%, rgba(8, 26, 53, 0.9) 37%, rgba(8, 26, 53, 0.45) 62%, rgba(8, 26, 53, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 26, 53, 0.36), transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 100px;
}

.hero__copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-500);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: var(--gold-400);
}

.hero__description {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero__badges {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.hero__badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__badges span:not(:last-child)::after {
  width: 5px;
  height: 5px;
  margin: 0 12px;
  content: "";
  background: var(--gold-400);
  border-radius: 50%;
}

.hero__badges svg {
  width: 26px;
  color: var(--gold-400);
}

.trust-strip {
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}

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

.trust-item {
  min-height: 165px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 30px 24px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--gray-200);
}

.icon-circle {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--gold-500);
  background: var(--navy-950);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(8, 26, 53, 0.18);
}

.icon-circle svg {
  width: 28px;
}

.trust-item h2 {
  margin: 0 0 4px;
  color: var(--navy-950);
  font-size: 1rem;
}

.trust-item p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.45;
}

.section {
  padding-block: 105px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.about__copy h2,
.service-area h2,
.contact h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading > p:last-child,
.about__copy > p,
.service-area__grid > div > p,
.contact__copy > p {
  margin: 20px 0 0;
  color: var(--gray-600);
  font-size: 1.08rem;
}

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

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

.service-card {
  position: relative;
  min-height: 260px;
  padding: 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  content: "";
  background: rgba(227, 170, 24, 0.08);
  border-radius: 50%;
}

.service-card:hover {
  border-color: rgba(227, 170, 24, 0.5);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  border-radius: 14px;
}

.service-card__icon svg {
  width: 30px;
}

.service-card h3 {
  margin: 25px 0 10px;
  color: var(--navy-950);
  font-size: 1.3rem;
}

.service-card p {
  margin: 0;
  color: var(--gray-600);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
}

.about__image-wrap {
  position: relative;
}

.about__image-wrap img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about__stamp {
  position: absolute;
  right: -24px;
  bottom: 34px;
  width: 150px;
  height: 150px;
  display: grid;
  place-content: center;
  color: var(--white);
  background: var(--navy-950);
  border: 8px solid var(--white);
  border-radius: 50%;
  text-align: center;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}

.about__stamp strong {
  color: var(--gold-400);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

.check-list {
  margin: 32px 0;
  display: grid;
  gap: 20px;
}

.check-list > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}

.check-list span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-400);
  border-radius: 50%;
  font-weight: 900;
}

.check-list p {
  margin: 0;
  color: var(--gray-600);
}

.check-list strong {
  color: var(--navy-950);
}

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

.text-link span {
  color: var(--gold-500);
  font-size: 1.3rem;
  transition: transform 180ms ease;
}

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

.process {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(227, 170, 24, 0.22), transparent 26%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.section-heading--light h2 {
  color: var(--white);
}

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

.process-grid article {
  position: relative;
  min-height: 240px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.process-grid span {
  color: var(--gold-400);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.92;
}

.process-grid h3 {
  margin: 24px 0 8px;
  font-size: 1.35rem;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.service-area {
  background: var(--gray-50);
}

.service-area__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 70px;
}

.area-list {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  list-style: none;
}

.area-list li {
  position: relative;
  padding-left: 24px;
  color: var(--navy-950);
  font-weight: 800;
}

.area-list li::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--gold-500);
  border-radius: 50%;
}

.hours-card {
  padding: 42px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hours-card__icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--navy-950);
  background: var(--gold-400);
  border-radius: 18px;
}

.hours-card__icon svg {
  width: 34px;
}

.hours-card h3 {
  margin: 0;
  font-size: 1.4rem;
}

.hours-card p {
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.78);
}

.hours-card .hours-card__time {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 900;
}

.hours-card .hours-card__note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hours-card a {
  margin-top: 16px;
  display: inline-block;
  color: var(--gold-400);
  font-size: 1.35rem;
  font-weight: 900;
}

.contact {
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(50px, 8vw, 100px);
}

.contact-methods {
  margin-top: 36px;
  display: grid;
  gap: 16px;
}

.contact-methods > * {
  min-width: 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  padding: 17px 18px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
}

.contact-methods svg {
  width: 25px;
  color: var(--gold-500);
}

.contact-methods span {
  min-width: 0;
}

.contact-methods small,
.contact-methods strong {
  display: block;
}

.contact-methods small {
  color: var(--gray-600);
}

.contact-methods strong {
  color: var(--navy-950);
  overflow-wrap: anywhere;
}

.request-form {
  padding: clamp(26px, 4vw, 42px);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-heading {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.form-heading h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.65rem;
}

.form-heading p {
  margin: 4px 0 0;
  color: var(--gray-600);
  font-size: 0.92rem;
}

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

.field {
  margin-bottom: 18px;
}

.field label {
  margin-bottom: 7px;
  display: block;
  color: var(--navy-950);
  font-size: 0.92rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--gray-800);
  background: var(--white);
  border: 1px solid #cbd5e0;
  border-radius: 9px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(227, 170, 24, 0.12);
  outline: none;
}

.field [aria-invalid="true"] {
  border-color: #b42318;
}

.field-error {
  min-height: 18px;
  display: block;
  margin-top: 5px;
  color: #9b1c1c;
  font-size: 0.78rem;
}

.form-note {
  margin: 15px 0 0;
  color: var(--gray-600);
  font-size: 0.82rem;
  text-align: center;
}

.form-status {
  min-height: 24px;
  margin-top: 12px;
  padding: 0;
  color: var(--navy-950);
  font-weight: 800;
  text-align: center;
}

.form-status.is-success {
  padding: 13px;
  color: #14532d;
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: 9px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-950);
}

.footer__grid {
  padding-block: 64px;
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr;
  gap: 60px;
}

.footer__brand img {
  width: 300px;
  height: 120px;
  padding: 10px 16px;
  object-fit: contain;
  background: var(--white);
  border-radius: 14px;
}

.footer__brand p {
  max-width: 470px;
  margin: 22px 0 0;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  margin: 8px 0;
  display: block;
}

.site-footer a:hover {
  color: var(--gold-400);
}

.footer__bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.footer__bottom p {
  margin: 0;
}

.powered-by strong {
  color: var(--gold-400);
}

.mobile-call {
  display: none;
}

@media (max-width: 1080px) {
  .header__content {
    grid-template-columns: minmax(210px, 270px) 1fr auto;
    gap: 18px;
  }

  .brand {
    width: 255px;
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav a {
    font-size: 0.88rem;
  }

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

  .trust-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--gray-200);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--gray-200);
  }
}

@media (max-width: 900px) {
  .top-bar__content p {
    display: none;
  }

  .top-bar__content {
    justify-content: center;
  }

  .header__content {
    min-height: 90px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 245px;
  }

  .brand img {
    height: 74px;
  }

  .menu-button {
    display: block;
  }

  .header__call {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 128px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    padding: 30px 20px 90px;
    display: grid;
    align-content: start;
    justify-items: stretch;
    gap: 0;
    overflow-y: auto;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 18px 8px;
    font-size: 1.18rem;
    border-bottom: 1px solid var(--gray-200);
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .hero__image {
    background-position: 64% center;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(8, 26, 53, 0.98) 0%, rgba(8, 26, 53, 0.87) 56%, rgba(8, 26, 53, 0.4) 100%);
  }

  .hero__copy {
    max-width: 580px;
  }

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

  .about__grid,
  .service-area__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .about__grid {
    gap: 70px;
  }

  .about__image-wrap img {
    min-height: 430px;
  }

  .service-area__grid,
  .contact__grid {
    gap: 50px;
  }

  .hours-card {
    max-width: 560px;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 0.8fr;
  }

  .footer__grid > :last-child {
    grid-column: 1 / -1;
  }
}

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

  .top-bar {
    font-size: 0.82rem;
  }

  .header__content {
    min-height: 82px;
  }

  .brand {
    width: 205px;
  }

  .brand img {
    height: 66px;
  }

  .main-nav {
    top: 120px;
  }

  .section {
    padding-block: 76px;
  }

  .hero {
    min-height: 740px;
    align-items: end;
  }

  .hero__image {
    background-position: 72% center;
  }

  .hero__overlay {
    background:
      linear-gradient(0deg, rgba(8, 26, 53, 0.99) 0%, rgba(8, 26, 53, 0.94) 54%, rgba(8, 26, 53, 0.5) 100%),
      linear-gradient(90deg, rgba(8, 26, 53, 0.7), rgba(8, 26, 53, 0.18));
  }

  .hero__content {
    padding-block: 170px 64px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__badges {
    font-size: 0.88rem;
  }

  .hero__badges span:not(:last-child)::after {
    margin-inline: 8px;
  }

  .trust-grid,
  .services-grid,
  .process-grid,
  .form-row,
  .area-list,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item + .trust-item,
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    min-height: auto;
    border-top: 1px solid var(--gray-200);
    border-left: 0;
  }

  .trust-item:first-child {
    border-top: 0;
  }

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

  .service-card {
    min-height: 230px;
  }

  .about__image-wrap img {
    min-height: 360px;
  }

  .about__stamp {
    right: 10px;
    bottom: -38px;
    width: 128px;
    height: 128px;
  }

  .about__copy {
    padding-top: 20px;
  }

  .process-grid article {
    min-height: 210px;
  }

  .hours-card,
  .request-form {
    padding: 26px;
  }

  .footer__grid {
    gap: 36px;
  }

  .footer__brand img {
    width: 100%;
    max-width: 300px;
  }

  .footer__bottom {
    padding-block: 22px 95px;
    display: grid;
    justify-content: start;
  }

  .mobile-call {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 90;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: 12px;
    box-shadow: 0 14px 35px rgba(8, 26, 53, 0.3);
    font-weight: 900;
  }

  .mobile-call svg {
    width: 21px;
  }
}

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

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