@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400&display=swap");

:root {
  --red: #e60708;
  --red-alt: #ed1c24;
  --red-soft: #ec4041;
  --navy: #0e0c55;
  --navy-btn: #0f276d;
  --navy-deep: #001d4b;
  --ink: #232222;
  --text: #333333;
  --muted: #666666;
  --grey: #727272;
  --line: #e2e2e2;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #fafafa;
  --bg-tint: #f5f5f5;

  --font-display: "Teko", "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --shell: 1200px;
  --shell-narrow: 980px;
  --gap-xs: 8px;
  --gap-sm: 16px;
  --gap-md: 24px;
  --gap-lg: 40px;
  --gap-xl: 64px;
  --section-y: 80px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-pill: 999px;

  --shadow-card: 0 6px 22px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 14px 34px rgba(0, 0, 0, 0.14);
  --shadow-drop: 0 10px 28px rgba(0, 0, 0, 0.18);

  --ease: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-float: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

/* ==========================================================================
   Base
   ========================================================================== */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4em;
  overflow-x: hidden;
}

img { max-width: 100%; border: 0; }

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: 0.01em;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.shell { width: min(100% - 48px, var(--shell)); margin-inline: auto; }
.shell-narrow { width: min(100% - 48px, var(--shell-narrow)); margin-inline: auto; }

.accent { color: var(--red); }
.on-dark, .on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4, .on-dark h5, .on-dark h6 { color: var(--white); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 30px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--navy-btn);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn:hover,
.btn:focus-visible { background: var(--red); transform: translateY(-2px); box-shadow: var(--shadow-card); }

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

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--ghost:hover, .btn--ghost:focus-visible { background: var(--white); color: var(--navy); }

.btn--sm { min-height: 40px; padding: 8px 22px; font-size: 14px; }

.btn svg { flex: none; }

/* ==========================================================================
   Shared header
   ========================================================================== */

.site-header {
  position: relative;
  z-index: 60;
  background: var(--white);
}

.topbar {
  background: linear-gradient(90deg, #e60708 0%, #0e0c55 100%);
  color: var(--white);
  text-align: center;
  font-size: 14px;
  line-height: 1.4em;
  padding: 8px 16px;
}
.topbar a { color: var(--white); transition: opacity 0.3s ease; }
.topbar a:hover { opacity: 0.8; }

.header-main {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  width: min(100% - 48px, 1600px);
  margin-inline: auto;
  padding: 10px 0;
}

.brand { flex: none; display: block; }
.brand img { display: block; width: 103px; height: auto; }

.site-nav { flex: 1 1 auto; display: flex; justify-content: center; }

.nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list > li { position: relative; }

.nav-list > li > a,
.nav-list > li > .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  background: none;
  border: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.4s ease;
}

.nav-list > li > a:hover,
.nav-list > li > a:focus-visible,
.nav-list > li > .nav-trigger:hover,
.nav-list > li:focus-within > .nav-trigger { color: var(--muted); }

.nav-list > li > a[aria-current="page"] { color: var(--red); }

.nav-trigger svg { transition: transform 0.3s ease; }
.nav-list > li:hover .nav-trigger svg,
.nav-list > li:focus-within .nav-trigger svg { transform: rotate(180deg); }

.subnav {
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: var(--white);
  box-shadow: var(--shadow-drop);
  min-width: 260px;
}

.subnav a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.subnav a:hover,
.subnav a:focus-visible { color: var(--red); background: var(--bg-alt); }
.subnav a[aria-current="page"] { color: var(--red); }

.header-phone {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  transition: color 0.3s ease;
}
.header-phone:hover { color: var(--red); }
.header-phone svg { color: var(--red); }

/* Desktop dropdown behaviour. The submenu is navigation chrome, not page copy —
   every target it points at is also listed, always visible, in the footer menu. */
@media (min-width: 901px) {
  .subnav {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 70;
  }
  .nav-list > li:hover > .subnav,
  .nav-list > li:focus-within > .subnav {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 900px) {
  .header-main { flex-wrap: wrap; justify-content: center; text-align: center; }
  .site-nav { order: 3; width: 100%; }
  .nav-list { justify-content: center; }
  .nav-list > li > a,
  .nav-list > li > .nav-trigger { padding: 10px 12px; font-size: 15px; }
  .nav-trigger { display: none !important; }
  .subnav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    min-width: 0;
    padding: 0;
    box-shadow: none;
    background: transparent;
  }
  .subnav a { padding: 8px 10px; font-size: 13px; }
  .header-phone { font-size: 22px; }
}

/* ==========================================================================
   Section bands
   ========================================================================== */

.section { padding: var(--section-y) 0; }
.section--alt { background: var(--bg-alt); }
.section--white { background: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 8px;
}
/* The source prefixes every eyebrow with its own waving-US-flag vector, lifted
   verbatim from the page and saved as assets/flag-icon.svg. */
.eyebrow::before {
  content: "";
  flex: none;
  width: 22px;
  height: 22px;
  background-image: url("flag-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.section-title { font-size: 40px; margin-bottom: 10px; }
.section-sub { font-size: 16px; color: var(--text); }

.section-head { text-align: center; margin-bottom: var(--gap-lg); }

/* Page hero band: a photo at 60% over the brand navy, exactly as the source
   composites it, with the page title in white. */
.page-hero {
  position: relative;
  min-height: 298px;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.page-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.page-hero__inner { position: relative; z-index: 2; width: min(100% - 48px, var(--shell)); margin-inline: auto; }
.page-hero h1 {
  color: var(--white);
  font-size: 46px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* Flag call-to-action band: the source plays a looping waving-flag video at 60%
   over black, with a translucent red panel holding the copy. */
.cta-band {
  position: relative;
  overflow: hidden;
  background: #000;
  padding: 90px 0;
}
.cta-band__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 0;
}
/* The source lays a 6x6 dot tile over the flag video as a texture overlay
   (Wix bgImgOverlay, fittingType tile). Reproduced here. */
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("orig/106.png");
  background-repeat: repeat;
  background-position: center center;
  pointer-events: none;
}
.cta-band__inner { position: relative; z-index: 2; width: min(100% - 48px, var(--shell)); margin-inline: auto; }
.cta-band__panel {
  width: min(100%, 720px);
  margin-inline: auto;
  padding: 44px 40px;
  background: rgba(155, 25, 30, 0.72);
  text-align: center;
  color: var(--white);
}
.cta-band__eyebrow {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 6px;
}
.cta-band__panel h2 { color: var(--white); font-size: 36px; margin-bottom: 14px; }
.cta-band__panel p { color: var(--white); font-size: 15px; max-width: 560px; margin-inline: auto; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 26px; }

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }

.card__media { position: relative; display: block; overflow: hidden; }
.card__media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }

/* ==========================================================================
   Gallery slider (Swiper 11)
   ========================================================================== */

/* The source is a Wix Pro Gallery in horizontal "columns" mode: every column
   holds two photos cropped to fill it edge to edge (40% / 60% of the column
   height, alternating per column), 2px apart, with four columns in view on
   desktop. It autoplays one column at a time and loops. Column proportions are
   the source's 426px column width against its strip height. */
.gallery-swiper { position: relative; --gallery-col-ratio: 426 / 446; }
.page-gallery .gallery-swiper { --gallery-col-ratio: 426 / 1539; }
.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  aspect-ratio: var(--gallery-col-ratio);
  height: auto;
}
.gallery-col img {
  display: block;
  width: 100%;
  min-height: 0;
  object-fit: cover;
  flex: 40 1 0;
}
.gallery-col img:last-child { flex-grow: 60; }
.gallery-col--flip img:first-child { flex-grow: 60; }
.gallery-col--flip img:last-child { flex-grow: 40; }
.gallery-col--single img { flex: 1 1 0; }
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.gallery-swiper .swiper-button-prev { left: 24px; }
.gallery-swiper .swiper-button-next { right: 24px; }
.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover { background: var(--navy-btn); }
.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after { font-size: 15px; font-weight: 700; }
/* Before Swiper initialises (or if it never loads) show the strip as a
   horizontally scrollable row instead of stacked full-width slides. */
.gallery-swiper:not(.swiper-initialized) .swiper-wrapper { overflow-x: auto; gap: 2px; }
.gallery-swiper:not(.swiper-initialized) .gallery-col { flex: 0 0 calc((100% - 6px) / 4); }
@media (max-width: 900px) {
  .gallery-swiper:not(.swiper-initialized) .gallery-col { flex-basis: calc((100% - 2px) / 2); }
  .gallery-swiper .swiper-button-prev { left: 10px; }
  .gallery-swiper .swiper-button-next { right: 10px; }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.review-card {
  background: var(--white);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
}
.review-card__stars { display: block; height: 28px; width: auto; margin-bottom: 14px; }
.review-card__text { font-size: 14px; color: var(--text); }
.review-card__text.is-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-more {
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: underline;
  cursor: pointer;
}
.review-card__who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
  flex: none;
}
.review-card__name { font-size: 14px; font-weight: 700; color: var(--ink); }

/* ==========================================================================
   FAQ (native details / summary — nothing is hidden by CSS)
   ========================================================================== */

.faq { width: min(100%, 780px); margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 14px 0; }
.faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s ease;
}
.faq details[open] summary::after { transform: rotate(225deg) translate(-2px, -2px); }
.faq details > *:not(summary) { margin-top: 12px; font-size: 14px; color: var(--muted); }

/* ==========================================================================
   Forms
   ========================================================================== */

.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--ink);
}
.form-field .req { color: var(--red); }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.3s ease;
}
.form-field textarea { min-height: 96px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus { outline: none; border-color: var(--red); }
.form-hp { position: absolute; left: -9999px; overflow: hidden; width: 1px; height: 1px; }

/* ==========================================================================
   Shared footer
   ========================================================================== */

.site-footer { background: var(--bg-alt); color: var(--text); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: var(--gap-xl);
  width: min(100% - 48px, var(--shell));
  margin-inline: auto;
  padding: 56px 0 44px;
}

.footer-brand img { display: block; width: 133px; height: auto; margin-bottom: 26px; }
.footer-brand p { font-size: 16px; max-width: 240px; }

.site-footer h3 { font-size: 30px; margin-bottom: 14px; }

.footer-menu { margin: 0; padding: 0; list-style: none; }
.footer-menu a {
  display: block;
  padding: 3px 0;
  font-size: 16px;
  color: var(--text);
  transition: color 0.3s ease;
}
.footer-menu a:hover { color: var(--red); }
.footer-menu a[aria-current="page"] { color: var(--red); }
.footer-menu > li > span {
  display: block;
  padding: 3px 0;
  font-size: 16px;
  color: var(--text);
}
.footer-submenu { margin: 0 0 0 16px; padding: 0; list-style: none; }
.footer-submenu a { font-size: 14px; }

.footer-contact { margin: 0; padding: 0; list-style: none; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 16px; }
.footer-contact svg { flex: none; margin-top: 2px; color: var(--red); }
.footer-contact a { transition: color 0.3s ease; }
.footer-contact a:hover { color: var(--red); }

.footer-bar {
  background: rgba(230, 7, 8, 0.77);
  color: var(--white);
  text-align: center;
  font-size: 16px;
  line-height: 1.4em;
  padding: 10px 16px;
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; gap: var(--gap-lg); text-align: center; }
  .footer-brand img, .footer-brand p { margin-inline: auto; }
  .footer-contact li { justify-content: center; }
}

/* ==========================================================================
   Chat launcher
   The source runs Wix Chat here; that backend does not survive the migration,
   so the launcher keeps its place and appearance and routes to the contact page.
   ========================================================================== */

.chat-launcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  box-shadow: var(--shadow-drop);
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.chat-launcher:hover { transform: translateY(-3px); background: var(--red); }

/* ==========================================================================
   Process badges (all service pages)
   The source draws each step as a white 136x126 circle sitting 8px above a
   red 137x130 circle, with a Wix vector icon (drop shadow 1px 1px 2px at 60%)
   centred on the white face. Shared so every process band matches.
   ========================================================================== */

.process-badge {
  position: relative;
  display: block;
  width: 137px;
  height: 138px;
  margin: 0 auto 25px;
}
.process-badge::before,
.process-badge::after {
  content: "";
  position: absolute;
  left: 0;
  border-radius: 50%;
}
.process-badge::before { top: 8px; width: 137px; height: 130px; background: var(--red); }
.process-badge::after { top: 0; width: 136px; height: 126px; background: #fafafa; }
.process-badge svg {
  position: absolute;
  z-index: 1;
  left: 68px;
  top: 63px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.6));
}

/* ==========================================================================
   Promo lightbox
   The markup lives in a <template>, so nothing here hides page content; if the
   script never runs the promo simply never appears.
   ========================================================================== */

.promo-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, 0.6);
  display: grid;
  place-items: center;
  padding: 20px;
  animation: fadeIn 0.3s ease both;
}
.promo-box { position: relative; max-width: 575px; width: 100%; }
.promo-box img { display: block; width: 100%; height: auto; }
/* The source overlays its "Request a free quote" button on the blank white
   bar at the bottom-right of the promo image: 259x36 at (315, 466) in a
   575x545 box, so it is positioned in percentages to track the image. */
.promo-box .promo-cta {
  position: absolute;
  left: 54.78%;
  top: 85.5%;
  width: 45.04%;
  height: 6.6%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  background: #fff;
  color: #000;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(11px, 2.8vw, 16px);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.promo-box .promo-cta:hover { color: var(--red); }
.promo-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: var(--navy);
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

/* ==========================================================================
   Motion
   The source animates section entrances with a clip-path wipe (motion-revealIn),
   a horizontal float (motion-floatIn) and plain fades (motion-fadeIn). Those are
   reproduced below as pure-CSS on-load animations with animation-fill-mode: both,
   so every animated element always ends visible. No rule in this file hides
   content and no script is involved in making anything appear.
   ========================================================================== */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes revealIn {
  0% { opacity: 1; clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%); }
  100% { opacity: 1; clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); }
}

@keyframes floatInRight {
  0% { opacity: 0; transform: translateX(60px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes floatInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.75; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Entrance animations run purely from CSS, on load, with animation-fill-mode:
   both. The animation ALWAYS runs, so the element ALWAYS ends visible: there is
   no script to fail and no stylesheet rule anywhere that hides content. */
[data-reveal] { animation: revealIn 1200ms var(--ease) 1ms both; }
[data-reveal="float"] { animation: floatInRight 1200ms var(--ease-float) 1ms both; }
[data-reveal="up"] { animation: floatInUp 900ms var(--ease-float) 1ms both; }
[data-reveal="fade"] { animation: fadeIn 600ms ease 1ms both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal],
  [data-reveal="float"],
  [data-reveal="up"],
  [data-reveal="fade"] { animation: none; opacity: 1; transform: none; clip-path: none; }
}

@media (max-width: 900px) {
  :root { --section-y: 56px; }
  .section-title { font-size: 32px; }
  .page-hero h1 { font-size: 34px; }
  .cta-band__panel h2 { font-size: 28px; }
  .cta-band__panel { padding: 32px 22px; }
}

/* ==========================================================================
   home
   ========================================================================== */

/* page: home */

/* ---------- Hero band ---------- */
.page-home .hero-band {
  position: relative;
  overflow: hidden;
  min-height: 544px;
  display: flex;
  align-items: center;
  background: var(--white);
}
.page-home .hero-band__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-home .hero-band__inner {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 40px 0;
}
.page-home .hero-band__title {
  font-size: 44px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.page-home .hero-band__sub {
  font-size: 16px;
  color: var(--text);
  max-width: 420px;
  margin-bottom: 16px;
}
.page-home .hero-band__phone {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.page-home .hero-band__phone:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .page-home .hero-band { min-height: 0; padding: 40px 0; }
  .page-home .hero-band__media { position: absolute; opacity: 0.18; }
  .page-home .hero-band__inner { max-width: 100%; }
  .page-home .hero-band__title { font-size: 38px; }
}

/* ---------- About section ---------- */
.page-home .about-grid {
  display: grid;
  grid-template-columns: 540px 1fr;
  gap: var(--gap-xl);
  align-items: center;
}
.page-home .about-media {
  position: relative;
  width: 520px;
  max-width: 100%;
  height: 530px;
}
.page-home .about-media img { position: absolute; display: block; object-fit: cover; }
.page-home .about-media img:nth-of-type(1) { left: 0; top: 0; width: 252px; height: 526px; }
.page-home .about-media img:nth-of-type(2) { left: 268px; top: 137px; width: 252px; height: 391px; }
.page-home .about-badge {
  position: absolute;
  top: 46px;
  left: 240px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 18px 26px;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}
.page-home .about-badge svg { flex: none; }
.page-home .about-badge::after {
  content: "";
  position: absolute;
  left: 78px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: rgba(255, 255, 255, 0.55);
}
.page-home .about-copy h2 { font-size: 40px; margin-bottom: 16px; }
.page-home .about-copy p { color: var(--text); font-size: 15px; margin-bottom: 14px; }
.page-home .about-copy .btn { margin-top: 8px; }

@media (max-width: 1100px) {
  .page-home .about-grid { grid-template-columns: 1fr; }
  .page-home .about-media { margin: 0 auto 40px; }
}

@media (max-width: 560px) {
  .page-home .about-media { width: 100%; height: auto; display: flex; gap: 8px; }
  .page-home .about-media img { position: static; width: 50%; height: auto; }
  .page-home .about-badge { position: static; margin-bottom: 14px; white-space: normal; font-size: 20px; }
  .page-home .about-badge::after { display: none; }
}

/* ---------- Services section ---------- */
.page-home .services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap-md);
}
.page-home .svc-card {
  flex: 0 1 351px;
  max-width: 351px;
}
.page-home .svc-card__media { position: relative; aspect-ratio: 351 / 266; }
.page-home .svc-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* The source seats the arrow in a white 69x68 notch (top-left radius 20px)
   cut into the image's bottom-right corner, with a 50px navy circle inside.
   It stays inside the card, so the card's overflow:hidden never clips it. */
.page-home .svc-card__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 69px;
  height: 68px;
  border-radius: 20px 0 0 0;
  background: var(--white);
  display: grid;
  place-items: center;
}
.page-home .svc-card__arrow::before,
.page-home .svc-card__arrow::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 0 0, transparent 19.5px, var(--white) 20px);
}
.page-home .svc-card__arrow::before { right: 0; top: -20px; }
.page-home .svc-card__arrow::after { left: -20px; bottom: 0; }
.page-home .svc-card__arrow svg {
  box-sizing: content-box;
  width: 16px;
  height: 16px;
  padding: 17px;
  border-radius: 50%;
  background: #324158;
  color: var(--white);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.page-home .svc-card:hover .svc-card__arrow svg { background: var(--red); transform: rotate(-45deg); }
.page-home .svc-card__body { padding: 20px 6px 6px; }
.page-home .svc-card__body h3 { font-size: 22px; margin-bottom: 8px; }
.page-home .svc-card__body p { color: var(--text); font-size: 14px; margin: 0; }

/* ---------- Why choose us ---------- */
.page-home .why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
}
.page-home .why-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 22px; }
.page-home .why-list li { display: flex; gap: 18px; align-items: flex-start; }
.page-home .why-icon {
  position: relative;
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
}
.page-home .why-icon::after {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--white);
}
.page-home .why-list h3 { font-size: 20px; color: var(--ink); margin-bottom: 4px; font-family: var(--font-body); font-weight: 700; }
.page-home .why-list p { color: var(--text); font-size: 15px; margin: 0; }
.page-home .why-copy h2 { font-size: 34px; }
.page-home .why-media {
  display: grid;
  grid-template-columns: 296px 284px;
  grid-template-rows: 196px 196px;
  gap: 8px;
  justify-content: center;
}
.page-home .why-media img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); }
.page-home .why-media img:nth-child(1) { grid-column: 1; grid-row: 1; }
.page-home .why-media img:nth-child(2) { grid-column: 1; grid-row: 2; }
.page-home .why-media img:nth-child(3) { grid-column: 2; grid-row: 1 / 3; }

@media (max-width: 900px) {
  .page-home .why-grid { grid-template-columns: 1fr; }
  .page-home .why-media { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(2, 160px); max-width: 480px; margin: 40px auto 0; }
}

/* ---------- Testimonials ---------- */
.page-home .testimonials-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: var(--gap-xl);
  align-items: center;
}
.page-home .testimonials-copy h2 { font-size: 34px; margin-bottom: 20px; }
.page-home .testimonials-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-md); }

@media (max-width: 900px) {
  .page-home .testimonials-grid { grid-template-columns: 1fr; }
  .page-home .testimonials-cards { grid-template-columns: 1fr; margin-top: 32px; }
}

/* ---------- Gallery ---------- */
/* The source runs this gallery far wider than the rest of the page:
   it spans roughly 97px to 1822px on a 1920px viewport. */
.page-home .shell--gallery,
.page-gallery .shell--gallery { width: min(100% - 48px, 1713px); }
.page-home .gallery-head { margin-bottom: var(--gap-lg); }

/* ---------- Motion helpers scoped to home ---------- */
.page-home [data-reveal] { will-change: opacity, transform, clip-path; }

/* ==========================================================================
   about
   ========================================================================== */

/* page: about */

.page-about .about-story__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
}

.page-about .about-story__title {
  font-size: 40px;
  margin-bottom: 20px;
}

.page-about .about-story__text p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 20px;
}
.page-about .about-story__text p:last-child { margin-bottom: 0; }

.page-about .about-story__collage {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.page-about .about-story__collage-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: none;
}

.page-about .about-story__collage-col img {
  display: block;
  width: 212px;
  height: auto;
}

.page-about .about-story__collage-border {
  border: 3px solid #b285f0;
}

.page-about .about-story__collage-tall {
  display: block;
  width: 235px;
  height: 493px;
  object-fit: cover;
  flex: none;
}

.page-about .about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.page-about .about-values__card {
  padding: 44px 32px;
  text-align: center;
}

.page-about .about-values__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.page-about .about-values__card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}

.page-about .about-values__card p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 900px) {
  .page-about .about-story__grid { grid-template-columns: 1fr; gap: 40px; }
  .page-about .about-story__collage { justify-content: center; }
  .page-about .about-values__grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .page-about .about-story__collage { flex-wrap: wrap; justify-content: center; }
}

/* ==========================================================================
   carpet-cleaning
   ========================================================================== */

/* page: carpet-cleaning */

/* ---------- Intro section ---------- */
.page-carpet-cleaning .carpet-intro__grid {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: var(--gap-xl);
  align-items: center;
  max-width: 1105px;
  margin-inline: auto;
}

.page-carpet-cleaning .carpet-intro__media {
  position: relative;
  width: 430px;
  height: 590px;
}

.page-carpet-cleaning .carpet-intro__media::before {
  content: "";
  position: absolute;
  left: 286px;
  top: 100px;
  width: 86px;
  height: 96px;
  border-top: 3px solid var(--red);
  border-right: 3px solid var(--red);
  z-index: 1;
}

.page-carpet-cleaning .carpet-intro__frame {
  position: absolute;
  left: 40px;
  top: 405px;
  width: 92px;
  height: 72px;
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  z-index: 1;
}

.page-carpet-cleaning .carpet-intro__small,
.page-carpet-cleaning .carpet-intro__large {
  position: absolute;
  display: block;
  z-index: 2;
  box-shadow: var(--shadow-card);
}

.page-carpet-cleaning .carpet-intro__small {
  top: 0;
  left: 0;
  width: 284px;
  height: 384px;
  object-fit: cover;
}

.page-carpet-cleaning .carpet-intro__large {
  top: 200px;
  left: 140px;
  width: 286px;
  height: 389px;
  object-fit: cover;
}

.page-carpet-cleaning .carpet-intro__text h2 {
  font-size: 34px;
  margin-bottom: 18px;
}

.page-carpet-cleaning .carpet-intro__text p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 18px;
}
.page-carpet-cleaning .carpet-intro__text p:last-child { margin-bottom: 0; }

/* ---------- What's Include tiles ---------- */
.page-carpet-cleaning .include-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  max-width: 950px;
  margin-inline: auto;
}

.page-carpet-cleaning .include-tile {
  position: relative;
  margin-top: 24px;
  padding: 32px 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: center;
}

.page-carpet-cleaning .include-tile__num {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}

.page-carpet-cleaning .include-tile p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

/* ---------- Process band ---------- */
.page-carpet-cleaning .carpet-process {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.page-carpet-cleaning .carpet-process__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-carpet-cleaning .carpet-process__inner {
  position: relative;
  z-index: 2;
  max-width: 950px;
  margin-inline: auto;
}

.page-carpet-cleaning .process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg) var(--gap-md);
}

.page-carpet-cleaning .process-step { text-align: center; }

.page-carpet-cleaning .process-step p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

/* ---------- Testimonials (mirrors the shared pattern used on other pages) ---------- */
.page-carpet-cleaning .testimonials-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: var(--gap-xl);
  align-items: center;
}
.page-carpet-cleaning .testimonials-copy h2 { font-size: 34px; margin-bottom: 20px; }
.page-carpet-cleaning .testimonials-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-md); }

/* ---------- FAQ ---------- */
.page-carpet-cleaning .faq { width: min(100%, 910px); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .page-carpet-cleaning .carpet-intro__grid { grid-template-columns: 1fr; }
  .page-carpet-cleaning .carpet-intro__media { max-width: 100%; margin: 0 auto 40px; }
  .page-carpet-cleaning .include-grid { grid-template-columns: 1fr 1fr; }
  .page-carpet-cleaning .process-grid { grid-template-columns: 1fr 1fr; }
  .page-carpet-cleaning .testimonials-grid { grid-template-columns: 1fr; }
  .page-carpet-cleaning .testimonials-cards { grid-template-columns: 1fr; margin-top: 32px; }
}

@media (max-width: 560px) {
  .page-carpet-cleaning .include-grid { grid-template-columns: 1fr; }
  .page-carpet-cleaning .process-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   residential-carpet-cleaning
   ========================================================================== */

/* page: residential-carpet-cleaning */

/* ---------- Intro section ---------- */
.page-residential-carpet-cleaning .intro-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1105px;
  margin-inline: auto;
}

.page-residential-carpet-cleaning .intro-media {
  position: relative;
  width: 432px;
  height: 589px;
}

.page-residential-carpet-cleaning .intro-media img {
  position: absolute;
  display: block;
  object-fit: cover;
  border-radius: 2px;
}

.page-residential-carpet-cleaning .intro-media__img--a {
  left: 0;
  top: 0;
  width: 284px;
  height: 384px;
  z-index: 1;
}

.page-residential-carpet-cleaning .intro-media__img--b {
  left: 146px;
  top: 200px;
  width: 286px;
  height: 389px;
  z-index: 2;
}

.page-residential-carpet-cleaning .intro-corner {
  position: absolute;
  z-index: 0;
}

.page-residential-carpet-cleaning .intro-corner--tr {
  left: 284px;
  top: 103px;
  width: 83px;
  height: 97px;
  border-top: 3px solid var(--red);
  border-right: 3px solid var(--red);
}

.page-residential-carpet-cleaning .intro-corner--bl {
  left: 50px;
  top: 380px;
  width: 87px;
  height: 83px;
  border-bottom: 3px solid var(--red);
  border-left: 3px solid var(--red);
}

.page-residential-carpet-cleaning .intro-copy h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.page-residential-carpet-cleaning .intro-copy p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 18px;
}

.page-residential-carpet-cleaning .intro-copy p:last-child { margin-bottom: 0; }

@media (max-width: 980px) {
  .page-residential-carpet-cleaning .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-residential-carpet-cleaning .intro-media { width: 100%; max-width: 432px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .page-residential-carpet-cleaning .intro-media { transform: scale(0.78); transform-origin: top left; margin-bottom: -120px; }
}

/* ---------- Complete service steps ---------- */
.page-residential-carpet-cleaning .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px 32px;
  margin-top: 46px;
  max-width: 950px;
  margin-inline: auto;
}

.page-residential-carpet-cleaning .step-tile {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 30px 22px 24px;
  text-align: center;
}

.page-residential-carpet-cleaning .step-tile__badge {
  position: absolute;
  left: 50%;
  top: -24px;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}

.page-residential-carpet-cleaning .step-tile p {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .page-residential-carpet-cleaning .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .page-residential-carpet-cleaning .steps-grid { grid-template-columns: 1fr; }
}

/* ---------- Process band ---------- */
.page-residential-carpet-cleaning .rcc-process {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.page-residential-carpet-cleaning .rcc-process__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-residential-carpet-cleaning .rcc-process__inner {
  position: relative;
  z-index: 2;
  max-width: 950px;
  margin-inline: auto;
}

.page-residential-carpet-cleaning .process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 32px;
  margin-top: 50px;
}

.page-residential-carpet-cleaning .process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.page-residential-carpet-cleaning .process-step__label {
  font-size: 15px;
  color: var(--white);
  text-align: center;
  margin: 0;
}

@media (max-width: 900px) {
  .page-residential-carpet-cleaning .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .page-residential-carpet-cleaning .process-grid { grid-template-columns: 1fr; }
}

/* ---------- Testimonials ---------- */
.page-residential-carpet-cleaning .testimonials-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: var(--gap-xl);
  align-items: center;
}
.page-residential-carpet-cleaning .testimonials-copy h2 { font-size: 34px; margin-bottom: 20px; }
.page-residential-carpet-cleaning .testimonials-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-md); }

/* ---------- FAQ ---------- */
.page-residential-carpet-cleaning .faq { width: min(100%, 910px); }

@media (max-width: 900px) {
  .page-residential-carpet-cleaning .testimonials-grid { grid-template-columns: 1fr; }
  .page-residential-carpet-cleaning .testimonials-cards { grid-template-columns: 1fr; margin-top: 32px; }
}

/* ==========================================================================
   furniture-cleaning
   ========================================================================== */

/* page: furniture-cleaning */

/* ---- Intro section: overlapping photos + red corner bracket ---- */
.page-furniture-cleaning .fc-intro__grid {
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1105px;
  margin-inline: auto;
}
.page-furniture-cleaning .fc-intro__photos {
  position: relative;
  width: 370px;
  height: 460px;
}
.page-furniture-cleaning .fc-intro__photos::before {
  content: "";
  position: absolute;
  left: -14px;
  bottom: -14px;
  width: 112px;
  height: 132px;
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  z-index: 1;
}
.page-furniture-cleaning .fc-intro__photo {
  position: absolute;
  display: block;
  object-fit: cover;
  z-index: 2;
  box-shadow: var(--shadow-card);
}
.page-furniture-cleaning .fc-intro__photo--a {
  top: 0;
  left: 0;
  width: 284px;
  height: 384px;
}
.page-furniture-cleaning .fc-intro__photo--b {
  right: 0;
  bottom: 0;
  width: 286px;
  height: 389px;
  z-index: 3;
}
.page-furniture-cleaning .fc-intro__title { font-size: 40px; margin-bottom: 18px; }
.page-furniture-cleaning .fc-intro__title-navy { color: var(--navy); }
.page-furniture-cleaning .fc-intro__text p { color: var(--text); font-size: 15px; margin-bottom: 16px; }
.page-furniture-cleaning .fc-intro__text p:last-child { margin-bottom: 0; }

/* ---- What's Include steps: flat #fafafa band, 9 numbered tiles ---- */
.page-furniture-cleaning .fc-steps { background: var(--bg-alt); }
.page-furniture-cleaning .fc-steps__navy { color: var(--navy); }
.page-furniture-cleaning .fc-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  margin-top: 46px;
  max-width: 950px;
  margin-inline: auto;
}
.page-furniture-cleaning .fc-steps__card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 30px 20px 22px;
  text-align: center;
}
.page-furniture-cleaning .fc-steps__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}
.page-furniture-cleaning .fc-steps__card p {
  margin: 0;
  font-size: 14px;
  color: var(--ink);
}

/* ---- Process band: photo at 20% opacity over navy ---- */
.page-furniture-cleaning .fc-process {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: var(--section-y) 0;
}
.page-furniture-cleaning .fc-process__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.page-furniture-cleaning .fc-process__inner {
  position: relative;
  z-index: 2;
  max-width: 950px;
  margin-inline: auto;
}
.page-furniture-cleaning .fc-process .section-title { color: var(--white); }
.page-furniture-cleaning .fc-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px 30px;
  text-align: center;
}
.page-furniture-cleaning .fc-process__step p {
  margin: 0;
  color: var(--white);
  font-size: 15px;
}

/* ---- FAQ heading ---- */
.page-furniture-cleaning .fc-faq__navy { color: var(--navy); }
.page-furniture-cleaning .faq { width: min(100%, 910px); }

/* ---- Testimonials ---- */
.page-furniture-cleaning .fc-testimonials__grid {
  display: grid;
  grid-template-columns: 294px 1fr;
  gap: 40px;
  align-items: start;
}
.page-furniture-cleaning .fc-testimonials__copy h2 { font-size: 34px; margin-bottom: 20px; }
.page-furniture-cleaning .fc-testimonials__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 900px) {
  .page-furniture-cleaning .fc-intro__grid { grid-template-columns: 1fr; }
  .page-furniture-cleaning .fc-intro__photos { margin: 0 auto 30px; }
  .page-furniture-cleaning .fc-steps__grid { grid-template-columns: 1fr 1fr; }
  .page-furniture-cleaning .fc-process__grid { grid-template-columns: 1fr 1fr; }
  .page-furniture-cleaning .fc-testimonials__grid { grid-template-columns: 1fr; }
  .page-furniture-cleaning .fc-testimonials__cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .page-furniture-cleaning .fc-steps__grid { grid-template-columns: 1fr; }
  .page-furniture-cleaning .fc-process__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   upholstery-cleaning
   ========================================================================== */

/* page: upholstery-cleaning */

.page-upholstery-cleaning .intro__grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1105px;
  margin-inline: auto;
}

.page-upholstery-cleaning .intro__collage {
  position: relative;
  width: 430px;
  height: 590px;
}

.page-upholstery-cleaning .intro__photo {
  position: absolute;
  display: block;
  object-fit: cover;
}

.page-upholstery-cleaning .intro__photo--a {
  top: 0;
  left: 0;
  width: 284px;
  height: 384px;
  z-index: 1;
}

.page-upholstery-cleaning .intro__photo--b {
  top: 200px;
  left: 140px;
  width: 286px;
  height: 389px;
  z-index: 2;
}

.page-upholstery-cleaning .intro__bracket {
  position: absolute;
  z-index: 0;
}

.page-upholstery-cleaning .intro__bracket--tr {
  top: 100px;
  left: 286px;
  width: 86px;
  height: 96px;
  border-top: 3px solid var(--red);
  border-right: 3px solid var(--red);
}

.page-upholstery-cleaning .intro__bracket--bl {
  top: 405px;
  left: 40px;
  width: 92px;
  height: 72px;
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}

.page-upholstery-cleaning .intro__title {
  font-size: 40px;
  margin-bottom: 18px;
}

.page-upholstery-cleaning .intro__text p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 18px;
}
.page-upholstery-cleaning .intro__text p:last-child { margin-bottom: 0; }

/* "What's Include" numbered step tiles */
.page-upholstery-cleaning .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  max-width: 950px;
  margin-inline: auto;
}

.page-upholstery-cleaning .step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 24px 26px;
  text-align: center;
  margin-top: 24px;
}

.page-upholstery-cleaning .step-card__num {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  box-shadow: var(--shadow-card);
}

.page-upholstery-cleaning .step-card p {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
}

/* Process band: photo at 20% opacity over navy */
.page-upholstery-cleaning .process-band {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: var(--section-y) 0;
}

.page-upholstery-cleaning .process-band__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-upholstery-cleaning .process-band__inner {
  position: relative;
  z-index: 2;
  max-width: 950px;
  margin-inline: auto;
}

.page-upholstery-cleaning .process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}

.page-upholstery-cleaning .process-step {
  text-align: center;
}

.page-upholstery-cleaning .process-step p {
  margin: 0;
  font-size: 16px;
  color: var(--white);
}

/* Testimonials layout */
.page-upholstery-cleaning .testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.page-upholstery-cleaning .testimonials__intro .btn { margin-top: 18px; }

.page-upholstery-cleaning .testimonials__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.page-upholstery-cleaning .faq { width: min(100%, 910px); }

@media (max-width: 900px) {
  .page-upholstery-cleaning .intro__grid { grid-template-columns: 1fr; gap: 40px; }
  .page-upholstery-cleaning .intro__collage { width: 100%; max-width: 430px; margin: 0 auto; }
  .page-upholstery-cleaning .steps-grid { grid-template-columns: 1fr; }
  .page-upholstery-cleaning .process-grid { grid-template-columns: 1fr; }
  .page-upholstery-cleaning .testimonials__grid { grid-template-columns: 1fr; }
  .page-upholstery-cleaning .testimonials__cards { grid-template-columns: 1fr; }
}

/* ==========================================================================
   tile-cleaning
   ========================================================================== */

/* page: tile-cleaning */

/* ---- Intro: overlapping photos + two-span heading ---- */

.page-tile-cleaning .tc-intro {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1105px;
  margin-inline: auto;
}

.page-tile-cleaning .tc-intro__media {
  position: relative;
  width: 430px;
  height: 610px;
}

.page-tile-cleaning .tc-intro__media-back {
  position: absolute;
  left: 0;
  top: 0;
  width: 284px;
  height: 384px;
  object-fit: cover;
  display: block;
  z-index: 1;
}

.page-tile-cleaning .tc-intro__media-front {
  position: absolute;
  left: 144px;
  top: 220px;
  width: 286px;
  height: 389px;
  object-fit: cover;
  display: block;
  z-index: 2;
  box-shadow: var(--shadow-card);
}

.page-tile-cleaning .tc-intro__frame {
  position: absolute;
  display: block;
  pointer-events: none;
}

.page-tile-cleaning .tc-intro__frame--tr {
  left: 284px;
  top: 60px;
  width: 90px;
  height: 160px;
  border-top: 4px solid var(--red);
  border-right: 4px solid var(--red);
}

.page-tile-cleaning .tc-intro__frame--bl {
  left: 24px;
  top: 344px;
  width: 120px;
  height: 90px;
  border-left: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
}

.page-tile-cleaning .tc-intro__copy h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.page-tile-cleaning .tc-intro__title-a { color: var(--navy); }
.page-tile-cleaning .tc-intro__title-b { color: var(--red); }

.page-tile-cleaning .tc-intro__copy p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 18px;
}
.page-tile-cleaning .tc-intro__copy p:last-child { margin-bottom: 0; }

/* ---- What's Include steps: flat #fafafa band, no bg photo ---- */

.page-tile-cleaning .tc-steps { background: var(--bg-alt); }

.page-tile-cleaning .tc-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  max-width: 950px;
  margin-inline: auto;
}

.page-tile-cleaning .tc-steps__card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 30px 24px 22px;
  text-align: center;
}

.page-tile-cleaning .tc-steps__card p {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
}

.page-tile-cleaning .tc-steps__badge {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}

/* ---- Process band: photo at 20% opacity over navy ---- */

.page-tile-cleaning .tc-process {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: var(--section-y) 0;
}

.page-tile-cleaning .tc-process__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-tile-cleaning .tc-process__inner {
  position: relative;
  z-index: 1;
  max-width: 950px;
  margin-inline: auto;
}

.page-tile-cleaning .tc-process .section-title { color: var(--white); }
.page-tile-cleaning .tc-process .section-title .accent { color: var(--red); }

.page-tile-cleaning .tc-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
  text-align: center;
}

.page-tile-cleaning .tc-process__item p {
  margin: 16px 0 0;
  color: var(--white);
  font-size: 15px;
}

/* ---- FAQ ---- */

.page-tile-cleaning .faq { width: min(100%, 910px); }

/* ---- Responsive ---- */

@media (max-width: 900px) {
  .page-tile-cleaning .tc-intro { grid-template-columns: 1fr; }
  .page-tile-cleaning .tc-intro__media { margin-inline: auto; }
  .page-tile-cleaning .tc-steps__grid { grid-template-columns: 1fr 1fr; }
  .page-tile-cleaning .tc-process__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .page-tile-cleaning .tc-intro__media {
    width: 286px;
    height: 480px;
  }
  .page-tile-cleaning .tc-intro__media-back { width: 200px; height: 270px; }
  .page-tile-cleaning .tc-intro__media-front { left: 100px; top: 150px; width: 200px; height: 272px; }
  .page-tile-cleaning .tc-intro__frame--tr { left: 200px; top: 42px; width: 63px; height: 112px; }
  .page-tile-cleaning .tc-intro__frame--bl { left: 16px; top: 240px; width: 84px; height: 63px; }
  .page-tile-cleaning .tc-steps__grid { grid-template-columns: 1fr; }
  .page-tile-cleaning .tc-process__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   gallery
   ========================================================================== */

/* page: gallery */

/* The source tiles a 1016x298 crop of the branded-van gallery photo across this
   band at 53% opacity over the brand navy (Wix wix-bg-image, fittingType tile,
   background-position center top). Reproduced exactly. */
.page-gallery .page-hero--gallery {
  background-color: var(--navy);
}

.page-gallery .page-hero--gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.53;
  background-image: url("orig/108.webp");
  background-repeat: repeat;
  background-size: auto;
  background-position: center top;
}

.page-gallery .page-hero--gallery .page-hero__inner {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   contact
   ========================================================================== */

/* page: contact */

.page-contact .contact-map { position: relative; line-height: 0; height: 350px; background: var(--bg); }
.page-contact .contact-map iframe { position: relative; display: block; width: 100%; height: 100%; border: 0; }
.page-contact .contact-map__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1.4;
  font-size: 16px;
  color: var(--ink);
}
.page-contact .contact-map__link { color: var(--red); font-weight: 700; }

.page-contact .contact-section { padding-top: 56px; }

.page-contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: start;
}

.page-contact .contact-title {
  font-size: 40px;
  margin-bottom: 18px;
}

.page-contact .contact-info p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 26px;
}

.page-contact .contact-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-contact .contact-info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--text);
}
.page-contact .contact-info-list svg { flex: none; color: var(--red); }
.page-contact .contact-info-list a { transition: color 0.3s ease; }
.page-contact .contact-info-list a:hover { color: var(--red); }

.page-contact .contact-form-wrap {
  background: var(--bg-alt);
  padding: 36px;
}

.page-contact .form-row {
  display: flex;
  gap: 20px;
}
.page-contact .form-row .form-field { flex: 1 1 0; min-width: 0; }

.page-contact .page-hero h2 {
  color: var(--white);
  font-size: 46px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
  .page-contact .contact-grid { grid-template-columns: 1fr; gap: var(--gap-lg); }
  .page-contact .form-row { flex-direction: column; gap: 0; }
  .page-contact .contact-form-wrap { padding: 26px; }
}
