@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&family=Zilla+Slab:wght@700&display=swap");

:root {
  --ink: #090370;
  --navy: #090370;
  --royal: #0e06b0;
  --cyan: #54b5e5;
  --orange: #e7933e;
  --peach: #e3925e;
  --cream: #edc39e;
  --yellow: #f6d94a;
  --muted: #3f4380;
  --paper: #fffaf0;
  --panel: #ffffff;
  --line: #f0d8b7;
  --brand: var(--orange);
  --brand-dark: #c86d24;
  --blue: var(--royal);
  --shadow: 0 18px 45px rgba(9, 3, 112, .16);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Roboto, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fffaf0;
  border-bottom: 1px solid var(--line);
}

.wrap {
  width: min(1160px, calc(100% - 3rem));
  margin-inline: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  transition: min-height .28s cubic-bezier(.22, 1, .36, 1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0;
  font-size: 1.2rem;
}

.brand-logo {
  display: block;
  width: clamp(126px, 15vw, 178px);
  height: auto;
  transition:
    width .28s cubic-bezier(.22, 1, .36, 1),
    margin .28s cubic-bezier(.22, 1, .36, 1);
  will-change: width, margin;
}

.site-header .brand-logo {
  margin-block: .45rem;
}

.site-header.is-compact .nav {
  min-height: 60px;
}

.site-header.is-compact .brand-logo {
  width: clamp(104px, 11vw, 136px);
  margin-block: .25rem;
}

.footer-grid .brand-logo {
  width: 164px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.nav-links > a:not(.btn),
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
  font-weight: 900;
  color: var(--navy);
  padding: .7rem .82rem;
  border-radius: 7px;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  line-height: 1.55;
}

.nav-dropdown {
  position: relative;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.nav-dropdown-toggle,
.nav-dropdown-toggle:focus,
.nav-dropdown-toggle:active {
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
}

.nav-dropdown-toggle::after {
  content: "";
  width: .42rem;
  height: .42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-.16rem) rotate(45deg);
  transition: transform .18s ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: translateY(.08rem) rotate(225deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + .45rem);
  left: 0;
  z-index: 60;
  display: grid;
  gap: .15rem;
  min-width: 250px;
  padding: .55rem;
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease;
}

.nav-dropdown.is-open .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-submenu a {
  display: flex;
  white-space: nowrap;
  padding: .7rem .8rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 900;
  border-radius: 7px;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  background: rgba(84, 181, 229, .16);
  outline: none;
}

.nav-links .btn,
.nav-links .btn svg {
  color: #fff;
}

.nav-links .btn {
  font-size: 1.2rem;
  margin-left: .35rem;
  background: var(--brand);
  border-color: transparent;
}

.nav-links .btn:hover,
.nav-links .btn:focus-visible {
  color: #fff;
  background: var(--navy);
}

@media (max-width: 1000px) {
  .nav-call-btn {
    width: 46px;
    min-height: 46px;
    padding-inline: .75rem;
  }

  .nav-call-text {
    display: none;
  }
}

.menu-toggle {
  display: none;
  position: relative;
  border: 2px solid var(--royal);
  background: var(--royal);
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 8px 18px rgba(9, 3, 112, .18);
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.mobile-nav-actions,
.mobile-header-call {
  display: none;
}

.mobile-header-call svg {
  width: 20px;
  height: 20px;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  transition: transform .22s ease, opacity .16s ease, top .22s ease;
}

.menu-toggle span:nth-child(1) {
  top: 14px;
}

.menu-toggle span:nth-child(2) {
  top: 21px;
}

.menu-toggle span:nth-child(3) {
  top: 28px;
}

.menu-toggle[aria-expanded="true"] {
  background: var(--royal);
  border-color: var(--royal);
  box-shadow: 0 10px 24px rgba(9, 3, 112, .16);
}

.mobile-nav-actions:has(.menu-toggle[aria-expanded="true"]) .mobile-header-call {
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px) scale(.92);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 46px;
  padding: .78rem 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
  box-shadow: 0 10px 24px rgba(231, 147, 62, .28);
  text-transform: uppercase;
}

.btn:hover,
.btn:focus-visible {
  background: var(--brand-dark);
  outline: none;
}

.btn.secondary {
  color: #fff;
  background: var(--royal);
  border-color: var(--royal);
  box-shadow: none;
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: var(--navy);
}

.btn svg,
.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.mobile-call-pill {
  display: none;
}

.mobile-call-owner-bubble {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 80px);
  min-height: calc(100svh - 80px);
  background: #000;
  border-bottom: 4px solid var(--yellow);
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  animation: hero-slide-fade 18s ease-in-out infinite both;
}

.hero-slideshow.is-paused img {
  animation-play-state: paused;
}

.hero-slideshow img:nth-child(1) {
  animation-delay: -1.44s;
}

.hero-slideshow img:nth-child(2) {
  animation-delay: 4.56s;
}

.hero-slideshow img:nth-child(3) {
  animation-delay: 10.56s;
}

@keyframes hero-slide-fade {
  0% {
    opacity: 0;
  }

  8%,
  33% {
    opacity: .68;
  }

  41%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slideshow img {
    animation: none;
  }

  .hero-slideshow img:first-child {
    opacity: .68;
  }
}

.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 780px);
  justify-content: center;
  align-items: center;
  gap: 2rem;
  min-height: inherit;
  padding-block: 4rem 4rem;
}

.hero-copy {
  position: relative;
  color: #fff;
  max-width: 780px;
  text-align: center;
}

.hero-video-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .78rem;
  margin-top: 1.25rem;
  margin-inline: auto;
  min-height: 52px;
  padding: .55rem 1rem .55rem .58rem;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  box-shadow: none;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  line-height: 1;
  text-transform: none;
}

.hero-video-button:hover,
.hero-video-button:focus-visible {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .42);
  outline: none;
}

.hero-video-thumb {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 38px;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--navy);
  border: 2px solid var(--orange);
  border-radius: 6px;
}

.hero-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: .82;
  transition: transform .24s ease, opacity .24s ease;
}

.hero-video-thumb svg {
  position: absolute;
  width: 25px;
  height: 25px;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .45));
}

.hero-video-button:hover .hero-video-thumb img,
.hero-video-button:focus-visible .hero-video-thumb img {
  opacity: .96;
  transform: scale(1.04);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: 0 0 1rem;
  color: var(--orange);
  font-weight: 850;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
}

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

h1 {
  font-family: "Zilla Slab", Roboto, sans-serif;
  font-size: clamp(2.45rem, 5vw, 5.15rem);
  line-height: .96;
  letter-spacing: 0;
  margin-bottom: 1.1rem;
}

h2 {
  font-family: "Zilla Slab", Roboto, sans-serif;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

h3 {
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.12rem;
  line-height: 1.2;
  margin-bottom: .55rem;
}

.lead {
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  color: rgba(255, 255, 255, .9);
  max-width: 60ch;
}

.page-hero .lead {
  max-width: none;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  max-width: none;
}

.page-hero .lead {
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  max-width: none;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.4rem;
}

.section {
  position: relative;
  padding-block: clamp(3.25rem, 5.8vw, 5.25rem);
}

.hero + .section {
  padding-top: clamp(2.25rem, 4vw, 3.5rem);
}

.section.alt {
  background: #fff3dd;
}

.section.brand-divider {
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid;
  gap: .7rem;
  margin-bottom: 1.7rem;
}

.section-head p {
  max-width: 78ch;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 1px 0 rgba(9, 3, 112, .04);
}

.card.link-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.card.link-card:hover,
.card.link-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  outline: none;
}

.card .meta {
  margin-top: auto;
  color: var(--royal);
  font-weight: 850;
}

.visual-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.visual-service-card {
  position: relative;
  display: grid;
  min-height: 420px;
  overflow: hidden;
  color: #fff;
  border-radius: 8px;
  background: #000;
  text-decoration: none;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.visual-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .46)),
    linear-gradient(90deg, rgba(0, 0, 0, .14), rgba(0, 0, 0, 0));
}

.visual-service-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform .35s ease;
}

.visual-service-card > span:first-of-type {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: grid;
  gap: .35rem;
}

.visual-service-card strong {
  font-family: "Zilla Slab", Roboto, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1;
}

.visual-service-card small {
  max-width: 100%;
  color: rgba(255, 255, 255, .82);
  font-size: .95rem;
}

.visual-service-card:hover img,
.visual-service-card:focus-visible img {
  transform: scale(1.04);
}

.visual-service-card:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.home-work-section .section-actions {
  justify-content: flex-start;
  margin-top: 1.35rem;
}

.home-work-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .75rem;
}

.home-work-grid .home-work-tile {
  aspect-ratio: 1;
  min-height: 0;
}

.home-work-grid .home-work-tile img {
  min-height: 0;
}

.gallery-page {
  display: grid;
  gap: clamp(2.25rem, 5vw, 4rem);
}

.gallery-section {
  scroll-margin-top: 120px;
}

.gallery-section + .gallery-section {
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

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

.gallery-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  min-height: 290px;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(9, 3, 112, .14);
  cursor: zoom-in;
  isolation: isolate;
}

.gallery-tile img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  transition: transform .35s ease;
}

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

.gallery-tile:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgba(9, 3, 112, .94);
  overscroll-behavior: contain;
  touch-action: none;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  cursor: zoom-in;
  touch-action: none;
}

.gallery-lightbox.is-zoomed .gallery-lightbox-stage {
  cursor: grab;
}

.gallery-lightbox-stage.is-panning {
  cursor: grabbing;
}

.gallery-lightbox img {
  display: block;
  width: var(--gallery-fit-width, auto);
  height: var(--gallery-fit-height, auto);
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
  transform: translate3d(var(--gallery-pan-x, 0), var(--gallery-pan-y, 0), 0) scale(var(--gallery-zoom, 1));
  transition: transform .18s ease;
  user-select: none;
}

.gallery-lightbox-close,
.gallery-lightbox-arrow,
.gallery-zoom-button {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--orange);
  border: 2px solid var(--yellow);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
}

.gallery-lightbox-close {
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
}

.gallery-lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-arrow.prev {
  left: max(1rem, env(safe-area-inset-left));
}

.gallery-lightbox-arrow.next {
  right: max(1rem, env(safe-area-inset-right));
}

.gallery-zoom-controls {
  position: absolute;
  top: max(1rem, env(safe-area-inset-top));
  left: max(1rem, env(safe-area-inset-left));
  z-index: 4;
  display: flex;
  gap: .5rem;
}

.gallery-zoom-button {
  position: relative;
}

.gallery-lightbox-arrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.gallery-lightbox-arrow.prev::before {
  transform: translateX(2px) rotate(-45deg);
}

.gallery-lightbox-arrow.next::before {
  transform: translateX(-2px) rotate(135deg);
}

.gallery-lightbox-close::before,
.gallery-lightbox-close::after,
.gallery-zoom-button::before,
.gallery-zoom-button.zoom-in::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.gallery-lightbox-close::before {
  transform: rotate(45deg);
}

.gallery-lightbox-close::after {
  transform: rotate(-45deg);
}

.gallery-zoom-button.zoom-in::after {
  transform: rotate(90deg);
}

.gallery-zoom-button.zoom-reset::before {
  width: 15px;
  height: 15px;
  background: transparent;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.gallery-zoom-button:disabled {
  cursor: not-allowed;
  opacity: .48;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-arrow:hover,
.gallery-lightbox-arrow:focus-visible,
.gallery-zoom-button:hover,
.gallery-zoom-button:focus-visible {
  background: var(--navy);
  outline: none;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(0, 0, 0, .78);
}

.video-lightbox[hidden] {
  display: none;
}

.video-lightbox-frame {
  width: min(920px, 100%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border: 2px solid rgba(246, 217, 74, .8);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
}

.video-lightbox-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-lightbox-close {
  position: absolute;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #111;
  background: #fff;
  border: 2px solid var(--yellow);
  border-radius: 999px;
  cursor: pointer;
}

.video-lightbox-close::before,
.video-lightbox-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.video-lightbox-close::before {
  transform: rotate(45deg);
}

.video-lightbox-close::after {
  transform: rotate(-45deg);
}

.video-lightbox-close:hover,
.video-lightbox-close:focus-visible {
  background: var(--navy);
  color: #fff;
  outline: none;
}

body.video-lightbox-open {
  overflow: hidden;
}

.reviews-carousel {
  --review-card-width: clamp(320px, 54vw, 620px);
  position: relative;
  display: grid;
  align-items: center;
  width: min(1160px, calc(100% - 3rem));
  margin: 1rem auto 0;
  overflow: hidden;
  isolation: isolate;
}

.reviews-carousel::before,
.reviews-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 5;
  width: clamp(2.5rem, 8vw, 5rem);
  pointer-events: none;
}

.reviews-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(255, 250, 240, 0));
}

.reviews-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(255, 250, 240, 0));
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--review-card-width);
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding: 1rem max(1rem, calc((100% - var(--review-card-width)) / 2)) 1.35rem;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  position: relative;
  min-height: 100%;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--yellow);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(9, 3, 112, .04);
  opacity: .58;
  transform: scale(.94);
  transition: opacity .24s ease, transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.review-card.is-focused {
  z-index: 2;
  border-top-color: var(--orange);
  box-shadow: 0 8px 18px rgba(9, 3, 112, .13);
  opacity: 1;
  transform: scale(1);
}

.review-source {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 850;
}

.google-mark {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: var(--royal);
  border: 2px solid var(--cyan);
  border-radius: 999px;
  font-weight: 950;
}

.review-stars {
  display: flex;
  gap: .15rem;
  margin: 1rem 0 .75rem;
  color: var(--orange);
  font-size: 1.1rem;
  letter-spacing: 0;
}

.review-card h3 {
  color: var(--navy);
}

.review-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--royal);
}

.reviews-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 42px;
  height: 42px;
  border: 2px solid var(--yellow);
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
}

.reviews-arrow.prev {
  left: .65rem;
}

.reviews-arrow.next {
  right: .65rem;
}

.reviews-arrow::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  margin: auto;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.reviews-arrow.prev::before {
  transform: rotate(-45deg);
}

.reviews-arrow.next::before {
  transform: rotate(135deg);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.owner-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .58fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: center;
}

.owner-section {
  padding-top: clamp(2.15rem, 4vw, 3.4rem);
}

.owner-profile.compact {
  grid-template-columns: minmax(220px, .45fr) minmax(0, 1fr);
}

.owner-photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(84, 181, 229, .16), rgba(246, 217, 74, .14)),
    var(--navy);
  box-shadow: var(--shadow);
}

.owner-photo-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.owner-photo-card figcaption {
  padding: .9rem 1rem 1rem;
  color: #fff;
  background: var(--navy);
}

.owner-photo-card strong,
.owner-photo-card span {
  display: block;
}

.owner-photo-card span {
  margin-top: .2rem;
  color: rgba(255, 255, 255, .72);
}

.why-choose-intro {
  margin-bottom: .4rem;
}

.why-choose-section .section-head p {
  max-width: none;
}

.why-choose-intro p {
  color: var(--muted);
}

.why-choose-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.why-choose-list li {
  position: relative;
  min-height: 100%;
  padding: 1rem 1rem 1rem 3.15rem;
  color: var(--muted);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(240, 216, 183, .85);
  border-left: 4px solid var(--royal);
  border-radius: 8px;
}

.why-choose-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.08rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--royal), var(--navy));
  box-shadow: 0 0 0 3px rgba(84, 181, 229, .18);
}

.why-choose-list li::after {
  content: "";
  position: absolute;
  left: 1.46rem;
  top: 1.45rem;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.why-choose-list strong {
  display: block;
  margin-bottom: .18rem;
  color: var(--navy);
  font-family: "Zilla Slab", Roboto, sans-serif;
  font-size: 1.14rem;
  line-height: 1.08;
}

.owner-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.owner-facts li {
  padding: .55rem .75rem;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  font-weight: 850;
}

.check-list {
  display: grid;
  gap: .65rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: .65rem;
}

.check-list a[href^="tel:"] {
  white-space: nowrap;
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: .2rem;
  border-radius: 50%;
  background: radial-gradient(circle at center, #fff 0 28%, var(--orange) 30% 100%);
  box-shadow: inset 0 0 0 2px var(--orange);
}

.quote-panel {
  position: sticky;
  top: 112px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border-top: 6px solid var(--yellow);
}

.quote-panel label,
.contact-form label {
  display: block;
  font-weight: 800;
  font-size: .9rem;
  margin-bottom: .35rem;
}

.quote-panel input,
.quote-panel select,
.quote-panel textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfd8d3;
  border-radius: 7px;
  padding: .75rem .85rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.quote-panel textarea,
.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.field {
  margin-bottom: .85rem;
}

.form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-field {
  min-height: 0;
  margin: .35rem 0 .5rem;
}

.contact-page-message textarea {
  min-height: 170px;
}

.contact-page-message {
  margin-bottom: .15rem;
}

.service-area {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.service-area a {
  display: inline-flex;
  padding: .55rem .7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  font-weight: 750;
  color: var(--navy);
}

.faq {
  display: grid;
  gap: .8rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 1rem 1.1rem;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin: .8rem 0 0;
  color: var(--muted);
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(9, 3, 112, .98), rgba(14, 6, 176, .92)),
    repeating-linear-gradient(0deg, var(--orange) 0 28px, #d8782d 29px 33px, #f0a047 34px 36px);
  color: #fff;
  padding-block: 4rem 3.3rem;
  border-bottom: 4px solid var(--yellow);
}

.page-hero .wrap {
  display: grid;
  gap: 1.2rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  font-size: .92rem;
  color: rgba(255, 255, 255, .72);
}

.breadcrumbs a {
  color: #fff;
  text-decoration: none;
}

.breadcrumbs span::before {
  content: "/";
  margin-right: .45rem;
  color: rgba(255, 255, 255, .42);
}

.content {
  max-width: 760px;
}

.page-hero .content {
  max-width: none;
}

.content h2 {
  margin-top: 2.4rem;
}

.contact-page-help h2:first-child {
  margin-top: 0;
}

.contact-page-help .btn {
  color: #fff;
}

.about-expectations .content h2,
.about-expectations .card h2,
.about-guarantee .content h2 {
  margin-top: 0;
}

.guarantee-card {
  text-align: center;
}

.guarantee-card img {
  display: block;
  width: min(172px, 56vw);
  height: auto;
  margin: 0 auto 1rem;
}

.guarantee-card .check-list {
  text-align: left;
}

#owner-title,
#owner-home-title {
  margin-top: 0;
}

.content a {
  color: var(--royal);
  font-weight: 800;
}

.cta-band {
  background: var(--royal);
  color: #fff;
  padding-block: 3rem;
  border-block: 4px solid var(--yellow);
}

.home-cta-band {
  background:
    linear-gradient(90deg, rgba(9, 3, 112, .95), rgba(14, 6, 176, .76)),
    url("/assets/gallery/residential/1.webp") center 55% / cover no-repeat;
}

.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer {
  background: var(--navy);
  color: #fff;
  padding-block: 3rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, .74);
  text-decoration: none;
  margin-bottom: .45rem;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #fff;
}

.footer-grid h2,
.footer-grid h3 {
  font-size: 1rem;
  margin-bottom: .75rem;
}

.fineprint {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .62);
  font-size: .9rem;
}

.footer-nap {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, .78);
  font-style: normal;
  line-height: 1.6;
}

.footer-nap a {
  color: #fff;
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-footer {
    padding-bottom: calc(1.5rem + 150px);
  }

  .nav {
    min-height: 66px;
  }

  .site-header.is-compact .nav {
    min-height: 54px;
  }

  .site-header.is-compact .brand-logo {
    width: 104px;
    margin-block: .2rem;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .mobile-nav-actions {
    display: flex;
    align-items: center;
    gap: .55rem;
  }

  .mobile-header-call {
    display: inline-grid;
    place-items: center;
    position: relative;
    width: 46px;
    height: 46px;
    overflow: hidden;
    color: #fff;
    background: var(--orange);
    border: 2px solid var(--orange);
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(9, 3, 112, .24);
    text-decoration: none;
    transition: opacity .18s ease, transform .18s ease;
  }

  .mobile-header-call::before {
    content: "";
    position: absolute;
    inset: -40% auto -40% -70%;
    width: 55%;
    transform: skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
    animation: call-pill-shine 3.4s ease-in-out infinite;
  }

  .mobile-header-call svg {
    position: relative;
    z-index: 1;
    color: #fff;
  }

.nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: .75rem;
    background: #fffaf0;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    clip-path: inset(0 0 100% 0);
    transition:
      opacity .2s ease,
      transform .24s cubic-bezier(.22, 1, .36, 1),
      clip-path .24s cubic-bezier(.22, 1, .36, 1);
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(.6rem);
    clip-path: inset(0 0 0 0);
  }

  .nav-links .btn {
    font-size: 1rem;
    margin-left: 0;
    margin-top: .35rem;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    margin: .2rem 0 .35rem;
    padding: .35rem 0 .35rem .65rem;
    background: transparent;
    border: 0;
    border-left: 3px solid var(--yellow);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .nav-dropdown.is-open .nav-submenu {
    display: grid;
  }

  .nav-submenu a {
    white-space: normal;
  }

  .nav-links .nav-call-btn {
    width: 100%;
    padding-inline: 1rem;
  }

  .nav-links .nav-call-text {
    display: inline;
  }

  .hero {
    min-height: calc(100vh - 70px);
    min-height: calc(100svh - 70px);
  }

  .mobile-call-pill {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    z-index: 70;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .68rem;
    min-height: 60px;
    padding: .78rem 4.7rem .78rem 4.7rem;
    overflow: hidden;
    color: #fff;
    background:
      linear-gradient(135deg, var(--navy), var(--royal)),
      var(--navy);
    border: 2px solid var(--yellow);
    border-radius: 999px;
    box-shadow: 0 16px 36px rgba(9, 3, 112, .34);
    text-decoration: none;
    font-weight: 900;
  }

  .mobile-call-pill::before {
    content: "";
    position: absolute;
    inset: -40% auto -40% -55%;
    width: 45%;
    transform: skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
    animation: call-pill-shine 3.4s ease-in-out infinite;
  }

  .mobile-call-pill svg,
  .mobile-call-pill span {
    position: relative;
    z-index: 1;
  }

  .mobile-call-pill svg {
    width: 26px;
    height: 26px;
  }

  .mobile-call-pill span {
    font-size: 1.48rem;
    line-height: 1;
  }

  .mobile-call-owner {
    position: absolute;
    top: 50%;
    right: .72rem;
    z-index: 2;
    width: 36px;
    height: 36px;
    object-fit: cover;
    object-position: center 16%;
    background: var(--navy);
    border: 2px solid var(--yellow);
    border-radius: 50%;
    box-shadow:
      0 0 0 1px var(--cyan),
      0 8px 18px rgba(9, 3, 112, .3);
    transform: translateY(-50%);
    transition:
      right .28s cubic-bezier(.22, 1, .36, 1),
      width .28s cubic-bezier(.22, 1, .36, 1),
      height .28s cubic-bezier(.22, 1, .36, 1),
      box-shadow .28s ease;
  }

  .mobile-call-pill.has-owner-prompt .mobile-call-owner {
    right: .40rem;
    width: 44px;
    height: 44px;
  }

  .mobile-call-owner-bubble {
    position: fixed;
    right: 1.25rem;
    bottom: calc(max(1rem, env(safe-area-inset-bottom)) + 64px);
    z-index: 72;
    display: block;
    width: 58px;
    min-height: 31px;
    padding: .44rem .56rem;
    overflow: visible;
    color: var(--navy);
    background: #fffaf0;
    border: 2px solid var(--yellow);
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(9, 3, 112, .2);
    font-size: .74rem;
    font-weight: 850;
    line-height: 1.12;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
      opacity .24s ease,
      transform .24s ease,
      visibility .24s ease,
      width .34s cubic-bezier(.22, 1, .36, 1),
      padding .34s cubic-bezier(.22, 1, .36, 1);
  }

  .mobile-call-owner-bubble.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-call-owner-bubble.has-message {
    width: 182px;
    padding-inline: .62rem;
  }

  .mobile-call-typing,
  .mobile-call-message {
    display: inline-flex;
    align-items: center;
    transition: opacity .18s ease, transform .18s ease;
  }

  .mobile-call-typing {
    justify-content: center;
    gap: .18rem;
    width: 100%;
  }

  .mobile-call-typing i {
    display: block;
    width: 5px;
    height: 5px;
    background: var(--navy);
    border-radius: 50%;
    animation: mobile-call-dot-bounce .9s ease-in-out infinite;
  }

  .mobile-call-typing i:nth-child(2) {
    animation-delay: .12s;
  }

  .mobile-call-typing i:nth-child(3) {
    animation-delay: .24s;
  }

  .mobile-call-message {
    position: absolute;
    inset: .44rem .62rem auto;
    opacity: 0;
    transform: translateY(4px);
    transition-delay: 0s;
  }

  .mobile-call-owner-bubble.has-message .mobile-call-typing {
    opacity: 0;
    transform: translateY(-4px);
  }

  .mobile-call-owner-bubble.has-message .mobile-call-message {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .2s;
  }

  @keyframes mobile-call-dot-bounce {
    0%,
    80%,
    100% {
      transform: translateY(0);
      opacity: .5;
    }

    40% {
      transform: translateY(-3px);
      opacity: 1;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .mobile-call-owner-bubble,
    .mobile-call-typing,
    .mobile-call-message,
    .mobile-call-typing i {
      transition: none;
      animation: none;
    }
  }

  .mobile-call-owner-bubble::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: -8px;
    width: 12px;
    height: 12px;
    background: #fffaf0;
    border-left: 0;
    border-top: 0;
    border-right: 2px solid var(--yellow);
    border-bottom: 2px solid var(--yellow);
    transform: rotate(45deg);
  }

  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-block: 2.8rem 3.3rem;
  }

  .hero-copy {
    text-align: center;
  }

  .grid.three,
  .grid.two,
  .visual-service-grid,
  .home-work-grid,
  .gallery-grid,
  .owner-profile,
  .owner-profile.compact,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-help {
    order: 1;
  }

  .contact-page-form {
    order: 2;
  }

  .visual-service-card {
    min-height: 240px;
    height: 240px;
  }

  .home-work-grid .home-work-tile {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .home-work-grid .home-work-tile img {
    min-height: 0;
  }

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

  .gallery-tile,
  .gallery-tile img {
    min-height: 260px;
  }

  .gallery-lightbox {
    align-items: center;
    padding: 0;
  }

  .gallery-lightbox-arrow {
    top: auto;
    bottom: max(1.25rem, env(safe-area-inset-bottom));
    transform: none;
  }

  .gallery-lightbox-arrow.prev {
    left: .75rem;
  }

  .gallery-lightbox-arrow.next {
    right: .75rem;
  }

  .gallery-zoom-controls {
    top: max(.75rem, env(safe-area-inset-top));
    left: .75rem;
  }

  .reviews-carousel {
    --review-card-width: min(82vw, 360px);
    width: min(1160px, calc(100% - 2rem));
  }

  .reviews-track {
    padding-inline: max(.75rem, calc((100% - var(--review-card-width)) / 2));
    scroll-padding-inline: max(.75rem, calc((100% - var(--review-card-width)) / 2));
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
  }

  .review-card {
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .reviews-arrow {
    display: block;
    width: 38px;
    height: 38px;
  }

  .reviews-arrow.prev {
    left: 0;
  }

  .reviews-arrow.next {
    right: 0;
  }

  .section-head,
  .cta-band .wrap {
    display: block;
  }

  .quote-panel {
    position: static;
  }
}

@keyframes call-pill-shine {
  0%, 28% {
    left: -55%;
  }

  58%, 100% {
    left: 112%;
  }
}

@media (min-width: 901px) and (max-width: 1000px) {
  .site-footer {
    padding-bottom: calc(1.5rem + 150px);
  }

  .mobile-call-pill {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    z-index: 70;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .68rem;
    min-height: 60px;
    padding: .78rem 4.7rem .78rem 4.7rem;
    overflow: hidden;
    color: #fff;
    background:
      linear-gradient(135deg, var(--navy), var(--royal)),
      var(--navy);
    border: 2px solid var(--yellow);
    border-radius: 999px;
    box-shadow: 0 16px 36px rgba(9, 3, 112, .34);
    text-decoration: none;
    font-weight: 900;
  }

  .mobile-call-pill::before {
    content: "";
    position: absolute;
    inset: -40% auto -40% -55%;
    width: 45%;
    transform: skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
    animation: call-pill-shine 3.4s ease-in-out infinite;
  }

  .mobile-call-pill svg,
  .mobile-call-pill span {
    position: relative;
    z-index: 1;
  }

  .mobile-call-pill svg {
    width: 26px;
    height: 26px;
  }

  .mobile-call-pill span {
    font-size: 1.48rem;
    line-height: 1;
  }

  .mobile-call-owner {
    position: absolute;
    top: 50%;
    right: .72rem;
    z-index: 2;
    width: 36px;
    height: 36px;
    object-fit: cover;
    object-position: center 16%;
    background: var(--navy);
    border: 2px solid var(--yellow);
    border-radius: 50%;
    box-shadow:
      0 0 0 1px var(--cyan),
      0 8px 18px rgba(9, 3, 112, .3);
    transform: translateY(-50%);
    transition:
      right .28s cubic-bezier(.22, 1, .36, 1),
      width .28s cubic-bezier(.22, 1, .36, 1),
      height .28s cubic-bezier(.22, 1, .36, 1),
      box-shadow .28s ease;
  }

  .mobile-call-pill.has-owner-prompt .mobile-call-owner {
    right: .40rem;
    width: 44px;
    height: 44px;
  }

  .mobile-call-owner-bubble {
    position: fixed;
    right: 1.25rem;
    bottom: calc(max(1rem, env(safe-area-inset-bottom)) + 64px);
    z-index: 72;
    display: block;
    width: 58px;
    min-height: 31px;
    padding: .44rem .56rem;
    overflow: visible;
    color: var(--navy);
    background: #fffaf0;
    border: 2px solid var(--yellow);
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(9, 3, 112, .2);
    font-size: .74rem;
    font-weight: 850;
    line-height: 1.12;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
      opacity .24s ease,
      transform .24s ease,
      visibility .24s ease,
      width .34s cubic-bezier(.22, 1, .36, 1),
      padding .34s cubic-bezier(.22, 1, .36, 1);
  }

  .mobile-call-owner-bubble.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-call-owner-bubble.has-message {
    width: 182px;
    padding-inline: .62rem;
  }

  .mobile-call-typing,
  .mobile-call-message {
    display: inline-flex;
    align-items: center;
    transition: opacity .18s ease, transform .18s ease;
  }

  .mobile-call-typing {
    justify-content: center;
    gap: .18rem;
    width: 100%;
  }

  .mobile-call-typing i {
    display: block;
    width: 5px;
    height: 5px;
    background: var(--navy);
    border-radius: 50%;
    animation: mobile-call-dot-bounce .9s ease-in-out infinite;
  }

  .mobile-call-typing i:nth-child(2) {
    animation-delay: .12s;
  }

  .mobile-call-typing i:nth-child(3) {
    animation-delay: .24s;
  }

  .mobile-call-message {
    position: absolute;
    inset: .44rem .62rem auto;
    opacity: 0;
    transform: translateY(4px);
    transition-delay: 0s;
  }

  .mobile-call-owner-bubble.has-message .mobile-call-typing {
    opacity: 0;
    transform: translateY(-4px);
  }

  .mobile-call-owner-bubble.has-message .mobile-call-message {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .2s;
  }

  .mobile-call-owner-bubble::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: -8px;
    width: 12px;
    height: 12px;
    background: #fffaf0;
    border-left: 0;
    border-top: 0;
    border-right: 2px solid var(--yellow);
    border-bottom: 2px solid var(--yellow);
    transform: rotate(45deg);
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(100% - 2rem, 1160px);
  }

  h1 {
    font-size: 2.6rem;
  }

  .section-actions .btn,
  .cta-band .btn {
    width: 100%;
  }

  .card,
  .quote-panel {
    padding: 1rem;
  }
}

@media (max-width: 370px) {
  .mobile-call-pill {
    gap: .45rem;
    padding-inline: 4.35rem;
  }

  .mobile-call-pill span {
    font-size: 1.28rem;
    white-space: nowrap;
  }
}

@media (max-width: 330px) {
  .mobile-call-pill {
    gap: .35rem;
    padding-inline: 4rem;
  }

  .mobile-call-pill svg {
    width: 23px;
    height: 23px;
  }

  .mobile-call-pill span {
    font-size: 1.12rem;
  }
}
