:root {
  --bg: #071225;
  --bg-2: #0b1830;
  --card: #10213d;
  --card-2: #0d1c35;
  --text: #f7f9fc;
  --muted: #b8c3d9;
  --accent: #ffb11b;
  --accent-dark: #e79a00;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --radius: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, #09162a 50%, #0b1730 100%);
  color: var(--text);
  line-height: 1.6;
}

.service-page {
  --accent: var(--page-accent);
  --accent-dark: var(--page-accent-dark);
  background: linear-gradient(
    180deg,
    var(--page-bg) 0%,
    var(--page-bg-2) 50%,
    var(--page-bg) 100%
  );
}

.theme-paint {
  --page-accent: #f3a06f;
  --page-accent-dark: #db7f4b;
  --page-bg: #1b1113;
  --page-bg-2: #2a1719;
  --theme-surface: rgba(243, 160, 111, 0.055);
}
.theme-tech {
  --page-accent: #62c7ff;
  --page-accent-dark: #36a9e8;
  --page-bg: #071225;
  --page-bg-2: #0a1b39;
  --theme-surface: rgba(98, 199, 255, 0.05);
}
.theme-furniture {
  --page-accent: #83d3a2;
  --page-accent-dark: #5fb77f;
  --page-bg: #0d1713;
  --page-bg-2: #14261e;
  --theme-surface: rgba(131, 211, 162, 0.05);
}
.theme-appliance {
  --page-accent: #9bbcff;
  --page-accent-dark: #7399e9;
  --page-bg: #101621;
  --page-bg-2: #19263a;
  --theme-surface: rgba(155, 188, 255, 0.05);
}
.theme-water {
  --page-accent: #59d4cf;
  --page-accent-dark: #34aaa7;
  --page-bg: #07191e;
  --page-bg-2: #0b2930;
  --theme-surface: rgba(89, 212, 207, 0.05);
}
.theme-light {
  --page-accent: #ffd45b;
  --page-accent-dark: #e6b72f;
  --page-bg: #17130b;
  --page-bg-2: #272014;
  --theme-surface: rgba(255, 212, 91, 0.05);
}
.theme-wood {
  --page-accent: #d99b63;
  --page-accent-dark: #b87840;
  --page-bg: #1a120d;
  --page-bg-2: #2b1d13;
  --theme-surface: rgba(217, 155, 99, 0.05);
}
.theme-tile {
  --page-accent: #a3c9aa;
  --page-accent-dark: #7da484;
  --page-bg: #111814;
  --page-bg-2: #1d2922;
  --theme-surface: rgba(163, 201, 170, 0.05);
}

.service-page .topbar .btn-primary,
.service-page .mobile-call {
  background: #ffb11b;
}
.service-page .topbar .btn-primary:hover {
  background: #e79a00;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(var(--container), calc(100% - 36px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -100px;
  z-index: 999;
  background: var(--accent);
  color: #111;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 18, 37, 0.88);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-2);
}
.brand-text {
  display: grid;
  line-height: 1.2;
}
.brand-text strong {
  font-size: 1rem;
}
.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.8rem;
}
.nav-links {
  margin-left: auto;
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--muted);
  font-size: 0.91rem;
}
.nav-links a:hover,
.nav-links a:focus {
  color: var(--text);
}
.nav-actions {
  display: flex;
  gap: 8px;
}
.menu-button {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 9px 12px;
  font: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--accent);
  color: #161616;
}
.btn-primary:hover {
  background: var(--accent-dark);
}
.btn-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}
.btn-small {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 0.86rem;
}
.text-link {
  color: var(--accent);
  font-weight: 800;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.025em;
}
h1 {
  margin: 0 0 20px;
  font-size: clamp(2.35rem, 6vw, 4.7rem);
  letter-spacing: -0.055em;
}
h2 {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
}
h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}
p {
  margin-top: 0;
}
.eyebrow {
  margin: 0 0 15px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}
.muted {
  color: var(--muted);
  line-height: 1.8;
}

.home-hero,
.service-hero {
  padding: 74px 0 46px;
}
.home-hero-grid,
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
  align-items: stretch;
}
.hero-panel,
.hero-image-wrap,
.service-visual,
.feature-card,
.project-card,
.review-card,
.estimate-panel,
.content-card,
.cta-card,
.stat-card,
details {
  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.018)
  );
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-panel {
  padding: 42px;
}
.hero-image-wrap {
  min-height: 420px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 177, 27, 0.2),
      transparent 48%
    ),
    var(--card-2);
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-wrap.image-missing::after {
  content: "GoSnapFix project photo";
  display: grid;
  place-items: center;
  min-height: 420px;
  color: var(--muted);
  font-weight: 700;
}

.service-carousel {
  position: relative;
  min-width: 0;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  border-radius: 28px;
  background: var(--page-bg-2, var(--card-2));
  box-shadow: var(--shadow);
}
.carousel-stage,
.carousel-slide {
  position: absolute;
  inset: 0;
}
.carousel-slide {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition:
    opacity 0.55s ease,
    transform 0.7s ease,
    visibility 0.55s ease;
}
.carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  pointer-events: none;
}
.carousel-slide figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 58px;
  display: grid;
  gap: 4px;
  color: #fff;
}
.carousel-slide figcaption span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.carousel-slide figcaption strong {
  font-size: 1.06rem;
}
.carousel-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  color: #fff;
  font:
    700 1.7rem/1 Inter,
    sans-serif;
  cursor: pointer;
}
.carousel-prev {
  left: 14px;
}
.carousel-next {
  right: 14px;
}
.carousel-footer {
  position: absolute;
  z-index: 4;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition:
    width 0.2s ease,
    background 0.2s ease;
}
.carousel-dot.is-active {
  width: 25px;
  background: var(--accent);
}
.carousel-count {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}
.carousel-count b {
  color: #fff;
}
.layout-visual-left .service-hero-grid > :first-child {
  order: 2;
}
.layout-visual-left .service-hero-grid > .service-carousel {
  order: 1;
}
.layout-visual-left .service-hero-grid {
  grid-template-columns: 0.95fr 1.05fr;
}
.layout-visual-right .feature-grid {
  grid-template-columns: repeat(2, 1fr);
}
.service-content-sections {
  display: flex;
  flex-direction: column;
}
.service-gallery-section {
  order: 1;
}
.service-info-section {
  order: 2;
}
.layout-visual-left .service-info-section {
  order: 1;
}
.layout-visual-left .service-gallery-section {
  order: 2;
}
.service-page .section-soft {
  background: var(--theme-surface);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.trust-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.trust-list li {
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.87rem;
}
.hero-service-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.hero-service-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
}
.hero-service-list a:hover {
  border-color: rgba(255, 177, 27, 0.4);
  color: var(--text);
}

.section {
  padding: 48px 0;
}
.section-soft {
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.018);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}
.split-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 177, 27, 0.42);
}
.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--card-2);
}
.service-card-copy {
  padding: 20px;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}
.icon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.icon-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 177, 27, 0.22);
  border-radius: 12px;
  background: rgba(255, 177, 27, 0.13);
  color: var(--accent);
  font-weight: 800;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  padding: 24px;
}
.feature-card h3 {
  margin-top: 18px;
}
.feature-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-page .project-grid {
  grid-template-columns: repeat(4, 1fr);
}
.project-card {
  overflow: hidden;
  margin: 0;
}
.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.project-card a:hover img {
  transform: scale(1.025);
}
.project-card figcaption {
  padding: 13px 16px;
  color: var(--muted);
  font-size: 0.9rem;
}
.gallery-empty {
  padding: 28px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--muted);
}
.gallery-extra {
  display: none;
}
.project-gallery.is-expanded .gallery-extra {
  display: block;
}
.gallery-toggle {
  margin: 24px auto 0;
}
.gallery-empty a {
  color: var(--accent);
  font-weight: 700;
}

.content-grid,
.estimate-grid,
.commercial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}
.content-card,
.estimate-panel {
  padding: 30px;
}
.faq-list {
  display: grid;
  gap: 12px;
}
details {
  padding: 18px 20px;
  box-shadow: none;
}
summary {
  cursor: pointer;
  font-weight: 800;
}
details p {
  margin: 14px 0 0;
  color: var(--muted);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}
.step-number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-weight: 900;
}
.step p {
  margin: 0;
  color: var(--muted);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  padding: 24px;
}
.stars {
  color: var(--accent);
  letter-spacing: 0.12em;
}
.review-card blockquote {
  margin: 14px 0;
  color: var(--muted);
}
.review-card cite {
  font-style: normal;
  font-weight: 800;
}
.review-social-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}
.review-social-row > div:first-child {
  display: grid;
  gap: 3px;
}
.review-social-row span {
  color: var(--muted);
  font-size: 0.9rem;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.social-link {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.social-link:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}
.social-link svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}
.social-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.social-instagram {
  background: linear-gradient(135deg, #833ab4, #e1306c, #f77737);
}
.social-facebook {
  background: #1877f2;
}
.social-google {
  background: #4285f4;
}
.footer-social {
  margin-top: 18px;
}
.portfolio-social {
  margin-top: 20px;
}
.google-reviews-shell {
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color-scheme: light;
  box-shadow: var(--shadow);
}
.google-reviews-shell [hidden] {
  display: none !important;
}
.google-reviews-widget {
  width: min(100%, 400px);
  max-height: 0;
  overflow: hidden;
  margin: 0 auto;
  opacity: 0;
}
.google-reviews-shell.is-ready .google-reviews-widget {
  max-height: none;
  overflow: visible;
  opacity: 1;
}
.google-reviews-widget gmp-place-details {
  display: block;
  width: 100%;
  height: 540px;
  margin: 0;
  border: 0;
  --gmp-mat-color-surface: #ffffff;
  --gmp-mat-color-on-surface: #111827;
  --gmp-mat-color-on-surface-variant: #4b5563;
}
.google-reviews-status {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #5f6368;
  font-weight: 700;
}
.google-loading-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4285f4;
  animation: google-pulse 1.1s ease-in-out infinite;
}
.google-reviews-fallback {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 130px;
  padding: 22px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #f8fafc;
  color: #111827;
}
.google-reviews-fallback h3,
.google-reviews-fallback p {
  margin: 0;
}
.google-reviews-fallback p {
  margin-top: 5px;
  color: #5f6368;
  font-size: 0.9rem;
}
.google-fallback-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #4285f4;
  font-size: 1.55rem;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.12);
}
.google-live-note {
  margin: 12px 4px 0;
  color: #5f6368;
  font-size: 0.78rem;
}
@keyframes google-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}
.legal-page .content-card {
  max-width: 900px;
}
.legal-page .content-card h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}
.legal-page .content-card p {
  color: var(--muted);
}
.article-page .section-soft {
  background: var(--theme-surface);
}
.article-hero {
  padding: 68px 0 42px;
}
.article-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.88rem;
}
.article-meta span {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}
.article-visual {
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--theme-surface);
  box-shadow: var(--shadow);
}
.article-visual img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}
.article-shell {
  max-width: 920px;
}
.article-content {
  padding: 38px;
}
.article-content h2 {
  margin-top: 42px;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}
.article-content h2:first-child {
  margin-top: 0;
}
.article-content h3 {
  margin-top: 28px;
}
.article-content p,
.article-content li {
  color: var(--muted);
  line-height: 1.85;
}
.article-content a {
  color: var(--accent);
  font-weight: 750;
}
.article-content ul,
.article-content ol {
  padding-left: 22px;
}
.article-callout {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--theme-primary);
  border-radius: 0 16px 16px 0;
  background: var(--theme-surface);
}
.article-callout strong {
  color: var(--text);
}
.finish-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0 34px;
}
.finish-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}
.finish-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.finish-card p {
  margin: 0;
  font-size: 0.92rem;
}
.related-guide-grid {
  grid-template-columns: minmax(0, 700px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat-card {
  padding: 24px;
  text-align: center;
}
.stat-card strong {
  display: block;
  color: var(--accent);
  font-size: 2rem;
}
.stat-card span {
  color: var(--muted);
}

form {
  display: grid;
  gap: 14px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
}
input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 13px;
  outline: 0;
  background: #0b1730;
  color: var(--text);
  font: inherit;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 177, 27, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 177, 27, 0.12);
}
textarea {
  min-height: 140px;
  resize: vertical;
}
.form-note {
  color: var(--muted);
  font-size: 0.83rem;
}

.cta-section {
  padding: 48px 0 70px;
}
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 177, 27, 0.18),
      transparent 42%
    ),
    var(--card-2);
}
.cta-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 0 0 auto;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 100px;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 32px;
}
.footer h2 {
  color: var(--text);
  font-size: 1rem;
}
.footer-copy {
  max-width: 390px;
  margin-top: 18px;
}
.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links a:hover {
  color: var(--accent);
}
.legal-note {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  line-height: 1.65;
}
.legal-note p {
  margin: 5px 0;
}
.legal-note a:hover {
  color: var(--accent);
}
.mobile-call {
  display: none;
}

@media (max-width: 1050px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #09162a;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open {
    display: flex;
  }
  .menu-button {
    display: inline-flex;
    margin-left: auto;
  }
  .nav-actions {
    display: none;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-page .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 780px) {
  .home-hero,
  .service-hero {
    padding-top: 42px;
  }
  .home-hero-grid,
  .service-hero-grid,
  .article-hero-grid,
  .content-grid,
  .estimate-grid,
  .commercial-grid {
    grid-template-columns: 1fr;
  }
  .article-visual,
  .article-visual img {
    min-height: 330px;
  }
  .hero-panel {
    padding: 26px;
  }
  .hero-image-wrap {
    min-height: 300px;
  }
  .service-carousel {
    min-height: 420px;
  }
  .feature-grid,
  .project-grid,
  .review-grid,
  .steps-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .layout-visual-left .service-hero-grid > :first-child,
  .layout-visual-left .service-hero-grid > .service-carousel {
    order: initial;
  }
  .layout-visual-left .service-hero-grid {
    grid-template-columns: 1fr;
  }
  .layout-visual-right .feature-grid,
  .service-page .project-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split-heading,
  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .review-social-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .cta-actions {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 24px, var(--container));
  }
  .brand-text small {
    display: none;
  }
  .services-grid,
  .feature-grid,
  .project-grid,
  .review-grid,
  .steps-grid,
  .stats-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .layout-visual-right .feature-grid,
  .service-page .project-grid {
    grid-template-columns: 1fr;
  }
  .service-carousel {
    min-height: 360px;
    border-radius: 20px;
  }
  .carousel-slide figcaption {
    left: 18px;
    right: 18px;
  }
  .hero-panel,
  .content-card,
  .article-content,
  .estimate-panel,
  .cta-card {
    padding: 22px;
  }
  .finish-grid {
    grid-template-columns: 1fr;
  }
  .social-links {
    width: auto;
  }
  .google-reviews-widget gmp-place-details {
    height: 620px;
  }
  .google-reviews-fallback {
    grid-template-columns: auto 1fr;
  }
  .google-reviews-fallback .btn {
    grid-column: 1 / -1;
    width: 100%;
  }
  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }
  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }
  .footer {
    padding-bottom: 94px;
  }
  .mobile-call {
    display: flex;
    position: fixed;
    z-index: 90;
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--accent);
    color: #111;
    font-weight: 900;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  }
}

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