/* Loaded only by the deep cleaning page. */
html {
  scroll-padding-top: 128px;
}

.campaign-page {
  padding-bottom: 0;
}

.campaign-page .site-footer {
  padding-bottom: calc(100px + env(safe-area-inset-bottom));
}

.campaign-page a {
  scroll-margin-bottom: 120px;
}

.campaign-page .header-inner {
  min-height: 112px;
}

.campaign-page .site-header .brand-logo {
  flex: none;
}

.campaign-page .site-header .brand-logo-image {
  width: 148px;
  height: auto;
}

.deep-icon-definitions {
  position: absolute;
  overflow: hidden;
  pointer-events: none;
}

.deep-contact-icon {
  display: inline-block;
  flex: none;
  width: 1.25em;
  height: 1.25em;
  fill: currentColor;
  vertical-align: -0.2em;
}

.campaign-page .button,
.campaign-page .deep-contact-link {
  gap: 0.6rem;
}

.campaign-page .deep-contact-link {
  display: inline-flex;
  align-items: center;
}

.service-visual {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
  margin: 0 0 36px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-radius: 24px 24px 24px 7px;
  box-shadow: var(--shadow);
}

.service-visual > img {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.service-visual figcaption {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 58px);
}

.service-visual h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
}

.service-visual figcaption > p:last-child {
  margin: 0;
  color: #d4e0e7;
}

.home-inclusions {
  margin: 0 0 48px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--cloud);
  border-top: 3px solid var(--aqua-dark);
  border-radius: 0 0 var(--radius) var(--radius);
}

.home-inclusions h2 {
  max-width: 740px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.home-inclusions > p {
  max-width: 740px;
  margin: 0 0 24px;
  color: var(--ink-soft);
}

.home-inclusions-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-inclusions-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.home-inclusions-list li > span {
  flex: none;
  color: var(--aqua-dark);
  font-weight: 800;
}

.deep-floating-contact {
  position: fixed;
  z-index: 110;
  right: max(24px, env(safe-area-inset-right));
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  width: max-content;
  max-width: calc(100% - 48px - env(safe-area-inset-right));
}

.deep-floating-contact > a {
  box-shadow: 0 8px 28px rgba(1, 42, 80, 0.25);
  text-decoration: none;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.deep-floating-contact > a:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 4px;
  box-shadow: 0 0 0 4px var(--white);
}

.deep-floating-call {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 100%;
  min-height: 60px;
  padding: 6px 6px 6px 20px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 36px;
}

.deep-floating-call:hover {
  background: var(--navy-2);
}

.deep-call-text {
  min-width: 0;
  line-height: 1.35;
}

.deep-call-text > span {
  display: block;
  color: var(--aqua);
  font-size: 0.875rem;
  font-weight: 700;
}

.deep-call-text > strong {
  display: block;
  font-size: 1.125rem;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

.deep-call-circle {
  display: grid;
  flex: none;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--navy);
  background: var(--aqua);
  border-radius: 50%;
}

.deep-call-circle .deep-contact-icon {
  width: 23px;
  height: 23px;
}

.deep-floating-whatsapp {
  display: grid;
  flex: none;
  place-items: center;
  width: 60px;
  height: 60px;
  color: var(--white);
  background: #128c4a;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.deep-floating-whatsapp:hover {
  background: #0e713c;
}

.deep-floating-whatsapp .deep-contact-icon {
  width: 29px;
  height: 29px;
}

@media (max-width: 760px) {
  .campaign-page .header-inner {
    min-height: 100px;
  }

  .campaign-page .site-header .brand-logo-image {
    width: 128px;
  }

  .campaign-page .primary-nav {
    top: 100%;
  }

  .campaign-page .hero-grid {
    gap: 0;
  }

  .campaign-page .hero-copy {
    display: contents;
  }

  .campaign-page .hero-copy > .eyebrow {
    order: 1;
  }

  .campaign-page .hero-copy > h1 {
    order: 2;
  }

  .campaign-page .hero-media {
    order: 3;
    margin: 0 0 30px;
  }

  .campaign-page .hero-media > img {
    aspect-ratio: 16 / 10;
  }

  .campaign-page .hero-copy > .hero-lead {
    order: 4;
  }

  .campaign-page .hero-copy > .hero-actions {
    order: 5;
  }

  .campaign-page .hero-copy > .hero-notes {
    order: 6;
  }

  .service-visual {
    grid-template-columns: 1fr;
    border-radius: 18px 18px 18px 5px;
  }

  .service-visual > img {
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .service-visual figcaption {
    grid-column: 1;
    grid-row: 2;
  }

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

  .deep-floating-contact {
    right: max(12px, env(safe-area-inset-right));
    gap: 10px;
    max-width: calc(100% - 24px - env(safe-area-inset-right));
  }

  .deep-floating-call {
    gap: 12px;
    padding-left: 16px;
  }

  .deep-call-text > strong {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .home-inclusions-list {
    grid-template-columns: 1fr;
  }
}
