@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --orange: #f3702e;
  --navy: #4b607f;
  --navy-dark: #2b3a55;
  --sand: #e8d8c9;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-600: #475569;
  --slate-700: #334155;
  --white: #ffffff;
  --ink: #2b3a55;
  --shadow: 0 22px 50px rgba(43, 58, 85, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--slate-700);
  background: var(--sand);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

body.lightbox-open {
  overflow: hidden;
}

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

[hidden] {
  display: none !important;
}

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

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

select,
textarea {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 5vw, 72px);
  border-bottom: 2px solid var(--orange);
  color: var(--white);
  background: rgba(43, 58, 85, 0.96);
  transition: min-height 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  min-height: 74px;
  background: rgba(43, 58, 85, 0.98);
}

.brand {
  display: grid;
  width: 245px;
  height: 56px;
  place-items: center;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 700;
}

.site-nav a {
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

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

.site-nav .nav-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: var(--white);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.is-active {
  color: var(--navy-dark);
  background: var(--orange);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  color: var(--orange);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 700px;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(22px, 7vw, 110px) 80px;
  color: var(--white);
  text-align: left;
  background: var(--navy-dark);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 62% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(26, 42, 67, 0.94) 0%, rgba(43, 58, 85, 0.8) 43%, rgba(43, 58, 85, 0.22) 76%, rgba(43, 58, 85, 0.08) 100%),
    linear-gradient(0deg, rgba(43, 58, 85, 0.3), rgba(43, 58, 85, 0.06));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  margin: 0;
}

.hero-label {
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--orange);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(3rem, 6.4vw, 5.5rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: none;
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3.7rem, 6.5vw, 6rem);
}

.hero .hero-home-title {
  font-size: clamp(3.2rem, 5.5vw, 5.2rem);
  line-height: 1;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2.15rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: none;
}

h3 {
  color: var(--navy-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
}

.hero-subtitle {
  max-width: 570px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  font-weight: 500;
  line-height: 1.75;
  text-transform: none;
}

.hero-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 13px 22px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(17, 28, 48, 0.28);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero-cta:hover {
  transform: translateY(-3px);
  background: #ff7a36;
  box-shadow: 0 18px 38px rgba(17, 28, 48, 0.36);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(26, 42, 67, 0.58);
  box-shadow: none;
}

.hero-cta-secondary:hover {
  border-color: var(--white);
  background: rgba(26, 42, 67, 0.86);
}

.hero-response {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-line {
  width: min(620px, 76vw);
  height: 2px;
  margin: 18px auto 28px;
  background: var(--orange);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.pill,
.mini-cta,
.price-note {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pill-primary,
.mini-cta {
  color: var(--white);
  background: var(--orange);
}

.pill-ghost,
.price-note {
  color: var(--orange);
  border: 1px solid var(--orange);
  background: rgba(43, 58, 85, 0.48);
}

.service-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  color: var(--white);
  background: var(--orange);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: none;
}

.service-bar span {
  padding: 22px 14px;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 82px 0;
}

.about {
  background: var(--white);
  padding-right: 20px;
  padding-left: 20px;
}

.about.section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 18px;
  padding-right: 18px;
}

.about .section-heading.center {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.about .section-heading.center p,
.about-copy p {
  max-width: 100%;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  color: var(--navy-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-kicker span {
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background: var(--orange);
  box-shadow: 5px -5px 0 var(--sand);
}

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

.section-heading.center {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading p {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.04rem;
}

.section-heading p,
.about-copy p,
.steps p,
.contact p {
  color: var(--slate-600);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.photo-frame {
  position: relative;
  margin: 4px 14px 14px 4px;
  border: 8px solid var(--orange);
  background: var(--orange);
  box-shadow: 12px 12px 0 var(--navy);
}

.photo-frame img {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy h3 {
  text-transform: none;
}

.about-copy p {
  max-width: 65ch;
}

.about-benefits {
  display: grid;
  gap: 11px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.about-benefits li {
  position: relative;
  padding-left: 30px;
  color: var(--navy-dark);
  font-weight: 800;
}

.about-benefits li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  transform: rotate(-45deg);
}

.services-block {
  background: var(--navy-dark);
  border-top: 2px solid var(--orange);
}

.section-dark h2,
.section-dark p {
  color: var(--white);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.service-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 30px 26px;
  border-radius: 12px;
  text-align: center;
}

.service-card.accent {
  color: var(--navy-dark);
  background: var(--orange);
}

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

.service-card.paint-card {
  color: var(--navy-dark);
  background: var(--sand);
}

.service-card.dark-card h3,
.service-card.dark-card p {
  color: var(--white);
}

.service-card h3 {
  color: inherit;
  min-height: 2.25em;
  margin-bottom: 18px;
}

.service-card p {
  color: inherit;
  font-size: 0.93rem;
  line-height: 1.65;
  min-height: 6.6em;
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.service-card li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 10px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.price-note {
  width: max-content;
  max-width: 100%;
  margin: 42px auto 0;
}

.home-results-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(243, 112, 46, 0.11), transparent 24%),
    var(--slate-50);
}

.home-results-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.home-results-heading > div {
  max-width: 700px;
}

.home-results-heading .section-kicker {
  margin-bottom: 20px;
}

.home-results-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(2.7rem, 5vw, 4.3rem);
}

.home-results-heading p {
  margin: 0;
  color: var(--slate-600);
}

.home-results-heading > .mini-cta {
  flex: 0 0 auto;
}

.home-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.home-result-card {
  display: block;
  align-self: start;
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(75, 96, 127, 0.15);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(43, 58, 85, 0.11);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.home-result-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 50px rgba(43, 58, 85, 0.2);
}

.home-result-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-result-card:hover img {
  transform: scale(1.025);
}

.home-results-mobile-link {
  display: none;
}

.professional-section {
  background: var(--white);
}

.professional-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.professional-intro h2 {
  max-width: 560px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 4.2vw, 3.7rem);
}

.professional-intro p {
  max-width: 62ch;
  color: var(--slate-600);
}

.professional-warning {
  padding: 17px 20px;
  border-left: 4px solid var(--orange);
  background: var(--slate-50);
  color: var(--navy-dark) !important;
  font-weight: 700;
}

.customer-problems {
  padding: clamp(26px, 4vw, 40px);
  border-radius: 16px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(243, 112, 46, 0.22), transparent 32%),
    var(--navy-dark);
  box-shadow: var(--shadow);
}

.customer-problems h3 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-transform: none;
}

.customer-problems ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.customer-problems li {
  position: relative;
  padding: 14px 14px 14px 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.customer-problems li::before {
  content: "!";
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 5px;
  color: var(--white);
  background: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
}

.professional-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.professional-benefits article {
  padding: 24px 22px;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: var(--slate-50);
}

.professional-benefits article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 10px;
  color: var(--white);
  background: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
}

.professional-benefits strong {
  display: block;
  min-height: 3.1em;
  margin-bottom: 8px;
  color: var(--navy-dark);
  line-height: 1.45;
}

.professional-benefits p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.88rem;
  line-height: 1.6;
}

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

.included-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 7vw, 84px);
  align-items: center;
}

.included-heading h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
}

.included-heading p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.75);
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: included;
}

.included-list li {
  position: relative;
  min-height: 128px;
  padding: 22px 20px 20px 66px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  counter-increment: included;
}

.included-list li::before {
  content: counter(included, decimal-leading-zero);
  position: absolute;
  top: 22px;
  left: 20px;
  color: var(--orange);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.included-list strong,
.included-list span {
  display: block;
}

.included-list strong {
  margin-bottom: 6px;
  color: var(--white);
  line-height: 1.4;
}

.included-list span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.55;
}

.process {
  background: var(--sand);
}

.callback-section {
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 110, 42, 0.16), transparent 30%),
    linear-gradient(135deg, var(--white), var(--slate-50));
}

.callback-section-compact {
  border-top: 1px solid rgba(75, 96, 127, 0.12);
}

.callback-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.callback-copy .hero-label {
  color: var(--orange);
}

.callback-copy h2 {
  color: var(--navy-dark);
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
}

.callback-copy p:not(.hero-label) {
  max-width: 56ch;
  color: var(--slate-600);
  font-size: 1.02rem;
}

.callback-copy .callback-trust {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 4px solid var(--orange);
  background: var(--white);
  color: var(--navy-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.callback-copy .callback-response {
  margin-top: 14px;
  color: var(--orange);
  font-size: 0.84rem;
  font-weight: 800;
}

.callback-form {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(75, 96, 127, 0.14);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.callback-form::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 110, 42, 0.12);
}

.callback-form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.callback-form label {
  display: grid;
  gap: 7px;
  color: var(--navy-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.callback-form input,
.callback-form select {
  min-height: 46px;
  border: 1px solid var(--slate-300);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--slate-700);
  background: var(--slate-50);
  font: inherit;
}

.callback-consent {
  position: relative;
  z-index: 1;
}

.consent-field a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.callback-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}

.callback-actions .submit-status.is-success {
  color: #1f7a3f;
}

.callback-mini-note .mini-cta {
  margin-top: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  text-align: center;
}

.steps article {
  padding: 0 20px;
}

.steps article::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 44%, var(--navy-dark) 45% 55%, transparent 56%),
    radial-gradient(circle at center, var(--orange) 0 34%, transparent 35%);
}

.steps strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.1;
}

.preparation-section {
  padding: 30px 0;
  background: var(--white);
}

.preparation-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  background: var(--slate-50);
  box-shadow: 0 18px 46px rgba(43, 58, 85, 0.1);
}

.preparation-card .section-kicker {
  margin-bottom: 16px;
}

.preparation-card h2 {
  margin-bottom: 10px;
}

.preparation-card p {
  max-width: 850px;
  margin: 0;
  color: var(--slate-600);
}

.preparation-number {
  display: grid;
  width: clamp(66px, 9vw, 94px);
  height: clamp(66px, 9vw, 94px);
  place-items: center;
  border-radius: 24px;
  color: var(--white);
  background: var(--orange);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  box-shadow: 10px 10px 0 var(--sand);
}

.faq-section {
  border-top: 1px solid rgba(75, 96, 127, 0.14);
  background: var(--slate-50);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 7vw, 86px);
  align-items: start;
}

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

.faq-intro > p {
  max-width: 44ch;
  color: var(--slate-600);
}

.faq-area {
  margin-top: 30px;
  padding: 22px;
  border-left: 4px solid var(--orange);
  background: var(--sand);
}

.faq-area strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-dark);
  font-size: 0.92rem;
}

.faq-area p {
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: 0.88rem;
  line-height: 1.65;
}

.faq-list {
  border-top: 1px solid rgba(75, 96, 127, 0.2);
}

.faq-item {
  border-bottom: 1px solid rgba(75, 96, 127, 0.2);
}

.faq-item h3 {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.faq-item button {
  display: grid;
  width: 100%;
  min-height: 72px;
  grid-template-columns: minmax(0, 1fr) 26px;
  gap: 18px;
  align-items: center;
  border: 0;
  padding: 18px 4px;
  color: var(--navy-dark);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-item button:hover {
  color: var(--orange);
}

.faq-item button span {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(75, 96, 127, 0.35);
  border-radius: 50%;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open button {
  color: var(--orange);
}

.faq-item.is-open button span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer p {
  max-width: 68ch;
  margin: 0;
  padding: 0 48px 24px 4px;
  color: var(--slate-600);
  font-size: 0.93rem;
  line-height: 1.75;
}

.faq-answer-content {
  max-width: 72ch;
  padding: 0 48px 26px 4px;
  color: var(--slate-600);
  font-size: 0.93rem;
  line-height: 1.75;
}

.faq-answer-content p {
  max-width: none;
  padding: 0;
}

.faq-answer-content p + p {
  margin-top: 14px;
}

.faq-answer-content strong {
  color: var(--navy-dark);
}

.faq-answer-content ul {
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.faq-answer-content li {
  position: relative;
  padding-left: 22px;
}

.faq-answer-content li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--orange);
}

.why,
.area {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-dark);
}

.why-bg,
.why-overlay,
.area-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.why-bg {
  object-fit: cover;
}

.why-overlay,
.area-overlay {
  background: rgba(43, 58, 85, 0.82);
}

.why-content,
.area-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.why-logo {
  width: 210px;
  margin: 0 auto 34px;
  border-radius: 8px;
}

.why h2,
.area h2 {
  color: var(--white);
}

.why h2 {
  color: var(--orange);
}

.why p,
.area p {
  max-width: 740px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.contact-strip-wrap {
  padding: 18px;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-option {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(75, 96, 127, 0.18);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 38px);
  background: var(--slate-50);
}

.contact-option-featured {
  color: var(--white);
  background: var(--navy-dark);
}

.contact-option h2 {
  margin-top: 34px;
}

.contact-option-featured h2 {
  color: var(--white);
}

.contact-option p {
  max-width: 52ch;
  color: var(--slate-600);
}

.contact-option-featured p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-option-number {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(75, 96, 127, 0.2);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}

.contact-option-featured .contact-option-number {
  color: rgba(255, 255, 255, 0.14);
}

.contact-option-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border: 1px solid var(--orange);
  border-radius: 6px;
  padding: 10px 17px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.contact-option-link:hover {
  color: var(--white);
  background: var(--orange);
  transform: translateY(-2px);
}

.contact-option-featured .contact-option-link {
  color: var(--white);
  background: var(--orange);
}

.contact-form {
  display: grid;
  max-width: 620px;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--navy-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input {
  height: 42px;
  border: 1px solid var(--slate-300);
  padding: 8px 12px;
  color: var(--slate-700);
  background: var(--slate-50);
}

.contact-form button {
  width: max-content;
  min-height: 34px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  padding: 7px 18px;
  color: var(--orange);
  background: transparent;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.area {
  background-image:
    linear-gradient(rgba(43, 58, 85, 0.86), rgba(43, 58, 85, 0.9)),
    url("assets/hero-pressure-washing.webp");
  background-position: center;
  background-size: cover;
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
}

.places {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin-top: 34px;
}

.places span {
  position: relative;
  padding-left: 22px;
  font-weight: 700;
  text-transform: none;
}

.places span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 13px;
  height: 13px;
  border-radius: 50% 50% 50% 0;
  background: var(--orange);
  transform: rotate(-45deg);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(2, minmax(180px, 0.7fr));
  gap: 46px;
  padding: 56px clamp(24px, 7vw, 86px);
  color: var(--white);
  background: var(--navy-dark);
}

.site-footer img {
  width: 220px;
  margin-bottom: 18px;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.site-footer p,
.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

.site-footer strong {
  margin-bottom: 12px;
  color: var(--orange);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-company-data {
  display: grid;
  gap: 3px;
  margin-top: 18px;
  font-size: 0.76rem;
  line-height: 1.5;
}

.footer-company-data span:first-child {
  color: var(--white);
  font-weight: 700;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  padding: 150px 18px 72px;
  color: var(--white);
  text-align: center;
  background: var(--navy-dark);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(43, 58, 85, 0.78), rgba(43, 58, 85, 0.86)),
    url("assets/hero-pressure-washing.webp") center / cover;
}

.page-hero > div {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  font-weight: 500;
}

.error-page {
  min-height: 100vh;
}

.error-page .hero-cta-group {
  justify-content: center;
  margin-top: 28px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.info-panel {
  padding: 30px;
  border: 1px solid rgba(75, 96, 127, 0.18);
  border-radius: 12px;
  background: rgba(232, 216, 201, 0.42);
}

.info-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.info-panel p,
.quote-box p {
  max-width: 62ch;
}

.quote-box {
  padding: 34px;
  border-radius: 14px;
  color: var(--white);
  background: var(--navy-dark);
}

.quote-box h2 {
  color: var(--orange);
}

.quote-box p {
  color: rgba(255, 255, 255, 0.86);
}

.privacy-hero {
  min-height: 440px;
}

.privacy-section {
  background: var(--slate-50);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(38px, 7vw, 86px);
  align-items: start;
}

.privacy-summary {
  position: sticky;
  top: 110px;
  display: grid;
  padding: 28px;
  border-left: 5px solid var(--orange);
  border-radius: 12px;
  background: var(--navy-dark);
  box-shadow: var(--shadow);
}

.privacy-summary .section-kicker {
  margin-bottom: 24px;
  color: var(--white);
}

.privacy-summary > strong {
  margin-bottom: 8px;
  color: var(--orange);
}

.privacy-summary p,
.privacy-summary span,
.privacy-summary a,
.privacy-summary small {
  color: rgba(255, 255, 255, 0.82);
}

.privacy-summary p {
  margin: 0 0 8px;
  font-weight: 700;
}

.privacy-summary a:first-of-type {
  margin-top: 16px;
}

.privacy-summary a:hover {
  color: var(--orange);
}

.privacy-summary small {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
  line-height: 1.55;
}

.privacy-content {
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: clamp(26px, 5vw, 54px);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(43, 58, 85, 0.1);
}

.privacy-content section + section {
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid var(--slate-200);
}

.privacy-content h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-transform: none;
}

.privacy-content p,
.privacy-content li {
  color: var(--slate-600);
}

.privacy-content ul {
  display: grid;
  gap: 9px;
  padding-left: 22px;
}

.privacy-content a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-updated {
  margin: 0 0 34px;
  color: var(--orange) !important;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-hero {
  grid-template-columns: 1fr;
  min-height: 610px;
  place-items: center start;
  padding-right: max(18px, calc((100% - 1120px) / 2));
  padding-left: max(18px, calc((100% - 1120px) / 2));
  text-align: left;
}

.portfolio-hero::before {
  background:
    linear-gradient(90deg, rgba(25, 40, 65, 0.96), rgba(43, 58, 85, 0.7)),
    url("assets/hero-pressure-washing.webp") center / cover;
}

.portfolio-hero > div {
  width: auto;
  max-width: 720px;
}

.portfolio-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(3.6rem, 7.5vw, 6.7rem);
  line-height: 0.92;
}

.portfolio-hero p:not(.hero-label) {
  max-width: 650px;
}

.portfolio-hero .hero-cta-group {
  justify-content: flex-start;
  margin-top: 30px;
}

.portfolio-section {
  background:
    radial-gradient(circle at 5% 8%, rgba(243, 112, 46, 0.1), transparent 20%),
    var(--slate-50);
}

.portfolio-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 42px;
}

.portfolio-heading > div:first-child {
  max-width: 690px;
}

.portfolio-heading .section-kicker {
  margin-bottom: 20px;
}

.portfolio-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(2.6rem, 5vw, 4.3rem);
}

.portfolio-heading p {
  margin: 0;
  color: var(--slate-600);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.gallery-filters button {
  min-height: 42px;
  border: 1px solid var(--slate-300);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--navy-dark);
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.gallery-filters button:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
}

.gallery-filters button.is-active {
  border-color: var(--orange);
  color: var(--white);
  background: var(--orange);
}

.realizations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.realization-card {
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(75, 96, 127, 0.15);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(43, 58, 85, 0.09);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.realization-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(43, 58, 85, 0.17);
}

.realization-card[hidden] {
  display: none;
}

.realization-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 6 / 5;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(43, 58, 85, 0.94), rgba(75, 96, 127, 0.88));
  cursor: zoom-in;
}

.realization-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.realization-card:hover .realization-media img {
  transform: scale(1.035);
}

.image-missing {
  display: none;
}

.realization-media.is-missing {
  cursor: default;
}

.realization-media.is-missing img {
  display: none;
}

.realization-media.is-missing .image-missing {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.portfolio-note {
  display: flex;
  max-width: 760px;
  align-items: center;
  gap: 14px;
  margin: 36px auto 0;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--sand);
}

.portfolio-note > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-dark);
  font-weight: 800;
}

.portfolio-note p {
  margin: 0;
  color: var(--navy-dark);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.55;
}

.portfolio-cta-section {
  border-top: 2px solid var(--orange);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 20%, rgba(243, 112, 46, 0.24), transparent 28%),
    var(--navy-dark);
}

.portfolio-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.portfolio-cta > div:first-child {
  max-width: 700px;
}

.portfolio-cta h2 {
  color: var(--white);
  font-size: clamp(2.7rem, 5vw, 4.4rem);
}

.portfolio-cta p:not(.hero-label) {
  color: rgba(255, 255, 255, 0.75);
}

.portfolio-cta .hero-cta-group {
  min-width: max-content;
  flex-direction: column;
}

.gallery-lightbox {
  width: min(1000px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100vh - 32px);
  overflow: visible;
  border: 0;
  border-radius: 18px;
  padding: 0;
  background: transparent;
}

.gallery-lightbox::backdrop {
  background: rgba(15, 25, 48, 0.92);
  backdrop-filter: blur(8px);
}

.gallery-lightbox figure {
  overflow: hidden;
  margin: 0;
  border-radius: 16px;
  background: var(--navy-dark);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.gallery-lightbox img {
  width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  background: var(--navy-dark);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  border: 0;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  cursor: pointer;
}

.lightbox-close {
  top: -16px;
  right: -16px;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
}

.lightbox-nav {
  top: 50%;
  width: 50px;
  height: 50px;
  font-size: 2.2rem;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.services-overview {
  position: relative;
  width: 100%;
  padding-right: max(18px, calc((100% - 1120px) / 2));
  padding-left: max(18px, calc((100% - 1120px) / 2));
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 110, 42, 0.14), transparent 26%),
    linear-gradient(180deg, var(--sand), rgba(232, 216, 201, 0.62));
}

.services-overview .hero-label {
  color: var(--orange);
}

.services-overview .section-heading {
  margin-bottom: 42px;
}

.services-overview .section-heading h2 {
  color: var(--navy-dark);
}

.services-overview-grid {
  gap: 22px;
}

.service-overview-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  padding: 34px 34px 32px;
  border: 1px solid rgba(75, 96, 127, 0.13);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.36)),
    var(--sand);
  box-shadow: 0 18px 40px rgba(43, 58, 85, 0.08);
}

.service-overview-card::after,
.service-overview-cta::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(255, 110, 42, 0.12);
  transition: transform 220ms ease;
}

.service-overview-card:hover::after,
.service-overview-cta:hover::after {
  transform: scale(1.22);
}

.service-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 12px;
  color: var(--white);
  background: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-overview-card h2,
.service-overview-card p,
.service-overview-card ul,
.service-overview-cta h2,
.service-overview-cta p,
.service-overview-cta .hero-cta {
  position: relative;
  z-index: 1;
}

.service-overview-card h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 2.65rem);
}

.service-overview-card p {
  color: var(--slate-700);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.72;
}

.service-overview-card ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-overview-card li {
  position: relative;
  padding-left: 30px;
  color: var(--navy-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.service-overview-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  transform: rotate(-45deg);
}

.service-overview-cta {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(43, 58, 85, 0.98), rgba(23, 36, 60, 0.98)),
    url("assets/hero-pressure-washing.webp") center / cover;
  box-shadow: 0 20px 46px rgba(43, 58, 85, 0.16);
}

.service-overview-cta .service-number {
  color: var(--navy-dark);
  background: var(--sand);
}

.service-overview-cta h2 {
  color: var(--orange);
  font-size: clamp(2.1rem, 3.2vw, 2.8rem);
}

.service-overview-cta p {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  line-height: 1.72;
}

.service-guide-link {
  background: var(--white);
}

.service-guide-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 46px;
  padding-bottom: 46px;
  border-top: 1px solid rgba(75, 96, 127, 0.13);
}

.service-guide-card h2 {
  max-width: 620px;
  margin-bottom: 12px;
  color: var(--navy-dark);
}

.service-guide-card p:not(.hero-label) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--slate-600);
}

.service-guide-card .hero-label {
  margin-bottom: 10px;
  color: var(--orange);
}

.service-guide-card .hero-cta {
  flex: 0 0 auto;
}

.service-expert-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 110, 42, 0.12), transparent 34%),
    linear-gradient(180deg, var(--slate-50), var(--white));
  border-top: 1px solid rgba(75, 96, 127, 0.12);
}

.service-expert-section .section-heading h2 {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}

.expert-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.expert-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(75, 96, 127, 0.16);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(43, 58, 85, 0.08);
}

.expert-card::after {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -56px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 110, 42, 0.1);
}

.expert-card-featured {
  grid-row: span 2;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 36, 60, 0.96), rgba(16, 28, 50, 0.98)),
    url("assets/hero-pressure-washing.webp") center / cover;
}

.expert-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.expert-card-top span {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
}

.expert-card h3 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(1.85rem, 3vw, 2.45rem);
}

.expert-card-featured h3,
.expert-card-featured p {
  color: var(--white);
}

.expert-card p,
.expert-card ul,
.expert-card .problem-list,
.expert-card .impregnation-options,
.expert-card .mini-cta {
  position: relative;
  z-index: 1;
}

.expert-card p {
  color: var(--slate-600);
  font-size: 1rem;
  line-height: 1.78;
}

.expert-card-featured h3 {
  color: var(--white);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);
}

.expert-card-featured p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.03rem;
  font-weight: 600;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.problem-list div,
.impregnation-options div {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.problem-list div {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.problem-list strong,
.problem-list span,
.impregnation-options strong,
.impregnation-options span {
  display: block;
}

.problem-list strong {
  margin-bottom: 8px;
  color: var(--orange);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.problem-list span {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.55;
}

.expert-points {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.expert-points li {
  position: relative;
  padding-left: 28px;
  color: var(--slate-700);
  font-weight: 700;
}

.expert-points li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  transform: rotate(-45deg);
}

.impregnation-options {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.impregnation-options div {
  border: 1px solid rgba(75, 96, 127, 0.14);
  background: var(--sand);
}

.impregnation-options strong {
  margin-bottom: 6px;
  color: var(--navy-dark);
  font-weight: 900;
}

.impregnation-options span {
  color: var(--slate-600);
  line-height: 1.55;
}

.price-section {
  width: 100%;
  padding-right: max(18px, calc((100% - 1120px) / 2));
  padding-left: max(18px, calc((100% - 1120px) / 2));
  background: var(--slate-50);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.price-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 0;
  padding: 28px;
  border: 1px solid rgba(75, 96, 127, 0.18);
  border-radius: 14px;
  background: var(--sand);
  box-shadow: 0 18px 36px rgba(43, 58, 85, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.price-card.featured {
  color: var(--white);
  background: var(--orange);
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.price-card h2 {
  min-height: 2.2em;
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 2.4vw, 2.15rem);
}

.price-card.featured h2,
.price-card.featured p,
.price-card.featured li {
  color: var(--navy-dark);
}

.price-card-top strong {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.price-card-top {
  min-height: 132px;
}

.price-card p {
  min-height: 5.75em;
  margin: 0;
  color: var(--slate-700);
  font-weight: 600;
  line-height: 1.65;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 25px;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}

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

.price-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
}

.price-info-panel {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.price-details .section-kicker {
  color: rgba(255, 255, 255, 0.84);
}

.price-details .section-kicker span {
  box-shadow: 5px -5px 0 rgba(232, 216, 201, 0.18);
}

.price-info-panel.dark {
  color: var(--navy-dark);
  background: var(--sand);
}

.price-info-panel h2 {
  color: inherit;
}

.price-info-panel p {
  color: inherit;
}

.price-info-panel.dark .hero-cta {
  margin-top: 20px;
}

.price-cta-band {
  background: var(--navy);
}

.price-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  background: transparent;
}

.price-cta h2 {
  color: var(--white);
}

.price-cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
}

.estimate-section {
  background: var(--slate-50);
}

.estimate-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.estimate-aside {
  position: sticky;
  top: 110px;
}

.estimate-aside h2 {
  margin-bottom: 28px;
}

.estimate-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: estimate;
}

.estimate-steps li {
  position: relative;
  padding: 0 0 28px 50px;
  counter-increment: estimate;
}

.estimate-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;
  bottom: 4px;
  left: 16px;
  width: 1px;
  background: rgba(75, 96, 127, 0.22);
}

.estimate-steps li::before {
  content: counter(estimate);
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
}

.estimate-steps strong,
.estimate-steps span {
  display: block;
}

.estimate-steps strong {
  margin-bottom: 3px;
  color: var(--navy-dark);
  font-size: 0.94rem;
}

.estimate-steps span {
  color: var(--slate-600);
  font-size: 0.84rem;
  line-height: 1.55;
}

.estimate-note {
  margin-top: 12px;
  padding: 20px;
  border-left: 4px solid var(--orange);
  background: var(--sand);
}

.estimate-note strong {
  color: var(--navy-dark);
}

.estimate-note p {
  margin: 7px 0 0;
  color: var(--slate-600);
  font-size: 0.84rem;
  line-height: 1.6;
}

.estimate-form-panel {
  min-width: 0;
}

.estimate-form {
  display: grid;
  gap: 24px;
}

.bot-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.estimate-form fieldset {
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(75, 96, 127, 0.16);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(43, 58, 85, 0.06);
}

.estimate-form legend {
  padding: 0 10px;
  color: var(--navy-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.65rem;
  font-weight: 600;
}

.field-hint {
  margin: -4px 0 18px;
  color: var(--slate-600);
  font-size: 0.86rem;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-tile {
  position: relative;
  cursor: pointer;
}

.choice-tile input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-tile span {
  display: flex;
  min-height: 54px;
  align-items: center;
  border: 1px solid var(--slate-300);
  border-radius: 6px;
  padding: 11px 14px 11px 44px;
  color: var(--navy-dark);
  background: var(--slate-50);
  font-size: 0.88rem;
  font-weight: 700;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.choice-tile span::before {
  content: "";
  position: absolute;
  left: 16px;
  width: 17px;
  height: 17px;
  border: 2px solid var(--slate-400);
  border-radius: 4px;
  background: var(--white);
}

.choice-tile input:checked + span {
  border-color: var(--orange);
  background: rgba(243, 112, 46, 0.09);
  box-shadow: inset 0 0 0 1px var(--orange);
}

.choice-tile input:checked + span::before {
  border-color: var(--orange);
  background:
    linear-gradient(135deg, transparent 43%, var(--white) 44% 54%, transparent 55%) 1px 0 / 12px 12px no-repeat,
    var(--orange);
}

.choice-tile input:focus-visible + span {
  outline: 3px solid rgba(243, 112, 46, 0.22);
  outline-offset: 2px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.estimate-form label:not(.choice-tile):not(.file-drop):not(.consent-field) {
  display: grid;
  gap: 7px;
  color: var(--navy-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.form-span {
  grid-column: 1 / -1;
}

.estimate-form input:not([type="checkbox"]):not([type="file"]),
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  border: 1px solid var(--slate-300);
  border-radius: 5px;
  padding: 11px 12px;
  color: var(--slate-700);
  background: var(--slate-50);
  font-weight: 500;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.estimate-form input:not([type="checkbox"]):not([type="file"]) {
  min-height: 46px;
}

.estimate-form textarea {
  min-height: 132px;
  resize: vertical;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(243, 112, 46, 0.14);
}

.estimate-form input:user-invalid,
.estimate-form select:user-invalid,
.estimate-form textarea:user-invalid {
  border-color: #b42318;
}

.input-with-unit {
  position: relative;
}

.input-with-unit input {
  padding-right: 50px !important;
}

.input-with-unit span {
  position: absolute;
  top: 50%;
  right: 13px;
  color: var(--slate-600);
  transform: translateY(-50%);
  font-size: 0.85rem;
  font-weight: 700;
}

.file-drop {
  display: grid;
  min-height: 150px;
  place-items: center;
  align-content: center;
  gap: 5px;
  margin-top: 18px;
  border: 1px dashed var(--slate-400);
  border-radius: 7px;
  padding: 20px;
  color: var(--navy-dark);
  background: var(--slate-50);
  text-align: center;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.file-drop:hover {
  border-color: var(--orange);
  background: rgba(243, 112, 46, 0.06);
}

.file-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.file-drop-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-size: 1.4rem;
  font-weight: 500;
}

.file-drop strong {
  font-size: 0.92rem;
}

.file-drop small {
  color: var(--slate-600);
  font-size: 0.76rem;
}

.file-list {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.file-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 4px;
  padding: 8px 10px;
  color: var(--navy-dark);
  background: var(--slate-100);
  font-size: 0.78rem;
}

.file-list span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-list small {
  flex: 0 0 auto;
  color: var(--slate-600);
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: var(--slate-600);
  font-size: 0.8rem;
  cursor: pointer;
}

.consent-field input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 4px;
  accent-color: var(--orange);
}

.field-error {
  min-height: 1.3em;
  margin: 9px 0 0;
  color: #b42318;
  font-size: 0.78rem;
  font-weight: 700;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.form-actions p {
  max-width: 390px;
  margin: 0;
  color: var(--slate-600);
  font-size: 0.76rem;
  text-align: right;
}

.estimate-submit {
  min-height: 50px;
  border: 0;
  border-radius: 6px;
  padding: 12px 22px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(243, 112, 46, 0.2);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.estimate-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(243, 112, 46, 0.28);
}

.estimate-submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.estimate-summary {
  border: 1px solid rgba(75, 96, 127, 0.17);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.summary-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--slate-200);
}

.summary-heading .hero-label {
  margin-bottom: 7px;
  color: var(--orange);
}

.summary-heading h2 {
  margin-bottom: 0;
}

.summary-heading button {
  flex: 0 0 auto;
  border: 1px solid var(--navy);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--navy-dark);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.estimate-summary dl {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1fr);
  margin: 22px 0;
}

.estimate-summary dt,
.estimate-summary dd {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--slate-200);
}

.estimate-summary dt {
  color: var(--slate-600);
  font-size: 0.8rem;
}

.estimate-summary dd {
  color: var(--navy-dark);
  font-size: 0.87rem;
  font-weight: 700;
}

.summary-notice {
  padding: 16px;
  border-left: 4px solid var(--orange);
  color: var(--slate-600);
  background: var(--sand);
  font-size: 0.8rem;
}

.summary-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}

.submit-status {
  margin: 0;
  color: #b42318;
  font-size: 0.82rem;
  font-weight: 700;
}

.estimate-success {
  border: 1px solid rgba(75, 96, 127, 0.17);
  border-radius: 8px;
  padding: clamp(32px, 5vw, 54px);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.estimate-success .success-mark {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-size: 1.9rem;
  font-weight: 800;
}

.estimate-success .hero-label {
  color: var(--orange);
}

.estimate-success h2 {
  margin-bottom: 10px;
}

.estimate-success > p:not(.hero-label) {
  max-width: 560px;
  margin: 0 auto 24px;
  color: var(--slate-600);
}

@media (max-width: 900px) {
  .site-header {
    min-height: 84px;
  }

  .brand {
    width: 188px;
    height: 46px;
    padding: 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 2px);
    left: 18px;
    right: 18px;
    display: grid;
    padding: 18px;
    border: 1px solid var(--orange);
    border-radius: 12px;
    background: var(--navy-dark);
  }

  .site-header.nav-enhanced .site-nav {
    display: none;
  }

  .site-header.nav-enhanced .site-nav.is-open {
    display: grid;
  }

  .portfolio-hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 132px;
    padding-bottom: 64px;
  }

  .portfolio-heading,
  .portfolio-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-results-heading {
    align-items: flex-start;
  }

  .gallery-filters {
    justify-content: flex-start;
  }

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

  .portfolio-cta .hero-cta-group {
    min-width: 0;
    flex-direction: row;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .hero {
    min-height: 660px;
    padding: 126px 28px 70px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(26, 42, 67, 0.94), rgba(43, 58, 85, 0.68)),
      linear-gradient(0deg, rgba(43, 58, 85, 0.34), rgba(43, 58, 85, 0.12));
  }

  .service-bar,
  .about-grid,
  .steps,
  .faq-layout,
  .estimate-layout,
  .contact-grid,
  .contact-options,
  .price-grid,
  .price-details-grid,
  .content-grid,
  .expert-grid,
  .professional-intro,
  .included-layout,
  .privacy-layout,
  .callback-layout,
  .callback-form-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .expert-card-featured {
    grid-row: auto;
  }

  .service-guide-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-card {
    min-height: auto;
  }

  .price-card-top,
  .price-card h2,
  .price-card p {
    min-height: 0;
  }

  .price-card {
    gap: 20px;
  }

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

  .price-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .professional-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .professional-benefits strong {
    min-height: 0;
  }

  .estimate-aside {
    position: static;
  }

  .privacy-summary {
    position: static;
  }

  .estimate-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .estimate-steps li {
    padding-bottom: 0;
  }

  .estimate-steps li::after {
    display: none;
  }
}

@media (max-width: 620px) {
  .page-hero {
    min-height: 430px;
    padding: 126px 20px 54px;
  }

  .page-hero > div {
    min-width: 0;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: 2.55rem;
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .page-hero p {
    max-width: 100%;
    font-size: 0.94rem;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }

  .portfolio-hero {
    min-height: 680px;
    padding-top: 124px;
    text-align: left;
  }

  .portfolio-hero h1 {
    font-size: 3.8rem;
    overflow-wrap: normal;
  }

  .portfolio-hero .hero-cta-group,
  .portfolio-cta .hero-cta-group {
    width: 100%;
    flex-direction: column;
  }

  .portfolio-heading {
    margin-bottom: 30px;
  }

  .gallery-filters {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-filters button:first-child {
    grid-column: 1 / -1;
  }

  .realizations-grid {
    grid-template-columns: 1fr;
  }

  .home-results-heading > .mini-cta {
    display: none;
  }

  .home-results-grid {
    grid-template-columns: 1fr;
  }

  .home-results-mobile-link {
    display: flex;
    width: max-content;
    max-width: 100%;
    margin: 28px auto 0;
  }

  .portfolio-note {
    align-items: flex-start;
  }

  .gallery-lightbox {
    width: calc(100% - 20px);
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 620px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero h1 {
    font-size: 3.25rem;
    line-height: 0.98;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-cta {
    width: 100%;
  }

  .hero-actions .pill {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .photo-frame {
    box-shadow: 8px 8px 0 var(--navy);
  }

  .service-card {
    min-height: auto;
  }

  .service-card h3,
  .service-card p {
    min-height: 0;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .customer-problems ul,
  .professional-benefits,
  .included-list {
    grid-template-columns: 1fr;
  }

  .included-list li {
    min-height: 0;
  }

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

  .price-card {
    padding: 24px;
  }

  .expert-card {
    padding: 24px;
  }

  .expert-card-top {
    gap: 14px;
  }

  .problem-list {
    grid-template-columns: 1fr;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-cta .hero-cta {
    width: 100%;
  }

  .contact-strip-wrap {
    border-radius: 22px;
  }

  .callback-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .callback-actions .estimate-submit {
    width: 100%;
  }
}

/* Motion system inspired by the reference recording. */
body {
  opacity: 1;
  transition: opacity 260ms ease;
}

body.page-ready {
  opacity: 1;
}

body.page-leaving {
  opacity: 0;
}

.site-header {
  transform: translateY(0);
  transition:
    min-height 180ms ease,
    background 180ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-ready .site-header {
  transform: translateY(0);
}

.brand {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 25, 48, 0.24);
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

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

.hero-image {
  transform: translateY(var(--parallax-y, 0)) scale(1.02);
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-ready .hero-image {
  transform: translateY(var(--parallax-y, 0)) scale(1.02);
}

.hero-content > * {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-ready .hero-content > * {
  opacity: 1;
  transform: translateY(0);
}

body.page-ready .hero-content > :nth-child(1) {
  transition-delay: 260ms;
}

body.page-ready .hero-content > :nth-child(2) {
  transition-delay: 390ms;
}

body.page-ready .hero-content > :nth-child(3) {
  transition-delay: 510ms;
}

body.page-ready .hero-content > :nth-child(4) {
  transition-delay: 620ms;
}

body.page-ready .hero-content > :nth-child(5) {
  transition-delay: 730ms;
}

.pill,
.mini-cta,
.price-note {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.pill:hover,
.mini-cta:hover,
.price-note:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(43, 58, 85, 0.25);
}

.service-bar {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
}

.service-bar-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.service-bar-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: -7px;
  left: -7px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.service-bar-text {
  padding: 20px 14px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 260ms ease, transform 260ms ease;
}

.service-bar-text.is-changing {
  opacity: 0;
  transform: translateY(-12px);
}

.service-card {
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 40px rgba(19, 31, 57, 0.25);
}

.photo-frame {
  overflow: hidden;
}

.photo-frame img {
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.photo-frame:hover img {
  transform: scale(1.045);
}

.info-panel {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.info-panel:hover,
.price-info-panel:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 720ms ease var(--reveal-delay, 0ms),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.floating-contact {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 7px 8px 7px 18px;
  border: 2px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 34px rgba(43, 58, 85, 0.3);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: contact-pulse 2.8s ease-in-out infinite;
}

.floating-contact b {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: var(--white);
  font-size: 1.35rem;
  line-height: 1;
}

@keyframes contact-pulse {
  0%,
  100% {
    box-shadow: 0 14px 34px rgba(43, 58, 85, 0.3);
  }
  50% {
    box-shadow: 0 14px 34px rgba(43, 58, 85, 0.3), 0 0 0 8px rgba(243, 112, 46, 0.15);
  }
}

@media (max-width: 620px) {
  .floating-contact {
    right: 14px;
    bottom: 14px;
    width: 48px;
    padding: 6px;
  }

  .floating-contact span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .hero-content > *,
  .site-header {
    opacity: 1;
    transform: none;
  }
}

.floating-contact {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-contact.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 620px) {
  .hero-content {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .hero-subtitle {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-cta {
    width: 100%;
    max-width: 100%;
  }

  .faq-intro {
    position: static;
  }

  .faq-item button {
    min-height: 64px;
    padding: 15px 0;
  }

  .faq-answer p {
    padding-right: 4px;
  }

  .faq-answer-content {
    padding-right: 4px;
  }

  .estimate-steps,
  .service-options,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .estimate-aside h2 {
    max-width: 100%;
    font-size: 2.2rem;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .estimate-form fieldset {
    padding: 20px 16px;
  }

  .estimate-form legend {
    max-width: calc(100vw - 68px);
    font-size: 1.45rem;
    white-space: normal;
  }

  .form-span {
    grid-column: auto;
  }

  .form-actions,
  .summary-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions p {
    text-align: left;
  }

  .estimate-submit,
  .summary-heading button {
    width: 100%;
  }

  .estimate-summary dl {
    grid-template-columns: 1fr;
  }

  .estimate-summary dt {
    border-bottom: 0;
    padding-bottom: 2px;
  }

  .estimate-summary dd {
    padding-top: 2px;
  }
}

/* Final mobile sizing pass: keep every page inside narrow phone viewports. */
@media (max-width: 620px) {
  .page-hero::before {
    background:
      linear-gradient(rgba(43, 58, 85, 0.78), rgba(43, 58, 85, 0.86)),
      url("assets/hero-pressure-washing-mobile.webp") center / cover;
  }

  .area {
    background-image:
      linear-gradient(rgba(43, 58, 85, 0.86), rgba(43, 58, 85, 0.9)),
      url("assets/hero-pressure-washing-mobile.webp");
  }

  .site-header {
    min-height: 78px;
    gap: 12px;
    padding: 9px 16px;
  }

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

  .brand {
    width: 176px;
    height: 44px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 44px;
  }

  .site-nav {
    top: calc(100% + 2px);
    right: 12px;
    left: 12px;
    max-height: calc(100vh - 96px);
    gap: 4px;
    overflow-y: auto;
    padding: 12px;
  }

  .site-nav a {
    width: 100%;
    padding: 10px 8px;
    white-space: normal;
  }

  .site-nav .nav-cta {
    margin-top: 5px;
  }

  .page-hero {
    min-height: 0;
    padding: 120px 16px 52px;
  }

  .page-hero > div {
    width: 100%;
    max-width: 100%;
  }

  .page-hero .hero-label {
    margin-bottom: 14px;
    font-size: 0.76rem;
  }

  .page-hero h1 {
    width: 100%;
    margin-bottom: 18px;
    font-size: 2.45rem;
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .page-hero p {
    width: 100%;
    margin-bottom: 24px;
    font-size: 0.92rem;
    line-height: 1.6;
    overflow-wrap: break-word;
  }

  .section {
    width: calc(100% - 32px);
    padding: 58px 0;
  }

  .price-section {
    width: 100%;
    margin: 0;
    padding-right: 16px;
    padding-left: 16px;
  }

  .section-kicker {
    gap: 10px;
    margin-bottom: 26px;
    line-height: 1.45;
  }

  .section-heading.center {
    width: 100%;
    margin-bottom: 34px;
  }

  .section-heading h2 {
    max-width: 100%;
    font-size: 2.25rem;
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .section-heading p {
    max-width: 100%;
    font-size: 0.94rem;
    line-height: 1.65;
    overflow-wrap: break-word;
  }

  .price-grid,
  .price-details-grid {
    width: 100%;
    min-width: 0;
    gap: 16px;
  }

  .price-card {
    width: 100%;
    min-width: 0;
    gap: 18px;
    padding: 24px 22px;
  }

  .price-card h2 {
    max-width: 100%;
    font-size: 2rem;
    overflow-wrap: break-word;
  }

  .price-card-top strong {
    max-width: 100%;
    min-height: 40px;
    padding: 7px 12px;
    white-space: normal;
  }

  .price-card p,
  .price-card li {
    overflow-wrap: break-word;
  }

  .price-info-panel {
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 28px 22px;
  }

  .price-info-panel h2,
  .price-cta h2 {
    max-width: 100%;
    font-size: 2.35rem;
    overflow-wrap: break-word;
  }

  .price-info-panel p,
  .price-cta p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .price-cta {
    width: calc(100% - 32px);
    gap: 22px;
  }

  .price-cta > div {
    width: 100%;
    min-width: 0;
  }
}
