:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f7;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --ink: #0f0f10;
  --muted: #4d4d52;
  --line: rgba(15, 15, 16, 0.1);
  --brand: #1f5fbf;
  --brand-deep: #184e9d;
  --brand-soft: #c9ddff;
  --accent: #123e7b;
  --accent-soft: #2159a9;
  --gold: #1f5fbf;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1160px, calc(100vw - 32px));
  --display-font: "Copperplate Gothic Bold", "Copperplate Gothic", "Palatino Linotype", "Book Antiqua", serif;
  --heading-font: Montserrat, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.04), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #fafafa 44%, #ffffff 100%);
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(15, 15, 16, 0.08);
}

.header-topbar {
  background: linear-gradient(90deg, #153766, #1f2d3d);
  border-bottom: 1px solid rgba(15, 15, 16, 0.08);
  overflow: hidden;
  transition:
    max-height 240ms ease,
    opacity 220ms ease,
    border-bottom-color 220ms ease,
    visibility 0ms linear;
  max-height: 88px;
  opacity: 1;
  visibility: visible;
}

.header-topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-rating,
.header-phone,
h1,
h2,
h3 {
  font-family: var(--heading-font);
  letter-spacing: 0.02em;
}

.header-rating,
.header-phone,
.header-consultation,
.button,
h1,
h2,
.review-carousel-head h3,
.reviews-heading h2,
.pricing-card h3,
.schedule-head strong,
.footer-row strong {
  font-family: var(--display-font);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  transition: opacity 180ms ease;
}

.header-rating:hover,
.header-rating:focus-visible {
  opacity: 0.82;
}

.header-stars {
  color: #ffffff;
  letter-spacing: 0.08em;
}

.header-utility {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.brand-logo {
  width: auto;
  height: 82px;
  object-fit: contain;
  display: block;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.98rem;
  margin-left: auto;
}

.header-nav a {
  position: relative;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.header-phone {
  padding: 12px 18px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  transition: transform 180ms ease, color 180ms ease;
}

.header-phone-top {
  padding: 0;
  background: transparent;
}

.header-consultation {
  padding: 16px 28px;
  font-size: 0.85rem;
}

.site-header.is-condensed .header-topbar {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
  visibility: hidden;
  pointer-events: none;
}

.site-header.is-condensed .header-topbar-row {
  min-height: 0;
}

.header-phone:hover,
.header-phone:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  padding: 72px 0 52px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(9, 33, 67, 0.97), rgba(20, 78, 157, 0.92) 42%, rgba(255, 255, 255, 0.08) 100%),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 18px,
      rgba(255, 255, 255, 0.01) 18px,
      rgba(255, 255, 255, 0.01) 36px
    );
  clip-path: ellipse(120% 86% at 50% 14%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 52px;
  align-items: center;
}

.hero-copy,
.hero-visual,
.owner-image,
.service-card,
.value-card,
.compare-card,
.review-card,
.reviews-summary,
.gallery-card,
.map-card,
.contact-card {
  position: relative;
}

.hero-copy {
  color: #fff7ee;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-soft);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.96;
}

h1 {
  font-size: clamp(2.16rem, 4.8vw, 3.92rem);
  max-width: 15ch;
}

.hero-title {
  max-width: 15ch;
  height: 2.95em;
  overflow: hidden;
}

.hero-typewrap {
  display: inline-flex;
  align-items: flex-start;
  height: 2.95em;
  width: 100%;
  overflow: hidden;
}

.hero-typing {
  position: relative;
  display: inline-block;
  padding-right: 0.14em;
  font-size: var(--hero-type-scale, 1em);
  line-height: 1.02;
}

.hero-typing::after {
  content: "";
  position: absolute;
  top: 0.12em;
  right: 0;
  width: 0.08em;
  height: 0.88em;
  background: currentColor;
  animation: caret-blink 900ms steps(1) infinite;
}

.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;
}

.hero-lead,
.section-heading p,
.section-copy p,
.review-band-copy p,
.service-card p,
.value-card p,
.review-card p,
.reviews-summary p,
.gallery-card figcaption,
.contact-note span {
  color: rgba(255, 247, 238, 0.86);
}

.hero-lead {
  max-width: 58ch;
  margin: 24px 0 0;
  font-size: 1.05rem;
}

.hero-pills,
.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-pills {
  margin-top: 28px;
}

.hero-pills span,
.city-chips span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff7ee;
  font-size: 0.92rem;
  font-weight: 700;
}

.cta-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-row {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button-primary {
  background: linear-gradient(135deg, #184e9d, #2b6fd4 72%);
  color: #fff;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.button-accent {
  background: #ffffff;
  color: var(--brand);
}

.hero-meta strong,
.contact-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  color: #fff;
}

.hero-photo-card {
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.hero-photo-card img {
  width: 100%;
  min-height: 580px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.hero-photo-card:hover img,
.hero-photo-card:focus-within img {
  transform: scale(1.04);
}

.floating-card {
  position: absolute;
  max-width: 240px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.floating-card p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.floating-card strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.04;
}

.floating-card-top {
  top: 32px;
  left: -24px;
}

.floating-card-bottom {
  right: -18px;
  bottom: 30px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 168px 0 92px;
  color: #fff8f0;
  background: #0b1628;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7, 14, 25, 0.86), rgba(12, 24, 44, 0.9)),
    var(--page-hero-image) center / cover no-repeat;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: none;
  margin-bottom: 14px;
  color: #ffffff;
}

.page-hero p {
  max-width: 62ch;
  color: rgba(255, 248, 240, 0.88);
}

.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-hero-meta span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
}

.service-page-section {
  padding: 68px 0;
}

.service-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 30px;
  align-items: start;
}

.service-main-copy p {
  color: #4b5567;
}

.service-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.service-highlight-card,
.service-panel,
.service-sidebar-card {
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.service-highlight-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 15, 16, 0.08);
}

.service-highlight-card h3,
.service-panel h3,
.service-sidebar-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.service-highlight-card p,
.service-panel p {
  margin: 0;
  color: #4b5567;
}

.service-content-panels {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.service-panel {
  padding: 24px;
  background: #f7faff;
  border: 1px solid rgba(31, 95, 191, 0.1);
}

.service-panel ul,
.service-sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.service-panel li,
.service-sidebar-card li {
  position: relative;
  padding-left: 18px;
}

.service-panel li::before,
.service-sidebar-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
}

.service-sidebar-card {
  position: sticky;
  top: 128px;
  padding: 26px;
  background: linear-gradient(160deg, #153a74, #0b1628 78%);
  color: #ffffff;
}

.service-sidebar-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.service-sidebar-card .button {
  margin-top: 18px;
}

.service-sidebar-card .button + .button {
  margin-top: 12px;
}

.service-support-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.95rem;
}

.offer-strip-service {
  margin-top: 28px;
}

.offer-strip-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.offer-strip-full .offer-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.offer-strip {
  padding: 18px 0;
  background: linear-gradient(135deg, #8f163f, #771331 72%);
}

.offer-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.offer-strip-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  flex: 0 0 auto;
}

.offer-strip-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-strip p {
  margin: 0;
  max-width: 40ch;
  color: #ffffff;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.14;
}

.review-band {
  margin-top: 18px;
  padding-bottom: 20px;
}

.review-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, #184e9d, #2a67c7);
  color: #fff8f0;
  box-shadow: var(--shadow);
}

.review-band-copy h2 {
  font-size: clamp(1.72rem, 3vw, 2.55rem);
  margin-bottom: 10px;
}

.review-band-copy p {
  margin: 0;
}

.review-carousel-section {
  padding: 10px 0 26px;
}

.review-carousel-head {
  text-align: center;
  margin-bottom: 24px;
}

.review-carousel-head h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.14rem, 1.8vw, 1.56rem);
  color: var(--brand);
  margin-bottom: 6px;
}

.google-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.review-carousel-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.review-carousel-shell {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: 12px;
  align-items: center;
}

.review-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  padding: 10px 0 16px;
  background: transparent;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.review-carousel-track::-webkit-scrollbar {
  display: none;
}

.review-slide {
  min-height: 390px;
  padding: 28px 26px;
  border-radius: 24px;
  border: 1px solid rgba(15, 15, 16, 0.08);
  background: #ffffff;
  box-shadow: none;
  text-align: center;
  scroll-snap-align: start;
}

.review-slide blockquote {
  margin: 16px 0 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.review-slide-author {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.review-slide strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.review-user-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #0f1116;
}

.review-user-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.review-expand {
  display: block;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand);
  font-weight: 800;
  cursor: pointer;
}

.review-full {
  display: none;
}

.is-expanded .review-full {
  display: inline;
}

.is-expanded .review-ellipsis {
  display: none;
}

.review-arrow {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--brand);
  box-shadow: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease;
}

.review-arrow[disabled] {
  opacity: 0.45;
  cursor: default;
}

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

.review-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 95, 191, 0.22);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.review-dot.is-active {
  background: var(--brand);
  transform: scale(1.08);
}

.section {
  padding: 92px 0;
}

.section-heading,
.section-copy {
  max-width: 760px;
}

.section-heading h2,
.section-copy h2 {
  font-size: clamp(1.68rem, 3vw, 2.58rem);
  margin-bottom: 16px;
  color: var(--ink);
}

.section-heading p,
.section-copy p,
.service-card p,
.value-card p,
.review-card p,
.reviews-summary p,
.gallery-card figcaption,
.map-section .section-copy p,
.contact-copy p,
.schedule-list p,
.contact-note span {
  color: var(--muted);
}

.owner-grid,
.compare-grid,
.map-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.value-grid,
.service-grid,
.review-cards,
.gallery-grid {
  display: grid;
  gap: 18px;
}

.value-grid {
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card,
.service-card,
.review-card,
.reviews-summary,
.gallery-card,
.contact-card,
.map-card,
.compare-card,
.map-contact-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 243, 0.72);
  box-shadow: var(--shadow);
}

.value-card,
.service-card,
.review-card,
.reviews-summary,
.contact-card {
  padding: 26px;
}

.value-card span,
.schedule-list span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.08);
  color: var(--brand);
  font-weight: 800;
  margin-bottom: 14px;
}

.value-card h3,
.service-card h3,
.review-card blockquote,
.reviews-summary h3,
.contact-copy h2,
.schedule-head strong {
  font-size: 1.2rem;
}

.owner-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.owner-mosaic-column {
  display: grid;
  gap: 16px;
}

.mosaic-tile {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  cursor: zoom-in;
  background: transparent;
  box-shadow: none;
}

.mosaic-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 260ms ease;
}

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

.mosaic-tile-landscape {
  height: 170px;
}

.mosaic-tile-portrait {
  height: 263px;
}

.owner-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.owner-points strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
}

.owner-points p {
  margin: 0;
  color: var(--muted);
}

.services-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 247, 247, 0.96));
}

.pricing-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.pricing-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 16, 12, 0.72), rgba(7, 16, 12, 0.8)),
    url("images/project-home.jpg") center/cover no-repeat;
  transform: scale(1.03);
}

.pricing-shell {
  position: relative;
  z-index: 1;
}

.pricing-heading {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.pricing-heading .eyebrow,
.pricing-heading p {
  color: rgba(255, 255, 255, 0.82);
}

.pricing-heading h2 {
  color: #ffffff;
}

.pricing-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.pricing-card {
  position: relative;
  padding: 32px 28px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.pricing-card-dark {
  background: rgba(7, 16, 12, 0.96);
  color: #ffffff;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  background: #f0f2f7;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.pricing-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 1.92vw, 1.68rem);
}

.pricing-card-copy {
  margin: 0 auto 20px;
  max-width: 24ch;
  color: var(--muted);
}

.pricing-card-dark .pricing-card-copy,
.pricing-card-dark .pricing-card-note {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-card-note {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 700;
}

.pricing-disclaimer {
  max-width: 760px;
  margin: 28px auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.76);
}

.service-grid {
  margin-top: 34px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  padding: 10px 0 16px;
  background: transparent;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.service-grid::-webkit-scrollbar {
  display: none;
}

.service-carousel-shell {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: 12px;
  align-items: center;
}

.service-dots {
  margin-top: 6px;
}

.service-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  box-shadow: none;
}

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

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(31, 95, 191, 0.12), rgba(31, 95, 191, 0.18));
  color: var(--brand);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--brand);
  font-weight: 800;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.service-link::after {
  content: "\00BB";
  font-size: 1.1em;
}

.service-support-eyebrow {
  margin: 0 0 6px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card-muted {
  background: rgba(255, 255, 255, 0.56);
  border-style: dashed;
}

.service-card-muted .service-icon {
  background: linear-gradient(135deg, rgba(31, 95, 191, 0.08), rgba(31, 95, 191, 0.12));
}

.service-card-muted .service-link {
  color: var(--accent);
}

.plain-list {
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.compare-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.compare-heading .eyebrow {
  color: #24374f;
}

.compare-heading h2 {
  color: var(--brand);
  font-size: clamp(1.42rem, 2.25vw, 1.95rem);
  margin-bottom: 16px;
}

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

.compare-card {
  padding: 24px;
}

.compare-frame {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 2 / 3;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: #f3f6fb;
}

.compare-image-base {
  position: absolute;
  inset: 0;
}

.compare-base {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-image,
.compare-image img {
  display: block;
  vertical-align: middle;
}

.compare-overlay {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.compare-overlay img {
  width: var(--compare-width, 100%);
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.compare-slider {
  position: absolute;
  z-index: 9;
  cursor: ew-resize;
  width: 40px;
  height: 40px;
  background-color: #2196f3;
  opacity: 0.85;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(33, 150, 243, 0.28);
}

.compare-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  transform: translateX(-50%);
  width: min(220px, 42vw);
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(15, 17, 22, 0.92);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  pointer-events: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.compare-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border-width: 8px 7px 0;
  border-style: solid;
  border-color: rgba(15, 17, 22, 0.92) transparent transparent;
}

.compare-slider::before,
.compare-slider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
}

.compare-slider::before {
  left: 9px;
  transform: translateY(-50%) rotate(-135deg);
}

.compare-slider::after {
  right: 9px;
  transform: translateY(-50%) rotate(45deg);
}

.compare-control {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.reviews-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.reviews-heading .eyebrow {
  color: #24374f;
}

.reviews-heading h2 {
  color: var(--brand);
  font-size: clamp(1.42rem, 2.25vw, 1.95rem);
}

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

.reviews-summary {
  padding: 22px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.reviews-summary-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviews-summary-logo {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(15, 15, 16, 0.08);
}

.reviews-summary-logo img {
  max-width: 56px;
  max-height: 56px;
  object-fit: contain;
}

.reviews-summary h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.reviews-summary-stars {
  color: #f4b400;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.reviews-summary p {
  margin: 0;
}

.reviews-summary-button {
  margin-top: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 15, 16, 0.14);
  color: var(--ink);
}

.reviews-carousel-shell {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
}

.review-cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 18px) / 2);
  gap: 18px;
  overflow-x: auto;
  padding: 10px 0 16px;
  background: transparent;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.review-cards::-webkit-scrollbar {
  display: none;
}

.reviews-dots {
  margin-top: 4px;
  justify-content: flex-start;
  padding-left: 52px;
}

.review-card {
  min-height: 248px;
  padding: 20px 18px 18px;
  background: #ffffff;
  border-color: rgba(15, 15, 16, 0.08);
  box-shadow: 0 10px 28px rgba(18, 62, 123, 0.08);
}

.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.review-author {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.review-author strong {
  display: block;
  margin-bottom: 2px;
  font-size: 1rem;
}

.review-author span:last-child {
  color: #8a8f98;
  font-size: 0.9rem;
}

.review-avatar {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.review-avatar-green {
  background: #2e7d32;
}

.review-avatar-blue {
  background: #2b6fd4;
}

.review-avatar-orange {
  background: #f26b2c;
}

.review-avatar-slate {
  background: #4a6572;
}

.review-avatar-gold {
  background: #b9860b;
}

.review-avatar-red {
  background: #d24a43;
}

.review-google-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
}

.stars {
  color: #f4b400;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.review-card blockquote {
  margin: 12px 0 18px;
  color: var(--ink);
  line-height: 1.5;
  font-size: 1rem;
}

.review-read-more {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
}

.gallery-grid {
  display: block;
  margin-top: 34px;
  gap: 6px;
  column-count: 3;
  column-gap: 6px;
}

.gallery-card {
  display: block;
  width: 100%;
  margin: 0 0 6px;
  padding: 0;
  border-radius: 18px;
  cursor: pointer;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.gallery-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 280ms ease;
}

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

.gallery-card figcaption {
  display: none;
}

.gallery-card-landscape img {
  aspect-ratio: 16 / 10;
}

.gallery-card-square img {
  aspect-ratio: 1 / 1;
}

.gallery-card-portrait img {
  aspect-ratio: 3 / 4;
}

.gallery-card-tall img {
  aspect-ratio: 4 / 5;
}

.map-card {
  padding: 10px;
}

.map-grid {
  align-items: start;
}

.map-grid-compact {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
}

.map-card-full {
  margin-top: 50px;
}

.map-section .city-chips span {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.05);
  color: #111111;
}

.map-card iframe {
  width: 100%;
  min-height: 480px;
  border: 0;
  border-radius: 22px;
}

.map-contact-card {
  padding: 42px 36px 34px;
  background: #ffffff;
  border-color: rgba(18, 62, 123, 0.08);
  box-shadow: 0 22px 60px rgba(18, 62, 123, 0.09);
}

.reviews-summary .button-secondary {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--brand);
}

.schedule-head p {
  margin: 0 0 8px;
  font-size: 0.9rem;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.contact-separator {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}

.contact-separator span {
  display: block;
  height: 1px;
  background: rgba(31, 95, 191, 0.18);
}

.contact-separator small {
  color: #7a8594;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

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

.contact-form label {
  display: grid;
  gap: 12px;
}

.contact-form span {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink);
  font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(31, 95, 191, 0.18);
  border-radius: 0;
  background: #ffffff;
  color: var(--ink);
  padding: 8px 0 14px;
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-bottom-color: var(--brand);
}

.form-message {
  grid-column: 1 / -1;
}

.form-message textarea {
  min-height: 190px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 4px;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.button-booking {
  background: rgba(31, 95, 191, 0.08);
  border: 1px solid rgba(31, 95, 191, 0.14);
  color: var(--brand);
}

.button-booking-hero {
  width: fit-content;
  margin-top: 18px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #184e9d, #2b6fd4 72%);
  border: 0;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(31, 95, 191, 0.2);
}

.button-form-submit {
  min-width: 160px;
  padding-inline: 26px;
}

.contact-note {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.08);
}

.contact-note strong {
  color: var(--accent);
}

.site-footer {
  padding: 28px 0 42px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.82);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav-prev {
  left: clamp(14px, 3vw, 28px);
}

.lightbox-nav-next {
  right: clamp(14px, 3vw, 28px);
}

.lightbox-close,
.booking-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
}

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

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.booking-modal-card {
  position: relative;
  width: min(92vw, 920px);
  margin: 8vh auto 0;
  padding: 34px 28px 28px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.booking-modal-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
}

.booking-modal-card p {
  margin: 0;
  color: var(--muted);
}

.booking-embed-shell {
  margin-top: 18px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 15, 16, 0.08);
  background: #f7f9fc;
}

.booking-embed {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
  overflow: hidden;
}

.booking-note {
  margin-top: 16px !important;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

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

.promo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 14, 28, 0.72);
  backdrop-filter: blur(4px);
}

.promo-modal-card {
  position: relative;
  width: min(92vw, 760px);
  margin: 6vh auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  overflow: hidden;
  border-radius: 28px;
  background: #0f1827;
  color: #ffffff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.promo-modal-media {
  min-height: 100%;
}

.promo-modal-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.65);
}

.promo-modal-content {
  position: relative;
  padding: 42px 34px 30px;
  background:
    linear-gradient(180deg, rgba(11, 22, 40, 0.9), rgba(11, 22, 40, 0.98)),
    linear-gradient(135deg, #10284e, #0b1628 70%);
}

.promo-kicker {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.promo-modal-content h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.6rem, 3.2vw, 2.64rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.promo-points {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
}

.promo-points li::before {
  content: "- ";
}

.promo-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.promo-trust span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.9rem;
  font-weight: 700;
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.promo-disclaimer {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.promo-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(27, 26, 24, 0.1);
  color: var(--muted);
}

.footer-row strong {
  display: block;
  color: var(--ink);
}

.footer-row a {
  margin-left: 18px;
}

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

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

@keyframes caret-blink {
  0%,
  49% {
    opacity: 1;
  }

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

@media (max-width: 1080px) {
  .header-nav {
    display: none;
  }

  .header-topbar-row {
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
  }

  .hero-grid,
  .owner-grid,
  .map-grid,
  .reviews-layout,
  .service-page-grid {
    grid-template-columns: 1fr;
  }

  .compare-showcase {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .pricing-options,
  .review-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 48px;
  }

  .hero-photo-card img {
    min-height: 420px;
  }

  .compare-overlay img {
    width: 100%;
  }

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

  .owner-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic-tile-landscape {
    height: 152px;
  }

  .mosaic-tile-portrait {
    height: 236px;
  }

  .review-carousel-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .review-cards {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .gallery-grid {
    column-count: 2;
  }

  .promo-modal-card {
    grid-template-columns: 1fr;
    width: min(92vw, 560px);
  }

  .promo-modal-media {
    max-height: 220px;
  }

  .promo-modal-media img {
    min-height: 220px;
  }

  .service-sidebar-card {
    position: static;
  }

  .service-highlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid {
    grid-auto-columns: calc((100% - 18px) / 2);
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 24px, 1160px);
  }

  .header-row {
    min-height: 74px;
    gap: 12px;
  }

  .header-rating {
    font-size: 0.92rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .header-utility {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .brand-logo {
    height: 62px;
  }

  .header-phone {
    font-size: 1rem;
  }

  .header-consultation {
    width: 100%;
  }

  .hero-backdrop {
    clip-path: ellipse(165% 90% at 50% 7%);
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-title,
  .hero-typewrap {
    height: 2.9em;
  }

  .hero-meta,
  .value-grid,
  .pricing-options,
  .review-cards,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    column-count: 1;
  }

  .review-band-inner,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero {
    padding: 146px 0 74px;
  }

  .owner-mosaic {
    grid-template-columns: 1fr;
  }

  .owner-mosaic-column {
    gap: 14px;
  }

  .mosaic-tile-landscape,
  .mosaic-tile-portrait {
    height: 220px;
  }

  .offer-strip-inner {
    flex-direction: column;
    gap: 10px;
  }

  .offer-strip p {
    font-size: 1.05rem;
  }

  .page-hero-meta,
  .service-highlight-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-meta {
    display: grid;
    justify-items: start;
  }

  .promo-modal-card {
    width: min(94vw, 520px);
    margin-top: 3vh;
  }

  .promo-modal-content {
    padding: 30px 22px 24px;
  }

  .promo-modal-content h3 {
    font-size: clamp(1.7rem, 8vw, 2.6rem);
  }

  .promo-points {
    font-size: 0.98rem;
  }

  .floating-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .hero-photo-card img,
  .map-card iframe {
    min-height: 340px;
  }

  .compare-frame {
    width: min(100%, 420px);
  }

  .compare-divider::before {
    width: 46px;
  }

  .section {
    padding: 76px 0;
  }

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .gallery-card img {
    height: 290px;
    aspect-ratio: auto;
  }

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

  .map-contact-card {
    padding: 28px 20px 24px;
  }

  .map-card-full {
    margin-top: 32px;
  }

  .button-booking-hero,
  .button-form-submit {
    width: 100%;
  }

  .review-carousel-shell {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .review-carousel-track {
    grid-auto-columns: 88%;
    gap: 14px;
  }

  .reviews-carousel-shell {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .review-cards {
    grid-auto-columns: 88%;
    gap: 14px;
  }

  .reviews-dots {
    padding-left: 0;
    justify-content: center;
  }

  .service-carousel-shell {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .service-grid {
    grid-auto-columns: 88%;
    gap: 14px;
  }

  .review-slide {
    min-height: 320px;
    padding: 24px 20px;
  }

  .review-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
  }

  .booking-modal-card {
    margin-top: 10vh;
    padding: 30px 20px 22px;
  }
}
