:root {
  --ink: #102f45;
  --muted: #5f6970;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --navy: #073552;
  --navy-dark: #041f33;
  --orange: #ef6b25;
  --orange-dark: #c95118;
  --mist: #edf2f4;
  --line: rgba(7, 53, 82, 0.14);
  --shadow: 0 22px 70px rgba(4, 31, 51, 0.16);
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(239, 107, 37, 0.08), transparent 32%),
    linear-gradient(315deg, rgba(7, 53, 82, 0.08), transparent 38%);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(239, 107, 37, 0.42);
  outline-offset: 3px;
}

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

section[id] {
  scroll-margin-top: calc(var(--header-height) + 34px);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: clamp(12px, 3vw, 34px);
  right: clamp(12px, 3vw, 34px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 10px clamp(14px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  background: rgba(4, 31, 51, 0.18);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.scrolled,
.site-header.nav-open {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.97);
  border-color: rgba(7, 53, 82, 0.12);
  box-shadow: 0 10px 30px rgba(4, 31, 51, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
}

.brand-logo {
  width: 88px;
  height: 50px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  padding: 4px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  max-width: 230px;
  font-size: 0.92rem;
  line-height: 1.2;
}

.brand small {
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.76;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.7vw, 22px);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

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

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a,
.header-call {
  opacity: 0.88;
}

.site-nav a:hover,
.header-call:hover {
  opacity: 1;
}

.header-call {
  justify-self: end;
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 34px);
}

.hero-media,
.feature-image {
  background-image: image-set(
    url("assets/optimized/hero-painting-room.webp") type("image/webp"),
    url("assets/hero-painting-room.png") type("image/png")
  );
  background-position: center;
  background-size: cover;
}

.hero-media {
  position: absolute;
  inset: 0;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 31, 51, 0.9), rgba(4, 31, 51, 0.58) 45%, rgba(4, 31, 51, 0.16)),
    linear-gradient(0deg, rgba(4, 31, 51, 0.62), rgba(4, 31, 51, 0.04) 48%);
}

.hero-accent {
  position: absolute;
  right: -10vw;
  bottom: -18vh;
  width: 54vw;
  height: 42vh;
  transform: rotate(-8deg);
  background: linear-gradient(135deg, rgba(239, 107, 37, 0.9), rgba(239, 107, 37, 0.1));
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  opacity: 0.72;
}

.hero-content {
  position: relative;
  width: min(850px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 88px) clamp(46px, 9vh, 92px);
  color: #fff;
  animation: riseIn 700ms ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.feature-content h2,
.about-copy h2,
.quote-copy h2 {
  margin: 0;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 6.2vw, 6rem);
  text-wrap: balance;
  text-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.89);
  font-size: clamp(1.02rem, 1.55vw, 1.25rem);
}

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

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(4, 31, 51, 0.14);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(4, 31, 51, 0.2);
}

.button.primary {
  color: #fff;
  background: var(--orange);
}

.button.primary:hover {
  background: var(--orange-dark);
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary {
  color: var(--navy);
  border-color: rgba(7, 53, 82, 0.18);
  background: #fff;
}

.button.secondary:hover {
  border-color: var(--navy);
}

.button.ghost-dark {
  color: var(--navy);
  border-color: rgba(7, 53, 82, 0.24);
  background: rgba(255, 255, 255, 0.68);
}

.full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin: 54px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-stats div {
  padding: 16px;
  background: rgba(0, 0, 0, 0.16);
}

.hero-stats dt {
  font-weight: 800;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
  transform: translateY(-1px);
}

.trust-strip span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 14px 18px;
  background: #fff;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  transition: color 180ms ease, background 180ms ease;
}

.trust-strip span:hover {
  color: #fff;
  background: var(--navy);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 126px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.85fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: end;
}

.section h2,
.feature-content h2,
.about-copy h2,
.quote-copy h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.intro > p,
.feature-content p,
.about-copy p,
.quote-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.about-copy p + p {
  margin-top: 18px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-heading h2 {
  text-wrap: balance;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(7, 53, 82, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(239, 107, 37, 0.44);
  box-shadow: 0 28px 70px rgba(7, 53, 82, 0.14);
}

.service-card::before {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--orange);
}

.service-number {
  color: var(--orange);
  font-weight: 800;
}

.service-card h3,
.timeline h3,
.compliance-panel h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.service-card p,
.timeline p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-link {
  width: fit-content;
  margin-top: 22px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.service-link::after {
  content: " >";
  color: var(--orange);
}

.service-link:hover {
  color: var(--orange);
}

.service-areas {
  padding-top: clamp(32px, 6vw, 82px);
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.area-summary {
  position: sticky;
  top: calc(var(--header-height) + 38px);
  display: grid;
  gap: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(239, 107, 37, 0.08), transparent 40%),
    #fff;
  box-shadow: 0 18px 50px rgba(7, 53, 82, 0.08);
}

.area-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.area-summary .button {
  width: fit-content;
}

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

.area-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(7, 53, 82, 0.06);
}

.area-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.area-card h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin: 14px 0 0;
  border-radius: 999px;
  background: var(--orange);
}

.area-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.52fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(70px, 10vw, 126px) clamp(18px, 6vw, 88px);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(239, 107, 37, 0.2), transparent 34%),
    var(--navy);
  color: #fff;
}

.about-band::after {
  content: "D&R";
  position: absolute;
  right: -0.08em;
  bottom: -0.32em;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(8rem, 24vw, 22rem);
  font-weight: 800;
  line-height: 1;
}

.about-band > * {
  position: relative;
  z-index: 1;
}

.about-copy {
  max-width: 820px;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.compliance-panel {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.compliance-panel .check-list {
  margin-top: 24px;
}

.compliance-panel .check-list li {
  color: #fff;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  min-height: 640px;
  background: #fff;
}

.feature-image {
  min-height: 420px;
  background-position: 62% 50%;
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
}

.feature-content {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(40px, 7vw, 92px);
  background:
    linear-gradient(135deg, rgba(239, 107, 37, 0.1), transparent 36%),
    var(--mist);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
}

.gallery {
  padding-bottom: clamp(56px, 8vw, 96px);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 30px;
}

.filter-button {
  min-height: 42px;
  border: 1px solid rgba(7, 53, 82, 0.16);
  border-radius: 8px;
  padding: 9px 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(7, 53, 82, 0.06);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button.active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-1px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.gallery-grid figure {
  position: relative;
  min-height: 255px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 53, 82, 0.1);
}

.gallery-grid figure.hidden {
  display: none;
}

.gallery-grid .featured {
  grid-row: span 2;
}

.gallery-button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 255px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 350ms ease, filter 350ms ease;
}

.gallery-grid figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  background: rgba(4, 31, 51, 0.68);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.gallery-button::after {
  content: "View project";
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-button:hover img {
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.05);
}

.gallery-button:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline article {
  border-top: 2px solid var(--navy);
  padding-top: 20px;
  transition: transform 180ms ease;
}

.timeline article:hover {
  transform: translateY(-5px);
}

.timeline span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-weight: 800;
}

.testimonials {
  padding-top: clamp(42px, 7vw, 92px);
}

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

.testimonial-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(7, 53, 82, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(239, 107, 37, 0.08), transparent 38%),
    #fff;
  box-shadow: 0 18px 55px rgba(7, 53, 82, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 107, 37, 0.34);
  box-shadow: 0 28px 70px rgba(7, 53, 82, 0.14);
}

.stars {
  color: var(--orange);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.stars::before {
  content: "\2605\2605\2605\2605\2605";
}

.testimonial-card blockquote {
  margin: 26px 0;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  font-weight: 700;
  line-height: 1.55;
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.faq {
  padding-top: clamp(42px, 7vw, 92px);
}

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

.faq details {
  border: 1px solid rgba(7, 53, 82, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(7, 53, 82, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq details[open] {
  border-color: rgba(239, 107, 37, 0.34);
  box-shadow: 0 24px 64px rgba(7, 53, 82, 0.12);
}

.faq summary {
  position: relative;
  min-height: 74px;
  display: grid;
  align-items: center;
  padding: 20px 58px 20px 22px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.3;
  cursor: pointer;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-size: 1.1rem;
  line-height: 1;
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "-";
  background: var(--orange);
}

.faq p {
  margin: -4px 22px 22px;
  color: var(--muted);
  font-size: 0.96rem;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  padding: clamp(72px, 10vw, 130px) clamp(18px, 6vw, 88px);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(239, 107, 37, 0.18), transparent 34%),
    var(--navy-dark);
  color: #fff;
}

.quote-copy {
  max-width: 720px;
}

.quote-copy p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
}

.quote-copy a {
  color: #fff;
  font-weight: 800;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.quote-trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
}

.quote-trust-list div {
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.quote-trust-list dt {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-trust-list dd {
  margin: 8px 0 0;
  color: #fff;
  font-weight: 800;
  line-height: 1.28;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(-14px);
}

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

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

.bot-field {
  display: none;
}

label {
  display: grid;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 800;
}

.file-field span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 12px;
  color: var(--ink);
  background: #fbfaf6;
  font: inherit;
  font-weight: 500;
}

input[type="file"] {
  min-height: 48px;
  padding: 10px;
  cursor: pointer;
}

input[type="file"]::file-selector-button {
  margin-right: 12px;
  border: 0;
  border-radius: 8px;
  padding: 9px 12px;
  color: #fff;
  background: var(--navy);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(239, 107, 37, 0.22);
  border-color: var(--orange);
}

.form-note {
  min-height: 1.4em;
  margin: 0;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-help {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(42px, 6vw, 72px) clamp(18px, 6vw, 88px);
  background: #071724;
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px clamp(18px, 5vw, 64px) 36px;
  background: rgba(4, 31, 51, 0.88);
  backdrop-filter: blur(18px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox[aria-hidden="true"] {
  visibility: hidden;
}

.lightbox img {
  max-height: 78vh;
  width: min(1100px, calc(100% - 140px));
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.lightbox p {
  position: absolute;
  left: clamp(18px, 5vw, 64px);
  bottom: 28px;
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: clamp(18px, 5vw, 64px);
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 9px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  font: inherit;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.lightbox-arrow:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: var(--orange);
  transform: translateY(-50%) scale(1.04);
}

.lightbox-prev {
  left: clamp(14px, 4vw, 54px);
}

.lightbox-next {
  right: clamp(14px, 4vw, 54px);
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.02);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-brand {
  max-width: 620px;
}

.footer-brand strong {
  display: block;
  font-size: 1.05rem;
}

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

.footer-contact-grid a,
.footer-contact-grid span {
  min-height: 42px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.86rem;
  font-weight: 800;
}

.site-footer .privacy-note {
  max-width: 520px;
  margin-top: 10px;
  font-size: 0.82rem;
}

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

.footer-links div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
}

.sitemap-section {
  background: var(--paper);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sitemap-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(7, 53, 82, 0.06);
}

.sitemap-grid h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.12rem;
}

.sitemap-grid a {
  color: var(--ink);
  font-weight: 800;
}

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

.desktop-sticky-cta {
  position: fixed;
  z-index: 30;
  right: clamp(18px, 3vw, 34px);
  bottom: 24px;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(7, 53, 82, 0.12);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 18px 48px rgba(4, 31, 51, 0.18);
  backdrop-filter: blur(16px);
}

.desktop-sticky-cta a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.desktop-sticky-cta a:hover {
  transform: translateY(-1px);
}

.sticky-quote {
  color: #fff;
  background: var(--orange);
}

.sticky-quote:hover {
  background: var(--orange-dark);
}

.sticky-call {
  border: 1px solid rgba(7, 53, 82, 0.18);
  color: var(--navy);
  background: #fff;
}

.sticky-call:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.thank-you-page {
  min-height: 100svh;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(4, 31, 51, 0.88), rgba(4, 31, 51, 0.38)),
    image-set(
      url("assets/optimized/hero-painting-room.webp") type("image/webp"),
      url("assets/hero-painting-room.png") type("image/png")
    );
  background-position: center;
  background-size: cover;
}

.thank-you-page::before {
  display: none;
}

.thank-you-shell {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(24px, 5vw, 72px);
}

.thank-you-panel {
  width: min(840px, 100%);
  display: grid;
  gap: 30px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.96);
  box-shadow: 0 30px 90px rgba(4, 31, 51, 0.28);
  backdrop-filter: blur(18px);
}

.thank-you-brand {
  color: var(--ink);
}

.thank-you-panel h1 {
  max-width: 780px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 6vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.thank-you-panel p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.thank-you-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.thank-you-details div {
  min-height: 104px;
  padding: 18px;
  background: #fff;
}

.thank-you-details dt {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.thank-you-details dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.service-page .site-header {
  color: #fff;
}

.service-page .site-header.scrolled,
.service-page .site-header.nav-open {
  color: var(--ink);
}

.service-hero {
  position: relative;
  min-height: 74svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 44px) clamp(18px, 6vw, 88px) clamp(56px, 9vh, 96px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 31, 51, 0.92), rgba(4, 31, 51, 0.5) 58%, rgba(4, 31, 51, 0.22)),
    image-set(
      url("assets/optimized/hero-painting-room.webp") type("image/webp"),
      url("assets/hero-painting-room.png") type("image/png")
    );
  background-position: center;
  background-size: cover;
}

.policy-hero {
  min-height: 58svh;
}

.service-hero-content {
  width: min(920px, 100%);
  display: grid;
  gap: 24px;
}

.service-hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.service-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

.service-hero-actions,
.service-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.44fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.service-copy {
  display: grid;
  gap: 20px;
}

.service-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.service-aside {
  position: sticky;
  top: calc(var(--header-height) + 38px);
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(239, 107, 37, 0.08), transparent 38%),
    #fff;
  box-shadow: 0 18px 50px rgba(7, 53, 82, 0.08);
}

.service-aside h2,
.service-card-grid h2,
.service-process h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.1;
}

.service-aside .check-list {
  margin-top: 22px;
}

.service-card-grid,
.service-process {
  display: grid;
  gap: 22px;
  margin-top: clamp(42px, 7vw, 82px);
}

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

.service-detail-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(7, 53, 82, 0.06);
}

.service-detail-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.service-detail-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: service-step;
}

.service-process-list li {
  min-height: 170px;
  padding: 22px;
  border-top: 2px solid var(--navy);
  background: #fff;
  list-style: none;
  counter-increment: service-step;
}

.service-process-list li::before {
  content: counter(service-step);
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-weight: 800;
}

.service-process-list h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.25;
}

.service-process-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(34px, 6vw, 58px);
  margin: clamp(48px, 8vw, 96px) 0 0;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(239, 107, 37, 0.28), transparent 38%),
    var(--navy-dark);
}

.service-cta-band h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.08;
}

.service-cta-band p {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.policy-section {
  background: var(--paper);
}

.policy-content {
  width: min(920px, 100%);
  display: grid;
  gap: 18px;
}

.policy-content h2 {
  margin: 28px 0 0;
  color: var(--navy);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.policy-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.policy-content a {
  color: var(--navy);
  font-weight: 800;
}

.policy-updated {
  color: var(--orange) !important;
  font-weight: 800;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-call {
    display: none;
  }

  .site-header.nav-open .site-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .site-header.nav-open .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .intro,
  .about-band,
  .feature-band,
  .quote-section,
  .area-layout,
  .service-overview,
  .service-cta-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .area-summary,
  .service-aside {
    position: static;
  }

  .service-grid,
  .area-grid,
  .faq-grid,
  .service-detail-grid,
  .service-process-list,
  .timeline,
  .testimonial-grid,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .desktop-sticky-cta {
    display: none;
  }

  .feature-image {
    clip-path: none;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 84px;
  }

  body {
    padding-bottom: 88px;
  }

  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    padding: 10px 12px;
  }

  .brand-logo {
    width: 72px;
    height: 44px;
  }

  .brand strong {
    max-width: 180px;
    overflow-wrap: anywhere;
  }

  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 28px);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 32px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 4.2rem);
  }

  .hero-stats,
  .service-grid,
  .area-grid,
  .faq-grid,
  .service-detail-grid,
  .service-process-list,
  .timeline,
  .testimonial-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

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

  .service-hero-actions .button,
  .service-cta-actions .button {
    width: 100%;
  }

  .service-card {
    min-height: 240px;
  }

  .feature-content,
  .about-band,
  .quote-section {
    padding: 46px 18px;
  }

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

  .footer-contact-grid,
  .footer-links,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

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

  .thank-you-actions .button {
    width: 100%;
  }

  .thank-you-details {
    grid-template-columns: 1fr;
  }

  .mobile-call-bar {
    position: fixed;
    z-index: 45;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 18px 42px rgba(4, 31, 51, 0.28);
    font-weight: 800;
  }

  .mobile-call-bar span {
    opacity: 0.86;
  }

  .lightbox {
    padding-inline: 16px;
  }

  .lightbox img {
    width: 100%;
    max-height: 68vh;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 76px;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    transform: none;
  }

  .lightbox-arrow:hover {
    transform: scale(1.04);
  }

  .lightbox-prev {
    left: 18px;
  }

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

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