:root {
  color-scheme: light;
  --background: #fdfefe;
  --foreground: #172d4f;
  --primary: #172d4f;
  --primary-foreground: #fff;
  --popover: #fff;
  --muted: #f0f4f7;
  --muted-foreground: #586575;
  --border: #dce3ea;
  --ring: #40628d;
  --surface: #edf2f6;
  --radius: 12px;
  --navy: #172d4f;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  flex-shrink: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.13;
  overflow-wrap: anywhere;
  font-weight: 550;
  letter-spacing: -0.04em;
}
h2 {
  font-size: clamp(2.1rem, 3.55vw, 3.25rem);
}
h3 {
  font-size: 1.55rem;
}
p {
  color: var(--muted-foreground);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #547fba;
  outline-offset: 5px;
}
::selection {
  background: #c9d9ea;
  color: #172d4f;
}
.wrap {
  width: calc(100% - 72px);
  max-width: 1360px;
  margin-inline: auto;
}
.section {
  padding-block: 94px;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  line-height: 1.4;
  margin-bottom: 24px;
}
.button {
  display: inline-flex;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 17px 24px;
  min-height: 56px;
  border-radius: 7px;
  line-height: 1.2;
  font-weight: 550;
  font-size: 15px;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button svg,
.text-link svg {
  transition: transform 0.2s;
}
.button:hover svg,
.text-link:hover svg {
  transform: translate(3px, -3px);
}
.button:active {
  transform: translateY(1px);
}
.button-white {
  background: #fff;
  color: #172d4f;
}
.button-white:hover {
  background: #e5edf5;
}
.button-navy {
  background: var(--navy);
  color: #fff;
}
.button-navy:hover {
  background: #254568;
}
.button-outline {
  border-color: var(--border);
  color: var(--foreground);
  background: transparent;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 1px solid #9cabbc;
  padding-bottom: 7px;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 20px;
  background: #fff;
  color: #172d4f;
  padding: 10px 20px;
  z-index: 100;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgb(253 254 254 / 0.97);
}
.header-inner {
  min-height: 98px;
  padding-block: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: block;
  width: 156px;
  flex-shrink: 0;
}
.brand img {
  width: 100%;
  aspect-ratio: 640/194;
  height: auto;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
.desktop-nav a {
  padding-block: 10px;
  position: relative;
}
.desktop-nav a:after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--foreground);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.desktop-nav a:hover:after,
.desktop-nav a[aria-current='page']:after {
  transform: scaleX(1);
}
.header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.header-contact {
  font-size: 14px;
  font-weight: 550;
  display: flex;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--border);
  padding: 11px 18px;
  border-radius: 6px;
}
.menu-trigger,
.icon-button {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--foreground);
}
.menu-trigger:hover,
.icon-button:hover {
  background: var(--muted);
}
.nav-sheet[data-slot] {
  width: min(100%, 520px);
  max-width: 520px;
  padding: 36px;
  overflow-y: auto;
  gap: 16px;
}
.sheet-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.sheet-top [data-slot='sheet-title'] {
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}
.sheet-nav {
  display: grid;
  margin-block: 25px;
}
.sheet-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  font-size: 1.45rem;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.025em;
}
.sheet-nav a:hover {
  color: #426b99;
}
.sheet-contact {
  margin-top: auto;
  padding-top: 30px;
  display: grid;
  gap: 8px;
}
.sheet-contact span {
  font-size: 13px;
  color: var(--muted-foreground);
}
.sheet-contact a:first-of-type {
  font-size: 1.5rem;
}
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 17px;
  min-height: 586px;
  background: #172d4f;
  color: #fff;
  display: flex;
  align-items: center;
}
.hero-photo {
  position: absolute;
  right: 0;
  inset-block: 0;
  width: 65%;
  z-index: -2;
}
.hero-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 58% center;
}
.hero:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    #172d4f 8%,
    #172d4f 26%,
    rgb(23 45 79 / 0.93) 36%,
    rgb(23 45 79 / 0.54) 52%,
    rgb(23 45 79 / 0.02) 76%
  );
}
.hero-copy {
  padding: 64px 58px;
  width: 68%;
}
.hero-copy .eyebrow {
  color: #d9e3ee;
  font-size: 0.69rem;
  letter-spacing: 0.16em;
  margin-bottom: 30px;
}
.hero h1 {
  font-size: clamp(2.9rem, 4.8vw, 4.45rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
  font-weight: 520;
}
.hero h1 span {
  color: #dce7f3;
}
.hero-intro {
  font-size: 1rem;
  color: #d2dde9;
  margin-block: 25px 34px;
  line-height: 1.8;
}
.hero-copy > .button {
  font-size: 14px;
}
.assurances {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 5%;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: #4a5b70;
}
.assurances span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.assurances svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}
.section-heading {
  max-width: 650px;
  margin-bottom: 40px;
}
.section-heading h2 {
  margin-bottom: 20px;
}
.section-heading .eyebrow {
  color: #63718a;
  margin-bottom: 17px;
}
.section-heading > p:last-child {
  max-width: 510px;
  font-size: 16px;
}
.services-overview-action {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.services-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-rows: 248px 248px;
  gap: 22px;
}
.service-feature {
  grid-row: span 2;
}
.service-card {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  color: #fff;
}
.service-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.service-card:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    0deg,
    rgb(11 29 49 / 0.95),
    rgb(11 29 49 / 0.15) 75%
  );
}
.service-card:hover img {
  transform: scale(1.045);
}
.service-card-content {
  padding: 30px;
  width: 100%;
  position: relative;
}
.service-card h3 {
  font-size: 1.8rem;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin-bottom: 10px;
}
.service-feature h3 {
  font-size: 2.1rem;
}
.service-card p {
  color: #e2e8ef;
  font-size: 14px;
  max-width: calc(100% - 50px);
}
.card-action {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 25px;
  font-size: 14px;
}
.card-action svg {
  width: 20px;
}
.circle-arrow {
  position: absolute;
  right: 30px;
  bottom: 32px;
  border: 1px solid #a2adbc;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}
.circle-arrow svg {
  width: 19px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.2fr 0.8fr;
  gap: 40px;
  padding-block: 35px 55px;
  overflow-wrap: anywhere;
}
.footer-main > div {
  min-width: 0;
}
.footer-company .brand {
  width: 153px;
  margin-bottom: 20px;
}
.footer-company p {
  font-size: 14px;
}
.footer-main h3 {
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 650;
  margin: 10px 0 22px;
}
.footer-main > div > a:not(.brand) {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-block: 9px;
  color: #526276;
}
.footer-main > div > a:hover {
  text-decoration: underline;
}
.footer-main address {
  font-style: normal;
  font-size: 14px;
  color: #526276;
  margin-top: 20px;
  line-height: 1.8;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px 30px;
  color: #647287;
  font-size: 12px;
  overflow-wrap: anywhere;
}
.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: hero-enter 0.85s both;
  }
  .hero-photo img {
    animation: photo-enter 1.2s both;
  }
  @keyframes hero-enter {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  @keyframes photo-enter {
    from {
      opacity: 0.35;
      transform: scale(1.04);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
}
@media (max-width: 1100px) {
  .desktop-nav {
    gap: 17px;
    font-size: 13px;
  }
  .header-inner {
    gap: 20px;
  }
  .wrap {
    width: calc(100% - 48px);
  }
  .brand {
    width: 136px;
  }
  .header-actions {
    gap: 8px;
  }
  .hero {
    min-height: 550px;
  }
  .hero-copy {
    padding: 45px 38px;
    width: 75%;
  }
  .hero h1 {
    font-size: 3.6rem;
  }
  .footer-main {
    gap: 24px;
    grid-template-columns: 1fr 1fr 1.2fr;
  }
  .footer-main > div:last-child {
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-main > div:last-child h3 {
    margin: 0;
  }
}
@media (max-width: 850px) {
  .desktop-nav {
    display: none;
  }
  .header-inner {
    min-height: 86px;
    padding-block: 16px;
  }
  .hero h1 {
    font-size: 3.2rem;
  }
  .hero-copy {
    width: 88%;
  }
  .hero:after {
    background: linear-gradient(
      90deg,
      #172d4f 7%,
      rgb(23 45 79 / 0.95) 32%,
      rgb(23 45 79 / 0.65) 62%,
      rgb(23 45 79 / 0.1)
    );
  }
  .hero-photo {
    width: 75%;
  }
  .assurances {
    padding-inline: 0;
    font-size: 12px;
  }
  .assurances span {
    gap: 6px;
  }
  .services-grid {
    grid-template-rows: 230px 230px;
  }
  .service-card-content {
    padding: 24px;
  }
  .service-card h3 {
    font-size: 1.4rem;
  }
  .circle-arrow {
    right: 20px;
    bottom: 24px;
  }
}
@media (max-width: 640px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .section {
    padding-block: 60px;
  }
  .header-inner {
    min-height: 80px;
    padding-block: 14px;
  }
  .brand {
    width: 128px;
  }
  .header-contact {
    padding: 10px 14px;
    font-size: 13px;
    gap: 10px;
  }
  .menu-trigger {
    width: 44px;
  }
  .header-actions {
    gap: 4px;
    margin-left: auto;
  }
  .hero {
    border-radius: 12px;
    min-height: 670px;
    align-items: flex-start;
  }
  .hero-copy {
    width: 100%;
    padding: 36px 25px;
  }
  .hero-copy .eyebrow {
    font-size: 10px;
    letter-spacing: 0.11em;
    margin-bottom: 24px;
  }
  .hero h1 {
    font-size: clamp(2.35rem, 8.5vw, 3.15rem);
    line-height: 1.11;
  }
  .hero-intro {
    font-size: 14px;
    margin: 20px 0 24px;
    max-width: 300px;
    line-height: 1.7;
  }
  .desktop-break {
    display: none;
  }
  .hero-photo {
    width: 100%;
    height: 53%;
    top: auto;
    bottom: 0;
  }
  .hero-photo img {
    object-position: center 45%;
  }
  .hero:after {
    background: linear-gradient(
      180deg,
      #172d4f 5%,
      #172d4f 44%,
      rgb(23 45 79 / 0.75) 53%,
      rgb(23 45 79 / 0.02) 76%
    );
  }
  .hero .button {
    padding: 14px 18px;
    min-height: 49px;
    font-size: 13px;
  }
  .assurances {
    display: grid;
    gap: 12px;
    padding: 22px 8px;
    font-size: 13px;
  }
  .assurances svg {
    width: 16px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .section-heading h2 {
    font-size: 2.25rem;
  }
  .section-heading > p:last-child {
    font-size: 15px;
  }
  .services-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .service-feature {
    height: 390px;
  }
  .service-card:not(.service-feature) {
    height: 245px;
  }
  .service-card h3 {
    font-size: 1.7rem;
  }
  .service-card-content {
    padding: 27px;
  }
  .service-card p {
    font-size: 14px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding-bottom: 35px;
  }
  .footer-company {
    grid-column: 1/-1;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
  }
  .footer-company .brand {
    margin: 0;
    width: 125px;
  }
  .footer-company p {
    font-size: 12px;
    flex: 1 1 120px;
    min-width: 0;
  }
  .footer-main > div > a:not(.brand) {
    font-size: 13px;
  }
  .footer-main address {
    font-size: 13px;
  }
  .footer-bottom {
    display: grid;
    font-size: 11px;
    gap: 16px;
  }
  .footer-bottom nav {
    gap: 22px;
  }
  .nav-sheet[data-slot] {
    padding: 26px;
  }
  .sheet-nav a {
    font-size: 1.25rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

/* Page layouts. Layer scale: sticky header 30, accessible overlays 50, skip link 100. */
.care-section {
  padding: 75px 0;
  background: var(--surface);
}
.care-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 9%;
}
.care-grid > div {
  min-width: 0;
  overflow-wrap: anywhere;
}
.care-image {
  height: 530px;
  overflow: hidden;
  border-radius: 12px;
}
.care-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--media-position, center 54%);
}
.care-copy .eyebrow {
  font-size: 0.7rem;
  color: #53667e;
}
.care-copy h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
  margin-bottom: 25px;
}
.care-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin-bottom: 18px;
}
.care-copy .text-link {
  margin-top: 15px;
}
.thoughtful {
  max-width: 850px;
  text-align: center;
  padding-block: 105px;
}
.thoughtful svg {
  margin: 0 auto 25px;
}
.thoughtful h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}
.thoughtful p {
  max-width: 575px;
  margin: 23px auto;
}
.thoughtful .text-link svg {
  margin: 0;
}
.contact-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 48px 54px;
  background: var(--surface);
  border-radius: 13px;
  gap: 30px;
  margin-bottom: 85px;
}
.contact-band h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}
.contact-band p {
  margin-top: 15px;
  font-size: 15px;
}
.contact-band .button {
  flex-shrink: 0;
}
/* Text enlargement must not make a grid column wider than its container. */
.sub-hero-grid > *,
.about-body > *,
.contact-layout > *,
.contact-band > *,
.service-detail-body > *,
.service-group > *,
.service-explanation > *,
.form-fields > * {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  font-size: 13px;
  color: #667489;
  margin: 17px 0 42px;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb > span:nth-child(2) {
  color: #a3adba;
}
.sub-hero {
  padding-bottom: 20px;
}
.sub-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: center;
}
.sub-hero-grid > div {
  padding: 25px 0;
}
.sub-hero-grid h1 {
  font-size: clamp(2.7rem, 4.5vw, 4.2rem);
  max-width: 630px;
  line-height: 1.08;
}
.sub-hero-grid > img {
  width: 100%;
  height: 460px;
  border-radius: 14px;
  object-fit: cover;
}
.sub-intro {
  margin: 25px 0 30px;
  max-width: 520px;
  font-size: 17px;
}
.sub-hero-grid .eyebrow {
  font-size: 11px;
  color: #65768c;
}
.service-details {
  padding-top: 70px;
}
.details-heading {
  max-width: 650px;
  margin-bottom: 45px;
}
.details-heading h2 {
  font-size: 2.5rem;
}
.details-heading p {
  margin-top: 16px;
}
.service-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.service-group {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 8%;
  border-top: 1px solid var(--border);
  padding: 35px 0;
}
.service-group h3 {
  font-size: 1.6rem;
  line-height: 1.2;
  max-width: 300px;
}
.service-group ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 16px 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-group li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  color: #526276;
  line-height: 1.6;
}
.service-group li svg {
  margin-top: 4px;
  color: var(--foreground);
}
.service-explanation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  background: var(--surface);
  padding: 50px;
  border-radius: 12px;
  margin-bottom: 65px;
}
.service-explanation h2 {
  font-size: 2.25rem;
  margin-top: 20px;
}
.service-explanation p + p {
  margin-top: 20px;
}
.service-explanation p {
  font-size: 16px;
}
.home-cleaning-focus {
  padding-top: 0;
}
.home-cleaning-focus-heading {
  align-items: end;
}
.home-cleaning-focus-heading h2 {
  margin-top: 10px;
}
.home-cleaning-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.home-cleaning-focus-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d7e0e8;
  border-radius: 12px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.home-cleaning-focus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(17, 45, 77, .12);
}
.home-cleaning-focus-image {
  height: 300px;
  overflow: hidden;
  background: #dfe7ed;
}
.home-cleaning-focus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-cleaning-focus-card:nth-child(1) .home-cleaning-focus-image img { object-position: center 62%; }
.home-cleaning-focus-card:nth-child(2) .home-cleaning-focus-image img { object-fit: contain; background: #102d4d; }
.home-cleaning-focus-card:nth-child(3) .home-cleaning-focus-image img { object-position: center 55%; }
.home-cleaning-focus-copy {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  padding: 28px;
  overflow-wrap: anywhere;
}
.home-cleaning-focus-copy h3 {
  margin: 9px 0 14px;
  font-size: 1.6rem;
  line-height: 1.15;
}
.home-cleaning-focus-copy h3 a {
  color: inherit;
  text-decoration: none;
}
.home-cleaning-focus-copy h3 a:focus-visible {
  outline: 3px solid #547fba;
  outline-offset: 4px;
}
.home-cleaning-focus-copy > p:not(.eyebrow) {
  margin-bottom: 22px;
  line-height: 1.65;
}
.home-cleaning-focus-copy .text-link {
  margin-top: auto;
}
@media (max-width: 900px) {
  .home-cleaning-focus-grid { grid-template-columns: 1fr; }
  .home-cleaning-focus-card { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
  .home-cleaning-focus-image { height: 100%; min-height: 320px; }
}
@media (max-width: 620px) {
  .home-cleaning-focus-card { display: flex; }
  .home-cleaning-focus-image { height: 260px; min-height: 0; }
  .home-cleaning-focus-copy { padding: 24px 20px 28px; }
  .home-cleaning-focus-copy .eyebrow { letter-spacing: .08em; }
}

.cleaning-depth {
  padding-top: 12px;
  padding-bottom: 82px;
}
.cleaning-depth-intro {
  max-width: 850px;
  margin-bottom: 48px;
}
.cleaning-depth-intro h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  margin: 12px 0 22px;
}
.cleaning-depth-intro > p:last-child {
  max-width: 760px;
  font-size: 1.1rem;
  line-height: 1.75;
}
.cleaning-depth-list {
  display: grid;
  gap: 54px;
}
.cleaning-depth-item {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border-radius: 14px;
  background: var(--surface);
}
.cleaning-depth-item.is-reversed {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}
.cleaning-depth-item.is-reversed .cleaning-depth-media {
  order: 2;
}
.cleaning-depth-media {
  min-height: 100%;
  background: #dfe7ed;
}
.cleaning-depth-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}
.cleaning-depth-item:nth-child(1) .cleaning-depth-media img { object-position: center 55%; }
.cleaning-depth-item:nth-child(2) .cleaning-depth-media img { object-position: center 62%; }
.cleaning-depth-item:nth-child(3) .cleaning-depth-media img { object-fit: contain; background: #102d4d; }
.cleaning-depth-copy {
  min-width: 0;
  padding: clamp(32px, 5vw, 68px);
  overflow-wrap: anywhere;
}
.cleaning-depth-copy li span { min-width: 0; }
.cleaning-depth-copy h3 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.12;
  margin: 12px 0 24px;
}
.cleaning-depth-copy > p:not(.eyebrow) {
  margin-top: 15px;
  line-height: 1.72;
}
.cleaning-depth-copy ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
.cleaning-depth-copy li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #41546a;
  line-height: 1.55;
}
.cleaning-depth-copy li svg {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--foreground);
}
@media (max-width: 850px) {
  .cleaning-depth { padding-bottom: 58px; }
  .cleaning-depth-list { gap: 28px; }
  .cleaning-depth-item,
  .cleaning-depth-item.is-reversed { grid-template-columns: 1fr; }
  .cleaning-depth-item.is-reversed .cleaning-depth-media { order: 0; }
  .cleaning-depth-media img { min-height: 0; height: auto; max-height: 500px; }
  .cleaning-depth-item:nth-child(3) .cleaning-depth-media img { width: 100%; max-height: 500px; }
  .cleaning-depth-copy { padding: 30px 20px 36px; }
  .cleaning-depth-copy .eyebrow { letter-spacing: 0.08em; }
}

.about-hero > img {
  height: 530px;
  object-position: center 47%;
}
.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
}
.about-body h2 {
  font-size: 2.5rem;
}
.about-body p {
  margin-bottom: 22px;
}
.about-body .text-link {
  margin-top: 12px;
}
.contact-page {
  padding-bottom: 90px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 8%;
  padding-top: 18px;
  align-items: start;
}
.contact-intro h1 {
  font-size: clamp(2.5rem, 4.25vw, 4rem);
}
.contact-intro > .eyebrow {
  font-size: 10px;
  color: #68778c;
}
.contact-intro > p:last-of-type {
  max-width: 400px;
  margin-top: 25px;
  font-size: 17px;
}
.contact-methods {
  margin-top: 35px;
  display: grid;
  gap: 0;
  max-width: 420px;
}
.contact-methods > a,
.contact-methods > div {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  font-size: 18px;
  line-height: 1.4;
}
.contact-methods svg {
  width: 20px;
}
.contact-methods > a > svg:last-child {
  margin-left: auto;
}
.contact-methods small {
  display: block;
  color: #63738a;
  font-size: 13px;
  margin-bottom: 6px;
}
.contact-methods > div {
  align-items: flex-start;
  border: 0;
  font-size: 16px;
}
.contact-methods > div > svg {
  margin-top: 8px;
}
.inquiry-form {
  background: var(--surface);
  border-radius: 14px;
  padding: 38px;
}
.form-heading {
  margin-bottom: 27px;
}
.form-heading h2 {
  font-size: 1.65rem;
  line-height: 1.18;
  letter-spacing: -0.025em;
}
.form-heading p {
  font-size: 14px;
  margin-top: 15px;
}
.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px 17px;
}
.form-fields label {
  font-weight: 550;
  font-size: 14px;
}
.form-fields label > span {
  font-weight: 400;
  color: var(--muted-foreground);
  font-size: 12px;
}
.form-fields .full-field {
  grid-column: 1/-1;
}
.form-fields input[data-slot],
.form-fields textarea[data-slot] {
  margin-top: 8px;
  background: #fff;
  font-size: 15px;
  font-weight: 400;
  padding: 12px 14px;
  height: auto;
  border-radius: 6px;
  border: 1px solid #ccd6e1;
  box-shadow: none;
  line-height: 1.5;
}
.form-fields input[data-slot] {
  min-height: 48px;
}
.form-fields textarea[data-slot] {
  min-height: 145px;
  resize: vertical;
}
.form-note {
  font-size: 12px;
  line-height: 1.7;
  margin: 20px 0;
}
.form-error {
  color: #a22337;
  font-size: 14px;
  padding-bottom: 15px;
}
.required-note {
  font-size: 11px;
  margin-top: 15px;
}
.inquiry-form > .button,
.inquiry-fields > .button {
  width: 100%;
  font-size: 14px;
}
.inquiry-fields {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.inquiry-fields:disabled .button {
  cursor: not-allowed;
  opacity: 0.55;
}
.hydration-note .text-link {
  display: inline;
  padding-bottom: 0;
  font-size: inherit;
}
.inquiry-dialog[data-slot] {
  max-width: 660px;
  width: calc(100% - 32px);
  max-height: 90dvh;
  overflow: auto;
  padding: 27px;
  border-radius: 12px;
  gap: 16px;
}
.inquiry-dialog [data-slot='dialog-title'] {
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.035em;
}
.inquiry-dialog textarea {
  font-size: 15px;
  min-height: 180px;
  padding: 14px;
  line-height: 1.7;
  background: var(--surface);
}
.draft-recipient {
  font-size: 13px;
}
.dialog-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.dialog-actions .button {
  font-size: 13px;
  padding: 14px 18px;
  gap: 13px;
}
.copy-message {
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 20px;
  font-size: 13px;
}
.page-heading {
  max-width: 780px;
  margin-bottom: 40px;
}
.page-heading h1 {
  font-size: clamp(2.8rem, 4.7vw, 4.6rem);
  margin-bottom: 22px;
}
.page-heading > p:last-child {
  max-width: 630px;
  font-size: 17px;
}
.gallery-page {
  padding-bottom: 85px;
}
.gallery-section + .gallery-section {margin-top: 48px}
.gallery-section[hidden] + .gallery-section {margin-top: 0}
.gallery-section > h2,.gallery-section > h3 {font-size: 1.5rem;line-height: 1.3;margin-bottom: 20px}
.gallery-section-intro {margin: -8px 0 24px;color: var(--muted-foreground)}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-photo {
  padding: 0;
  border: 0;
  background: var(--surface);
  position: relative;
  aspect-ratio: 4/4.3;
  overflow: hidden;
  border-radius: 9px;
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: var(--media-fit, cover);
  object-position: var(--media-position, center);
  transition: transform 0.5s;
}
.gallery-photo:hover img {
  transform: scale(1.035);
}
.gallery-photo > span {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.9);
  color: #172d4f;
}
.gallery-more {
  text-align: center;
  padding: 35px 0 15px;
}
.gallery-more p {
  font-size: 12px;
  margin-top: 12px;
}
.gallery-dialog[data-slot] {
  width: calc(100% - 32px);
  max-width: 1030px;
  max-height: 95dvh;
  padding: 20px;
  border-radius: 12px;
  gap: 5px;
  overflow: auto;
}
.gallery-dialog [data-slot='dialog-title'] {
  font-size: 1.2rem;
}
.gallery-dialog [data-slot='dialog-description'] {
  font-size: 12px;
  margin-bottom: 10px;
}
.lightbox-image {
  height: 66dvh;
  max-height: 750px;
  width: 100%;
  object-fit: contain;
  background: #edf2f6;
  border-radius: 5px;
}
.lightbox-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
}
.lightbox-controls > span {
  font-size: 13px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px;
}
.video-grid figure {
  margin: 0;
}
.video-grid video {
  width: 100%;
  height: 310px;
  background: #142a43;
  border-radius: 9px;
}
.video-grid figcaption {
  font-size: 14px;
  margin-top: 12px;
}
.legal-page {
  max-width: 910px;
  padding-bottom: 90px;
}
.legal-page h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  overflow-wrap: anywhere;
}
.legal-notice {
  background: var(--surface);
  padding: 23px 26px;
  border-radius: 8px;
  font-size: 14px;
  margin-block: 28px 40px;
}
.legal-notice a {
  text-decoration: underline;
}
.legal-section {
  margin-bottom: 35px;
}
.legal-section h2 {
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 19px;
}
.legal-section p {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 15px;
  white-space: pre-line;
  overflow-wrap: anywhere;
}
.company-facts {
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 27px;
}
.company-facts > div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.company-facts dt {
  font-size: 13px;
  color: var(--muted-foreground);
  margin-bottom: 6px;
}
.company-facts dd {
  margin: 0;
  font-size: 17px;
  overflow-wrap: anywhere;
}
.not-found {
  padding-block: 85px 120px;
}
.not-found h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}
.not-found p:not(.eyebrow) {
  margin-block: 25px;
}
.reveal.will-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 950px) {
  .sub-hero-grid {
    gap: 5%;
  }
  .sub-hero-grid h1 {
    font-size: 2.9rem;
  }
  .sub-hero-grid > img {
    height: 410px;
  }
  .service-group {
    grid-template-columns: 0.85fr 1.25fr;
    gap: 6%;
  }
  .service-group ul {
    grid-template-columns: 1fr;
  }
  .service-explanation {
    padding: 35px;
    gap: 30px;
  }
  .care-grid {
    gap: 6%;
  }
  .care-copy h2 {
    font-size: 2.2rem;
  }
  .care-image {
    height: 480px;
  }
  .contact-layout {
    gap: 5%;
    grid-template-columns: 0.9fr 1.1fr;
  }
  .inquiry-form {
    padding: 25px;
  }
  .contact-methods > a {
    font-size: 16px;
  }
  .form-fields {
    grid-template-columns: 1fr;
  }
  .contact-band {
    padding: 35px;
  }
  .contact-band h2 {
    font-size: 2rem;
  }
  .gallery-grid {
    gap: 14px;
  }
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .breadcrumb {
    font-size: 12px;
    margin: 12px 0 25px;
    gap: 9px;
  }
  .sub-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .sub-hero-grid > div {
    padding: 10px 3px 0;
  }
  .sub-hero-grid h1 {
    font-size: 2.7rem;
    line-height: 1.11;
  }
  .sub-intro {
    font-size: 16px;
    margin: 23px 0 27px;
  }
  .sub-hero-grid > img {
    height: 300px;
    border-radius: 10px;
  }
  .sub-hero-grid .eyebrow {
    margin-bottom: 19px;
  }
  .details-heading {
    margin-bottom: 25px;
  }
  .details-heading h2 {
    font-size: 2.1rem;
  }
  .service-group {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 28px;
  }
  .service-group h3 {
    font-size: 1.5rem;
    max-width: none;
  }
  .service-group li {
    font-size: 15px;
  }
  .service-explanation {
    grid-template-columns: 1fr;
    padding: 30px 25px;
    gap: 25px;
    margin-bottom: 40px;
  }
  .service-explanation h2 {
    font-size: 2rem;
  }
  .service-explanation p {
    font-size: 15px;
  }
  .care-section {
    padding: 45px 0;
  }
  .care-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .care-image {
    height: 390px;
  }
  .care-copy {
    padding-inline: 5px;
  }
  .care-copy h2 {
    font-size: 2.2rem;
  }
  .care-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .thoughtful {
    padding: 65px 12px;
  }
  .thoughtful h2 {
    font-size: 2rem;
  }
  .thoughtful p {
    font-size: 15px;
  }
  .contact-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 26px;
    margin-bottom: 50px;
    gap: 24px;
  }
  .contact-band h2 {
    font-size: 2rem;
  }
  .about-body {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .about-body h2 {
    font-size: 2.1rem;
  }
  .about-body p {
    font-size: 15px;
  }
  .cleaning-depth {
  padding-top: 12px;
  padding-bottom: 82px;
}
.cleaning-depth-intro {
  max-width: 850px;
  margin-bottom: 48px;
}
.cleaning-depth-intro h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  margin: 12px 0 22px;
}
.cleaning-depth-intro > p:last-child {
  max-width: 760px;
  font-size: 1.1rem;
  line-height: 1.75;
}
.cleaning-depth-list {
  display: grid;
  gap: 54px;
}
.cleaning-depth-item {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border-radius: 14px;
  background: var(--surface);
}
.cleaning-depth-item.is-reversed {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}
.cleaning-depth-item.is-reversed .cleaning-depth-media {
  order: 2;
}
.cleaning-depth-media {
  min-height: 100%;
  background: #dfe7ed;
}
.cleaning-depth-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}
.cleaning-depth-item:nth-child(1) .cleaning-depth-media img { object-position: center 55%; }
.cleaning-depth-item:nth-child(2) .cleaning-depth-media img { object-position: center 62%; }
.cleaning-depth-item:nth-child(3) .cleaning-depth-media img { object-fit: contain; background: #102d4d; }
.cleaning-depth-copy {
  min-width: 0;
  padding: clamp(32px, 5vw, 68px);
  overflow-wrap: anywhere;
}
.cleaning-depth-copy li span { min-width: 0; }
.cleaning-depth-copy h3 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.12;
  margin: 12px 0 24px;
}
.cleaning-depth-copy > p:not(.eyebrow) {
  margin-top: 15px;
  line-height: 1.72;
}
.cleaning-depth-copy ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
.cleaning-depth-copy li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #41546a;
  line-height: 1.55;
}
.cleaning-depth-copy li svg {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--foreground);
}
@media (max-width: 850px) {
  .cleaning-depth { padding-bottom: 58px; }
  .cleaning-depth-list { gap: 28px; }
  .cleaning-depth-item,
  .cleaning-depth-item.is-reversed { grid-template-columns: 1fr; }
  .cleaning-depth-item.is-reversed .cleaning-depth-media { order: 0; }
  .cleaning-depth-media img { min-height: 0; height: auto; max-height: 500px; }
  .cleaning-depth-item:nth-child(3) .cleaning-depth-media img { width: 100%; max-height: 500px; }
  .cleaning-depth-copy { padding: 30px 20px 36px; }
  .cleaning-depth-copy .eyebrow { letter-spacing: 0.08em; }
}

.about-hero > img {
    height: 410px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 15px;
  }
  .contact-intro h1 {
    font-size: 2.85rem;
  }
  .contact-intro > p:last-of-type {
    font-size: 16px;
  }
  .contact-methods {
    margin-top: 22px;
    max-width: none;
  }
  .contact-methods > a {
    font-size: 17px;
  }
  .contact-page {
    padding-bottom: 50px;
  }
  .inquiry-form {
    padding: 28px 23px;
  }
  .form-heading h2 {
    font-size: 1.6rem;
  }
  .form-fields {
    gap: 21px;
  }
  .form-fields input[data-slot],
  .form-fields textarea[data-slot] {
    font-size: 16px;
  }
  .inquiry-dialog[data-slot] {
    padding: 20px;
    gap: 12px;
  }
  .inquiry-dialog [data-slot='dialog-title'] {
    font-size: 1.3rem;
  }
  .dialog-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .dialog-actions .button {
    min-height: 46px;
  }
  .page-heading h1 {
    font-size: 2.8rem;
  }
  .page-heading > p:last-child {
    font-size: 16px;
  }
  .page-heading .eyebrow {
    font-size: 10px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .gallery-photo {
    aspect-ratio: 3/4;
    border-radius: 7px;
  }
  .gallery-photo > span {
    width: 29px;
    height: 29px;
    right: 9px;
    bottom: 9px;
  }
  .gallery-photo > span svg {
    width: 15px;
  }
  .gallery-dialog[data-slot] {
    padding: 14px;
    max-height: 94dvh;
  }
  .lightbox-image {
    height: 63dvh;
  }
  .video-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .video-grid video {
    height: 380px;
  }
  .company-facts {
    grid-template-columns: 1fr;
  }
  .legal-section h2 {
    font-size: 1.4rem;
  }
  .legal-section p {
    font-size: 15px;
    white-space: normal;
  }
  .legal-notice {
    font-size: 13px;
    padding: 20px;
  }
  .legal-page {
    padding-bottom: 50px;
  }
  .not-found {
    padding-block: 55px 80px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal.will-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Secondary text remains readable at mobile sizes. */
.eyebrow,
.hero-copy .eyebrow,
.sub-hero-grid .eyebrow,
.page-heading .eyebrow,
.contact-intro > .eyebrow,
.care-copy .eyebrow {
  font-size: 12px;
}
.required-note,
.footer-bottom,
.footer-company p {
  font-size: 12px;
}

/* Photo-first AVB presentation. Original navy/white identity and shared controls remain. */
/* Restored three-scene background hero; copy and controls stay above the footage. */
.film-hero {position:relative;isolation:isolate;display:grid;align-items:end;min-height:clamp(650px,calc(100svh - 125px),760px);padding:0 64px 90px;overflow:hidden;border-radius:12px;background:var(--navy);color:#fff}
.film-copy {position:relative;z-index:1;min-width:0;width:min(682px,90%);padding-top:180px}
.film-brand {font-size:14px;color:#fff;margin-bottom:28px;line-height:1.6}
.film-copy h1 {font-size:clamp(3.7rem,5.7vw,5.8rem);line-height:1.04;letter-spacing:-.045em;font-weight:500;overflow-wrap:break-word;text-wrap:balance}
.film-location {color:#fff;margin:25px 0 31px;font-size:18px;line-height:1.6}
.film-copy .button {max-width:100%;text-align:left}
.film-discover {display:flex;width:fit-content;align-items:center;gap:18px;min-height:44px;margin-top:26px;color:#fff;font-size:13px;line-height:1.5}
.film-discover span {font-size:20px}
.hero-stage {position:absolute;inset:0;width:100%;height:100%}
.hero-media {z-index:0}
.hero-media,.hero-poster,.hero-film {position:absolute;inset:0;width:100%;height:100%}
.hero-media::after {content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgb(8 24 43 / .58),rgb(8 24 43 / .04) 82%),linear-gradient(0deg,rgb(8 24 43 / .82),transparent 82%);pointer-events:none}
.hero-poster,.hero-film {object-fit:cover;object-position:center}
.hero-film {opacity:0;transition:opacity .35s ease-out}
.hero-film.is-playing {opacity:1}
/* iOS must see the player before playback; its native poster covers buffering. */
video.hero-film[src]:not(.has-error) {opacity:1;transition:none}
video.hero-film.has-error {opacity:0}

.reviews-section {padding:76px 0 56px;background:#edf2f6;color:var(--navy)}
.reviews-heading {display:flex;justify-content:space-between;gap:32px;align-items:end;margin-bottom:30px}
.reviews-heading h2 {font-size:clamp(30px,3.1vw,46px);max-width:16ch;line-height:1.13;letter-spacing:-.035em}
.reviews-heading p {margin:16px 0 0;color:#465a70}
.reviews-heading>p {margin:0}
.reviews-rating {display:flex;align-items:center;gap:18px;text-decoration:none;color:#172d4f;min-width:0;max-width:100%}
.reviews-rating>strong {font-size:64px;letter-spacing:-.04em;font-weight:600;line-height:1}
.reviews-rating>span {display:grid;gap:8px;font-size:14px;min-width:0;overflow-wrap:anywhere}
.review-stars {color:#9b6400;letter-spacing:3px;font-size:21px;line-height:1.4}
.reviews-track {display:flex;gap:20px;overflow-x:auto;overscroll-behavior-x:contain;padding:2px 2px 18px;scrollbar-width:thin;scrollbar-color:#8598ab transparent}
.review-card {flex:0 0 340px;min-width:0;display:flex;flex-direction:column;padding:28px;background:#fdfefe;border:1px solid #d6e0e8;border-radius:4px;min-height:312px}
.review-body {flex:1;margin:24px 0 28px;overflow-wrap:anywhere}
.review-body blockquote,.review-body p {margin:0}
.review-body blockquote {font-size:18px;line-height:1.6;overflow-wrap:anywhere}
.review-attributes {font-size:15px;line-height:1.65;color:#465a70}
.review-attributes>span {display:block;font-size:13px;margin-bottom:8px}
.review-body blockquote+.review-attributes {margin-top:18px}
.review-empty {display:grid;gap:10px;font-size:14px;color:#465a70}
.review-empty strong {font-size:27px;color:#172d4f;font-weight:500}
.review-author {border-top:1px solid #e4eaf0;padding-top:18px;display:grid;gap:7px}
.review-author a {font-weight:600;font-size:15px;color:#172d4f;overflow-wrap:anywhere;text-decoration:none}
.review-author a:hover,.reviews-rating:hover {text-decoration:underline;text-underline-offset:4px}
.review-author>span {font-size:12px;color:#586575}
.reviews-bottom {display:flex;justify-content:space-between;gap:24px;align-items:center;margin-top:18px}
.reviews-bottom>p {font-size:12px;line-height:1.6;margin:0;color:#465a70}
.reviews-controls {display:flex;gap:8px;align-items:center;padding:0;margin:0;border:0;min-width:0}
.reviews-controls:empty {display:none}
.reviews-controls button {min-height:44px;min-width:44px;max-width:100%;padding:9px 12px;border:1px solid #aebdcb;border-radius:3px;background:transparent;color:#172d4f;font:inherit;font-size:13px;cursor:pointer;overflow-wrap:anywhere}
.reviews-controls button:hover {background:#dfe8ef}
.reviews-controls button[hidden] {display:none}
.reviews-track:focus-visible,.reviews-section a:focus-visible,.reviews-controls button:focus-visible {outline:3px solid #172d4f;outline-offset:3px}
@media(max-width:849px){
  .reviews-section {padding:52px 0 40px}
  .reviews-heading {align-items:start;flex-direction:column;gap:24px}
  .reviews-heading h2 {max-width:18ch}
  .reviews-rating>strong {font-size:54px}
  .review-card {flex-basis:min(340px,calc(100vw - 68px));padding:23px;min-height:310px}
  .reviews-bottom {flex-direction:column;align-items:start;gap:18px}
  .reviews-controls {order:-1;flex-wrap:wrap}
}
@media(max-width:1100px){.film-hero{min-height:580px;padding-inline:42px}.film-copy{padding-top:145px;width:95%}.film-copy h1{font-size:clamp(2.7rem,6.2vw,4.5rem)}}
.photo-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
  max-width: none;
  margin-bottom: 42px;
}
.photo-section-heading h2 {
  margin-bottom: 0;
}
.photo-section-heading > p:last-child {
  max-width: 350px;
  font-size: 15px;
  padding-bottom: 3px;
}
.photo-section-heading .text-link {
  flex-shrink: 0;
  margin-bottom: 6px;
}
.services-grid.photo-services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: none;
  gap: 22px;
}
.photo-services .service-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 0;
  aspect-ratio: auto;
  height: auto;
  border-radius: 6px;
  background: var(--navy);
}
.photo-services .service-card img {
  position: relative;
  inset: auto;
  z-index: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.photo-services .service-card:after {
  content: none;
}
.photo-services .service-card-content {
  position: static;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 21px;
  gap: 20px;
  align-items: center;
  flex: 1;
  padding: 26px 27px;
  min-height: 126px;
  z-index: 1;
  background: var(--navy);
}
.photo-services .service-card p {
  color: #dce5ef;
  max-width: none;
  font-size: 14px;
  margin-top: 9px;
  line-height: 1.5;
}
.photo-services .tile-arrow {
  transition: transform 0.25s ease;
}
.photo-services .service-card:hover .tile-arrow {
  transform: translate(3px, -3px);
}
.photo-services .service-card h3 {
  hyphens: auto;
  overflow-wrap: break-word;
  font-size: clamp(1.3rem, 1.85vw, 1.8rem);
  max-width: 530px;
  font-weight: 550;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.photo-services .card-action {
  margin-top: 17px;
  justify-content: space-between;
  color: #fff;
  font-size: 13px;
}
.photo-services .card-action svg {
  width: 24px;
  height: 24px;
  transition: transform 0.25s ease;
}
.photo-services .service-card:hover .card-action svg {
  transform: translate(3px, -3px);
}
.photo-services .service-card:focus-visible {
  outline-offset: 4px;
}
.photo-services .service-card-link::after {content: '';position: absolute;inset: 0;z-index: 2}
.photo-services .service-card:focus-within {outline: 3px solid #547fba;outline-offset: 4px}
.service-card-image {position: relative;min-width: 0}
.ai-badge {position: absolute;z-index: 3;bottom: 4px;right: 4px;display: grid;place-items: center;width: 44px;height: 44px;padding: 0;border: 0;border-radius: 50%;background: transparent;cursor: pointer}
.photo-services .ai-badge > img {position: static;display: block;width: 44px;height: 44px;max-width: none;margin: 0;aspect-ratio: 1;object-fit: contain;filter: drop-shadow(0 0 1px #fff);transform: none;transition: none;pointer-events: none}
.ai-badge:hover {background: #ffffff4d}
.ai-badge:focus-visible {outline: 3px solid #547fba;outline-offset: 3px}
.ai-explanation {width: min(480px,calc(100% - 32px));max-width: 480px;max-height: 85dvh;overflow: auto;padding: 24px;border: 1px solid var(--border);border-radius: 12px;background: #fff;color: var(--navy);box-shadow: 0 20px 70px #0003}
.ai-explanation h2 {font-size: 24px;line-height: 1.3;letter-spacing: -.02em;margin: 0 0 12px}
.ai-explanation p {font-size: 16px;line-height: 1.65;color: var(--muted-foreground);margin: 0 0 20px}
.ai-explanation .button {justify-self: start;white-space: normal}
.work-preview {display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 24px; align-items: start}
.work-preview-item {margin: 0; min-width: 0}
.work-preview-photo {position: relative; display: block; padding: 0; border: 0; width: 100%; aspect-ratio: 3/4; overflow: hidden; border-radius: 9px; background: var(--surface); cursor: zoom-in}
.work-preview-photo img {width: 100%; height: 100%; object-fit: cover; object-position: var(--media-position, center); filter: brightness(var(--media-brightness, 1)); transition: transform .35s ease-out}
.work-comparison .work-preview-photo {aspect-ratio: 1012/1800}
.work-comparison .work-preview-photo img {object-fit: contain}
.work-preview-photo:hover img {transform: scale(1.025)}
.work-comparison .work-preview-photo:hover img {transform: none}
.work-preview-photo span {position: absolute; display: grid; place-items: center; bottom: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%; color: var(--navy); background: #fff}
.work-preview-item figcaption {font-size: 14px; line-height: 1.6; color: var(--muted-foreground); margin-top: 16px; max-width: 36ch}
.contact-band .eyebrow {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 11px;
}
.sheet-services {
  display: grid;
  gap: 1px;
  margin-top: -15px;
}
.sheet-services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  line-height: 1.5;
  font-size: 14px;
}
.sheet-services a:hover {
  color: #426b99;
}
.service-detail-heading {
  max-width: 1000px;
  padding: 12px 0 42px;
}
.service-detail-heading h1 {
  font-size: clamp(2.75rem, 5.6vw, 5.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.service-detail-heading .eyebrow {
  margin-bottom: 20px;
}
.service-detail-heading > p:not(.eyebrow) {
  font-size: 20px;
  margin: 24px 0 28px;
}
.service-detail-cover {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.service-detail-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  align-items: start;
}
.service-description h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin-bottom: 27px;
}
.service-description > p:not(.eyebrow) {
  font-size: 17px;
  max-width: 530px;
}
.service-includes {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}
.service-includes li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-bottom: 1px solid var(--border);
  padding: 21px 0;
  font-size: 17px;
}
.service-includes li:first-child {
  border-top: 1px solid var(--border);
}
.service-includes li svg {
  margin-top: 4px;
}
.service-gallery {
  padding-bottom: 90px;
}
.gallery-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
  font-size: 14px;
}
.gallery-filter select,
.form-fields select {
  display: block;
  width: 100%;
  border: 1px solid #ccd6e1;
  border-radius: 6px;
  min-height: 48px;
  padding: 12px 36px 12px 14px;
  background: #fff;
  color: var(--foreground);
  font-size: 15px;
}
.gallery-filter select {
  width: auto;
  max-width: min(100%, 400px);
}
.form-fields select {
  margin-top: 8px;
  font-weight: 400;
}
.gallery-empty {
  background: var(--surface);
  padding: 30px;
  border-radius: 8px;
  font-size: 15px;
}
.video-grid video {
  object-fit: contain;
}

@media (max-width: 1100px) {
  .photo-services .service-card-content {
    gap: 14px;
  }
  .photo-services .service-card-content {
    padding: 22px;
  }
  .service-detail-cover {
    height: 460px;
  }
}
@media (max-width: 850px) {
  .photo-services .service-icon {
    width: 26px;
  }
  .photo-services .service-card h3 {
    font-size: 1.35rem;
  }
  .photo-section-heading {
    gap: 25px;
  }
  .photo-section-heading > p:last-child {
    max-width: 270px;
  }
  .work-preview {
    gap: 14px;
  }
  .service-detail-body {
    gap: 6%;
  }
}
@media (max-width: 640px) {
  .photo-section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .photo-section-heading > p:last-child {
    margin-top: 21px;
    max-width: 360px;
  }
  .photo-section-heading .text-link {
    margin-top: 22px;
  }
  .services-grid.photo-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .photo-services .service-card {
    min-height: 0;
    aspect-ratio: auto;
  }
  .photo-services .service-card img {
    aspect-ratio: 1;
  }
  .photo-services .service-card-content {
    padding: 22px;
  }
  .photo-services .service-card h3 {
    font-size: 1.45rem;
  }
  .photo-services .service-card-content {
    grid-template-columns: 28px minmax(0, 1fr) 18px;
    gap: 14px;
    min-height: 120px;
  }
  .photo-services .service-card p {
    font-size: 13px;
  }
  .photo-services .card-action {
    margin-top: 20px;
  }
  .work-preview {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .work-preview-item:first-child {
    grid-column: 1 / -1;
  }
  .work-preview-item span {
    width: 36px;
    height: 36px;
    bottom: 12px;
    right: 12px;
  }
  .care-image {
    height: 440px;
  }
  .contact-band .button {
    font-size: 13px;
    gap: 14px;
    padding-inline: 16px;
    text-align: left;
  }
  .service-detail-heading {
    padding-bottom: 30px;
  }
  .service-detail-heading h1 {
    font-size: clamp(2.55rem, 10vw, 3.5rem);
    overflow-wrap: break-word;
  }
  .service-detail-heading > p:not(.eyebrow) {
    font-size: 17px;
    margin: 22px 0 25px;
  }
  .service-detail-heading .button {
    font-size: 13px;
    gap: 14px;
  }
  .service-detail-cover {
    height: 385px;
  }
  .service-detail-body {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .service-description > p:not(.eyebrow) {
    font-size: 16px;
  }
  .service-includes {
    margin: 0;
  }
  .service-includes li {
    font-size: 16px;
  }
  .service-gallery {
    padding-bottom: 60px;
  }
  .gallery-filter {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .gallery-filter select {
    width: 100%;
    max-width: 100%;
  }
  .form-fields select {
    font-size: 16px;
  }
}
@media (max-width: 370px) {
  .header-inner {
    column-gap: 8px;
  }
  .header-contact {
    padding-inline: 12px;
  }
  .photo-services .service-card-content {
    grid-template-columns: 24px minmax(0, 1fr) 16px;
    gap: 10px;
  }
  .photo-services .service-card h3 {
    font-size: 1.35rem;
  }
  .photo-services .service-card-content {
    padding: 23px;
  }
}

/* Shared motif data is applied only to presentation, never the original files. */
.photo-services .service-card img,.service-detail-cover,.care-image img {object-position: var(--media-position, center); filter: brightness(var(--media-brightness, 1))}
h1,h2,h3 {text-wrap: balance}
@media (max-width: 849px) {
  .film-hero {min-height:650px;padding:0 25px 88px}
  .film-copy {padding-top:210px;width:100%}
  .film-copy h1 {font-size:clamp(2.45rem,9.5vw,3.85rem);line-height:1.08}
  .film-brand {font-size:12px;margin-bottom:24px}
  .film-location {font-size:16px;margin:23px 0 25px}
  .film-copy .button {font-size:14px;padding:16px 18px;gap:14px}
  .film-discover {margin-top:20px;font-size:12px}
  .hero-media::after {background:linear-gradient(0deg,rgb(8 24 43 / .88),rgb(8 24 43 / .1) 100%)}
}
@media (max-width: 640px) {
  .work-preview {grid-template-columns: minmax(0,1fr); gap: 32px}
  .work-preview-item:first-child {grid-column: auto}
  .work-preview-item figcaption {margin-top: 12px}
  .work-preview-photo span {width: 44px; height: 44px}
  .photo-section-heading {margin-bottom: 28px}
}
@media (max-width: 370px) {
  .film-hero {padding-inline:19px}
  .film-copy .button {font-size: 13px; padding-inline: 14px}
}
@media (prefers-reduced-motion: reduce) {
  .hero-film,.work-preview-photo img {transition: none}
  .work-preview-photo:hover img {transform: none}
}

/* Preserve the complete customer-provided glass-cleaning image at every breakpoint. */
.service-detail-cover.media-glas-cover-ohne-ek-v1 {
  width: min(100%, 860px);
  margin-inline: auto;
  height: auto;
  aspect-ratio: 1295 / 1215;
  object-fit: contain;
  background: #edf2f6;
}

.media-unterhalt-bosch-verkaufsraum-v1{--media-position:50% 50%;--media-brightness:1;--media-fit:contain}
.media-grund-balkon-maschine-v1{--media-position:50% 50%;--media-brightness:1;--media-fit:contain}
.media-grund-balkon-vergleich-v1{--media-position:50% 50%;--media-brightness:1;--media-fit:contain}
.media-glas-cover-ohne-ek-v1{--media-position:50% 50%;--media-brightness:1;--media-fit:contain}
.media-glas-cover{--media-position:50% 36%;--media-brightness:1;--media-fit:cover}
.media-grund-cover{--media-position:50% 65%;--media-brightness:1.02;--media-fit:cover}
.media-unterhalt-cover{--media-position:50% 52%;--media-brightness:1.02;--media-fit:cover}
.media-garten-cover{--media-position:50% 32%;--media-brightness:1;--media-fit:cover}
.media-dach-cover{--media-position:50% 48%;--media-brightness:1;--media-fit:cover}
.media-hausmeister-cover{--media-position:50% 61%;--media-brightness:1.02;--media-fit:cover}
.media-boden-gruppenraum{--media-position:50% 62%;--media-brightness:1.02;--media-fit:cover}
.media-dach-vergleich{--media-position:50% 50%;--media-brightness:1;--media-fit:cover}
.media-glas-team{--media-position:50% 25%;--media-brightness:1;--media-fit:cover}
.media-fenster-vergleich{--media-position:50% 50%;--media-brightness:1;--media-fit:cover}
.media-winter-cover{--media-position:50% 46%;--media-brightness:1.03;--media-fit:cover}
.media-bau-treppe{--media-position:50% 55%;--media-brightness:1.02;--media-fit:cover}
.media-ki-glas-fenster-jalousienreinigung-v1{--media-position:50% 8%;--media-brightness:1;--media-fit:cover}
.media-ki-grundreinigung-v1{--media-position:50% 18%;--media-brightness:1;--media-fit:cover}
.media-ki-unterhaltsreinigung-v1{--media-position:50% 18%;--media-brightness:1;--media-fit:cover}
.media-ki-bauendreinigung-v1{--media-position:50% 27%;--media-brightness:1;--media-fit:cover}
.media-ki-dachreinigung-v1{--media-position:50% 12%;--media-brightness:1;--media-fit:cover}
.media-ki-winterdienst-v1{--media-position:50% 18%;--media-brightness:1;--media-fit:cover}
.media-ki-grunpflege-v1{--media-position:50% 18%;--media-brightness:1;--media-fit:cover}
.media-ki-hausmeisterservice-v1{--media-position:50% 24%;--media-brightness:1;--media-fit:cover}
