@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-900.ttf") format("truetype");
  font-style: normal;
  font-weight: 800 900;
  font-display: swap;
}

/* ================================================================
   Splash Painting — shared responsive design system
   ================================================================ */

:root {
  --navy: #101538;
  --navy-2: #151b42;
  --purple: #5f2bb8;
  --purple-dark: #431c94;
  --violet: #7538d2;
  --blue: #2859d8;
  --orange: #ff8600;
  --coral: #ff4d45;
  --pink: #db167d;
  --yellow: #ffb10a;
  --ink: #1c213b;
  --muted: #5f6477;
  --line: #e5e7ef;
  --soft: #f7f7fb;
  --white: #fff;
  --success: #1a8f5a;
  --danger: #c6283d;
  --font-sans: "Poppins", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --container: 1300px;
  --header-height: 74px;
  --radius-sm: 7px;
  --radius: 13px;
  --radius-lg: 22px;
  --shadow-sm: 0 5px 18px rgba(12, 18, 52, 0.07);
  --shadow: 0 14px 40px rgba(12, 18, 52, 0.1);
  --shadow-lg: 0 24px 65px rgba(12, 18, 52, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

.home-page,
.about-page,
.testimonials-page,
.contact-page,
.blog-page {
  min-height: 100vh;
}

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

img {
  height: auto;
}

figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.35rem, 4.8vw, 4.7rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

h3 {
  font-size: 1.08rem;
}

p {
  margin-bottom: 1.2em;
}

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

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

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

ul,
ol {
  margin-top: 0;
}

::selection {
  color: var(--white);
  background: var(--purple);
}

:focus-visible {
  outline: 3px solid rgba(28, 87, 216, 0.72);
  outline-offset: 3px;
}

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

/* Template system: page-scoped tokens and reusable section hooks */

.site-template {
  --page-accent: var(--purple);
  --page-accent-2: var(--orange);
  --page-accent-3: var(--blue);
  --page-tint: #f8f5ff;
  --page-surface: var(--white);
  --page-hero-min-height: 250px;
  --section-flow-space: 88px;
  --section-card-radius: 10px;
  --section-card-shadow: var(--shadow-sm);
}

.template-home {
  --page-accent: var(--purple);
  --page-accent-2: var(--orange);
  --page-accent-3: var(--blue);
}

.template-about {
  --page-accent: var(--purple);
  --page-accent-2: var(--orange);
  --page-tint: #fbf7ff;
}

.template-testimonials {
  --page-accent: var(--blue);
  --page-accent-2: var(--orange);
  --page-tint: #f6f9ff;
}

.template-contact {
  --page-accent: var(--purple);
  --page-accent-2: var(--coral);
  --page-tint: #fbf7ff;
}

.template-blog {
  --page-accent: var(--blue);
  --page-accent-2: var(--orange);
  --page-tint: #f6f8ff;
}

[data-section-template] {
  --section-accent: var(--page-accent);
  --section-accent-2: var(--page-accent-2);
  --section-accent-3: var(--page-accent-3);
}

.site-template .text-accent,
.site-template .breadcrumbs a {
  color: var(--section-accent, var(--page-accent));
}

.template-section,
[data-section-template] > .container {
  position: relative;
}

.template-card {
  border: 1px solid var(--line);
  border-radius: var(--section-card-radius);
  background: var(--page-surface);
  box-shadow: var(--section-card-shadow);
}

.template-grid {
  display: grid;
  gap: var(--template-grid-gap, 24px);
}

.section-padding {
  padding-block: 88px;
}

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

.section-heading h2 {
  margin-bottom: 9px;
  text-transform: uppercase;
  font-size: clamp(1.45rem, 2.25vw, 2.15rem);
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 11px 17px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--navy);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.text-accent {
  color: var(--purple);
}

/* Buttons */

.button,
.quote-button,
.call-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 7px 18px rgba(74, 29, 139, 0.14);
  transition: color 0.24s ease, background 0.24s ease, border-color 0.24s ease,
    box-shadow 0.24s ease, transform 0.24s var(--ease);
}

.button:hover,
.quote-button:hover,
.call-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 24px rgba(74, 29, 139, 0.23);
}

.button:active,
.quote-button:active,
.call-button:active {
  transform: translateY(0);
}

.button-primary,
.quote-button,
.call-button {
  color: var(--white);
  background: var(--purple);
}

.button-primary:hover,
.quote-button:hover,
.call-button:hover {
  color: var(--white);
  background: var(--purple-dark);
}

.call-button {
  background: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
  box-shadow: 0 9px 22px rgba(255, 95, 54, 0.22);
}

.call-button:hover {
  box-shadow: 0 12px 28px rgba(95, 43, 184, 0.26);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: #cfd3df;
  box-shadow: none;
}

.button-secondary:hover {
  border-color: var(--purple);
  color: var(--purple);
  box-shadow: 0 8px 20px rgba(12, 18, 52, 0.08);
}

.button-light {
  color: var(--purple-dark);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(12, 18, 52, 0.16);
}

.button-light:hover {
  color: var(--navy);
  background: #f8f5ff;
}

/* Header and navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: #fff;
  border-bottom: 0;
  transition: box-shadow 0.25s ease, transform 0.25s var(--ease), background-color 0.25s ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(95, 43, 184, 0.26), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(12, 18, 52, 0.08);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled::after {
  opacity: 1;
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 152px;
  max-height: 48px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.55vw, 24px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-item > a,
.dropdown-toggle {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
  color: var(--navy);
  background: transparent;
  font-size: 0.765rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.dropdown-toggle {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.nav-item > a::after,
.dropdown-toggle::after {
  display: none;
}

.nav-item > a:hover,
.nav-item > a.active,
.nav-item > a[aria-current="page"],
.dropdown-toggle:hover,
.dropdown.is-open > .dropdown-toggle {
  color: var(--purple);
  transform: translateY(-1px);
}

.nav-item > a:hover::after,
.nav-item > a.active::after,
.nav-item > a[aria-current="page"]::after,
.dropdown-toggle:hover::after,
.dropdown.is-open > .dropdown-toggle::after {
  transform: scaleX(1);
  transform-origin: left;
}

.dropdown-toggle svg,
.dropdown-chevron {
  flex: 0 0 auto;
  transform-origin: 50% 50%;
  transition: transform 0.2s ease;
}

.dropdown-chevron {
  display: inline-grid;
  width: 12px;
  height: 12px;
  place-items: center;
  font-size: 0;
  line-height: 1;
}

.dropdown-chevron::before {
  display: block;
  width: 7px;
  height: 7px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  content: "";
  transform: translateY(-1px) rotate(45deg);
}

.dropdown.is-open .dropdown-toggle svg,
.dropdown.is-open .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 9px);
  left: 50%;
  width: 230px;
  padding: 10px;
  margin: 0;
  visibility: hidden;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, -8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.is-open .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.79rem;
  font-weight: 600;
  line-height: 1.3;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: var(--purple);
  background: #f4effd;
}

.quote-button {
  min-height: 34px;
  padding: 9px 16px;
  border-radius: 5px;
  font-size: 0.56rem;
  white-space: nowrap;
}

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

.header-phone {
  display: inline-flex;
  min-width: 126px;
  flex-direction: column;
  justify-content: center;
  padding-left: 16px;
  border-left: 1px solid rgba(12, 18, 52, 0.12);
  color: var(--navy);
  line-height: 1.1;
  white-space: nowrap;
}

.header-phone span {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.53rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-phone strong {
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.header-phone:hover strong {
  color: var(--orange);
}

.call-button-header {
  min-height: 34px;
  padding: 9px 14px;
  border-radius: 5px;
  font-size: 0.56rem;
  white-space: nowrap;
}

.mobile-call-bar {
  position: fixed;
  z-index: 120;
  right: 16px;
  bottom: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
  box-shadow: 0 18px 40px rgba(12, 18, 52, 0.24);
}

.mobile-call-bar span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mobile-call-bar strong {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.quote-button,
.button,
.call-button {
  overflow: hidden;
}

.quote-button::after,
.button::after,
.call-button::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.24) 45%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-130%);
  transition: opacity 0.25s ease, transform 0.55s var(--ease);
}

.quote-button:hover::after,
.button:hover::after,
.call-button:hover::after {
  opacity: 1;
  transform: translateX(130%);
}

.nav-toggle {
  position: relative;
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle > span:not(.sr-only),
.nav-toggle-line {
  position: absolute;
  left: 10px;
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 4px;
  transition: transform 0.22s ease, opacity 0.18s ease, top 0.22s ease;
}

.nav-toggle > span:not(.sr-only):nth-last-child(3),
.nav-toggle .nav-toggle-line:nth-last-child(3) {
  top: 14px;
}

.nav-toggle > span:not(.sr-only):nth-last-child(2),
.nav-toggle .nav-toggle-line:nth-last-child(2) {
  top: 21px;
}

.nav-toggle > span:not(.sr-only):nth-last-child(1),
.nav-toggle .nav-toggle-line:nth-last-child(1) {
  top: 28px;
}

.nav-toggle.is-active > span:not(.sr-only):nth-last-child(3),
.nav-toggle.is-active .nav-toggle-line:nth-last-child(3) {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle.is-active > span:not(.sr-only):nth-last-child(2),
.nav-toggle.is-active .nav-toggle-line:nth-last-child(2) {
  opacity: 0;
}

.nav-toggle.is-active > span:not(.sr-only):nth-last-child(1),
.nav-toggle.is-active .nav-toggle-line:nth-last-child(1) {
  top: 21px;
  transform: rotate(-45deg);
}

/* Paint-splash primitives */

.paint-splash {
  pointer-events: none;
  user-select: none;
}

.paint-splash::before,
.paint-splash::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.paint-splash-hero {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -5%;
  width: 103%;
  height: 68%;
  background: url("../img/paint-burst.webp") center top / 108% auto no-repeat;
  filter: saturate(1.12) contrast(1.03);
  transform: rotate(-1deg);
}

.paint-splash-hero::before {
  top: -6%;
  right: 11%;
  width: 13px;
  height: 13px;
  background: var(--pink);
  box-shadow: -64px 19px 0 -3px var(--orange), 45px 2px 0 -4px var(--purple),
    92px 28px 0 -2px var(--blue), -112px 54px 0 -4px var(--coral);
}

.paint-splash-hero::after {
  right: 1%;
  bottom: 7%;
  width: 9px;
  height: 9px;
  background: var(--purple);
  box-shadow: -18px 34px 0 -2px var(--pink), -96px 15px 0 -3px var(--orange),
    24px -39px 0 -2px var(--blue);
}

.paint-droplets {
  position: absolute;
  z-index: -1;
  inset: 0;
}

.paint-droplets span {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.paint-droplets span:nth-child(1) { top: 8%; left: 13%; width: 5px; height: 5px; }
.paint-droplets span:nth-child(2) { top: 19%; left: 5%; background: var(--yellow); }
.paint-droplets span:nth-child(3) { top: 3%; left: 42%; width: 6px; height: 6px; background: var(--pink); }
.paint-droplets span:nth-child(4) { top: 11%; right: 4%; width: 6px; height: 6px; background: var(--blue); }
.paint-droplets span:nth-child(5) { top: 43%; right: 0; width: 4px; height: 4px; background: var(--purple); }
.paint-droplets span:nth-child(6) { top: 29%; left: 19%; width: 4px; height: 4px; background: var(--coral); }

/* Home hero */

.home-hero {
  position: relative;
  min-height: 492px;
  padding: 36px 0 16px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  min-height: 440px;
  grid-template-columns: minmax(350px, 0.76fr) minmax(560px, 1.32fr);
  align-items: center;
  gap: 18px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 5px 0 50px;
}

.hero-copy h1 {
  width: min(100%, 495px);
  max-width: 495px;
  margin-bottom: 18px;
  font-size: 4.05rem;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.hero-title-line,
.hero-title-accent {
  display: block;
}

.hero-title-accent {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.16em;
  row-gap: 0;
  max-width: 100%;
  white-space: normal;
}

.hero-title-accent span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.word-color {
  color: var(--orange);
}

.word-to {
  color: var(--purple);
}

.word-life {
  color: var(--blue);
}

.hero-copy p {
  max-width: 390px;
  margin-bottom: 22px;
  color: #262b43;
  font-size: 0.84rem;
  line-height: 1.72;
}

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

.hero-art {
  position: relative;
  z-index: 1;
  min-width: 0;
  align-self: stretch;
}

.hero-art > img {
  position: absolute;
  z-index: 2;
  right: -5%;
  bottom: 2px;
  width: 108%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
  transform: translate3d(var(--hero-parallax-x, 0px), var(--hero-parallax-y, 0px), 0);
  transition: transform 0.45s var(--ease);
}

.js-enabled [data-animate] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.62s ease, transform 0.62s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-enabled [data-animate="fade-left"] {
  transform: translate3d(26px, 0, 0);
}

.js-enabled [data-animate="fade-right"] {
  transform: translate3d(-26px, 0, 0);
}

.js-enabled [data-animate].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.service-card,
.review-card,
.process-step,
.stat-card,
.contact-item,
.recent-post {
  transition: transform 0.25s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease;
}

.process-step:hover,
.stat-card:hover,
.contact-item:hover,
.recent-post:hover {
  transform: translateY(-4px);
}

/* Trust strip */

.trust-section {
  position: relative;
  z-index: 6;
  padding-bottom: 18px;
}

.trust-bar {
  padding: 24px 30px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding-inline: 20px;
  border-right: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.79rem;
  font-weight: 700;
  text-align: center;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  color: var(--orange);
}

.trust-item:nth-child(3) .trust-icon { color: var(--coral); }
.trust-item:nth-child(4) .trust-icon { color: var(--purple); }

/* Services */

.services-section {
  padding: 38px 0 72px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  position: relative;
  min-height: 250px;
  padding: 31px 20px 25px;
  overflow: hidden;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(12, 18, 52, 0.045);
  transition: transform 0.28s var(--ease), border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-card::after {
  position: absolute;
  right: 12%;
  bottom: -15px;
  left: 12%;
  height: 7px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--pink), var(--purple));
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  border-color: rgba(91, 40, 170, 0.26);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-card:hover::after {
  opacity: 0.75;
}

.service-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--purple);
  background: linear-gradient(145deg, #fff8ea, #f5efff);
  border-radius: 22px;
  transform: rotate(-3deg);
}

.service-icon svg {
  width: 51px;
  height: 51px;
  transform: rotate(3deg);
}

.service-card:nth-child(2) .service-icon { color: var(--orange); }
.service-card:nth-child(3) .service-icon { color: var(--pink); }
.service-card:nth-child(4) .service-icon { color: var(--coral); }

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.service-card p {
  margin: 0 auto;
  max-width: 230px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

/* Statistics paint band */

.stats-band {
  position: relative;
  margin-block: 4px 50px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.paint-splash-stats {
  position: absolute;
  z-index: -1;
  inset: 0 1.5%;
  background: url("../img/rainbow-brush-stroke.webp") center / 100% 100% no-repeat;
}

.paint-splash-stats::before {
  top: 22%;
  left: 2%;
  width: 8px;
  height: 8px;
  background: #1b52d9;
  box-shadow: 31px -23px 0 -2px #622aba, 85px 99px 0 -3px #5b28aa;
}

.paint-splash-stats::after {
  right: 2%;
  bottom: 18%;
  width: 9px;
  height: 9px;
  background: var(--orange);
  box-shadow: -27px 25px 0 -2px var(--pink), -81px -101px 0 -2px var(--coral);
}

.stats-content {
  padding-block: 54px 49px;
  text-align: center;
}

.stats-content > h2 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  text-transform: uppercase;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 23px;
}

.stat-card {
  min-height: 104px;
  padding: 20px 12px 17px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.11);
}

.stat-card dt {
  margin-bottom: 4px;
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.stat-card dd {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.73rem;
  font-weight: 650;
}

/* Before / after */

.comparison-section {
  padding: 10px 0 62px;
}

.comparison {
  --position: 50%;
  position: relative;
  width: min(1080px, 100%);
  aspect-ratio: 1200 / 610;
  margin-inline: auto;
  overflow: hidden;
  background: #e9e7e2;
  border-radius: 13px;
  box-shadow: var(--shadow);
  touch-action: pan-y;
}

.comparison-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.comparison-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.comparison-before {
  z-index: 2;
  width: 100%;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison-before img {
  width: 100%;
}

.comparison-after {
  z-index: 1;
}

.comparison-badge {
  position: absolute;
  bottom: 20px;
  z-index: 5;
  padding: 8px 16px;
  color: var(--white);
  background: rgba(12, 18, 52, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}

.comparison-badge-before { left: 20px; }
.comparison-badge-after { right: 20px; }

.comparison-divider {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 3px;
  color: var(--purple);
  background: var(--white);
  box-shadow: 0 0 8px rgba(12, 18, 52, 0.25);
  transform: translateX(-50%);
  pointer-events: none;
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--purple);
  background: var(--white);
  border: 2px solid rgba(91, 40, 170, 0.18);
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(12, 18, 52, 0.18);
  transform: translate(-50%, -50%);
}

.comparison-handle svg {
  width: 28px;
}

.comparison-range {
  position: absolute;
  z-index: 8;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.comparison:focus-within {
  outline: 3px solid rgba(28, 87, 216, 0.58);
  outline-offset: 4px;
}

/* Final home CTA */

.final-cta {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  color: var(--white);
  background: var(--page-tint);
  isolation: isolate;
}

.paint-splash-cta {
  position: absolute;
  z-index: 0;
  inset: 0 1.5%;
  background: url("../img/purple-brush-stroke.webp") center / 100% 100% no-repeat;
}

.paint-splash-cta::before {
  top: 18%;
  left: 2%;
  width: 7px;
  height: 7px;
  background: #6b2bb8;
  box-shadow: 34px -20px 0 -2px #8944c9, 81px 153px 0 -2px #5621aa;
}

.cta-content {
  position: relative;
  display: flex;
  min-height: 220px;
  align-items: center;
  justify-content: space-between;
  padding: 29px 8%;
}

.cta-copy {
  position: relative;
  z-index: 2;
}

.cta-copy h2 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
  text-transform: uppercase;
}

.cta-copy p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.92);
}

.cta-roller {
  position: absolute;
  right: 0;
  bottom: -22%;
  width: min(36%, 420px);
  filter: drop-shadow(0 13px 12px rgba(21, 6, 48, 0.27));
  transform: rotate(-7deg);
}

/* Shared footer */

.site-footer {
  padding-top: 55px;
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(120deg, #0b102c, #111936 52%, #0c1231);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1fr 1.05fr;
  gap: 40px;
  padding-bottom: 42px;
}

.footer-brand p {
  max-width: 245px;
  margin: 20px 0 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.75;
}

.brand-footer img {
  width: 176px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  color: var(--white);
  background: var(--purple);
  border-color: var(--purple);
  transform: translateY(-2px);
}

.social-links svg {
  width: 17px;
  height: 17px;
}

.nap-card {
  display: grid;
  gap: 4px;
  max-width: 245px;
  padding: 15px 16px;
  margin: 0 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  font-style: normal;
}

.nap-card strong,
.footer-contact address strong {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.35;
}

.nap-card span,
.nap-card a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.45;
}

.nap-card a {
  color: var(--white);
}

.nap-card a:hover {
  color: #ffd18a;
}

.footer-column h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 0.91rem;
  letter-spacing: -0.01em;
}

.footer-column ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-column li,
.footer-column a,
.footer-contact address span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.73rem;
  font-style: normal;
  line-height: 2.08;
}

.footer-column a {
  transition: color 0.2s ease;
}

.footer-column li > a:hover,
.footer-contact address > a:hover {
  color: var(--white);
}

.footer-contact address {
  display: flex;
  flex-direction: column;
  margin: 0 0 20px;
}

.footer-contact .button,
.footer-contact .call-button {
  min-height: 41px;
  padding: 11px 18px;
  color: var(--white);
  font-size: 0.65rem;
  line-height: 1.2;
}

.footer-contact .call-button {
  margin: 0 0 10px;
}

.footer-bottom {
  padding: 20px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.7rem;
}

/* Shared inner-page hero */

.page-hero {
  position: relative;
  min-height: 225px;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfbfd, #fff);
  border-bottom: 1px solid rgba(12, 18, 52, 0.035);
}

.page-hero-content {
  display: flex;
  min-height: 225px;
  flex-direction: column;
  justify-content: center;
}

.page-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(2.05rem, 4vw, 3.6rem);
}

.paint-splash-top-right {
  position: absolute;
  top: -50px;
  right: -30px;
  width: min(43vw, 570px);
  height: 260px;
  background: url("../img/paint-burst.webp") center / contain no-repeat;
  transform: rotate(5deg);
}

.paint-splash-top-right::before {
  top: 4%;
  left: 36%;
  width: 8px;
  height: 8px;
  background: var(--orange);
  box-shadow: 52px -2px 0 -2px var(--pink), 107px 21px 0 -2px var(--purple),
    -41px 39px 0 -3px var(--coral);
}

.breadcrumbs ol,
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumbs li,
.breadcrumb li {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 550;
}

.breadcrumbs li + li::before,
.breadcrumb li + li::before {
  display: inline-block;
  padding-inline: 10px;
  color: #a6a9b7;
  content: "›";
}

.breadcrumbs a:hover,
.breadcrumb a:hover {
  color: var(--purple);
}

.breadcrumbs-centered ol {
  justify-content: center;
}

/* About page */

.about-hero .page-hero-content {
  padding-right: 44%;
}

.about-story {
  padding-block: 74px 55px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.93fr);
  align-items: center;
  gap: clamp(55px, 7vw, 105px);
}

.story-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.story-image-wrap::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--pink), var(--purple));
}

.story-image {
  width: 100%;
  aspect-ratio: 4 / 4.28;
  object-fit: cover;
}

.story-content {
  padding-right: 4%;
}

.story-content h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.7vw, 3.3rem);
}

.story-content p {
  color: #4d5267;
  font-size: 0.9rem;
  line-height: 1.78;
}

.checklist {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 23px 0 27px;
  list-style: none;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-size: 0.79rem;
  font-weight: 700;
}

.check-icon {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--purple);
  border: 1.5px solid var(--purple);
  border-radius: 50%;
  font-size: 0.75rem;
  line-height: 1;
}

.process-section {
  padding-block: 50px 65px;
  background: #fbfbfd;
  border-top: 1px solid var(--line);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 25px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(91, 40, 170, 0.25), rgba(28, 87, 216, 0.25));
}

.process-step {
  position: relative;
  padding-inline: 22px;
  text-align: center;
}

.process-number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--purple);
  background: var(--white);
  border: 2px solid var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 0 7px #fbfbfd;
  font-size: 1.05rem;
  font-weight: 800;
}

.process-copy h3 {
  margin-bottom: 8px;
  font-size: 0.91rem;
}

.process-copy p {
  max-width: 230px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.71rem;
  line-height: 1.7;
}

.cta-band {
  position: relative;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.cta-band-rainbow {
  background: transparent;
}

.cta-splash {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url("../img/rainbow-brush-stroke.webp") center / 100% 100% no-repeat;
  transform: scaleX(-1);
}

.cta-band-inner {
  display: flex;
  min-height: 130px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 27px;
}

.cta-band-inner h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.15rem, 2.1vw, 1.8rem);
}

/* Testimonials page */

.testimonials-hero {
  min-height: 390px;
  padding: 38px 0 35px;
}

.testimonials-hero .paint-splash-top-right {
  top: -43px;
  width: min(39vw, 525px);
}

.testimonials-hero-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
  margin-inline: auto;
  text-align: center;
}

.testimonials-hero-content h1 {
  margin-bottom: 12px;
  font-size: clamp(2.3rem, 4.1vw, 3.65rem);
}

.hero-intro {
  margin: 27px 0 8px;
  color: #3f4355;
  font-size: 0.84rem;
  line-height: 1.72;
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 7px 0 2px;
}

.rating-number {
  color: var(--navy);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.stars {
  color: var(--orange);
  letter-spacing: 0.14em;
  line-height: 1;
}

.rating-summary .stars {
  font-size: 1.55rem;
}

.review-platforms {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 42px;
  margin-top: 19px;
}

.review-platform {
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.05em;
}

.platform-google {
  color: #4285f4;
  text-shadow: -8px 0 #ea4335, 8px 0 #34a853;
}

.platform-facebook { color: #1877f2; }
.platform-yelp { color: #d32323; }
.platform-yelp span { padding-left: 2px; }

.reviews-section {
  padding-block: 0 65px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.review-card {
  display: flex;
  min-height: 278px;
  flex-direction: column;
  padding: 29px 29px 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease), box-shadow 0.28s ease;
}

.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.review-card > .stars {
  margin-bottom: 24px;
  font-size: 1rem;
}

.review-card blockquote {
  flex: 1;
}

.review-card blockquote p {
  margin-bottom: 23px;
  color: #3f4458;
  font-size: 0.78rem;
  line-height: 1.78;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 13px;
}

.review-author img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(12, 18, 52, 0.18);
}

.review-author div {
  display: flex;
  flex-direction: column;
}

.review-author cite {
  color: var(--navy);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 800;
}

.review-author span {
  color: var(--muted);
  font-size: 0.65rem;
}

/* Contact page */

.contact-hero {
  position: relative;
  padding: 70px 0 50px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #fbfbfd);
}

.paint-splash--contact {
  position: absolute;
  top: -72px;
  right: -35px;
  width: min(42vw, 560px);
  height: 275px;
  background: url("../img/paint-burst.webp") center / contain no-repeat;
  transform: rotate(4deg);
}

.paint-splash--contact::before {
  top: 9%;
  left: 43%;
  width: 8px;
  height: 8px;
  background: var(--orange);
  box-shadow: 64px -5px 0 -2px var(--pink), 113px 40px 0 -3px var(--purple);
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(540px, 1.22fr);
  align-items: start;
  gap: clamp(55px, 8vw, 115px);
}

.contact-intro {
  padding: 27px 0 12px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-intro h1 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
}

.contact-lead {
  max-width: 445px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.75;
}

.contact-details {
  display: grid;
  gap: 22px;
  margin: 34px 0 30px;
  font-style: normal;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: #4d5265;
  font-size: 0.77rem;
  line-height: 1.55;
}

.contact-item > span:last-child {
  display: flex;
  flex-direction: column;
}

.contact-item strong {
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 0.76rem;
}

.contact-item a:hover {
  color: var(--purple);
}

.contact-icon {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--purple);
  background: #f5f0fd;
  border-radius: 9px;
}

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

.social-list {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.social-link {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.social-link:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.social-link--facebook { background: #1877f2; }
.social-link--instagram { background: linear-gradient(135deg, #feda75, #d62976 48%, #4f5bd5); }
.social-link--linkedin { background: #0a66c2; }

.contact-form-card {
  position: relative;
  padding: 34px 36px 31px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow);
}

.contact-form h2 {
  margin-bottom: 7px;
  font-size: 1.25rem;
}

.contact-form > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.75rem;
}

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

.form-field {
  position: relative;
  min-width: 0;
}

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

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.69rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  display: block;
  width: 100%;
  border: 1px solid #d9dce6;
  border-radius: 6px;
  outline: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 0.8rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input,
.form-field select {
  min-height: 47px;
  padding: 10px 12px;
}

.form-field textarea {
  min-height: 157px;
  padding: 12px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(91, 40, 170, 0.11);
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: var(--danger);
  background: #fffafb;
  box-shadow: 0 0 0 3px rgba(198, 40, 61, 0.09);
}

.field-help {
  display: block;
  margin-top: 5px;
  color: #777b8c;
  font-size: 0.63rem;
}

.field-error {
  display: block;
  min-height: 15px;
  margin-top: 3px;
  color: var(--danger);
  font-size: 0.64rem;
  font-weight: 600;
  line-height: 1.35;
}

.form-submit {
  min-width: 168px;
  margin-top: 19px;
}

.contact-form.is-loading .form-submit {
  cursor: wait;
  opacity: 0.74;
}

.contact-form.is-loading .form-submit::after {
  width: 14px;
  height: 14px;
  margin-left: 9px;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: form-spin 0.7s linear infinite;
}

.contact-form.is-success {
  --form-accent: var(--success);
}

.form-status {
  min-height: 20px;
  margin: 11px 0 0;
  font-size: 0.72rem;
  font-weight: 650;
}

.form-status[data-state="error"] { color: var(--danger); }
.form-status[data-state="loading"] { color: var(--purple); }
.form-status[data-state="success"] { color: var(--success); }

@keyframes form-spin {
  to { transform: rotate(360deg); }
}

.contact-map {
  padding: 8px 0 72px;
  background: #fbfbfd;
}

.contact-map > .container {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(540px, 1.22fr);
  gap: clamp(55px, 8vw, 115px);
}

.map-canvas {
  position: relative;
  grid-column: 2;
  height: 330px;
  overflow: hidden;
  background: #e8eef0;
  border: 1px solid #dbe1e4;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 2px, transparent 2px),
    linear-gradient(34deg, transparent 47%, rgba(255, 255, 255, 0.78) 48% 51%, transparent 52%);
  background-size: 62px 62px, 62px 62px, 165px 95px;
  opacity: 0.65;
  transform: rotate(-7deg) scale(1.12);
}

.map-road {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(209, 216, 219, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.34);
}

.map-road--one { top: 45%; left: -4%; width: 110%; height: 10px; transform: rotate(-9deg); }
.map-road--two { top: -15%; left: 34%; width: 9px; height: 135%; transform: rotate(17deg); }
.map-road--three { top: -25%; right: 17%; width: 8px; height: 145%; transform: rotate(-27deg); }
.map-road--four { top: 75%; left: -5%; width: 114%; height: 7px; transform: rotate(7deg); }

.map-water {
  position: absolute;
  right: -5%;
  bottom: -37%;
  width: 42%;
  height: 78%;
  background: #b8dce8;
  border-radius: 55% 0 0;
  transform: rotate(-8deg);
}

.map-park {
  position: absolute;
  display: block;
  background: #cfe5c4;
  border-radius: 45% 55% 54% 46%;
}

.map-park--one { top: 9%; left: 8%; width: 18%; height: 30%; transform: rotate(13deg); }
.map-park--two { right: 12%; bottom: 18%; width: 20%; height: 24%; transform: rotate(-18deg); }

.map-pin {
  position: absolute;
  z-index: 3;
  top: 42%;
  left: 57%;
  color: var(--purple);
  filter: drop-shadow(0 5px 5px rgba(12, 18, 52, 0.24));
  transform: translate(-50%, -100%);
}

.map-pin svg {
  width: 43px;
}

.map-card {
  position: absolute;
  z-index: 4;
  top: 47%;
  left: calc(57% + 38px);
  display: flex;
  min-width: 185px;
  flex-direction: column;
  padding: 16px 19px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  font-style: normal;
  transform: translateY(-50%);
}

.map-card strong {
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 0.76rem;
}

.map-card span {
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.55;
}

/* Blog post */

.blog-hero {
  position: relative;
  min-height: 365px;
  overflow: hidden;
  color: var(--white);
}

.blog-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7, 13, 37, 0.82) 0%, rgba(8, 15, 40, 0.66) 45%, rgba(8, 15, 40, 0.18) 80%);
}

.blog-hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 365px;
  flex-direction: column;
  justify-content: center;
}

.blog-hero-content h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.4rem, 4.7vw, 4.7rem);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.18);
}

.template-blog[data-page="blog-post"] .blog-hero,
.template-blog[data-page="blog-post"] .blog-hero-content {
  min-height: clamp(430px, 38vw, 520px);
}

.template-blog[data-page="blog-post"] .blog-hero-content {
  box-sizing: border-box;
  padding-block: clamp(58px, 6vw, 86px);
}

.template-blog[data-page="blog-post"] .blog-hero .seo-kicker {
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.blog-hero .breadcrumb li,
.blog-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.86);
}

.template-blog[data-page="blog-post"] .blog-hero .breadcrumb li + li::before {
  color: rgba(255, 255, 255, 0.68);
}

.post-meta-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.post-meta-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.post-meta,
.share-list {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.post-meta li {
  color: var(--muted);
  font-size: 0.71rem;
}

.post-meta li + li::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 15px 2px;
  content: "";
  background: #babdca;
  border-radius: 50%;
}

.post-meta a {
  color: var(--navy);
  font-weight: 700;
}

.post-meta a:hover {
  color: var(--purple);
}

.post-share {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.7rem;
}

.share-list {
  gap: 7px;
}

.share-button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  padding: 0;
  color: var(--navy);
  background: var(--white);
  border: 1px solid #cfd2dc;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.share-button:hover {
  color: var(--white);
  background: var(--purple);
  border-color: var(--purple);
  transform: translateY(-2px);
}

.share-status {
  position: absolute !important;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  align-items: start;
  gap: clamp(50px, 7vw, 100px);
  padding-block: 56px 85px;
}

.post-content {
  min-width: 0;
  color: #42475a;
  font-size: 0.9rem;
  line-height: 1.82;
}

.post-featured,
.article-image {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.post-featured {
  margin-bottom: 28px;
}

.post-featured img {
  width: 100%;
  aspect-ratio: 1200 / 660;
  object-fit: cover;
}

.article-intro {
  margin-bottom: 33px;
  color: #34394d;
  font-size: 0.92rem;
  line-height: 1.85;
}

.article-section {
  margin-top: 38px;
}

.article-section h2,
.article-conclusion h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  letter-spacing: -0.025em;
}

.article-section p,
.article-conclusion p {
  margin-bottom: 16px;
}

.article-image {
  margin-top: 28px;
}

.article-image img {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
}

.article-image figcaption {
  padding: 10px 14px;
  color: var(--muted);
  background: #f7f7fa;
  font-size: 0.67rem;
  line-height: 1.55;
}

.article-tip {
  margin: 27px 0;
  padding: 21px 24px 20px;
  color: #3f4455;
  background: linear-gradient(100deg, #faf6ff, #fff8ed);
  border-left: 4px solid var(--purple);
  border-radius: 0 8px 8px 0;
}

.article-tip strong {
  display: block;
  margin-bottom: 5px;
  color: var(--purple);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-tip p {
  margin: 0;
}

.article-section blockquote {
  margin: 28px 0;
  padding: 25px 29px;
  color: var(--navy);
  background: #f7f7fb;
  border-radius: 8px;
  font-size: 1.04rem;
  font-weight: 650;
  line-height: 1.7;
}

.article-section blockquote p {
  margin: 0;
}

.article-conclusion {
  margin-top: 48px;
  padding: 30px 32px 27px;
  background: linear-gradient(135deg, #f6f1ff, #fff9ef);
  border-radius: 10px;
}

.article-conclusion a {
  color: var(--purple);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-footer p {
  margin-bottom: 8px;
  font-size: 0.78rem;
}

.article-footer strong {
  color: var(--navy);
}

.blog-sidebar {
  position: sticky;
  top: 24px;
}

.sidebar-section {
  position: relative;
  padding-bottom: 31px;
  margin-bottom: 31px;
  border-bottom: 1px solid var(--line);
}

.sidebar-section h2 {
  margin-bottom: 18px;
  font-size: 1.08rem;
}

.category-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.category-list li + li {
  border-top: 1px solid #edf0f4;
}

.category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #41465a;
  font-size: 0.74rem;
  font-weight: 600;
}

.category-list a::after {
  color: var(--purple);
  content: "›";
  font-size: 1rem;
}

.category-list a:hover {
  color: var(--purple);
}

.recent-posts {
  display: grid;
  gap: 19px;
}

.recent-post {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: start;
  gap: 13px;
}

.recent-post-image {
  display: block;
  overflow: hidden;
  border-radius: 6px;
}

.recent-post-image img {
  width: 84px;
  height: 62px;
  object-fit: cover;
  transition: transform 0.3s var(--ease);
}

.recent-post:hover .recent-post-image img {
  transform: scale(1.05);
}

.recent-post h3 {
  margin: 0 0 4px;
  font-size: 0.7rem;
  line-height: 1.45;
  letter-spacing: -0.015em;
}

.recent-post h3 a:hover {
  color: var(--purple);
}

.recent-post time {
  color: var(--muted);
  font-size: 0.6rem;
}

.sidebar-cta {
  padding: 25px 23px 27px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), #28204f);
  border: 0;
  border-radius: 10px;
  isolation: isolate;
}

.paint-splash--sidebar {
  position: absolute;
  z-index: -1;
  right: -55px;
  bottom: -45px;
  width: 180px;
  height: 140px;
  background: radial-gradient(circle at 35% 45%, var(--pink), transparent 45%),
    radial-gradient(circle at 67% 50%, var(--purple), transparent 47%);
  transform: rotate(-12deg);
}

.sidebar-cta h2 {
  margin-bottom: 9px;
  color: var(--white);
}

.sidebar-cta p {
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  line-height: 1.65;
}

.sidebar-cta .button {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 0.62rem;
}

/* ================================================================
   Responsive — 1100px
   ================================================================ */

@media (max-width: 1100px) {
  :root {
    --container: 1000px;
  }

  .site-nav {
    gap: 20px;
  }

  .nav-list {
    gap: 17px;
  }

  .brand img {
    width: 158px;
  }

  .nav-item > a,
  .dropdown-toggle {
    font-size: 0.71rem;
  }

  .quote-button {
    padding-inline: 16px;
  }

  .hero-grid {
    grid-template-columns: minmax(330px, 0.82fr) minmax(470px, 1.25fr);
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 6vw, 4.6rem);
  }

  .services-grid {
    gap: 17px;
  }

  .service-card {
    min-height: 235px;
    padding-inline: 14px;
  }

  .footer-grid {
    grid-template-columns: 1.25fr repeat(4, 1fr);
    gap: 24px;
  }

  .story-grid {
    gap: 52px;
  }

  .contact-layout {
    grid-template-columns: minmax(300px, 0.76fr) minmax(490px, 1.24fr);
    gap: 52px;
  }

  .contact-map > .container {
    grid-template-columns: minmax(300px, 0.76fr) minmax(490px, 1.24fr);
    gap: 52px;
  }

  .blog-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 48px;
  }
}

/* ================================================================
   Responsive navigation/tablet — 900px
   ================================================================ */

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

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

  .section-padding {
    padding-block: 68px;
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand img {
    width: 155px;
    max-height: 50px;
  }

  .nav-toggle {
    z-index: 102;
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: min(430px, 88vw);
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
    padding: 27px 27px 38px;
    overflow-y: auto;
    visibility: hidden;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: -18px 24px 45px rgba(12, 18, 52, 0.17);
    opacity: 0;
    transform: translateX(102%);
    transition: transform 0.3s var(--ease), opacity 0.22s ease, visibility 0.3s;
  }

  .site-nav::before {
    position: fixed;
    z-index: -1;
    top: var(--header-height);
    right: min(430px, 88vw);
    bottom: 0;
    left: 0;
    content: "";
    background: rgba(8, 12, 34, 0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .site-nav.is-open::before {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    display: block;
  }

  .nav-item {
    border-bottom: 1px solid var(--line);
  }

  .nav-item > a,
  .dropdown-toggle {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
    padding: 12px 4px;
    font-size: 0.84rem;
  }

  .nav-item > a::after,
  .dropdown-toggle::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 7px;
    visibility: hidden;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    transition: max-height 0.25s ease, padding 0.25s ease, visibility 0.25s;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    max-height: 0;
    padding-block: 0;
    visibility: hidden;
    transform: none;
  }

  .dropdown.is-open .dropdown-menu {
    max-height: 260px;
    padding-block: 5px 11px;
    visibility: visible;
  }

  .dropdown-menu a {
    padding: 10px 12px;
  }

  .site-nav .quote-button {
    width: 100%;
    min-height: 48px;
    margin-top: 3px;
  }

  .home-hero {
    min-height: 520px;
    padding-top: 38px;
  }

  .hero-grid {
    min-height: 460px;
    grid-template-columns: minmax(300px, 0.85fr) minmax(380px, 1.15fr);
  }

  .hero-copy {
    padding-bottom: 40px;
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 6.7vw, 4rem);
  }

  .hero-copy p {
    font-size: 0.93rem;
  }

  .hero-art > img {
    right: -12%;
    width: 122%;
  }

  .trust-bar {
    padding-inline: 15px;
  }

  .trust-item {
    gap: 8px;
    padding-inline: 8px;
    font-size: 0.69rem;
  }

  .trust-icon {
    width: 27px;
    height: 27px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .stats-grid {
    gap: 13px;
  }

  .stat-card {
    padding-inline: 6px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
    gap: 35px 40px;
  }

  .footer-brand {
    grid-row: span 2;
  }

  .page-hero,
  .page-hero-content {
    min-height: 200px;
  }

  .story-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 35px;
  }

  .story-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
  }

  .process-step {
    padding-inline: 10px;
  }

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

  .contact-layout {
    grid-template-columns: 1fr 1.3fr;
    gap: 35px;
  }

  .contact-map > .container {
    grid-template-columns: 1fr 1.3fr;
    gap: 35px;
  }

  .contact-form-card {
    padding: 29px 25px;
  }

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

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

  .blog-hero,
  .blog-hero-content {
    min-height: 320px;
  }

  .blog-layout {
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 34px;
  }

  .recent-post {
    grid-template-columns: 72px 1fr;
    gap: 10px;
  }

  .recent-post-image img {
    width: 72px;
    height: 58px;
  }
}

/* ================================================================
   Responsive — 700px
   ================================================================ */

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section-padding {
    padding-block: 54px;
  }

  .section-heading {
    margin-bottom: 29px;
  }

  .home-hero {
    min-height: 0;
    padding: 43px 0 0;
  }

  .hero-grid {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 5px;
  }

  .hero-copy {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .hero-copy h1 {
    margin-bottom: 18px;
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .hero-copy p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-art {
    width: min(650px, 118vw);
    height: 355px;
    flex: 0 0 auto;
    margin-inline: -9vw;
  }

  .hero-art > img {
    right: 0;
    width: 100%;
    height: 100%;
  }

  .paint-splash-hero {
    top: 7%;
    right: 4%;
    width: 88%;
    height: 72%;
  }

  .trust-section {
    padding-top: 5px;
  }

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

  .trust-item {
    min-height: 56px;
    justify-content: flex-start;
    padding: 8px 14px;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .services-section {
    padding-top: 42px;
  }

  .stats-band {
    margin-bottom: 39px;
  }

  .stats-content {
    padding-block: 48px;
  }

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

  .comparison {
    aspect-ratio: 4 / 3;
  }

  .comparison-image img {
    object-position: center;
  }

  .final-cta,
  .cta-content {
    min-height: 255px;
  }

  .cta-content {
    padding: 31px 7%;
  }

  .cta-copy {
    max-width: 65%;
  }

  .cta-roller {
    right: -12%;
    width: 55%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 26px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .footer-brand p {
    max-width: 360px;
  }

  .paint-splash-top-right,
  .paint-splash--contact {
    right: -23%;
    width: 76vw;
    opacity: 0.72;
  }

  .about-hero .page-hero-content {
    padding-right: 28%;
  }

  .about-story {
    padding-block: 52px;
  }

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

  .story-image {
    aspect-ratio: 4 / 3.35;
  }

  .story-content {
    padding-right: 0;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 16px;
  }

  .process-list::before {
    display: none;
  }

  .cta-band-inner {
    min-height: 145px;
    text-align: left;
  }

  .testimonials-hero {
    min-height: 360px;
  }

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

  .review-card {
    min-height: 235px;
  }

  .contact-hero {
    padding-block: 45px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map > .container {
    display: block;
  }

  .map-canvas {
    grid-column: auto;
  }

  .contact-intro {
    padding-top: 0;
  }

  .contact-lead {
    max-width: 540px;
  }

  .contact-details {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-canvas {
    height: 285px;
  }

  .blog-hero,
  .blog-hero-content {
    min-height: 290px;
  }

  .post-meta-inner {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    padding-block: 16px;
  }

  .blog-layout {
    grid-template-columns: 1fr;
    padding-block: 42px 60px;
  }

  .blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .sidebar-cta {
    grid-column: 1 / -1;
  }
}

/* ================================================================
   Responsive — 480px
   ================================================================ */

@media (max-width: 480px) {
  .template-blog[data-page="blog-post"] .blog-hero,
  .template-blog[data-page="blog-post"] .blog-hero-content {
    min-height: 330px;
  }

  .template-blog[data-page="blog-post"] .blog-hero-content {
    padding-block: 38px;
  }

  :root {
    --header-height: 70px;
  }

  body {
    font-size: 15px;
  }

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

  .brand img {
    width: 139px;
  }

  .nav-toggle {
    width: 43px;
    height: 43px;
  }

  .site-nav {
    width: 100%;
    padding: 22px 22px 34px;
  }

  .site-nav::before {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 14vw, 3.7rem);
  }

  .hero-copy p {
    font-size: 0.88rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-art {
    width: 125vw;
    height: 290px;
    margin-inline: -16vw;
  }

  .trust-bar {
    padding: 8px;
  }

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

  .trust-item,
  .trust-item:nth-child(2) {
    min-height: 51px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

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

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

  .stats-grid {
    gap: 9px;
  }

  .stat-card {
    min-height: 95px;
  }

  .stat-card dt {
    font-size: 1.65rem;
  }

  .comparison {
    aspect-ratio: 1 / 1;
  }

  .comparison-badge {
    bottom: 11px;
    padding: 6px 10px;
  }

  .comparison-badge-before { left: 11px; }
  .comparison-badge-after { right: 11px; }

  .comparison-handle {
    width: 46px;
    height: 46px;
  }

  .cta-content {
    min-height: 305px;
    align-items: flex-start;
    padding-top: 43px;
  }

  .cta-copy {
    max-width: 100%;
    text-align: center;
  }

  .cta-copy .button {
    min-width: 170px;
  }

  .cta-roller {
    right: -10%;
    bottom: -19%;
    width: 72%;
    opacity: 0.72;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .page-hero,
  .page-hero-content {
    min-height: 175px;
  }

  .page-hero h1 {
    font-size: 2.25rem;
  }

  .about-hero .page-hero-content {
    padding-right: 15%;
  }

  .story-image {
    aspect-ratio: 1 / 1;
  }

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

  .process-step {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: start;
    gap: 16px;
    padding: 0;
    text-align: left;
  }

  .process-number {
    margin: 0;
  }

  .process-copy p {
    max-width: none;
  }

  .cta-band-inner {
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    text-align: center;
  }

  .cta-band-inner .button {
    width: 100%;
  }

  .testimonials-hero {
    min-height: 385px;
  }

  .testimonials-hero-content h1 {
    font-size: 2.25rem;
  }

  .hero-intro br {
    display: none;
  }

  .rating-summary {
    gap: 11px;
  }

  .rating-number {
    font-size: 1.8rem;
  }

  .rating-summary .stars {
    font-size: 1.25rem;
  }

  .review-platforms {
    gap: 22px;
  }

  .review-card {
    padding: 25px 22px;
  }

  .contact-intro h1 {
    font-size: 2.55rem;
  }

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

  .contact-form-card {
    padding: 25px 19px;
  }

  .form-submit {
    width: 100%;
  }

  .map-canvas {
    height: 255px;
  }

  .map-pin {
    left: 48%;
  }

  .map-card {
    top: auto;
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-width: 0;
    transform: none;
  }

  .blog-hero-content h1 {
    font-size: 2.15rem;
  }

  .blog-hero-content h1 br {
    display: none;
  }

  .post-meta {
    flex-wrap: wrap;
    gap: 5px 0;
  }

  .post-meta li + li::before {
    margin-inline: 9px;
  }

  .post-share {
    width: 100%;
    justify-content: space-between;
  }

  .article-conclusion {
    padding: 24px 20px;
  }

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

  .sidebar-cta {
    grid-column: auto;
  }
}

/* SEO content page templates */

.seo-hero,
.seo-section {
  position: relative;
  overflow: hidden;
}

.seo-hero {
  padding: 66px 0 58px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 245, 255, 0.94)),
    radial-gradient(circle at 83% 18%, rgba(255, 134, 0, 0.12), transparent 30%),
    radial-gradient(circle at 12% 72%, rgba(40, 89, 216, 0.1), transparent 28%);
}

.seo-hero-grid,
.seo-split,
.seo-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 58px;
}

.seo-hero-copy h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.2vw, 4.85rem);
  line-height: 1.04;
}

.seo-hero-copy .lead,
.seo-copy .lead {
  max-width: 680px;
  color: #31364f;
  font-size: 1.02rem;
  line-height: 1.75;
}

.seo-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  color: var(--page-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-kicker::before,
.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: currentColor;
}

.seo-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.proof-pills,
.keyword-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.proof-pills li,
.keyword-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(95, 43, 184, 0.16);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
}

.keyword-links a {
  color: var(--page-accent);
  transition: transform 0.22s var(--ease), border-color 0.22s ease, background 0.22s ease;
}

.keyword-links a:hover {
  border-color: rgba(95, 43, 184, 0.34);
  background: #fff;
  transform: translateY(-2px);
}

.landscape-media,
.image-card,
.seo-hero-media,
.content-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(12, 18, 52, 0.08);
  border-radius: 12px;
  background: #f4f4f8;
  box-shadow: 0 18px 46px rgba(12, 18, 52, 0.12);
}

.landscape-media,
.seo-hero-media,
.content-media {
  aspect-ratio: 16 / 10;
}

.image-card {
  aspect-ratio: 16 / 9;
}

.landscape-media img,
.image-card img,
.seo-hero-media img,
.content-media img,
.blog-card-image img,
.recent-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-caption,
.image-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--white);
  background: rgba(12, 18, 52, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
}

.seo-section {
  padding: 78px 0;
}

.seo-section--tint {
  background: var(--page-tint);
}

.seo-copy h2,
.content-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.seo-copy h3,
.content-panel h3 {
  margin: 24px 0 10px;
  font-size: 1.18rem;
}

.seo-copy p,
.content-panel p,
.article-body p {
  color: #41465d;
}

.content-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.content-panel--accent {
  border-color: rgba(95, 43, 184, 0.18);
  background: linear-gradient(135deg, #fff, var(--page-tint));
}

.icon-list,
.check-list,
.service-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.icon-list li,
.check-list li,
.service-list li {
  position: relative;
  padding-left: 28px;
  color: var(--navy);
  font-weight: 650;
  line-height: 1.55;
}

.icon-list li::before,
.check-list li::before,
.service-list li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--white);
  content: "";
  background: var(--page-accent);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.35);
}

.media-grid,
.service-detail-grid,
.blog-card-grid,
.location-grid,
.faq-topic-grid,
.proof-grid {
  display: grid;
  gap: 24px;
}

.media-grid {
  grid-template-columns: repeat(3, 1fr);
}

.template-about [data-section-template="about-process"] .media-grid {
  align-self: stretch;
  grid-template-columns: 1fr;
  gap: 16px;
}

.template-about [data-section-template="about-process"] .image-card {
  min-height: 148px;
  aspect-ratio: 16 / 5.6;
}

.template-about [data-section-template="about-values"] .proof-grid + .content-panel {
  margin-top: 34px;
}

.service-detail-grid,
.blog-card-grid,
.location-grid,
.faq-topic-grid,
.proof-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-detail-card,
.blog-card,
.location-card,
.faq-topic-card,
.proof-card {
  position: relative;
  min-height: 100%;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-detail-card:hover,
.blog-card:hover,
.location-card:hover,
.faq-topic-card:hover,
.proof-card:hover {
  border-color: rgba(95, 43, 184, 0.26);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-detail-card h3,
.blog-card h2,
.location-card h3,
.faq-topic-card h3,
.proof-card h3 {
  margin-bottom: 9px;
  font-size: 1.12rem;
}

.blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  overflow: hidden;
}

.blog-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--soft);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta,
.article-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 650;
}

.cta-panel,
.conversion-strip {
  position: relative;
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 36px 42px;
  border-radius: 14px;
  background:
    linear-gradient(100deg, rgba(95, 43, 184, 0.96), rgba(40, 89, 216, 0.92)),
    url("../img/rainbow-brush-stroke.webp") center / cover no-repeat;
}

.cta-panel h2,
.cta-panel p,
.conversion-strip h2,
.conversion-strip p {
  color: var(--white);
}

.cta-panel p,
.conversion-strip p {
  margin-bottom: 0;
  opacity: 0.92;
}

.conversion-strip {
  min-height: 170px;
  padding: 0;
  background: #f8f5ff;
  box-shadow: none;
  isolation: isolate;
}

.conversion-strip::before {
  position: absolute;
  z-index: 0;
  inset: 0 1.5%;
  pointer-events: none;
  content: "";
  background: url("../img/purple-brush-stroke.webp") center / 100% 100% no-repeat;
}

.conversion-strip::after {
  position: absolute;
  right: 5%;
  bottom: -34%;
  z-index: 1;
  width: min(25vw, 320px);
  aspect-ratio: 1774 / 887;
  pointer-events: none;
  content: "";
  background: url("../img/paint-roller.webp") center / contain no-repeat;
  filter: drop-shadow(0 13px 12px rgba(21, 6, 48, 0.22));
  transform: rotate(-7deg);
}

.conversion-strip .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 170px;
  align-items: center;
  gap: 28px;
  padding-block: 28px;
}

.conversion-strip .container > div {
  min-width: 0;
  max-width: 760px;
}

.conversion-strip h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.35vw, 2.45rem);
  line-height: 1.05;
}

.conversion-strip .seo-kicker {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.92);
}

.conversion-strip .button {
  position: relative;
  z-index: 3;
  justify-self: end;
  white-space: nowrap;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.faq-item summary::after {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.faq-item p {
  padding: 0 22px 20px;
  margin-bottom: 0;
  color: #44495f;
}

.article-body {
  max-width: 920px;
}

.article-layout--wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 58px;
  align-items: start;
}

.callout-box {
  padding: 26px;
  border-left: 4px solid var(--page-accent);
  border-radius: 10px;
  background: var(--page-tint);
}

.sticky-contact-card {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.page-schema-note {
  color: var(--muted);
  font-size: 0.83rem;
}

@media (max-width: 1100px) {
  .seo-hero-grid,
  .seo-split,
  .seo-two-column,
  .article-layout--wide {
    gap: 38px;
  }

  .media-grid,
  .service-detail-grid,
  .blog-card-grid,
  .location-grid,
  .faq-topic-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .template-blog[data-page="blog-post"] .blog-hero,
  .template-blog[data-page="blog-post"] .blog-hero-content {
    min-height: 360px;
  }

  .template-blog[data-page="blog-post"] .blog-hero-content {
    padding-block: 46px;
  }

  .seo-hero-grid,
  .seo-split,
  .seo-two-column,
  .article-layout--wide,
  .cta-panel,
  .conversion-strip .container {
    grid-template-columns: 1fr;
  }

  .seo-hero {
    padding: 48px 0;
  }

  .seo-section {
    padding: 58px 0;
  }

  .conversion-strip::before {
    inset: 0 -4%;
    background-size: 118% 100%;
  }

  .conversion-strip::after {
    right: -4%;
    bottom: -24%;
    width: min(45vw, 260px);
    opacity: 0.72;
  }

  .conversion-strip .button {
    justify-self: start;
  }

  .sticky-contact-card {
    position: static;
  }
}

@media (max-width: 700px) {
  .conversion-strip::before {
    inset: 0 -20%;
    background-size: 150% 100%;
  }

  .conversion-strip::after {
    display: none;
  }

  .media-grid,
  .service-detail-grid,
  .blog-card-grid,
  .location-grid,
  .faq-topic-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .content-panel,
  .service-detail-card,
  .blog-card-body,
  .location-card,
  .faq-topic-card,
  .proof-card,
  .cta-panel {
    padding: 22px;
  }

  .proof-pills,
  .keyword-links {
    gap: 8px;
  }
}

/* Expanded homepage SEO and conversion modules */

.template-home .home-hero {
  padding-bottom: 42px;
}

.template-home .hero-copy {
  max-width: 610px;
}

.template-home .proof-pills {
  margin-top: 22px;
}

.template-home .seo-section .section-heading {
  max-width: 850px;
}

.section-heading--left {
  align-items: flex-start;
  text-align: left;
}

.template-home .services-section {
  padding: 78px 0;
}

.template-home .service-card {
  display: flex;
  min-height: 336px;
  flex-direction: column;
}

.template-home .service-card p {
  max-width: 265px;
}

.template-home .service-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 18px auto 0;
  color: var(--purple);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.015em;
}

.template-home .service-card a::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}

.template-home .service-card a:hover::after {
  transform: translateX(3px);
}

.home-process-list {
  margin-top: 34px;
}

.home-process-list .process-number {
  box-shadow: 0 0 0 7px var(--page-tint);
}

.template-home .home-review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.template-home [data-section-template="home-faq-preview"] .section-heading {
  margin-bottom: 28px;
}

.template-home [data-section-template="home-faq-preview"] .faq-list {
  max-width: none;
}

.template-home [data-section-template="home-estimate-factors"] .content-panel,
.template-home [data-section-template="home-faq-preview"] .content-panel {
  border-color: rgba(95, 43, 184, 0.16);
}

.template-home [data-section-template="home-faq-preview"] .sticky-contact-card {
  min-width: 0;
}

.template-home [data-section-template="home-faq-preview"] .sticky-contact-card h2 {
  max-width: 100%;
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 1.65vw, 1.9rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.template-home [data-section-template="home-faq-preview"] .sticky-contact-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.template-home .final-cta {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .template-home .service-card {
    min-height: 318px;
  }

  .template-home .home-review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .home-process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }

  .home-process-list::before {
    display: none;
  }

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

@media (max-width: 700px) {
  .template-home .home-review-grid,
  .home-process-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .header-phone {
    display: none;
  }

  .site-nav {
    gap: 16px;
  }

  .nav-list {
    gap: 14px;
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: 78px;
  }

  .site-nav .header-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav .header-phone {
    display: flex;
    min-height: 58px;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid rgba(95, 43, 184, 0.15);
    border-radius: 10px;
    background: #fbf8ff;
  }

  .site-nav .header-phone strong {
    font-size: 1.05rem;
  }

  .site-nav .call-button,
  .site-nav .quote-button {
    width: 100%;
    min-height: 48px;
  }

  .mobile-call-bar {
    display: inline-flex;
  }
}

@media (max-width: 900px) {
  body.nav-open {
    padding-bottom: 0;
  }

  body.nav-open .site-header,
  body.nav-open .site-header.is-scrolled {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  body.nav-open .site-header::after {
    opacity: 0;
  }

  body.nav-open .header-inner {
    position: relative;
    z-index: 104;
  }

  body.nav-open .brand img {
    filter: brightness(0) invert(1);
  }

  .nav-toggle {
    border-color: rgba(95, 43, 184, 0.14);
    background: var(--white);
    box-shadow: 0 12px 28px rgba(12, 18, 52, 0.1);
  }

  body.nav-open .nav-toggle {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.22);
  }

  body.nav-open .nav-toggle > span:not(.sr-only),
  body.nav-open .nav-toggle-line {
    background: var(--white);
  }

  .site-nav {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    gap: 0;
    padding: calc(var(--header-height) + 28px) min(7vw, 34px) 28px;
    overflow-x: hidden;
    overflow-y: auto;
    color: var(--white);
    background:
      radial-gradient(circle at 20% 4%, rgba(255, 134, 0, 0.18), transparent 32%),
      radial-gradient(circle at 92% 0%, rgba(219, 22, 125, 0.18), transparent 30%),
      #101538;
    border: 0;
    box-shadow: none;
    opacity: 0;
    transform: translateY(-18px) scale(0.985);
    transition: transform 0.34s var(--ease), opacity 0.24s ease, visibility 0.34s;
  }

  .site-nav::before {
    position: absolute;
    z-index: 0;
    top: 54px;
    right: -120px;
    bottom: auto;
    left: -85px;
    height: 250px;
    content: "";
    background: url("../img/rainbow-brush-stroke.webp") center / contain no-repeat;
    opacity: 0.9;
    pointer-events: none;
    transform: rotate(-6deg);
    transition: none;
  }

  .site-nav::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
    background: linear-gradient(180deg, rgba(16, 21, 56, 0.08) 0%, rgba(16, 21, 56, 0.68) 36%, rgba(16, 21, 56, 0.94) 100%);
  }

  .site-nav > * {
    position: relative;
    z-index: 2;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .site-nav.is-open::before {
    opacity: 0.9;
    pointer-events: none;
  }

  .nav-list {
    display: grid;
    gap: 0;
  }

  .nav-item {
    border-bottom: 0;
  }

  .nav-item > a,
  .dropdown-toggle {
    min-height: 0;
    padding: 8px 0;
    color: var(--white);
    font-size: clamp(1.42rem, 7vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.98;
    text-align: left;
  }

  .nav-item > a:hover,
  .nav-item > a.active,
  .nav-item > a[aria-current="page"],
  .dropdown-toggle:hover,
  .dropdown-toggle.active,
  .dropdown-toggle[aria-current="page"],
  .dropdown.is-open > .dropdown-toggle {
    color: var(--white);
    transform: none;
  }

  .dropdown-chevron {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0;
    letter-spacing: 0;
  }

  .dropdown-chevron::before {
    width: 8px;
    height: 8px;
  }

  .dropdown-menu {
    width: 100%;
    max-height: 0;
    padding: 0 12px;
    margin: 0;
    visibility: hidden;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    opacity: 1;
    transform: none;
    transition: max-height 0.28s var(--ease), padding 0.28s var(--ease), margin 0.28s var(--ease), border-color 0.28s ease, visibility 0.28s;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    max-height: 0;
    padding-block: 0;
    margin-block: 0;
    visibility: hidden;
  }

  .dropdown.is-open .dropdown-menu,
  .dropdown.is-open:focus-within .dropdown-menu {
    display: flex;
    max-height: 420px;
    flex-direction: column;
    gap: 8px;
    padding-block: 12px;
    margin: 10px 0 12px;
    visibility: visible;
    border-color: rgba(255, 255, 255, 0.14);
    opacity: 1;
    transform: none;
  }

  .dropdown-menu a {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.18;
    text-align: left;
  }

  .dropdown-menu a::after {
    content: "›";
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
  }

  .site-nav .header-actions {
    display: grid;
    gap: 12px;
    margin-top: 18px;
  }

  .site-nav .header-phone {
    display: flex;
    min-height: 0;
    min-width: 0;
    padding: 14px;
    border: 0;
    border-radius: 16px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
  }

  .site-nav .header-phone span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
  }

  .site-nav .header-phone strong {
    color: var(--white);
    font-size: 0.96rem;
  }

  .site-nav .call-button,
  .site-nav .quote-button {
    width: 100%;
    min-height: 48px;
    border-radius: 14px;
    font-size: 0.76rem;
  }

  .site-nav .quote-button {
    margin-top: 0;
    background: var(--purple);
  }

  body.nav-open .mobile-call-bar {
    display: none;
  }
}

@media (max-width: 520px) {
  .mobile-call-bar {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    border-radius: 14px;
  }
}

/* Motion preferences and print */

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

  .js-enabled [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-art > img {
    transform: none !important;
  }

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

@media print {
  :root {
    --navy: #000;
    --ink: #000;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .site-header,
  .site-footer,
  .skip-link,
  .mobile-call-bar,
  .nav-toggle,
  .paint-splash,
  .paint-droplets,
  .cta-band,
  .final-cta,
  .post-share,
  .blog-sidebar,
  .comparison-range,
  .contact-form-card,
  .social-list {
    display: none !important;
  }

  .container,
  .post-content {
    width: 100% !important;
    max-width: none !important;
  }

  .blog-layout,
  .story-grid,
  .contact-layout {
    display: block;
    padding-block: 20px;
  }

  .blog-hero,
  .blog-hero-content,
  .page-hero,
  .page-hero-content {
    min-height: 0;
    color: #000;
    background: #fff;
  }

  .blog-hero-image,
  .blog-hero-overlay {
    display: none;
  }

  .blog-hero-content h1,
  .page-hero h1 {
    color: #000;
    text-shadow: none;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  img {
    break-inside: avoid;
  }
}
