:root {
  --navy: #082c59;
  --deep-navy: #041d3b;
  --blue: #0f8ed8;
  --blue-light: #53b9ee;
  --green: #69b92e;
  --green-light: #69b92e;
  --green-hover: #86d34b;
  --ink: #102132;
  --muted: #5f6e7b;
  --paper: #f6f8f7;
  --warm: #fbfaf6;
  --mist: #eaf2ef;
  --white: #ffffff;
  --line: rgba(8, 44, 89, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 80px rgba(4, 29, 59, 0.14);
  --shadow-soft: 0 16px 50px rgba(4, 29, 59, 0.09);
  --radius-small: 16px;
  --radius-medium: 26px;
  --radius-large: 40px;
  --shell: 1240px;
  --header-height: 92px;
  --sans: "Aptos", "Segoe UI", Arial, sans-serif;
  --display: Georgia, "Times New Roman", serif;
  --ease: cubic-bezier(0.2, 0.72, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-contact-bar {
  display: none;
}

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

img {
  height: auto;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

:focus-visible {
  outline: 3px solid var(--green-light);
  outline-offset: 4px;
}

::selection {
  color: var(--deep-navy);
  background: var(--green-light);
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 3000;
  padding: 11px 16px;
  border-radius: 8px;
  color: var(--deep-navy);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 2500;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green-light));
  transform-origin: left center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  content: "";
  flex: 0 0 auto;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(3rem, 5.5vw, 5.25rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h2 em,
h1 em {
  color: var(--blue);
  font-weight: 400;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.81rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.button svg,
.mobile-contact-bar svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #082817;
  background: var(--green);
  box-shadow: 0 14px 34px rgba(105, 185, 46, 0.26);
}

.button-primary:hover {
  background: var(--green-hover);
  box-shadow: 0 18px 42px rgba(105, 185, 46, 0.34);
}

.button-dark {
  color: var(--white);
  background: var(--navy);
}

.button-dark:hover {
  background: var(--deep-navy);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(4, 29, 59, 0.32);
}

.button-ghost:hover {
  color: var(--deep-navy);
  border-color: var(--white);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
  transition: gap 0.2s ease, color 0.2s ease;
}

.text-link:hover {
  gap: 13px;
  color: var(--blue);
}

.light-link {
  color: var(--white);
}

.light-link:hover {
  color: var(--green-light);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1600;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(4, 29, 59, 0.94);
  box-shadow: 0 10px 34px rgba(4, 29, 59, 0.14);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transition: min-height 0.28s ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 74px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  overflow: visible;
  border: 0;
  background: transparent;
}

.brand-mark img {
  width: 62px;
  height: auto;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 400;
}

.brand-copy span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.7vw, 29px);
  margin-left: auto;
}

.desktop-nav a,
.header-phone {
  position: relative;
  padding-block: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 750;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--green-light);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.header-phone:hover {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.header-phone {
  font-weight: 800;
}

.header-cta {
  min-height: 44px;
  padding-inline: 17px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  align-content: space-between;
  padding: 122px max(24px, calc((100vw - var(--shell)) / 2)) 44px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(15, 142, 216, 0.24), transparent 36%),
    var(--deep-navy);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.3s var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-nav {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.mobile-menu-nav a {
  padding: 13px 0 15px;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: 1;
}

.mobile-menu-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.mobile-menu-contact span {
  width: 100%;
  color: var(--blue-light);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-menu-contact a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

/* Hero */
.hero {
  position: relative;
  display: block;
  min-height: max(780px, 100svh);
  overflow: clip;
  color: var(--white);
  background: var(--deep-navy);
}

.hero-stage {
  position: relative;
  display: flex;
  width: 100%;
  min-height: max(780px, 100svh);
  align-items: stretch;
  overflow: hidden;
  background: var(--deep-navy);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.035);
}

.hero-media img,
.service-scene-media img,
.why-visual img {
  filter: saturate(0.86) contrast(1.06) brightness(0.98);
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 18%, rgba(15, 142, 216, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(4, 29, 59, 0.98) 0%, rgba(4, 29, 59, 0.91) 40%, rgba(4, 29, 59, 0.35) 76%, rgba(4, 29, 59, 0.5) 100%),
    linear-gradient(0deg, rgba(4, 29, 59, 0.9) 0%, transparent 48%);
}

.hero-arc {
  position: absolute;
  z-index: 1;
  width: min(62vw, 820px);
  height: auto;
  fill: none;
  pointer-events: none;
}

.hero-arc path {
  stroke-width: 2;
}

.hero-arc-one {
  top: -24%;
  right: -16%;
  opacity: 0.45;
}

.hero-arc-one path {
  stroke: var(--green-light);
}

.hero-arc-two {
  top: -10%;
  right: -19%;
  opacity: 0.32;
}

.hero-arc-two path {
  stroke: var(--blue-light);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100%;
  align-items: center;
  padding-top: 152px;
  padding-bottom: 184px;
}

.hero-copy {
  max-width: 850px;
}

.hero-copy > * {
  animation: hero-enter 0.72s var(--ease) both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 0.06s;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 0.12s;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 0.18s;
}

.hero-eyebrow {
  color: #c6edff;
}

.hero h1 {
  max-width: 930px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.9rem, 7.1vw, 6.9rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.hero h1 em {
  color: var(--green);
}

.hero h1 > span,
.hero h1 > em {
  display: block;
}

.hero-lead {
  max-width: 720px;
  margin: 30px 0 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.5vw, 1.14rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button-wide {
  min-width: 288px;
}

.hero-proof {
  position: absolute;
  right: 0;
  bottom: 42px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(4, 29, 59, 0.2);
  backdrop-filter: blur(6px);
}

.hero-proof div {
  display: grid;
  min-height: 88px;
  align-content: center;
  gap: 4px;
  padding: 14px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-proof div:first-child {
  padding-left: 0;
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  font-size: 0.92rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
}

.hero-scroll {
  position: absolute;
  right: 28px;
  bottom: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateY(50%) rotate(90deg);
  transform-origin: right center;
}

.hero-scroll i {
  display: block;
  width: 54px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.hero-scroll i::after {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--green);
  content: "";
  animation: scroll-line 2.2s ease-in-out infinite;
  transform: translateX(-100%);
}

@keyframes scroll-line {
  50%, 100% { transform: translateX(100%); }
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-transition {
  position: absolute;
  right: -2%;
  bottom: -1px;
  left: -2%;
  z-index: 1;
  height: clamp(82px, 9vw, 132px);
  pointer-events: none;
}

.hero-transition svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-transition-fill {
  fill: var(--warm);
}

.hero-flow-path {
  fill: none;
  stroke: var(--green);
  stroke-width: 3;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  vector-effect: non-scaling-stroke;
}

@media (min-width: 1181px) {
  .has-scroll-motion.motion-desktop .hero {
    height: 125svh;
    min-height: 0;
    overflow: visible;
  }

  .has-scroll-motion.motion-desktop .hero-stage {
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 720px;
  }

}

@media (min-width: 1181px) and (max-height: 820px) {
  .hero h1 {
    font-size: clamp(3.65rem, 6vw, 4.75rem);
  }

  .hero-lead {
    max-width: 680px;
    margin: 22px 0 24px;
    font-size: 0.95rem;
    line-height: 1.55;
  }
}

/* Benefit intro */
.benefits {
  position: relative;
  padding: 102px 0 106px;
  background: var(--warm);
}

.benefits::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(96%, 1600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  content: "";
  transform: translateX(-50%);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(54px, 8vw, 118px);
  align-items: start;
}

.benefits-intro h2 {
  max-width: 560px;
}

.benefits-intro > p:last-child {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.benefit-lines {
  margin: 10px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.benefit-lines li {
  display: grid;
  grid-template-columns: minmax(145px, 0.62fr) 1fr;
  gap: 26px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
}

.benefit-lines strong {
  color: var(--navy);
  font-size: 0.98rem;
}

.benefit-lines span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Services */
.services {
  position: relative;
  padding: 128px 0 142px;
  overflow: hidden;
  background: linear-gradient(180deg, #eaf2ef 0%, #f8faf9 100%);
}

.services::before {
  position: absolute;
  top: 210px;
  left: -330px;
  width: 560px;
  height: 560px;
  border: 82px solid rgba(105, 185, 46, 0.07);
  border-radius: 50%;
  content: "";
}

.section-heading,
.process-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.6fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 56px;
}

.section-heading h2 {
  max-width: 830px;
}

.section-heading > p {
  max-width: 465px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.service-mosaic {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, 370px);
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-radius: var(--radius-large);
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.service-household {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
}

.service-office,
.service-stairs {
  grid-column: 8 / -1;
}

.service-office {
  grid-row: 1;
}

.service-stairs {
  grid-row: 2;
}

.service-media,
.service-media img,
.service-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-media img {
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.service-household .service-media img {
  object-position: center 42%;
}

.service-office .service-media img {
  object-position: center 55%;
}

.service-stairs .service-media img {
  object-position: center 56%;
}

.service-card:hover .service-media img,
.service-band:hover .service-band-media img {
  transform: scale(1.035);
}

.service-overlay {
  z-index: 1;
  background: linear-gradient(0deg, rgba(4, 29, 59, 0.97) 0%, rgba(4, 29, 59, 0.56) 46%, rgba(4, 29, 59, 0.05) 88%);
}

.service-copy {
  position: absolute;
  right: 38px;
  bottom: 37px;
  left: 38px;
  z-index: 2;
}

.service-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: #c2edff;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-label::before {
  width: 25px;
  height: 2px;
  border-radius: 10px;
  background: var(--green-light);
  content: "";
}

.service-copy h3,
.service-band-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.2vw, 4.1rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.compact-copy h3 {
  font-size: clamp(2rem, 3.1vw, 3rem);
}

.service-copy > p:not(.service-label),
.service-band-copy > p:not(.service-label) {
  max-width: 570px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.82rem;
  line-height: 1.7;
}

.service-copy ul,
.service-band-copy ul {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.service-copy li,
.service-band-copy li {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.58rem;
  font-weight: 700;
}

.service-copy .text-link,
.service-band-copy .text-link {
  margin-top: 1px;
}

.compact-copy {
  right: 28px;
  bottom: 24px;
  left: 28px;
}

.compact-copy > p:not(.service-label) {
  max-width: 470px;
  margin-top: 9px;
  font-size: 0.74rem;
}

.compact-copy ul {
  margin: 12px 0 10px;
}

.compact-copy .text-link {
  font-size: 0.7rem;
}

.service-bands {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.service-band {
  display: grid;
  min-height: 360px;
  grid-template-columns: minmax(190px, 0.8fr) 1.2fr;
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-band-dark {
  color: var(--white);
  background: var(--navy);
}

.service-band-media {
  min-height: 360px;
  overflow: hidden;
  background: var(--mist);
}

.service-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.service-band:first-child .service-band-media img {
  object-position: 52% 42%;
}

.service-band-dark .service-band-media img {
  object-position: 52% center;
}

.service-band-copy {
  display: flex;
  min-width: 0;
  justify-content: center;
  flex-direction: column;
  padding: 36px 34px;
}

.service-band-copy h3 {
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3rem);
}

.service-band-copy > p:not(.service-label) {
  color: var(--muted);
}

.service-band-copy li {
  color: var(--navy);
  border-color: var(--line);
  background: var(--mist);
}

.dark-label {
  color: var(--blue);
}

.service-band-dark .service-band-copy h3 {
  color: var(--white);
}

.service-band-dark .service-band-copy > p:not(.service-label) {
  color: rgba(255, 255, 255, 0.68);
}

.service-band-dark .service-band-copy li {
  color: rgba(255, 255, 255, 0.84);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
}

/* Scroll-linked service story */
.services {
  padding: 112px 0 118px;
  overflow: clip;
}

.services-story {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(54px, 7vw, 102px);
  align-items: start;
}

.services-intro-column {
  position: relative;
  min-width: 0;
  align-self: stretch;
}

.services-intro {
  position: sticky;
  top: 112px;
  max-width: 510px;
  padding-bottom: 40px;
}

.services-intro h2 {
  font-size: clamp(3.2rem, 4.8vw, 5.25rem);
}

.services-intro > p:not(.eyebrow) {
  max-width: 470px;
  margin: 27px 0 30px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.services-progress {
  display: none;
  gap: 10px;
  margin: 0 0 26px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.has-scroll-motion.motion-desktop .services-progress {
  display: grid;
}

.services-progress strong {
  color: var(--blue);
  font-size: 1.15rem;
}

.services-progress-rail {
  position: relative;
  display: block;
  width: min(280px, 100%);
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(8, 44, 89, 0.14);
}

.services-progress-rail i {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0.2);
  transform-origin: left center;
}

.services-scenes {
  display: grid;
  gap: clamp(34px, 5vw, 68px);
  min-width: 0;
  padding-bottom: 0;
}

.service-scene {
  position: relative;
  top: auto;
  z-index: 1;
  height: min(72svh, 720px);
  min-height: 560px;
  max-height: 720px;
  margin-bottom: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-large);
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 28px 72px rgba(4, 29, 59, 0.18);
  isolation: isolate;
  transition: opacity 0.32s ease, transform 0.42s var(--ease), box-shadow 0.32s ease;
}

.service-scene:last-child {
  margin-bottom: 0;
}

.service-scene-media,
.service-scene-media img,
.service-scene-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-scene-media {
  overflow: hidden;
}

.service-scene-media img {
  object-fit: cover;
  object-position: center;
}

.service-scene:nth-child(1) .service-scene-media img { object-position: center 43%; }
.service-scene:nth-child(2) .service-scene-media img { object-position: center 55%; }
.service-scene:nth-child(3) .service-scene-media img { object-position: center 56%; }
.service-scene:nth-child(4) .service-scene-media img { object-position: 52% 38%; }
.service-scene:nth-child(5) .service-scene-media img { object-position: center; }

.service-scene-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 29, 59, 0.93) 0%, rgba(4, 29, 59, 0.68) 48%, rgba(4, 29, 59, 0.1) 86%),
    linear-gradient(0deg, rgba(4, 29, 59, 0.8), transparent 52%);
}

.service-scene-copy {
  position: absolute;
  right: 42px;
  bottom: 42px;
  left: 42px;
  z-index: 2;
  max-width: 680px;
}

.service-scene-copy h3 {
  max-width: 650px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.75rem, 4.7vw, 4.65rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.service-scene-copy > p:not(.service-label) {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

.service-scene-copy ul {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0 18px;
  padding: 0;
  list-style: none;
}

.service-scene-copy li {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 700;
}

.has-scroll-motion.motion-desktop .service-scene {
  opacity: 0.68;
  transform: translateY(16px) scale(0.985);
}

.has-scroll-motion.motion-desktop .service-scene.is-active {
  opacity: 1;
  box-shadow: 0 34px 90px rgba(4, 29, 59, 0.25);
  transform: translateY(0) scale(1);
}

/* Private and commercial */
.audiences {
  padding: 106px 0 112px;
  background: var(--white);
}

.audience-heading {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.audience-heading > * {
  min-width: 0;
}

.audience-heading h2 {
  max-width: 820px;
}

.audience-split {
  position: relative;
  display: grid;
  min-height: 500px;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.audience-split article {
  display: flex;
  min-width: 0;
  justify-content: center;
  flex-direction: column;
  padding: clamp(42px, 6vw, 78px);
}

.audience-private {
  color: var(--navy);
  background: linear-gradient(135deg, #f5f7f0, #e9f5e3);
}

.audience-business {
  align-items: flex-start;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 16%, rgba(15, 142, 216, 0.25), transparent 40%),
    var(--deep-navy);
}

.audience-split article > p {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audience-business > p {
  color: var(--blue-light) !important;
}

.audience-split h3 {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: clamp(3rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.audience-business h3 {
  max-width: 100%;
  font-size: clamp(2.8rem, 3.6vw, 3.65rem);
  white-space: nowrap;
}

.audience-split ul {
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(8, 44, 89, 0.18);
  list-style: none;
}

.audience-business ul {
  border-color: var(--line-light);
}

.audience-split li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(8, 44, 89, 0.18);
  font-size: 0.94rem;
  font-weight: 700;
}

.audience-business li {
  border-color: var(--line-light);
}

.audience-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 60px);
  z-index: 2;
  width: 120px;
  height: 100%;
  fill: var(--deep-navy);
  pointer-events: none;
}

/* Why */
.why {
  position: relative;
  padding: 116px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--deep-navy);
}

.why::after {
  position: absolute;
  right: -55px;
  bottom: -60px;
  color: rgba(255, 255, 255, 0.022);
  content: "FLO";
  font-family: var(--display);
  font-size: min(25vw, 340px);
  line-height: 0.8;
  pointer-events: none;
}

.why-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(60px, 8vw, 110px);
  align-items: center;
}

.why-visual {
  position: sticky;
  top: 110px;
  height: min(730px, calc(100vh - 160px));
  min-height: 600px;
  overflow: hidden;
  border-radius: var(--radius-large) var(--radius-large) 140px var(--radius-large);
}

.why-visual picture,
.why-visual img {
  width: 100%;
  height: 100%;
}

.why-visual img {
  object-fit: cover;
  object-position: center 60%;
}

.why-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 29, 59, 0.78), transparent 48%);
  content: "";
}

.why-caption {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why .eyebrow {
  color: var(--blue-light);
}

.why h2 {
  max-width: 690px;
  color: var(--white);
}

.why h2 em {
  color: var(--green-light);
}

.why-lead {
  max-width: 610px;
  margin: 27px 0 34px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.85;
}

.quality-path {
  position: relative;
  padding-left: 65px;
}

.quality-path > svg {
  position: absolute;
  top: 9px;
  bottom: 7px;
  left: 0;
  width: 43px;
  height: calc(100% - 16px);
  fill: none;
}

.quality-path > svg path {
  stroke: rgba(105, 185, 46, 0.38);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.quality-path > .quality-line-progress {
  position: absolute;
  top: 9px;
  left: 20px;
  z-index: 1;
  display: none;
  width: 3px;
  height: 0;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(105, 185, 46, 0.22);
  pointer-events: none;
}

.has-scroll-motion.motion-desktop .quality-path > .quality-line-progress {
  display: block;
}

.quality-marker {
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 3;
  display: none;
  width: 15px;
  height: 15px;
  border: 3px solid var(--deep-navy);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(105, 185, 46, 0.12), 0 0 20px rgba(105, 185, 46, 0.28);
  pointer-events: none;
  transform: translateY(0);
}

.has-scroll-motion.motion-desktop .quality-marker {
  display: block;
}

.quality-path ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.quality-path li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 0.72fr) 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-light);
}

.quality-path li::before {
  position: absolute;
  top: 50%;
  left: -48px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--deep-navy);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(139, 212, 62, 0.12);
  content: "";
  opacity: 0.3;
  transform: translateY(-50%);
  transition: opacity 0.35s ease, transform 0.35s var(--ease);
}

.quality-path strong {
  font-size: 0.94rem;
}

.quality-path span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  line-height: 1.65;
}

.has-scroll-motion.motion-desktop .quality-path li {
  min-height: clamp(118px, 14vh, 150px);
  align-items: center;
  opacity: 0.35;
  transform: translateX(0);
  transition: opacity 0.42s ease, transform 0.42s var(--ease);
}

.has-scroll-motion.motion-desktop .quality-path li.is-active {
  opacity: 1;
  transform: translateX(6px);
}

.has-scroll-motion.motion-desktop .quality-path li.is-active::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.16);
}

/* Process */
.process {
  padding: 110px 0 116px;
  background: var(--white);
}

.process-heading {
  grid-template-columns: minmax(0, 1fr) auto;
}

.process-heading h2 {
  max-width: 860px;
}

.process-story {
  position: relative;
}

.process-connector {
  position: absolute;
  top: 15px;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100px;
  overflow: visible;
  pointer-events: none;
}

.process-connector path {
  fill: none;
  stroke: var(--green);
  stroke-width: 3;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  vector-effect: non-scaling-stroke;
}

.has-scroll-motion.motion-desktop .process-connector path {
  stroke-dashoffset: 1;
}

.process-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.process-track li {
  position: relative;
  display: grid;
  min-height: 285px;
  grid-template-columns: 56px 1fr;
  gap: 21px;
  align-content: start;
  padding: 40px 34px;
  border-right: 1px solid var(--line);
  transition: opacity 0.38s ease, transform 0.38s var(--ease);
}

.process-track li:last-child {
  border-right: 0;
}

.process-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  background: var(--paper);
  transition: color 0.32s ease, border-color 0.32s ease, background 0.32s ease, transform 0.32s var(--ease);
}

.process-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.process-track p {
  margin: 3px 0 28px;
  color: var(--blue);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.process-track h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.process-track div > span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.has-scroll-motion.motion-desktop .process-track li {
  opacity: 0.48;
}

.has-scroll-motion.motion-desktop .process-track li.is-active {
  opacity: 1;
  transform: translateY(-4px);
}

.has-scroll-motion.motion-desktop .process-track li.is-active .process-icon {
  color: var(--deep-navy);
  border-color: var(--green);
  background: var(--green);
  transform: scale(1.06);
}

/* Area */
.area {
  padding: 96px 0;
  background: #e9f4f2;
}

.area-card {
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(4, 29, 59, 0.1);
}

.area-card > * {
  min-width: 0;
}

.area-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(46px, 5.2vw, 72px);
}

.area-title {
  max-width: 580px;
  font-size: clamp(3.45rem, 4.8vw, 4.85rem);
  line-height: 0.92;
  overflow-wrap: normal;
  word-break: keep-all;
}

.area-title span,
.area-title em {
  display: block;
}

.area-title em {
  margin-block: 0.08em;
  padding-left: 0.55em;
  font-style: italic;
}

.area-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.area-copy .area-availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 17px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.015em;
}

.area-availability > span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(105, 185, 46, 0.12);
}

.area-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 17px;
  margin-top: 31px;
}

.area-phone {
  font-size: 0.74rem;
}

.area-photo {
  position: relative;
  min-height: 590px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}

.area-photo picture,
.area-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.area-photo picture {
  position: absolute;
  inset: 0;
}

.area-photo img {
  object-fit: cover;
  object-position: 51% center;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.area-photo::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(4, 29, 59, 0.78) 100%);
  content: "";
  pointer-events: none;
}

.area-card:hover .area-photo img {
  transform: scale(1.025);
}

.area-photo figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 3vw, 36px);
  bottom: clamp(20px, 3vw, 32px);
  left: clamp(20px, 3vw, 36px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(4, 29, 59, 0.42);
}

.area-photo figcaption strong {
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.4vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.82;
}

.area-photo figcaption span {
  max-width: 245px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.57rem;
  line-height: 1.5;
  text-align: right;
}

.area-photo figcaption a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 3px;
}

/* FAQ */
.faq {
  padding: 110px 0 118px;
  background: var(--warm);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(55px, 8vw, 112px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 410px;
  margin: 25px 0 24px;
  color: var(--muted);
  font-size: 0.96rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 20px 56px 20px 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
  transform: translateY(-50%);
  transition: transform 0.22s ease;
}

.faq-list summary span::after {
  top: 1px;
  right: 0;
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 690px;
  margin: -6px 0 0;
  padding: 0 58px 27px 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Contact */
.contact {
  position: relative;
  padding: 118px 0 100px;
  overflow: hidden;
  color: var(--white);
  background: var(--deep-navy);
}

.contact::before {
  position: absolute;
  top: -260px;
  right: -230px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
  filter: blur(180px);
  opacity: 0.1;
}

.contact-arc {
  position: absolute;
  right: -280px;
  bottom: -170px;
  width: 820px;
  height: auto;
  fill: none;
  opacity: 0.32;
}

.contact-arc path {
  stroke: var(--green-light);
  stroke-width: 2;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
  gap: clamp(56px, 8vw, 110px);
  align-items: start;
}

.contact .eyebrow {
  color: var(--blue-light);
}

.contact h2 {
  max-width: 650px;
  color: var(--white);
}

.contact h2 em {
  color: var(--green-light);
}

.contact-copy > p:not(.eyebrow):not(.contact-note) {
  max-width: 530px;
  margin: 27px 0 34px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1rem;
  line-height: 1.85;
}

.contact-options {
  border-top: 1px solid var(--line-light);
}

.contact-options > * {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
}

.contact-options span {
  color: var(--blue-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-options strong {
  font-size: 0.98rem;
  overflow-wrap: anywhere;
}

.contact-options a:hover strong {
  color: var(--green-light);
}

.contact-note {
  margin: 24px 0 0;
  color: var(--green-light);
  font-size: 0.82rem;
  font-weight: 800;
}

.request-form {
  padding: clamp(26px, 4vw, 45px);
  border-radius: var(--radius-large);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.26);
}

.form-heading p {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 0 0 30px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.form-status:empty {
  display: none;
}

.form-status {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
}

.form-status.is-error {
  border-left: 4px solid #b42318;
  color: #7a271a;
  background: #fef3f2;
}

.form-status.is-success {
  border-left: 4px solid #298016;
  color: #14532d;
  background: #effbea;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d4dfe3;
  border-radius: 13px;
  outline: 0;
  background: #f5f8f7;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input,
.field select {
  min-height: 52px;
  padding: 0 14px;
}

.field textarea {
  min-height: 118px;
  padding: 13px 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(15, 142, 216, 0.11);
}

.field [aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.09);
}

.field-error {
  min-height: 19px;
  padding-top: 4px;
  color: #b42318;
  font-size: 0.68rem;
  font-weight: 650;
}

.consent-field {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0 10px;
  align-items: start;
}

.consent-field input {
  width: 22px;
  min-height: 22px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--green);
}

.consent-field label {
  margin: 0;
  color: #52616a;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.consent-field label a,
.privacy-hint a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.consent-field .field-error {
  grid-column: 2;
}

.privacy-hint,
.noscript-note {
  margin: 13px 0 17px;
  color: #6c7881;
  font-size: 0.76rem;
  line-height: 1.6;
}

.button-submit {
  width: 100%;
  border: 0;
}

.button-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button-whatsapp {
  color: #082817;
  background: var(--green);
}

.button-whatsapp:hover {
  background: var(--green-hover);
  box-shadow: 0 15px 34px rgba(105, 185, 46, 0.28);
}

.popup-fallback {
  margin-top: 16px;
  padding: 15px;
  border: 1px solid #f6c75d;
  border-radius: 12px;
  background: #fff8e7;
  font-size: 0.78rem;
}

.popup-fallback p {
  margin: 0 0 5px;
  font-weight: 700;
}

.popup-fallback a,
.noscript-note a {
  color: #075c2e;
  font-weight: 800;
  text-decoration: underline;
}

.popup-fallback a {
  display: inline-block;
  margin: 4px 16px 0 0;
}

/* Footer */
.site-footer {
  color: var(--white);
  background: #03172f;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 65px;
  align-items: end;
  padding-top: 48px;
  padding-bottom: 38px;
}

.footer-brand img {
  width: 138px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.footer-contact {
  display: grid;
  gap: 4px;
  font-size: 0.88rem;
}

.footer-contact span {
  margin-bottom: 4px;
  color: var(--blue-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-contact a:hover,
.footer-nav a:hover {
  color: var(--green-light);
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-top: 20px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.58);
}

.footer-credit strong {
  color: var(--green-light);
  font-weight: 800;
}

.footer-credit:hover {
  color: var(--white);
}

.mobile-contact-bar {
  display: none;
}

/* Reveal motion. Content is visible unless JavaScript adds a pending state. */
.reveal {
  transition: opacity 0.75s ease, transform 0.75s var(--ease), clip-path 0.9s var(--ease);
}

.reveal-pending {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-left.reveal-pending {
  transform: translateX(-28px);
}

.reveal-right.reveal-pending {
  transform: translateX(28px);
}

.reveal-clip.reveal-pending {
  opacity: 1;
  clip-path: inset(0 0 14% 0 round var(--radius-large));
  transform: translateY(20px);
}

.reveal-pending.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0 round var(--radius-large));
  transform: none;
}

/* Legal templates and error page */
.legal-page,
.error-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background: var(--warm);
}

.legal-header {
  color: var(--white);
  background: var(--deep-navy);
}

.legal-header .header-inner {
  min-height: 82px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
  font-weight: 800;
}

.legal-back:hover {
  color: var(--green-light);
}

.legal-hero {
  padding: 155px 0 78px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(15, 142, 216, 0.22), transparent 34%),
    var(--deep-navy);
}

.legal-hero .eyebrow {
  color: var(--blue-light);
}

.legal-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.legal-hero p:last-child {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.legal-content {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 60px;
  padding-top: 80px;
  padding-bottom: 110px;
}

.legal-sidebar {
  position: sticky;
  top: 32px;
  align-self: start;
}

.legal-sidebar nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.legal-sidebar a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.legal-sidebar a:hover {
  color: var(--blue);
}

.legal-article {
  min-width: 0;
}

.legal-article section {
  padding: 0 0 42px;
  scroll-margin-top: 30px;
}

.legal-article h2 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1;
}

.legal-article h3 {
  margin: 28px 0 10px;
  color: var(--navy);
  font-size: 1rem;
}

.legal-article p,
.legal-article li,
.legal-article address {
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.82;
}

.legal-article a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-notice {
  margin-bottom: 44px;
  padding: 22px 24px;
  border-left: 4px solid #b67700;
  border-radius: 0 14px 14px 0;
  color: #5f4600;
  background: #fff5d8;
}

.legal-notice strong {
  display: block;
  margin-bottom: 5px;
}

.legal-notice p {
  margin: 0;
  color: inherit;
}

.placeholder {
  display: inline-block;
  padding: 2px 7px;
  border: 1px dashed #b67700;
  border-radius: 5px;
  color: #6e4b00;
  background: #fff8e7;
  font-weight: 700;
}

.legal-list {
  padding-left: 20px;
}

.legal-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.62);
  background: var(--deep-navy);
  font-size: 0.7rem;
}

.legal-footer .shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.legal-footer nav {
  display: flex;
  gap: 18px;
}

.error-main {
  display: grid;
  min-height: calc(100vh - 154px);
  flex: 1;
  place-items: center;
  padding: 120px 24px 60px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(15, 142, 216, 0.25), transparent 38%),
    var(--deep-navy);
}

.error-card {
  width: min(760px, 100%);
  text-align: center;
}

.error-code {
  margin: 0;
  color: var(--green-light);
  font-family: var(--display);
  font-size: clamp(6rem, 19vw, 12rem);
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.error-card h1 {
  margin: 34px 0 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.error-card > p:not(.error-code) {
  max-width: 580px;
  margin: 25px auto 30px;
  color: rgba(255, 255, 255, 0.66);
}

.success-mark {
  display: grid;
  width: 92px;
  height: 92px;
  margin: 0 auto;
  border: 2px solid rgba(139, 212, 62, 0.48);
  border-radius: 50%;
  place-items: center;
  color: var(--green-light);
  background: rgba(105, 185, 46, 0.1);
  font-family: var(--body);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

.success-card h1 {
  margin-top: 28px;
}

/* Responsive */
@media (max-width: 1180px) {
  :root {
    --header-height: 82px;
  }

  .reveal-left.reveal-pending,
  .reveal-right.reveal-pending {
    transform: translateY(18px);
  }

  .desktop-nav,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-scroll {
    display: none;
  }

  .area-copy {
    padding: 48px;
  }

  .area-title {
    font-size: clamp(3rem, 5.25vw, 4rem);
  }

  .services-story {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .services-intro {
    position: static;
    max-width: 860px;
    padding-bottom: 0;
  }

  .services-intro h2 {
    max-width: 820px;
  }

  .services-intro > p:not(.eyebrow) {
    max-width: 650px;
  }

  .services-scenes {
    display: grid;
    gap: 20px;
    padding-bottom: 0;
  }

  .service-scene,
  .has-scroll-motion .service-scene,
  .has-scroll-motion .service-scene.is-active {
    position: relative;
    top: auto;
    height: auto;
    min-height: 600px;
    max-height: none;
    margin-bottom: 0;
    opacity: 1;
    transform: none;
  }

  .service-scene-copy {
    max-width: 720px;
  }

  .quality-marker {
    display: none !important;
  }

  .service-mosaic {
    grid-template-rows: repeat(2, 390px);
  }

  .service-household {
    grid-column-end: span 6;
  }

  .service-office,
  .service-stairs {
    grid-column-start: 7;
  }

  .service-band {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .service-band-copy {
    padding: 30px 25px;
  }

  .contact-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 55px;
  }
}

@media (max-width: 980px) {
  .benefits-layout,
  .why-layout,
  .contact-layout,
  .legal-content {
    grid-template-columns: 1fr;
  }

  .benefits-layout,
  .contact-layout {
    gap: 48px;
  }

  .area-card {
    grid-template-columns: 1fr;
  }

  .area-copy {
    padding: clamp(44px, 8vw, 72px);
  }

  .area-title {
    max-width: 620px;
    font-size: clamp(3.6rem, 8vw, 5.2rem);
  }

  .area-photo {
    min-height: 470px;
  }

  .service-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 600px 390px;
  }

  .service-household {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .service-office,
  .service-stairs {
    grid-column: auto;
    grid-row: 2;
  }

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

  .service-band {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .audience-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .why-visual {
    position: relative;
    top: auto;
    width: min(760px, 100%);
    height: 640px;
    min-height: 0;
  }

  .process-track li {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding-inline: 22px;
  }

  .process-icon {
    width: 43px;
    height: 43px;
  }

  .faq-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 52px;
  }

  .contact-copy {
    max-width: 760px;
  }

  .request-form {
    max-width: 760px;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-sidebar nav {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
  }
}

@media (max-width: 760px) {
  :root {
    --radius-large: 28px;
    --header-height: 72px;
  }

  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .shell {
    width: min(var(--shell), calc(100% - 28px));
  }

  .header-inner {
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand-mark img {
    width: 50px;
  }

  .brand-copy strong {
    font-size: 1.02rem;
  }

  .brand-copy span {
    font-size: 0.43rem;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .mobile-menu {
    padding-top: 96px;
    padding-right: 18px;
    padding-bottom: calc(34px + env(safe-area-inset-bottom));
    padding-left: 18px;
  }

  .mobile-menu-nav a {
    padding-block: 11px 13px;
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  h2 {
    font-size: clamp(2.7rem, 13.2vw, 4rem);
  }

  .eyebrow {
    font-size: 0.62rem;
  }

  .hero {
    min-height: max(700px, 100svh);
  }

  .hero-stage {
    min-height: max(700px, 100svh);
  }

  .hero-media img {
    object-position: 64% center;
    transform: scale(1.01);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 29, 59, 0.96), rgba(4, 29, 59, 0.62)),
      linear-gradient(0deg, rgba(4, 29, 59, 0.95) 2%, rgba(4, 29, 59, 0.08) 68%);
  }

  .hero-arc {
    display: none;
  }

  .hero-layout {
    align-items: flex-start;
    padding-top: 118px;
    padding-bottom: 150px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(2.6rem, 12.8vw, 4.4rem);
    line-height: 0.94;
  }

  .hero-lead {
    margin: 20px 0 23px;
    font-size: 0.87rem;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
    max-width: 520px;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .button-wide {
    width: 100%;
    min-width: 0;
  }

  .hero-proof {
    bottom: calc(78px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr 1fr 1fr;
  }

  .hero-proof div {
    min-height: 83px;
    padding: 11px 10px;
  }

  .hero-proof div:first-child {
    padding-left: 10px;
  }

  .hero-proof strong {
    font-size: 0.66rem;
    line-height: 1.35;
  }

  .hero-proof span {
    display: none;
  }

  .benefits,
  .services,
  .audiences,
  .why,
  .process,
  .faq,
  .contact {
    padding: 86px 0 92px;
  }

  .benefits-layout {
    gap: 38px;
  }

  .benefits-intro > p:last-child {
    margin-top: 22px;
    font-size: 0.88rem;
  }

  .benefit-lines li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 17px 0;
  }

  .section-heading,
  .process-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 35px;
  }

  .section-heading > p {
    margin: 0;
  }

  .services-story {
    gap: 32px;
  }

  .services-intro h2 {
    font-size: clamp(2.7rem, 13.2vw, 4rem);
  }

  .services-intro > p:not(.eyebrow) {
    margin: 22px 0 0;
    font-size: 0.92rem;
  }

  .services-scenes {
    gap: 16px;
  }

  .service-scene,
  .has-scroll-motion .service-scene,
  .has-scroll-motion .service-scene.is-active {
    min-height: 520px;
    border-radius: var(--radius-large);
  }

  .service-scene:nth-child(2),
  .service-scene:nth-child(3),
  .service-scene:nth-child(5) {
    min-height: 470px;
  }

  .service-scene-copy {
    right: 22px;
    bottom: 24px;
    left: 22px;
  }

  .service-scene-copy h3 {
    font-size: clamp(2rem, 8.5vw, 2.85rem);
    line-height: 1;
  }

  .service-scene-copy > p:not(.service-label) {
    margin-top: 13px;
    font-size: 0.88rem;
  }

  .service-scene-copy ul {
    margin: 15px 0 14px;
  }

  .service-scene-copy li {
    padding: 6px 9px;
    font-size: 0.7rem;
  }

  .service-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .service-household,
  .service-office,
  .service-stairs {
    grid-column: 1;
    grid-row: auto;
    min-height: 520px;
  }

  .service-office,
  .service-stairs {
    min-height: 440px;
  }

  .service-household .service-media img {
    object-position: center 45%;
  }

  .service-copy,
  .compact-copy {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .service-copy h3,
  .compact-copy h3 {
    font-size: clamp(2rem, 8.5vw, 2.85rem);
    line-height: 1.02;
  }

  .service-copy > p:not(.service-label),
  .compact-copy > p:not(.service-label) {
    font-size: 0.78rem;
  }

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

  .service-band-media {
    min-height: 300px;
  }

  .service-band:first-child .service-band-media img {
    object-position: center 32%;
  }

  .service-band-copy {
    padding: 28px 23px 31px;
  }

  .audience-heading {
    margin-bottom: 33px;
  }

  .audience-split {
    grid-template-columns: 1fr;
  }

  .audience-split article {
    min-height: 390px;
    padding: 38px 28px;
  }

  .audience-business h3 {
    font-size: clamp(2.35rem, 10.5vw, 2.7rem);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .audience-divider {
    display: none;
  }

  .why-layout {
    gap: 48px;
  }

  .why-visual {
    height: 510px;
    border-bottom-right-radius: 90px;
  }

  .why-caption {
    right: 18px;
    bottom: 20px;
    left: 18px;
    font-size: 0.55rem;
  }

  .why-lead {
    margin-top: 22px;
  }

  .quality-path {
    padding-left: 42px;
  }

  .quality-path > svg {
    width: 28px;
  }

  .quality-path li {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 16px 0;
  }

  .quality-path li::before {
    top: 23px;
    left: -31px;
  }

  .process-heading .button {
    width: fit-content;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .process-connector {
    display: none;
  }

  .process-track li {
    min-height: 0;
    grid-template-columns: 52px 1fr;
    padding: 28px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-track li:last-child {
    border-bottom: 0;
  }

  .process-track p {
    margin-bottom: 16px;
  }

  .area {
    padding: 76px 0;
  }

  .area-card {
    grid-template-columns: 1fr;
  }

  .area-copy {
    padding: 38px 24px 42px;
  }

  .area-title {
    font-size: clamp(3rem, 12vw, 4rem);
  }

  .area-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .area-actions .button {
    width: 100%;
  }

  .area-photo {
    min-height: 360px;
  }

  .area-photo figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .area-photo figcaption span {
    max-width: 280px;
    text-align: left;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-intro {
    position: static;
  }

  .faq-list summary {
    min-height: 76px;
    padding-right: 45px;
    font-size: 0.9rem;
  }

  .faq-list details p {
    padding-right: 20px;
    font-size: 0.81rem;
  }

  .contact-layout {
    gap: 43px;
  }

  .contact-options > * {
    grid-template-columns: 105px 1fr;
  }

  .request-form {
    padding: 27px 18px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .button-submit {
    min-height: 58px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 40px;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 24px;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1700;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
    background: var(--deep-navy);
    box-shadow: 0 -10px 32px rgba(4, 29, 59, 0.18);
  }

  .mobile-contact-bar a {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 0.76rem;
    font-weight: 800;
  }

  .mobile-contact-bar a:last-child {
    color: #082817;
    background: var(--green);
  }

  .mobile-contact-bar svg {
    width: 20px;
    height: 20px;
  }

  .legal-header .brand-copy span {
    display: none;
  }

  .legal-back {
    font-size: 0.68rem;
  }

  .legal-hero {
    padding: 122px 0 62px;
  }

  .legal-content {
    gap: 44px;
    padding-top: 62px;
    padding-bottom: 82px;
  }

  .legal-sidebar nav {
    grid-template-columns: 1fr;
  }

  .legal-notice {
    padding: 18px;
  }

  .legal-footer {
    margin-bottom: calc(-78px - env(safe-area-inset-bottom));
    padding-bottom: calc(28px + 78px + env(safe-area-inset-bottom));
  }

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

@media (max-width: 390px) {
  .brand-copy span {
    display: none;
  }

  .hero-layout {
    padding-top: 104px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12.5vw, 3.1rem);
  }

  .hero-lead {
    font-size: 0.81rem;
  }

  .button {
    padding-inline: 17px;
    font-size: 0.76rem;
  }

  .hero-proof strong {
    font-size: 0.6rem;
  }

  .service-household {
    min-height: 500px;
  }

  .service-office,
  .service-stairs {
    min-height: 430px;
  }

  .service-copy ul,
  .service-band-copy ul {
    gap: 5px;
  }

  .service-copy li,
  .service-band-copy li {
    padding: 5px 8px;
  }

  .contact-options > * {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .footer-nav {
    gap: 13px;
  }
}

@media (max-width: 340px) {
  .area-title {
    font-size: 2.55rem;
  }

  .area-title em {
    padding-left: 0.3em;
  }

  .area-copy .area-availability {
    gap: 8px;
    font-size: 0.72rem;
  }

  .service-copy h3,
  .compact-copy h3,
  .service-scene-copy h3 {
    font-size: 1.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-media img,
  .service-media img,
  .service-band-media img,
  .service-scene-media img,
  .why-visual img {
    transform: none !important;
  }

  .hero {
    height: auto !important;
    min-height: max(780px, 100svh);
    overflow: clip;
  }

  .hero-stage {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    min-height: max(780px, 100svh);
  }

  .services-scenes {
    display: grid;
    gap: 20px;
    padding-bottom: 0;
  }

  .service-scene,
  .has-scroll-motion .service-scene,
  .has-scroll-motion .service-scene.is-active {
    position: relative;
    top: auto;
    height: auto;
    min-height: 610px;
    max-height: none;
    margin-bottom: 0;
    opacity: 1;
    clip-path: none !important;
    transform: none !important;
  }

  .quality-path li,
  .process-track li {
    opacity: 1 !important;
    transform: none !important;
  }

  .quality-marker {
    display: none !important;
  }

  .hero-flow-path,
  .process-connector path {
    stroke-dashoffset: 0 !important;
  }

  .reveal-pending,
  .reveal-pending.is-visible {
    opacity: 1;
    clip-path: none;
    transform: none;
  }

  .quality-path > svg path {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 760px) {
  .hero,
  .hero-stage {
    min-height: 700px;
  }

  .service-scene,
  .service-scene:nth-child(even) {
    min-height: 520px;
  }

  .service-scene:nth-child(2),
  .service-scene:nth-child(3),
  .service-scene:nth-child(5) {
    min-height: 470px;
  }
}

@media print {
  .site-header,
  .scroll-progress,
  .mobile-contact-bar,
  .legal-sidebar,
  .legal-footer {
    display: none !important;
  }

  body {
    padding: 0;
    color: #000;
    background: #fff;
  }

  .legal-hero {
    padding: 20px 0;
    color: #000;
    background: #fff;
  }

  .legal-hero p:last-child,
  .legal-hero .eyebrow {
    color: #000;
  }

  .legal-content {
    display: block;
    padding: 20px 0;
  }
}
