:root {
  --navy: #061626;
  --navy-2: #08223a;
  --navy-3: #0d2a45;
  --gold: #d99b24;
  --gold-2: #f4bd42;
  --cream: #f7f1e7;
  --cream-2: #fbf8f1;
  --white: #ffffff;
  --ink: #101827;
  --muted: #5d6675;
  --line: rgba(6, 22, 38, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 80px rgba(6, 22, 38, 0.22);
  --container: 1180px;
  --radius: 18px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  padding-top: 86px;
  font-family: Inter, Arial, sans-serif;
  background: var(--cream-2);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(92%, var(--container));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Typography */
.section-title {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-title h2,
.page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--navy);
}

.section-title p:last-child,
.page-hero p:last-child {
  max-width: 690px;
  margin: 16px auto 0;
  color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 23px;
  border: 1px solid transparent;
  border-radius: 0;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(217, 155, 36, 0.28);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(217, 155, 36, 0.34);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: none;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

/* Header / Navigation */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(6, 22, 38, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  width: 260px;
  max-width: 260px;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  overflow: visible;
}

.logo-img {
  width: 260px !important;
  height: auto !important;
  max-width: none !important;
  object-fit: contain;
}

.logo-mark,
.logo-copy {
  display: none !important;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

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

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--navy) !important;
  font-size: 0.95rem !important;
  font-weight: 900 !important;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 22, 38, 0.98) 0%, rgba(6, 22, 38, 0.9) 36%, rgba(6, 22, 38, 0.25) 70%),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=2200&q=85");
  background-size: cover;
  background-position: center right;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 8% 28%, rgba(217, 155, 36, 0.18), transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(92%, var(--container));
  margin: 0 auto;
  padding: 88px 0 34px;
  color: var(--white);
}

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

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: var(--gold-2);
}

.hero p {
  max-width: 510px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 660px;
  margin-top: 58px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.proof-item svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  stroke: var(--gold-2);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-item strong {
  display: block;
  font-size: 0.74rem;
  line-height: 1.15;
}

.proof-item span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  line-height: 1.2;
}

/* Sections */
.section {
  padding: 74px 0;
}

.section-light {
  background: var(--cream-2);
}

.section-dark {
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.section-dark .section-title h2,
.section-dark .card-title,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .section-title p:last-child,
.section-dark p {
  color: rgba(255, 255, 255, 0.76);
}

/* Feature Blocks */
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: start;
}

.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.icon-circle,
.service-icon,
.step-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 0 !important;
  text-align: center;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
  box-shadow: 0 16px 36px rgba(6, 22, 38, 0.18);
}

.icon-circle svg,
.service-icon svg,
.step-icon svg {
  display: block;
  flex: 0 0 auto;
  margin: 0 auto;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-circle svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
}

.feature h3,
.process-step h3,
.service-card h3,
.review-card h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 1.05rem;
}

.feature p,
.process-step p,
.service-card p,
.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border: 1px solid rgba(244, 189, 66, 0.36);
  background: var(--navy-2);
  box-shadow: var(--shadow);
}

.service-image {
  height: 125px;
  background-image: var(--image);
  background-size: cover;
  background-position: center;
  filter: saturate(0.85) brightness(0.82);
}

.service-card:nth-child(1) {
  --image: url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=700&q=80");
}

.service-card:nth-child(2) {
  --image: url("https://images.unsplash.com/photo-1555041469-a586c61ea9bc?auto=format&fit=crop&w=700&q=80");
}

.service-card:nth-child(3) {
  --image: url("https://images.unsplash.com/photo-1586023492125-27b2c045efd7?auto=format&fit=crop&w=700&q=80");
}

.service-card:nth-child(4) {
  --image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=700&q=80");
}

.service-card:nth-child(5) {
  --image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=700&q=80");
}

.service-card:nth-child(6) {
  --image: url("https://images.unsplash.com/photo-1582582429416-8c859e6d8bfa?auto=format&fit=crop&w=700&q=80");
}

.service-body {
  position: relative;
  padding: 22px 14px 20px;
  text-align: center;
}

.service-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  width: 50px;
  height: 50px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid var(--gold-2);
  background: var(--navy);
  color: var(--gold-2);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.7;
}

.service-body h3 {
  margin: 8px 0 0;
  color: var(--white);
  font-size: 0.9rem;
}

/* Before / After Slider */
.before-after {
  --ba-position: 50%;
  position: relative;
  display: block;
  width: min(100%, 1180px);
  aspect-ratio: 3.15 / 1;
  max-height: 390px;
  margin-inline: auto;
  overflow: hidden;
  isolation: isolate;
  background: var(--cream);
  box-shadow: var(--shadow);
  touch-action: pan-y;
}

.before-side,
.after-side {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.after-side {
  z-index: 1;
  background-image:
    linear-gradient(rgba(7, 22, 36, 0.02), rgba(7, 22, 36, 0.02)),
    url("../images/after-clearance.jpg");
}

.before-side {
  z-index: 2;
  background-image:
    linear-gradient(rgba(7, 22, 36, 0.08), rgba(7, 22, 36, 0.08)),
    url("../images/before-clearance.jpg");
  clip-path: inset(0 calc(100% - var(--ba-position)) 0 0);
}

.label {
  position: absolute;
  top: 18px;
  z-index: 7;
  padding: 9px 15px;
  background: var(--navy);
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.before-side .label {
  left: 18px;
}

.after-side .label {
  right: 18px;
  color: var(--white);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-position);
  z-index: 4;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.ba-control {
  position: absolute;
  left: var(--ba-position);
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  pointer-events: none;
}

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

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.step-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
}

.step-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.8;
}

.process-step span,
.process-step > div > span {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

/* Reviews */
.reviews-strip {
  padding: 62px 0;
  background: var(--navy);
  color: var(--white);
}

.reviews-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: start;
}

.review-card {
  padding-inline: 24px;
  text-align: center;
}

.review-card:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.stars {
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.review-card p {
  color: rgba(255, 255, 255, 0.84);
}

.review-card small {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-weight: 800;
}

/* Areas / Map */
.areas-cta {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: var(--cream-2);
}

.areas-panel,
.quick-panel {
  padding: 58px min(8vw, 72px);
}

.areas-panel h2,
.quick-panel h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 8px 34px;
  margin-top: 20px;
  color: var(--ink);
}

.areas-list span::before {
  content: "●";
  margin-right: 8px;
  color: var(--gold);
}

.map-card,
.service-map {
  margin-top: 26px;
  overflow: hidden;
  border-radius: 18px;
  background: #c5ced6;
  box-shadow: 0 20px 60px rgba(6, 22, 38, 0.16);
}

.map-card {
  min-height: 280px;
  color: var(--navy);
  font-weight: 900;
}

.service-map {
  position: relative;
  min-height: 300px;
  border: 1px solid rgba(6, 22, 38, 0.12);
}

.service-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(1.03);
}

.map-overlay {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  width: min(430px, calc(100% - 36px));
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: rgba(6, 22, 38, 0.94);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(6, 22, 38, 0.28);
}

.map-overlay strong,
.map-overlay span {
  display: block;
}

.map-overlay strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.1;
}

.map-overlay span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.45;
}

.map-link {
  position: absolute;
  top: 18px;
  left: 18px;
  right: auto;
  z-index: 3;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(6, 22, 38, 0.24);
}

.quick-panel {
  display: grid;
  align-content: center;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.quick-panel p {
  max-width: 440px;
  color: rgba(6, 22, 38, 0.84);
}

.quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

/* Standard Pages */
.page-hero {
  padding: 90px 0 70px;
  text-align: center;
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
}

.content-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
}

.content-card,
.contact-form,
.info-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(6, 22, 38, 0.08);
}

/* Contact Form */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  align-items: start;
}

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

.form-group {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(6, 22, 38, 0.16);
  background: var(--cream-2);
  color: var(--ink);
  outline: none;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 155, 36, 0.16);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-message {
  margin-top: 16px;
  color: #b42318;
  font-weight: 800;
  text-align: center;
}

.form-message.success {
  color: #087443;
}

/* Footer */
.site-footer {
  padding: 28px 0;
  background: var(--navy);
  color: var(--white);
}

.site-footer .logo-img {
  width: 220px !important;
  height: auto !important;
  max-width: none !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.footer-copy {
  justify-self: end;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.footer-credit {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

.footer-credit a {
  color: var(--gold);
  font-weight: 700;
}

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

/* Animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
  transition-delay: var(--d, 0s);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1160px) {
  body {
    padding-top: 82px;
  }

  .nav-wrap {
    height: 82px;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    left: 4%;
    right: 4%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding: 14px;
    background: rgba(6, 22, 38, 0.98);
    border: 1px solid var(--line-light);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 14px;
  }

  .site-nav .nav-phone {
    justify-content: center;
    margin-top: 8px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .logo {
    width: 240px;
    max-width: 240px;
  }

  .logo-img {
    width: 240px !important;
  }

  .hero-content {
    padding-top: 74px;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
    gap: 22px 24px;
  }

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

  .features-row,
  .content-grid,
  .contact-layout,
  .areas-cta {
    grid-template-columns: 1fr;
  }

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

  .review-card:not(:last-child) {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  .before-after {
    aspect-ratio: 2.6 / 1;
    max-height: 340px;
  }
}

@media (max-width: 720px) {
  body {
    padding-top: 72px;
  }

  .nav-wrap {
    height: 72px;
  }

  .site-nav {
    top: 72px;
    max-height: calc(100vh - 90px);
  }

  .logo {
    width: 210px;
    max-width: 210px;
  }

  .logo-img {
    width: 210px !important;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(6, 22, 38, 0.98), rgba(6, 22, 38, 0.82)),
      url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1400&q=82");
    background-size: cover;
    background-position: center;
  }

  .hero-content {
    padding: 62px 0 32px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
    max-width: 100%;
  }

  .proof-item {
    gap: 10px;
  }

  .section {
    padding: 58px 0;
  }

  .features-row,
  .services-grid,
  .process-grid,
  .reviews-layout,
  .footer-grid,
  .form-row,
  .areas-list {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding-inline: 0;
  }

  .before-after {
    aspect-ratio: 16 / 9;
    max-height: none;
  }

  .ba-control {
    width: 46px;
    height: 46px;
  }

  .areas-panel,
  .quick-panel {
    padding: 44px 6%;
  }

  .service-map {
    min-height: 360px;
  }

  .map-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 14px 15px;
  }

  .map-link {
    top: 14px;
    left: 14px;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-copy {
    justify-self: center;
  }

  .site-footer .logo-img {
    width: 190px !important;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 68px;
  }

  .nav-wrap {
    height: 68px;
  }

  .site-nav {
    top: 68px;
  }

  .logo {
    width: 180px;
    max-width: 180px;
  }

  .logo-img {
    width: 180px !important;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 3.8rem);
  }

  .section-title h2,
  .page-hero h1 {
    font-size: 2.15rem;
  }

  .content-card,
  .contact-form,
  .info-card {
    padding: 24px;
  }

  .before-after {
    aspect-ratio: 4 / 3;
  }

  .before-side .label,
  .after-side .label {
    top: 12px;
    padding: 8px 11px;
    font-size: 0.64rem;
  }

  .before-side .label {
    left: 12px;
  }

  .after-side .label {
    right: 12px;
  }

  .service-map {
    min-height: 390px;
  }

  .map-link {
    padding: 9px 11px;
    font-size: 0.7rem;
  }

  .map-overlay span {
    font-size: 0.78rem;
  }

  .site-footer .logo-img {
    width: 165px !important;
  }
}

@media (max-width: 420px) {
  .hero-proof {
    grid-template-columns: 1fr;
  }
}
