:root {
  --ad-ink: #070b14;
  --ad-surface: #0b1220;
  --ad-panel: #121a2b;
  --ad-teal: #2dd4bf;
  --ad-silver: #c8d2dc;
  --ad-mist: #8b9bb0;
  --ad-line: rgba(200, 210, 220, 0.14);
  --ad-glow: rgba(45, 212, 191, 0.18);
  --foreground: #e8eef5;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --max: 72rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--ad-ink);
  color: var(--foreground);
  font-family: var(--font-body);
}
main { flex: 1; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(45, 212, 191, 0.35); color: #fff; }

.ad-atmosphere {
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, var(--ad-glow), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(200, 210, 220, 0.08), transparent 50%),
    linear-gradient(180deg, var(--ad-surface) 0%, var(--ad-ink) 100%);
}

.ad-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  background-image:
    linear-gradient(var(--ad-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--ad-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 85%);
}

.ad-noise {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

@keyframes ad-drift {
  0% { transform: scale(1.05) translate3d(0, 0, 0); }
  50% { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
  100% { transform: scale(1.05) translate3d(0, 0, 0); }
}
.ad-kenburns { animation: ad-drift 22s ease-in-out infinite; }

@keyframes ad-pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.9; }
}
.ad-pulse { animation: ad-pulse 3.2s ease-in-out infinite; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fade-up 0.7s ease-out both; }
.reveal--delay-1 { animation-delay: 0.12s; }
.reveal--delay-2 { animation-delay: 0.22s; }
.reveal--delay-3 { animation-delay: 0.34s; }
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid var(--ad-line);
  background: rgba(7, 11, 20, 0.7);
  backdrop-filter: blur(16px);
}
.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 4.25rem;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) {
  .site-header__inner { padding: 0 2rem; }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 1.25rem;
  color: #fff;
}
.brand--footer { margin-bottom: 1rem; }

.site-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
.site-nav.is-open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.25rem;
  background: var(--ad-surface);
  border-bottom: 1px solid var(--ad-line);
}
.site-nav__link {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--ad-silver);
  transition: color 0.2s;
}
.site-nav__link:hover,
.site-nav__link.is-active { color: var(--ad-teal); }
.nav-toggle {
  display: inline-flex;
  border: 1px solid var(--ad-line);
  background: transparent;
  color: var(--ad-silver);
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
}
@media (min-width: 900px) {
  .site-nav { display: flex; }
  .site-nav.is-open {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    padding: 0;
    background: transparent;
    border: 0;
  }
  .nav-toggle { display: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0.375rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn--primary {
  background: var(--ad-teal);
  color: var(--ad-ink);
  box-shadow: 0 4px 18px rgba(45, 212, 191, 0.25);
}
.btn--primary:hover {
  background: #5eead4;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(45, 212, 191, 0.35);
}
.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--ad-teal);
  outline-offset: 2px;
}
.btn--ghost {
  border-color: rgba(200, 210, 220, 0.3);
  color: var(--ad-silver);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--ad-teal);
  color: var(--ad-teal);
}
.btn--nav { padding: 0.5rem 1rem; }
.btn--small {
  border: 1px solid var(--ad-line);
  background: transparent;
  color: var(--ad-silver);
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
}
.text-link {
  display: inline-flex;
  margin-top: 1.5rem;
  color: var(--ad-teal);
  font-size: 0.875rem;
  font-weight: 600;
}
.text-link:hover { color: #5eead4; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100svh;
}
.hero--compact { min-height: 70vh; }
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__shade { position: absolute; inset: 0; }
.hero__shade--side {
  background: linear-gradient(90deg, var(--ad-ink) 0%, rgba(7, 11, 20, 0.8) 45%, rgba(7, 11, 20, 0.35) 100%);
}
.hero__shade--bottom {
  background: linear-gradient(180deg, rgba(7, 11, 20, 0.5) 0%, transparent 40%, var(--ad-ink) 100%);
}
.hero__content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8rem 1.25rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
}
@media (min-width: 768px) {
  .hero__content { padding: 10rem 2rem 6rem; }
}
.hero__brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #fff;
}
.hero__headline {
  margin: 1.25rem 0 0;
  max-width: 40rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  font-weight: 600;
  line-height: 1.12;
  color: #fff;
}
.hero__support {
  margin: 1.25rem 0 0;
  max-width: 34rem;
  color: var(--ad-silver);
  font-size: 1.1rem;
  line-height: 1.55;
}
.hero__ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__rule {
  margin-top: 3rem;
  height: 1px;
  width: 6rem;
  background: linear-gradient(90deg, var(--ad-teal), transparent);
}

.section {
  padding: 5rem 1.25rem;
}
.section--tight { padding-top: 2.5rem; padding-bottom: 1rem; }
@media (min-width: 768px) {
  .section { padding: 7rem 2rem; }
}
.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ad-teal);
}
.section__title {
  margin: 0;
  max-width: 48rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: #fff;
}
.section__lead {
  margin: 1rem 0 0;
  max-width: 48rem;
  color: var(--ad-mist);
  font-size: 1.125rem;
  line-height: 1.65;
}
.section__lead--emphasis {
  color: var(--ad-silver);
  font-weight: 600;
}

.grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
}
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.stack-item {
  border-top: 1px solid var(--ad-line);
  padding-top: 1.5rem;
}
.stack-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
}
.stack-item p {
  margin: 0.75rem 0 0;
  color: var(--ad-mist);
}

.media-band {
  margin: 0;
  border-top: 1px solid var(--ad-line);
  border-bottom: 1px solid var(--ad-line);
}
.media-band img {
  width: 100%;
  height: clamp(14rem, 42vw, 28rem);
  object-fit: cover;
}
.media-band figcaption {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  color: var(--ad-mist);
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .media-band figcaption { padding: 1rem 2rem; }
}

.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; }
}
.split__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split--visual {
  align-items: center;
}
.split__media--plain {
  aspect-ratio: auto;
  background: transparent;
  border: 0;
  border-radius: 0.75rem;
  overflow: hidden;
}
.split__media--plain img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.banner-media {
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}
.banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 11, 20, 0.7), transparent);
}

.contact-form {
  max-width: 42rem;
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}
.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--ad-silver);
  font-size: 0.875rem;
}
.contact-form input,
.contact-form textarea {
  border: 1px solid var(--ad-line);
  background: var(--ad-panel);
  color: #fff;
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  font: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--ad-teal);
  outline-offset: 0;
}
.contact-status {
  color: var(--ad-teal);
  font-size: 0.875rem;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--ad-line);
  background: var(--ad-surface);
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1.6fr;
    padding: 3.5rem 2rem;
  }
}
.site-footer__mission {
  max-width: 28rem;
  color: var(--ad-silver);
}
.site-footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  font-size: 0.875rem;
}
@media (min-width: 900px) {
  .site-footer__links { grid-template-columns: repeat(4, 1fr); }
}
.site-footer__links a {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ad-mist);
}
.site-footer__links a:hover { color: var(--ad-teal); }
.site-footer__heading {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ad-silver);
}
.site-footer__plain {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(139, 155, 176, 0.6);
}
.site-footer__email {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--ad-teal);
}
.site-footer__email:hover { color: #5eead4; }
.site-footer__bar {
  border-top: 1px solid var(--ad-line);
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ad-mist);
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .site-footer__bar { padding: 1.25rem 2rem; }
}

.jake-launcher {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(45, 212, 191, 0.4);
  background: var(--ad-panel);
  color: #fff;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.jake-launcher:hover {
  border-color: var(--ad-teal);
  background: var(--ad-surface);
}
.jake-launcher__badge {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--ad-teal);
  color: var(--ad-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}
@media (min-width: 768px) {
  .jake-launcher { right: 2rem; bottom: 2rem; }
}

.jake-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(7, 11, 20, 0.55);
  backdrop-filter: blur(2px);
}
.jake-panel {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 70;
  width: 100%;
  height: min(720px, 100svh);
  display: flex;
  flex-direction: column;
  background: var(--ad-surface);
  border-left: 1px solid var(--ad-line);
  border-top: 1px solid var(--ad-line);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: fade-up 0.28s ease-out;
}
/* Author display:flex must not override the HTML hidden attribute */
.jake-panel[hidden],
.jake-backdrop[hidden] {
  display: none !important;
}
@media (min-width: 640px) {
  .jake-panel {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 420px;
    height: min(640px, 85svh);
    border-radius: 1rem;
    border: 1px solid var(--ad-line);
  }
}
.jake-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--ad-line);
}
.jake-panel__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: #fff;
}
.jake-panel__subtitle {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: var(--ad-mist);
}
.jake-panel__messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.jake-msg { display: flex; }
.jake-msg--user { justify-content: flex-end; }
.jake-msg--jake { justify-content: flex-start; }
.jake-bubble {
  max-width: 90%;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.jake-msg--user .jake-bubble {
  background: var(--ad-teal);
  color: var(--ad-ink);
}
.jake-msg--jake .jake-bubble {
  background: var(--ad-panel);
  border: 1px solid var(--ad-line);
  color: var(--ad-silver);
}
.jake-followups {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.jake-followups button {
  border: 1px solid var(--ad-line);
  background: transparent;
  color: var(--ad-mist);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  cursor: pointer;
}
.jake-followups button:hover {
  border-color: var(--ad-teal);
  color: var(--ad-teal);
}
.jake-typing {
  font-size: 0.75rem;
  color: var(--ad-mist);
}
.jake-panel__form {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  border-top: 1px solid var(--ad-line);
}
.jake-panel__form input {
  flex: 1;
  border: 1px solid var(--ad-line);
  background: var(--ad-panel);
  color: #fff;
  border-radius: 0.375rem;
  padding: 0.65rem 0.75rem;
  font: inherit;
}
.jake-panel__form input:focus {
  outline: 2px solid var(--ad-teal);
}
.jake-panel__form .btn:disabled { opacity: 0.5; cursor: not-allowed; }

.hero__eyebrow {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ad-teal);
}
.section--story {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.story-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border: 1px solid var(--ad-line);
  border-radius: 0.75rem;
  background: transparent;
  color: var(--ad-silver);
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.story-toggle:hover {
  border-color: rgba(45, 212, 191, 0.45);
  background: rgba(18, 26, 43, 0.55);
}
.story-toggle[aria-expanded="true"] {
  border-color: rgba(45, 212, 191, 0.55);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.story-toggle__label {
  flex: 1;
  min-width: 12rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}
.story-toggle__hint {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ad-teal);
}
.story-toggle__chevron {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--ad-teal);
  border-bottom: 2px solid var(--ad-teal);
  transform: rotate(45deg);
  transition: transform 0.2s;
}
.story-toggle[aria-expanded="true"] .story-toggle__chevron {
  transform: rotate(-135deg);
}
.story-panel {
  border: 1px solid rgba(45, 212, 191, 0.35);
  border-top: 0;
  border-radius: 0 0 0.75rem 0.75rem;
  background: transparent;
  padding: 1.5rem 1.25rem 1.75rem;
}
.story-panel[hidden] { display: none !important; }
.story-panel .narrative { margin-top: 0; }

.narrative {
  margin-top: 1.5rem;
  max-width: 48rem;
  display: grid;
  gap: 1rem;
}
.narrative p {
  margin: 0;
  color: var(--ad-mist);
  font-size: 1.125rem;
  line-height: 1.65;
}
.narrative__emphasis,
.narrative p.narrative__emphasis {
  color: var(--ad-silver);
  font-weight: 600;
}
.narrative--closing { margin-top: 3rem; }

.decision-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ad-line);
  border-radius: 0.75rem;
  background: var(--ad-panel);
  padding: 2rem;
  transition: border-color 0.2s, transform 0.25s, box-shadow 0.25s;
}
.decision-card:hover {
  border-color: rgba(45, 212, 191, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(45, 212, 191, 0.12);
}
.decision-card--disabled:hover {
  transform: none;
  box-shadow: none;
}
.decision-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.18);
}
.decision-card h3 {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
}
.decision-card__question {
  margin: 0.75rem 0 0;
  color: var(--ad-silver);
  font-weight: 600;
  font-size: 1.05rem;
}
.decision-card p:not(.decision-card__question) {
  margin: 0.75rem 0 0;
  color: var(--ad-mist);
  flex: 1;
}
.decision-card .text-link { margin-top: 1.5rem; }
.decision-card--disabled { opacity: 0.65; }
.decision-card--disabled:hover { border-color: var(--ad-line); }
.decision-card__soon {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ad-mist);
}

.choice-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.choice-chips span {
  border: 1px solid rgba(45, 212, 191, 0.4);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  color: var(--ad-silver);
  font-size: 0.9rem;
  font-weight: 600;
}

.cta-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--ad-line);
  background: var(--ad-surface);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 90% at 50% 110%, var(--ad-glow), transparent 60%),
    linear-gradient(90deg, rgba(7, 11, 20, 0.94) 0%, rgba(7, 11, 20, 0.82) 55%, rgba(7, 11, 20, 0.6) 100%);
}
.cta-banner--home::before { background-image: url("../media/hero-home.png"); }
.cta-banner--real-estate::before { background-image: url("../media/hero-real-estate.png"); }
.cta-banner--maintenance::before { background-image: url("../media/hero-maintenance.png"); }
.cta-banner--contact::before { background-image: url("../media/hero-contact.png"); }
.cta-banner .hero__ctas { margin-top: 2.5rem; }

.section__subheading {
  margin: 3rem 0 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
}

.policy {
  max-width: 48rem;
}
.policy-block {
  margin-top: 3.5rem;
}
.policy-block:first-child {
  margin-top: 0;
}
.policy .section__subheading {
  margin-top: 2rem;
}
.policy-list {
  margin: 1.25rem 0 0;
  padding-left: 1.35rem;
  max-width: 48rem;
  color: var(--ad-mist);
  font-size: 1.125rem;
  line-height: 1.65;
}
.policy-list li + li {
  margin-top: 0.75rem;
}
.policy-list__label {
  font-weight: 700;
  color: var(--ad-silver);
  margin-right: 0.35rem;
}
.policy a {
  color: var(--ad-teal);
  text-decoration: none;
}
.policy a:hover {
  text-decoration: underline;
}
