:root {
  --color-primary: #1397b8;
  --color-primary-dark: #0d6f92;
  --color-secondary: #1f5f94;
  --color-accent: #dff7fb;
  --color-surface: #ffffff;
  --color-surface-alt: #f4f8fb;
  --color-text: #25313a;
  --color-muted: #5f6d76;
  --color-border: rgba(31, 95, 148, 0.14);
  --color-shadow: rgba(19, 66, 89, 0.14);
  --container: 1180px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --header-height: 118px;
  --header-brand-width: 392px;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 1.2rem);
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(19, 151, 184, 0.15), transparent 34%),
    linear-gradient(180deg, #fbfeff 0%, #f5fafc 52%, #ffffff 100%);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(19, 151, 184, 0.36);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--color-secondary);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--color-secondary);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 2rem;
}

.section-heading .section-title,
.about-copy .section-title,
.contact-copy .section-title {
  width: 100%;
  text-align: center;
}

.hero h1,
.cta-banner h2 {
  margin: 0 0 1rem;
  line-height: 1.12;
  font-family: Arial, sans-serif;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

.section-heading h3,
.about-copy h3 {
  margin: 0 0 1rem;
  line-height: 1.12;
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 700;
}

.section-heading p,
.hero-text,
.about-copy p,
.cta-banner p,
.contact-copy p {
  margin: 0;
  color: var(--color-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(232, 244, 250, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(31, 95, 148, 0.12);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(19, 66, 89, 0.12);
  border-color: rgba(31, 95, 148, 0.16);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.65rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand-logo {
  width: 392px;
  height: 118px;
  object-fit: contain;
  object-position: left center;
  display: block;
  opacity: 1;
  filter: saturate(1.02) contrast(1.03);
}

.nav-toggle {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  gap: 0.28rem;
  padding: 0.95rem 0.82rem;
  border: 1px solid rgba(31, 95, 148, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.site-nav {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 1rem;
  right: 1rem;
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 40px rgba(19, 66, 89, 0.14);
  border: 1px solid rgba(31, 95, 148, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.72rem 1rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(19, 151, 184, 0.1);
  color: var(--color-primary-dark);
}

.nav-phone {
  justify-content: center;
  color: #103954;
  background: linear-gradient(135deg, #c8eef8, #f8fdff);
  box-shadow: 0 10px 24px rgba(9, 31, 47, 0.16);
}

.hero {
  padding: 5.4rem 0 3rem;
  background: #f4f9fc;
}

.hero-shell,
.about-grid,
.contact-grid,
.cta-banner-inner,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-shell {
  grid-template-columns: minmax(0, 760px) minmax(0, 1fr);
  align-items: center;
  min-height: calc(100svh - var(--header-height) - 2.4rem);
}

.hero-copy {
  display: grid;
  gap: 1.15rem;
  max-width: 760px;
  padding-top: 1.1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: -1.6rem;
  background:
    linear-gradient(90deg, #f4f9fc 0%, rgba(244, 249, 252, 0.82) 8%, rgba(244, 249, 252, 0) 22%, rgba(244, 249, 252, 0) 78%, rgba(244, 249, 252, 0.82) 92%, #f4f9fc 100%),
    linear-gradient(180deg, #f4f9fc 0%, rgba(244, 249, 252, 0.76) 8%, rgba(244, 249, 252, 0) 20%, rgba(244, 249, 252, 0) 80%, rgba(244, 249, 252, 0.76) 92%, #f4f9fc 100%);
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse 82% 92% at 50% 50%, #000 44%, rgba(0, 0, 0, 0.88) 60%, rgba(0, 0, 0, 0.62) 74%, rgba(0, 0, 0, 0.16) 90%, transparent 100%);
  mask-image: radial-gradient(ellipse 82% 92% at 50% 50%, #000 44%, rgba(0, 0, 0, 0.88) 60%, rgba(0, 0, 0, 0.62) 74%, rgba(0, 0, 0, 0.16) 90%, transparent 100%);
}

.hero-title {
  margin: 0;
  display: grid;
  gap: 0.24rem;
  max-width: 760px;
  letter-spacing: -0.04em;
  font-family: Arial, sans-serif;
}

.hero-title-line {
  display: block;
}

.hero-title-line--primary {
  white-space: nowrap;
  font-size: clamp(3rem, 4.9vw, 4.85rem);
  line-height: 0.96;
  font-weight: 700;
  color: #2b3840;
}

.hero-title-line--accent {
  min-height: 1.02em;
  font-size: clamp(3.7rem, 6.4vw, 6.2rem);
  line-height: 0.9;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.hero-title-continuation {
  margin-top: 0.5rem;
}

.hero-title-line--secondary {
  max-width: 19ch;
  font-size: clamp(3rem, 4.9vw, 4.85rem);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #2b3840;
}

.hero-rotator {
  position: relative;
  margin-top: 0.05rem;
}

#hero-rotating-word {
  display: inline-block;
  white-space: nowrap;
  transform: translateY(0);
  opacity: 1;
  transition: opacity 320ms ease, transform 320ms ease;
}

#hero-rotating-word.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: fit-content;
  min-width: 0;
  min-height: 76px;
  padding: 1.05rem 1.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  box-shadow: 0 20px 40px rgba(31, 95, 148, 0.22);
}

.hero-cta-label {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.1;
}

.hero-cta-phone {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.1;
  opacity: 0.96;
}

@media (max-width: 520px) {
  .brand-logo {
    width: 262px;
    height: 82px;
  }

  .hero {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }

  .hero-title {
    max-width: 100%;
    gap: 0.2rem;
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 0.2rem;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    order: 2;
    margin-top: 0.5rem;
  }

  .hero-visual img {
    width: min(100%, 360px);
    opacity: 0.98;
  }

  .hero-title-line--primary {
    white-space: normal;
    font-size: clamp(2.15rem, 8.2vw, 3rem);
  }

  .hero-title-line--accent {
    font-size: clamp(2.8rem, 11vw, 4rem);
  }

  .hero-title-line--secondary {
    font-size: clamp(2.15rem, 8.2vw, 3rem);
    max-width: 100%;
  }

  .hero-cta {
    display: none;
  }

  .gallery-slider {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.8rem;
  }

  .gallery-nav {
    display: none;
  }

  .gallery-track {
    grid-auto-columns: 100%;
    gap: 0.85rem;
  }

  .gallery-item {
    aspect-ratio: 4 / 5;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.25rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0) scale(var(--magnet-scale, 1));
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), filter var(--transition);
  will-change: transform;
}

.btn:hover {
  --magnet-scale: 1.04;
  filter: saturate(1.06);
}

.hero-cta,
.nav-phone,
.gallery-nav,
.contact-card,
.lightbox-close,
.lightbox-nav,
.nav-toggle,
.site-nav a,
.floating-call {
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0) scale(var(--magnet-scale, 1));
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), filter var(--transition), color var(--transition);
  will-change: transform;
}

.hero-cta:hover,
.nav-phone:hover,
.gallery-nav:hover,
.contact-card:hover,
.lightbox-close:hover,
.lightbox-nav:hover,
.nav-toggle:hover,
.site-nav a:hover,
.floating-call:hover {
  --magnet-scale: 1.04;
  filter: saturate(1.06);
}

.btn-primary,
.btn-cta,
.btn-service {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 16px 32px rgba(31, 95, 148, 0.22);
}

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

.btn-disabled {
  color: var(--color-muted);
  background: #eef3f6;
}

.hero-card,
.service-card,
.about-panel,
.contact-form,
.map-placeholder,
.contact-card,
.gallery-item,
.cta-banner-inner {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 95, 148, 0.12);
  box-shadow: 0 18px 40px rgba(19, 66, 89, 0.08);
}

.services {
  background: linear-gradient(180deg, #f4f9fc 0%, rgba(244, 249, 252, 0.96) 24%, rgba(223, 247, 251, 0.22) 100%);
  padding-top: 0.5rem;
  padding-bottom: 0;
}

.services-grid,
.gallery-grid,
.contact-cards {
  display: grid;
  gap: 1rem;
}

.services-intro {
  margin-bottom: 0.4rem;
  text-align: center;
}

.services-intro h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

.services-grid {
  gap: 1.25rem;
}

.service-screen {
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  background: transparent;
}

.service-card {
  display: grid;
  gap: 1.3rem;
  width: min(100%, 1160px);
  min-height: min(78svh, 780px);
  margin: 0;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 48px rgba(16, 42, 53, 0.16);
}

.service-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.9rem;
  padding: 0.55rem 1rem 1rem;
}

.service-pricing {
  width: min(100%, 520px);
  margin-top: 0.7rem;
  padding: 1rem 1rem 0.95rem;
  border-radius: 18px;
  background: rgba(244, 249, 252, 0.92);
  border: 1px solid rgba(31, 95, 148, 0.14);
}

.service-pricing--compact {
  padding-bottom: 0.9rem;
}

.service-pricing h4 {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--color-secondary);
}

.service-pricing-list {
  display: grid;
  gap: 0.28rem;
}

.service-pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(31, 95, 148, 0.1);
}

.service.service.service.service.service.service.service.sering-bottom: 0;
}

.service-pricing-row span {
  color: var(--color-text);
}

.service-pricing-row strong {
  color: var(--color-primary-dark);
  font-size: 0.98rem;
  white-space: nowrap;
}

.service-note {
  margin-top: 0.8rem;
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--color-muted);
}

.service-media-card {
  margin: 0;
  min-height: 300px;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 38px rgba(16, 42, 53, 0.12);
}

.service-media-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-card h3,
.about-panel h3,
.contact-form h3,
.map-placeholder h3 {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1;
}

.service-card p,
.about-panel li,
.contact-form p,
.map-placeholder p {
  color: var(--color-muted);
}

.service-card p {
  margin: 0;
  max-width: 40ch;
}

.service-card-copy p:first-of-type {
  margin-top: 1.8rem;
}

.check-list {
  margin: 0;
  padding-left: 1.1rem;
}

.service-screen--reversed,
.service-screen--moving,
.service-screen--cleaning {
  justify-items: end;
}

@media (min-width: 920px) {
  .service-card {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
    align-items: stretch;
  }

  .service-screen--reversed .service-card,
  .service-screen--moving .service-card,
  .service-screen--cleaning .service-card {
    grid-template-columns: minmax(340px, 1.08fr) minmax(0, 0.92fr);
  }

  .service-screen--reversed .service-card-copy,
  .service-screen--moving .service-card-copy,
  .service-screen--cleaning .service-card-copy {
    order: 2;
  }

  .service-screen--reversed .service-media-card,
  .service-screen--moving .service-media-card,
  .service-screen--cleaning .service-media-card {
    order: 1;
  }
}

.about-panel {
  padding: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(19, 151, 184, 0.15), transparent 30%),
    #fff;
}

.about-panel--full {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 1.8rem;
}

.about-panel--full .about-copy {
  width: 100%;
  margin: 0;
}

.about-panel--full .about-copy p + p {
  margin-top: 1rem;
}

.about-panel--full h3 {
  margin-top: 1.7rem;
  margin-bottom: 1rem;
  font-size: 1.18rem;
  line-height: 1.35;
  font-weight: 700;
}

.gallery-slider {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
}

.gallery-viewport {
  overflow: hidden;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(((100% - 1rem) / 2) * 1.02);
  gap: 1rem;
  transition: transform 320ms ease;
  touch-action: pan-y;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  background: #eaf2f6;
  cursor: pointer;
}

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

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.gallery-item span {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(37, 49, 58, 0.68);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.gallery-item.is-hidden {
  display: block;
}

.gallery-nav {
  width: 52px;
  height: 52px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-secondary);
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(19, 66, 89, 0.1);
}

.gallery-nav:disabled {
  opacity: 0.4;
  cursor: default;
}

@media (min-width: 760px) {
  .gallery-track {
    grid-auto-columns: calc(((100% - 2rem) / 3) * 1.02);
  }
}

.cta-banner-inner {
  align-items: center;
  padding: 1.75rem;
  background:
    linear-gradient(135deg, rgba(19, 151, 184, 0.9), rgba(31, 95, 148, 0.96)),
    #0d6f92;
  color: #fff;
}

.cta-banner .eyebrow,
.cta-banner p,
.cta-banner h2 {
  color: #fff;
}

.contact-cards {
  margin-top: 1.6rem;
}

.contact-copy {
  width: min(100%, 920px);
  margin: 0 auto;
}

.about-copy {
  width: min(100%, 920px);
  margin: 0 auto;
}

.contact-card {
  padding: 1rem 1.1rem;
}

.contact-card span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.contact-card strong {
  font-size: 1.1rem;
}

.contact-side {
  display: grid;
  gap: 1rem;
}

.contact-form,
.map-placeholder {
  padding: 1.4rem;
}

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

.contact-submit {
  margin-top: 0.35rem;
  align-self: flex-start;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  box-shadow: 0 18px 34px rgba(31, 95, 148, 0.24);
}

.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(37, 49, 58, 0.12);
  border-radius: 14px;
  background: #fbfdfe;
  color: var(--color-text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(19, 151, 184, 0.12);
}

.map-placeholder {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(223, 247, 251, 0.7), rgba(255, 255, 255, 0.95)),
    #fff;
}

.map-placeholder iframe {
  width: 100%;
  flex: 1;
  min-height: 100%;
  border: 0;
  border-radius: 18px;
}

.site-footer {
  padding: 2rem 0 5rem;
  background: #102a35;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer h2,
.site-footer p,
.site-footer a {
  margin: 0 0 0.6rem;
}

.footer-nav {
  display: grid;
  gap: 0.65rem;
}

.footer-contact a {
  display: block;
}

.footer-nav a,
.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-nav a:hover,
.site-footer a:hover {
  color: #fff;
}

.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  min-width: 132px;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 18px 30px rgba(13, 111, 146, 0.34);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(8, 17, 24, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  margin: 0;
  text-align: center;
  color: #fff;
}

.lightbox-figure img {
  width: min(100%, 980px);
  max-height: 74vh;
  margin: 0 auto 1rem;
  border-radius: 18px;
  object-fit: contain;
}

.lightbox-caption {
  color: #fff;
}

.lightbox-close,
.lightbox-nav {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

@media (min-width: 760px) {
  .section {
    padding: 5.8rem 0;
  }

  .nav-toggle {
    display: none;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(260px, var(--header-brand-width)) minmax(0, 1fr);
    align-items: center;
    gap: 1.2rem;
    justify-content: initial;
  }

  .brand {
    justify-self: start;
    margin-right: 0;
  }

  .site-nav {
    position: static;
    display: grid;
    grid-template-columns: 1fr repeat(4, max-content) clamp(1.2rem, 2.2vw, 2.8rem) max-content;
    align-items: center;
    justify-content: stretch;
    gap: 0.7rem;
    width: 100%;
    padding: 0;
    margin: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .site-nav a {
    min-width: max-content;
    padding-inline: 1.05rem;
    letter-spacing: 0.01em;
  }

  .site-nav a:nth-child(1) {
    grid-column: 2;
  }

  .site-nav a:nth-child(2) {
    grid-column: 3;
  }

  .site-nav a:nth-child(3) {
    grid-column: 4;
  }

  .site-nav a:nth-child(4) {
    grid-column: 5;
  }

  .nav-phone {
    grid-column: 7;
    justify-self: end;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .cta-banner-inner,
  .footer-grid {
    grid-template-columns: 1.3fr auto;
  }
}

@media (min-width: 1040px) {
  .contact-copy {
    width: min(100%, 1040px);
  }

  .footer-grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
  }

  .floating-call {
    opacity: 0;
    pointer-events: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .btn,
  .hero-cta,
  .nav-phone,
  .gallery-nav,
  .contact-card,
  .lightbox-close,
  .lightbox-nav,
  .nav-toggle,
  .site-nav a,
  .floating-call {
    transform: none !important;
    filter: none !important;
  }
}
