/* ==========================================================================
   Meridian Pro Services — Premium Design System
   Navy #000d2b + Red #c31d20 | DM Sans (400 / 600 / 900)
   ========================================================================== */

/* 1. Reset & Box-Sizing
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 2. CSS Custom Properties
   ========================================================================== */
:root {
  /* Brand */
  --color-primary:       #c31d20;
  --color-primary-dark:  #9a1417;
  --color-secondary:     #000d2b;
  --color-accent:        #c31d20;

  /* Text */
  --color-text:          #131b2e;
  --color-text-muted:    #5c657a;
  --color-text-inverse:  #ffffff;
  --color-text-on-dark:  #aeb6cc;

  /* Backgrounds */
  --color-bg:            #ffffff;
  --color-bg-alt:        #f4f6fb;
  --color-bg-dark:       #000d2b;
  --color-bg-dark-2:     #041233;
  --color-bg-card:       #ffffff;

  /* Borders */
  --color-border:        #e6e9f2;
  --color-border-strong: #d3d8e6;
  --color-border-dark:   rgba(255, 255, 255, 0.1);

  /* Buttons */
  --btn-primary-bg:      var(--color-primary);
  --btn-primary-text:    #ffffff;
  --btn-primary-hover:   var(--color-primary-dark);
  --btn-ghost-border:    var(--color-primary);
  --btn-ghost-text:      var(--color-primary);

  /* Type */
  --font-body: 'DM Sans', sans-serif;

  /* Shape & depth */
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-pill: 999px;
  --shadow-sm:   0 2px 10px rgba(4, 14, 40, 0.06);
  --shadow-md:   0 14px 40px rgba(4, 14, 40, 0.1);
  --shadow-lg:   0 28px 80px rgba(4, 14, 40, 0.18);

  /* Header metrics */
  --utility-h: 44px;
  --header-h:  84px;
}

/* 3. Base Styles
   ========================================================================== */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* 4. Typography
   ========================================================================== */
h1, h2, h3, h4 {
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-text);
  text-wrap: balance;
}

h1 { font-size: clamp(36px, 4.6vw, 58px); }
h2 { font-size: clamp(28px, 3.2vw, 42px); }
h3 { font-size: clamp(20px, 2vw, 24px); line-height: 1.3; }
h4 { font-size: 17px; line-height: 1.4; }

p {
  max-width: 68ch;
  text-wrap: pretty;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 18px;
}

.section-label::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

.section-label.centered::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

.section-heading {
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 18px;
  margin-bottom: 0;
}

.text-center {
  text-align: center;
}

.p-muted {
  color: var(--color-text-muted);
  margin-bottom: 18px;
}

.p-muted.last {
  margin-bottom: 34px;
}

.svc-lists.tight {
  margin-top: 0;
}

.text-center p,
.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Dark-section typography */
.on-dark h2,
.on-dark h3,
.on-dark h4 {
  color: var(--color-text-inverse);
}

.on-dark p {
  color: var(--color-text-on-dark);
}

/* 5. Layout
   ========================================================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-xnarrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* FAQ placed on a white section: tint the accordion cards so they still read */
.faq-white .faq-item {
  background: var(--color-bg-alt);
}
.faq-white .faq-item[open] {
  background: #ffffff;
}

.section-pad {
  padding: 110px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* 6. Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 18px 32px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  box-shadow: 0 10px 26px rgba(195, 29, 32, 0.32);
}

.btn-primary:hover {
  background: var(--btn-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(195, 29, 32, 0.4);
}

.btn-ghost {
  background: transparent;
  border-color: var(--btn-ghost-border);
  color: var(--btn-ghost-text);
}

.btn-ghost:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-light {
  background: #ffffff;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.btn-outline-light:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* 7. Utility Bar
   ========================================================================== */
.utility-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--utility-h);
  background: var(--color-bg-dark);
  border-bottom: 1px solid var(--color-border-dark);
  z-index: 999;
}

.utility-bar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-bar a,
.utility-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--color-text-on-dark);
  transition: color 0.2s ease;
}

.utility-bar svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.utility-bar a:hover {
  color: #ffffff;
}

.utility-left,
.utility-right {
  display: flex;
  align-items: center;
  gap: 26px;
}

.utility-social {
  display: flex;
  align-items: center;
  gap: 4px;
}

.utility-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  justify-content: center;
  gap: 0;
}

.utility-social a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.utility-social svg {
  color: var(--color-text-on-dark);
  width: 15px;
  height: 15px;
}

.utility-social a:hover svg {
  color: #ffffff;
}

/* 8. Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: var(--utility-h);
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: var(--color-bg-dark);
  z-index: 1000;
  transition: box-shadow 0.25s ease, background 0.25s ease;
  overflow: visible;
}

.site-header.scrolled {
  background: rgba(0, 13, 43, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 34px rgba(0, 5, 20, 0.45);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: visible;
}

/* Oversized logo: fixed slot, absolute img spills below the bar */
.header-logo {
  display: block;
  position: relative;
  z-index: 1;
  width: 150px;
  height: 64px;
  flex-shrink: 0;
}

.header-logo img {
  position: absolute;
  left: 0;
  top: -12px;
  height: 118px;
  width: auto;
  max-width: none;
  filter: drop-shadow(0 10px 24px rgba(0, 5, 20, 0.45));
  transition: height 0.25s ease-out, top 0.25s ease-out;
  transform-origin: left top;
}

.site-header.scrolled .header-logo img {
  height: 64px;
  top: 0;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-nav > li {
  position: relative;
}

.header-nav > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
  padding: 10px 15px;
  border-radius: var(--radius-pill);
  transition: color 0.2s ease, background 0.2s ease;
}

.header-nav > li > a:hover,
.header-nav > li > a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
}

.header-nav .caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.header-nav li:hover .caret {
  transform: rotate(225deg) translateY(-2px);
}

/* Dropdowns */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 268px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.22s ease;
  z-index: 100;
}

.header-nav li:hover > .dropdown-menu,
.header-nav li:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
}

.dropdown-menu a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.16s ease;
}

.dropdown-menu a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
  padding-left: 20px;
}

.dropdown-menu .dd-all {
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 6px;
  padding-bottom: 13px;
  color: var(--color-primary);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #ffffff;
}

.header-phone-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-phone-icon svg {
  width: 17px;
  height: 17px;
  color: var(--color-primary);
}

.header-phone-label {
  display: block;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-on-dark);
  line-height: 1.2;
}

.header-phone-number {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  white-space: nowrap;
}

.header-cta .btn {
  padding: 15px 26px;
  font-size: 15px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-border-dark);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-border-dark);
  padding: 18px 24px 34px;
  z-index: 999;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  padding: 14px 4px;
  border-bottom: 1px solid var(--color-border-dark);
}

.mobile-nav .mob-group > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  border-bottom: 1px solid var(--color-border-dark);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  padding: 14px 4px;
  cursor: pointer;
}

.mobile-nav .mob-group > button .caret {
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--color-text-on-dark);
  border-bottom: 2px solid var(--color-text-on-dark);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.mobile-nav .mob-group.open > button .caret {
  transform: rotate(225deg);
}

.mobile-nav .mob-sub {
  display: none;
  padding-left: 14px;
}

.mobile-nav .mob-group.open .mob-sub {
  display: block;
}

.mobile-nav .mob-sub a {
  font-size: 15.5px;
  font-weight: 400;
  color: var(--color-text-on-dark);
}

.mobile-nav .btn {
  margin-top: 22px;
  width: 100%;
}

/* 9. Hero
   ========================================================================== */
.hero-section {
  position: relative;
  background: var(--color-bg-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(0, 13, 43, 0.94) 0%, rgba(0, 13, 43, 0.82) 45%, rgba(0, 13, 43, 0.55) 100%);
}

.hero-glow {
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(195, 29, 32, 0.22) 0%, transparent 65%);
  top: -280px;
  right: -180px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: 72px;
  align-items: center;
  padding-top: calc(var(--utility-h) + var(--header-h) + 72px);
  padding-bottom: 96px;
  min-height: 92vh;
}

.hero-content h1 {
  color: #ffffff;
  margin-bottom: 26px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-pill);
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 26px;
}

.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(195, 29, 32, 0.25);
}

.hero-lead {
  font-size: 18px;
  color: var(--color-text-on-dark);
  margin-bottom: 34px;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--color-border-dark);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 11px 22px 11px 14px;
}

.hero-proof-badge .g-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-proof-badge .g-badge svg {
  width: 18px;
  height: 18px;
}

.hero-proof-rating {
  line-height: 1.3;
}

.hero-proof-rating .stars {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14.5px;
  font-weight: 900;
  color: #ffffff;
}

.hero-proof-rating .stars svg {
  width: 13px;
  height: 13px;
  color: #fbbc04;
}

.hero-proof-rating small {
  display: block;
  font-size: 12.5px;
  color: var(--color-text-on-dark);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--color-border-dark);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 12px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
}

.hero-chip svg {
  width: 15px;
  height: 15px;
  color: var(--color-primary);
}

/* Hero form card */
.hero-form-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 38px 36px 36px;
}

.hero-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 36px;
  right: 36px;
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: var(--color-primary);
}

.hero-form-card h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.hero-form-card .form-note {
  font-size: 14.5px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

/* 10. Trust Bar
   ========================================================================== */
.trust-bar {
  background: var(--color-bg-dark-2);
  border-top: 1px solid var(--color-border-dark);
  position: relative;
  z-index: 3;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 34px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 6px 20px;
  border-left: 1px solid var(--color-border-dark);
}

.trust-item:first-child {
  border-left: none;
}

.trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(195, 29, 32, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.trust-number {
  display: block;
  font-size: 19px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
}

.trust-label {
  display: block;
  font-size: 13px;
  color: var(--color-text-on-dark);
}

/* 11. Sections
   ========================================================================== */

/* --- Intro split (photo + editorial) --- */
.intro-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 84px;
  align-items: center;
}

.intro-media {
  position: relative;
}

.intro-media-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.intro-media-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-media-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 46%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: var(--shadow-md);
}

.intro-media-badge {
  position: absolute;
  top: 26px;
  left: -20px;
  background: var(--color-bg-dark);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 13px;
}

.intro-media-badge svg {
  width: 26px;
  height: 26px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.intro-media-badge strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
}

.intro-media-badge small {
  display: block;
  font-size: 12.5px;
  color: var(--color-text-on-dark);
}

.intro-copy p {
  color: var(--color-text-muted);
  margin-bottom: 18px;
}

.intro-copy p:last-of-type {
  margin-bottom: 32px;
}

.intro-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}

.intro-call {
  display: flex;
  align-items: center;
  gap: 13px;
}

.intro-call-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(195, 29, 32, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.intro-call-icon svg {
  width: 21px;
  height: 21px;
  color: var(--color-primary);
}

.intro-call small {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.intro-call a {
  display: block;
  font-size: 19px;
  font-weight: 900;
  color: var(--color-text);
  white-space: nowrap;
}

.intro-call a:hover {
  color: var(--color-primary);
}

/* --- Services grid --- */
.services-section {
  background: var(--color-bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 13, 43, 0.94) 0%, rgba(0, 13, 43, 0.38) 46%, rgba(0, 13, 43, 0.08) 100%);
  transition: background 0.25s ease;
}

.service-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  z-index: 2;
}

.service-card-content h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 8px;
}

.service-card-content .svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.service-card-content .svc-link svg {
  width: 15px;
  height: 15px;
  color: var(--color-primary);
  transition: transform 0.22s ease;
}

.service-card:hover .svc-link svg {
  transform: translateX(4px);
}

/* --- Service checklist panels --- */
.svc-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 56px;
}

.svc-list-panel {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 38px 40px;
  box-shadow: var(--shadow-sm);
}

.svc-list-panel.dark {
  background: var(--color-bg-dark);
  border-color: var(--color-border-dark);
}

.svc-list-panel h3 {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
}

.svc-list-panel.dark h3 {
  color: #ffffff;
}

.svc-list-panel h3 svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.svc-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.svc-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--color-text);
}

.svc-list-panel.dark .svc-checklist li {
  color: var(--color-text-on-dark);
  font-weight: 400;
}

.svc-checklist svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* --- Service detail cards (photo top + copy) --- */
.svc-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc-detail-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.svc-detail-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.svc-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.svc-detail-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.svc-detail-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.svc-detail-card:hover .svc-detail-media img {
  transform: scale(1.05);
}

.svc-detail-body {
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.svc-detail-body h3 {
  margin-bottom: 10px;
}

.svc-detail-body p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.svc-detail-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.svc-detail-body ul li {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 5px 13px;
}

.svc-detail-body .svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: auto;
}

.svc-detail-body .svc-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.22s ease;
}

.svc-detail-card:hover .svc-link svg {
  transform: translateX(4px);
}

/* --- Chip cloud (contaminants etc.) --- */
.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-cloud li {
  font-size: 14.5px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-pill);
  padding: 9px 19px;
}

/* --- Why choose us (thin-line list + photo) --- */
.why-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 84px;
  align-items: start;
}

.why-list {
  display: flex;
  flex-direction: column;
}

.why-item {
  display: flex;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid var(--color-border);
}

.why-item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon svg {
  width: 21px;
  height: 21px;
  color: var(--color-primary);
}

.why-content h3 {
  margin-bottom: 8px;
}

.why-content p {
  font-size: 15.5px;
  color: var(--color-text-muted);
}

.why-media {
  position: sticky;
  top: 140px;
}

.why-media-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.why-media-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-media-card {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background: rgba(0, 13, 43, 0.86);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.why-media-card svg {
  width: 30px;
  height: 30px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.why-media-card strong {
  display: block;
  font-size: 15.5px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.35;
}

.why-media-card small {
  font-size: 13px;
  color: var(--color-text-on-dark);
}

/* --- Comparison (pressure vs soft washing) --- */
.compare-section {
  background: var(--color-bg-alt);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.compare-panel {
  border-radius: var(--radius-lg);
  padding: 44px 44px 40px;
  position: relative;
  overflow: hidden;
}

.compare-panel.light {
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.compare-panel.dark {
  background: var(--color-bg-dark);
}

.compare-panel .compare-num {
  position: absolute;
  top: 26px;
  right: 34px;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: rgba(195, 29, 32, 0.12);
}

.compare-panel.dark .compare-num {
  color: rgba(255, 255, 255, 0.07);
}

.compare-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: rgba(195, 29, 32, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.compare-panel.dark .compare-icon {
  background: rgba(195, 29, 32, 0.2);
}

.compare-icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-primary);
}

.compare-panel h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.compare-panel.dark h3 {
  color: #ffffff;
}

.compare-panel > p {
  font-size: 15.5px;
  color: var(--color-text-muted);
  margin-bottom: 22px;
}

.compare-panel.dark > p {
  color: var(--color-text-on-dark);
}

.compare-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 20px;
}

.compare-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}

.compare-panel.dark .compare-list li {
  color: #ffffff;
  font-weight: 400;
}

.compare-list svg {
  width: 15px;
  height: 15px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.compare-footnote {
  text-align: center;
  margin-top: 40px;
}

.compare-footnote p {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  padding: 16px 30px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--color-text);
  max-width: none;
}

.compare-footnote svg {
  width: 19px;
  height: 19px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* --- Benefits cards --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.benefits-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.benefit-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(195, 29, 32, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.benefit-icon svg {
  width: 25px;
  height: 25px;
  color: var(--color-primary);
}

.benefit-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.benefits-grid.alt-cards .benefit-card {
  background: var(--color-bg-alt);
}

.benefit-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.benefit-card ul li {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 5px 13px;
}

.benefit-card p {
  font-size: 15px;
  color: var(--color-text-muted);
}

/* --- Stats band --- */
.stats-section {
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.stats-glow {
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(195, 29, 32, 0.16) 0%, transparent 65%);
  top: -220px;
  left: -160px;
  pointer-events: none;
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 14px 18px;
  border-left: 1px solid var(--color-border-dark);
}

.stat-item:first-child {
  border-left: none;
}

.stat-number {
  display: block;
  font-size: clamp(44px, 4.6vw, 64px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.1;
}

.stat-number .stat-accent {
  color: var(--color-primary);
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--color-text-on-dark);
}

/* --- Process steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}

.process-step {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 34px 36px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-bg-dark);
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 24px;
  position: relative;
}

.step-number::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed var(--color-border-strong);
}

.process-step:hover .step-number {
  background: var(--color-primary);
}

.process-step h3 {
  margin-bottom: 10px;
}

.process-step p {
  font-size: 15.5px;
  color: var(--color-text-muted);
}

.process-connector {
  display: none;
}

/* --- Process page: alternating detail rows --- */
.pstep-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pstep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pstep-media {
  position: relative;
  min-height: 380px;
}

.pstep-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pstep:nth-child(even) .pstep-media {
  order: 2;
}

.pstep-body {
  position: relative;
  padding: 60px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pstep-num {
  font-size: 110px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(195, 29, 32, 0.1);
  margin-bottom: 6px;
}

.pstep-kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.pstep-body h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  margin-bottom: 14px;
}

.pstep-body p {
  color: var(--color-text-muted);
}

@media (max-width: 1024px) {
  .pstep {
    grid-template-columns: 1fr;
  }
  .pstep:nth-child(even) .pstep-media {
    order: 0;
  }
  .pstep-media {
    min-height: 420px;
  }
  .pstep-media img {
    object-position: center top;
  }
  .pstep:nth-child(4) .pstep-media img {
    object-position: center;
  }
  .pstep-body {
    padding: 38px 30px;
  }
  .pstep-num {
    font-size: 84px;
  }
}

/* --- Before / After slider --- */
.ba-section {
  background: var(--color-bg-dark);
}

.ba-section .section-label {
  color: var(--color-primary);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.ba-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  user-select: none;
  touch-action: pan-y;
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
}

.ba-slider img {
  pointer-events: none;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}

.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-after {
  overflow: hidden;
}

.ba-after-inner {
  height: 100%;
}

.ba-after-inner img {
  height: 100%;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #ffffff;
  transform: translateX(-50%);
  z-index: 3;
}

.ba-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 6px 24px rgba(0, 5, 20, 0.4);
}

.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 10px;
  border-left: 3px solid var(--color-primary);
  border-right: 3px solid var(--color-primary);
}

.ba-tag {
  position: absolute;
  top: 18px;
  z-index: 2;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(0, 13, 43, 0.72);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-pill);
  padding: 7px 15px;
  pointer-events: none;
}

.ba-tag.tag-before { left: 18px; }
.ba-tag.tag-after  { right: 18px; }

.ba-caption {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ba-caption svg {
  width: 15px;
  height: 15px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.ba-cta {
  margin-top: 52px;
  text-align: center;
}

/* --- Service area map --- */
.area-section {
  background: var(--color-bg-alt);
  overflow: hidden;
}

.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.area-copy p {
  color: var(--color-text-muted);
  margin-bottom: 26px;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 10px 19px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-text);
  transition: all 0.2s ease;
}

.area-chip svg {
  width: 13px;
  height: 13px;
  color: var(--color-primary);
}

.area-chip:hover,
.area-chip.active {
  background: var(--color-bg-dark);
  border-color: var(--color-bg-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

/* The interactive map panel */
.area-map {
  position: relative;
  background: var(--color-bg-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  aspect-ratio: 10 / 9;
}

.area-map svg.area-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.area-map .map-grid-line {
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 1;
}

.area-map .map-ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-dasharray: 3 7;
}

.area-map .map-ring.ring-red {
  stroke: rgba(195, 29, 32, 0.4);
}

.area-map .map-road {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.map-marker {
  cursor: pointer;
}

.map-marker circle.pulse {
  fill: rgba(195, 29, 32, 0.35);
  animation: marker-pulse 2.6s ease-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.map-marker circle.core {
  fill: var(--color-primary);
  stroke: #ffffff;
  stroke-width: 2;
  transition: r 0.2s ease;
}

.map-marker.home circle.core {
  fill: #ffffff;
  stroke: var(--color-primary);
  stroke-width: 3;
}

.map-marker text {
  fill: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  paint-order: stroke;
  stroke: rgba(0, 13, 43, 0.8);
  stroke-width: 3px;
  transition: fill 0.2s ease;
}

.map-marker:hover text,
.map-marker.active text {
  fill: #ffffff;
}

.map-marker.home text {
  font-size: 20px;
  font-weight: 900;
  fill: #ffffff;
}

@keyframes marker-pulse {
  0%   { opacity: 0.9; transform: scale(0.5); }
  70%  { opacity: 0;   transform: scale(2.6); }
  100% { opacity: 0;   transform: scale(2.6); }
}

.map-tooltip {
  position: absolute;
  z-index: 5;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 15px 18px;
  min-width: 190px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, calc(-100% - 18px)) scale(0.96);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  pointer-events: none;
}

.map-tooltip.visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, calc(-100% - 14px)) scale(1);
  pointer-events: auto;
}

.map-tooltip::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #ffffff;
}

.map-tooltip strong {
  display: block;
  font-size: 15.5px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 2px;
}

.map-tooltip small {
  display: block;
  font-size: 12.5px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.map-tooltip a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-primary);
}

.map-tooltip a svg {
  width: 13px;
  height: 13px;
}

.map-legend {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(0, 13, 43, 0.72);
  backdrop-filter: blur(6px);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-pill);
  padding: 9px 17px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-text-on-dark);
}

.map-legend .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-stars svg {
  width: 17px;
  height: 17px;
  color: #fbbc04;
}

.testimonial-g {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-g svg {
  width: 16px;
  height: 16px;
}

.testimonial-text {
  font-size: 15.5px;
  color: var(--color-text-muted);
  flex-grow: 1;
  margin-bottom: 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

.testimonial-author strong {
  display: block;
  font-size: 15.5px;
  font-weight: 900;
  color: var(--color-text);
}

.testimonial-author small {
  display: block;
  font-size: 13px;
  color: var(--color-text-muted);
}

/* --- Reviews page masonry --- */
.reviews-masonry {
  columns: 3;
  column-gap: 22px;
}

.reviews-masonry .testimonial-card {
  break-inside: avoid;
  margin-bottom: 22px;
}

@media (max-width: 1024px) {
  .reviews-masonry {
    columns: 2;
  }
}

@media (max-width: 768px) {
  .reviews-masonry {
    columns: 1;
  }
}

/* --- Gallery filter chips + slider grid --- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

.gallery-filter {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-pill);
  padding: 11px 22px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-filter:hover {
  background: rgba(255, 255, 255, 0.14);
}

.gallery-filter.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.ba-grid .ba-cell.hidden {
  display: none;
}

.ba-cell .ba-cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-top: 6px;
}

/* --- CTA strip (inset rounded panel with glow + review card) --- */
.cta-strip {
  background: var(--color-bg);
}

.cta-strip.section-pad {
  padding-top: 90px;
  padding-bottom: 90px;
}

.cta-strip .container {
  max-width: none;
  padding: 0;
}

.cta-panel {
  position: relative;
  width: 80%;
  margin: 0 auto;
  background: var(--color-bg-dark);
  border-radius: 28px;
  overflow: hidden;
  padding: clamp(44px, 5vw, 84px);
  box-shadow: var(--shadow-lg);
}

.cta-panel-glow {
  position: absolute;
  left: 50%;
  bottom: -320px;
  transform: translateX(-50%);
  width: 1100px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(195, 29, 32, 0.55) 0%, rgba(195, 29, 32, 0.18) 42%, transparent 70%);
  pointer-events: none;
}

.cta-panel-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 60px;
  align-items: center;
}

.cta-panel h2 {
  color: #ffffff;
  margin-bottom: 18px;
}

.cta-panel-content > p {
  color: var(--color-text-on-dark);
  margin-bottom: 34px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-actions .btn {
  padding: 15px 22px;
  font-size: 14.5px;
}

.cta-review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 36px 38px;
}

.cta-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cta-review-stars {
  display: flex;
  gap: 6px;
}

.cta-review-stars svg {
  width: 19px;
  height: 19px;
  color: #fbbc04;
}

.cta-review-g {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-review-g svg {
  width: 17px;
  height: 17px;
}

.cta-review-card blockquote {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.cta-review-card blockquote.clamp {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

.cta-review-more {
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
}

.cta-review-more:hover {
  text-decoration: underline;
}

.cta-review-author strong {
  display: block;
  font-size: 15.5px;
  font-weight: 900;
  color: #ffffff;
}

.cta-review-author small {
  display: block;
  font-size: 13px;
  color: var(--color-text-on-dark);
}

/* --- FAQ (two-column: numbered accordion + aside) --- */
.faq-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 84px;
  align-items: start;
}

.faq-aside {
  position: sticky;
  top: 160px;
}

.faq-aside .p-muted {
  margin-bottom: 30px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: faq;
}

.faq-item {
  counter-increment: faq;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 26px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::before {
  content: counter(faq, decimal-leading-zero);
  font-size: 16px;
  font-weight: 900;
  color: var(--color-primary);
  flex-shrink: 0;
  width: 26px;
}

.faq-question::after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1;
  flex-shrink: 0;
  margin-left: auto;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: "\2212";
  background: var(--color-primary);
  color: #ffffff;
}

.faq-answer {
  padding: 0 86px 26px 72px;
}

.faq-answer p {
  color: var(--color-text-muted);
  font-size: 15.5px;
}

/* --- Gallery grid (inner pages) --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 13, 43, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay svg {
  width: 34px;
  height: 34px;
  color: #ffffff;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 5, 20, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  transition: background 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--color-primary);
}

.lightbox-close { top: 26px; right: 26px; }
.lightbox-prev  { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 26px; top: 50%; transform: translateY(-50%); }

.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
  width: 22px;
  height: 22px;
}

/* 12. Footer
   ========================================================================== */
.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  position: relative;
}

.footer-top {
  padding: 84px 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.25fr;
  gap: 52px;
}

.footer-logo img {
  height: 88px;
  width: auto;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 15px;
  margin-bottom: 24px;
  max-width: 34ch;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--color-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 17px;
  height: 17px;
  color: #ffffff;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-nav li {
  margin-bottom: 11px;
}

.footer-nav a {
  font-size: 15px;
  color: var(--color-text-on-dark);
  transition: color 0.18s ease, padding-left 0.18s ease;
}

.footer-nav a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 17px;
  font-size: 15px;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-contact a {
  color: var(--color-text-on-dark);
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid var(--color-border-dark);
  padding: 26px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13.5px;
}

.footer-bottom a {
  color: var(--color-text-on-dark);
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* 13. Forms
   ========================================================================== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235c657a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(195, 29, 32, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9aa2b5;
}

.form-group textarea {
  resize: vertical;
  min-height: 96px;
}

.form-success,
.form-error {
  margin-top: 16px;
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  font-size: 14.5px;
}

.form-success {
  background: #eefaf2;
  border: 1px solid #bce8cc;
  color: #14522c;
}

.form-error {
  background: #fdf0f0;
  border: 1px solid #f2c5c6;
  color: #7c1416;
}

.form-success p,
.form-error p {
  margin: 0;
}

/* Contact section (pre-footer, every page) */
.contact-section {
  background: var(--color-bg-alt);
}

.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 80px;
  align-items: center;
}

.contact-pitch .section-heading {
  margin-bottom: 18px;
}

.pitch-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0 36px;
}

.pitch-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pitch-check {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pitch-check svg {
  width: 15px;
  height: 15px;
  color: #ffffff;
}

.pitch-list strong {
  display: block;
  font-size: 17px;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.4;
}

.pitch-list small {
  display: block;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.pitch-contacts {
  border-top: 1px solid var(--color-border-strong);
  padding-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 30px;
}

.pitch-contact {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pitch-contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pitch-contact-icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

.pitch-contact small {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 3px;
}

.pitch-contact strong,
.pitch-contact a strong {
  display: block;
  font-size: 15.5px;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.5;
}

a.pitch-contact:hover strong {
  color: var(--color-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: 26px;
  margin-top: 56px;
}

.contact-form-wrap {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 44px;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(195, 29, 32, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.contact-card h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.contact-card a,
.contact-card p {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
}

.contact-card a:hover {
  color: var(--color-primary);
}

/* GMB map embed */
.gmb-map-section iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
  filter: saturate(0.92);
}

/* 14. Animations & Transitions
   ========================================================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up.d1 { transition-delay: 0.08s; }
.fade-in-up.d2 { transition-delay: 0.16s; }
.fade-in-up.d3 { transition-delay: 0.24s; }
.fade-in-up.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .fade-in-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .map-marker circle.pulse {
    animation: none;
  }
}

/* 404 page */
.error-404-section {
  padding: 220px 0 120px;
}

.error-404-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.error-404-content p {
  color: var(--color-text-muted);
  margin: 18px auto 34px;
}

.error-404-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  background: var(--color-bg-dark);
  overflow: hidden;
}

.page-hero .hero-inner-simple {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--utility-h) + var(--header-h) + 92px);
  padding-bottom: 88px;
  max-width: 860px;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 20px;
}

.page-hero .hero-lead {
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text-on-dark);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--color-text-on-dark);
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb .current {
  color: var(--color-primary);
}

/* 15. Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1180px) {
  .hero-inner {
    gap: 48px;
  }
  .intro-split,
  .why-split,
  .area-grid {
    gap: 52px;
  }
  .services-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    border-left: none;
    padding: 20px 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-h: 74px;
  }

  .cta-strip.section-pad {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .utility-bar {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .section-pad {
    padding: 76px 0;
  }

  .header-nav,
  .header-phone {
    display: none;
  }

  .header-cta .btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-logo {
    width: 120px;
    height: 56px;
  }

  .header-logo img {
    height: 96px;
    top: -8px;
  }

  .site-header.scrolled .header-logo img {
    height: 56px;
    top: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-top: calc(var(--header-h) + 64px);
    min-height: 0;
  }

  .trust-bar-inner {
    grid-template-columns: 1fr 1fr;
    gap: 18px 0;
    padding: 28px 0;
  }

  .trust-item {
    justify-content: flex-start;
  }

  .trust-item:nth-child(odd) {
    border-left: none;
  }

  .intro-split,
  .why-split,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .intro-media {
    max-width: 620px;
  }

  .why-media {
    position: static;
    max-width: 620px;
  }

  .compare-grid,
  .svc-lists,
  .ba-grid {
    grid-template-columns: 1fr;
  }

  .svc-detail-grid,
  .svc-detail-grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-split {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .cta-panel-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .cta-panel {
    width: calc(100% - 48px);
  }

  .contact-split .hero-form-card {
    order: -1;
  }

  .faq-split {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .faq-aside {
    position: static;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area-map {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .section-pad {
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .hero-inner {
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 64px;
  }

  .hero-lead {
    font-size: 16.5px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-form-card {
    padding: 30px 24px 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .svc-detail-grid,
  .svc-detail-grid.cols-4 {
    grid-template-columns: 1fr;
  }

  .svc-list-panel {
    padding: 28px 24px;
  }

  .svc-checklist {
    grid-template-columns: 1fr;
  }

  .compare-panel {
    padding: 32px 26px 30px;
  }

  .compare-list {
    grid-template-columns: 1fr;
  }

  .compare-footnote p {
    border-radius: var(--radius-md);
    white-space: normal;
    text-align: left;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .intro-media-accent {
    bottom: -18px;
    right: -8px;
  }

  .intro-media-badge {
    left: -8px;
  }

  .contact-form-wrap {
    padding: 30px 24px;
  }

  .pitch-contacts {
    grid-template-columns: 1fr;
  }

  .faq-question {
    font-size: 16px;
    padding: 20px 18px;
    gap: 14px;
  }

  .faq-answer {
    padding: 0 18px 22px 58px;
  }

  .gmb-map-section iframe {
    height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .error-404-section {
    padding: 150px 0 80px;
  }
}

/* ==========================================================================
   16. Unified Card-Grid Responsiveness (overrides — keep at end of file)
   Desktop: as designed (3/4 col). Tablet (<=1024): 2 col. Mobile (<=640): 1 col.
   Explicit compound selectors so .cols-3 / .cols-4 can't out-specify these.
   ========================================================================== */
@media (max-width: 1024px) {
  .services-grid,
  .services-grid.cols-3,
  .benefits-grid,
  .benefits-grid.cols-3,
  .benefits-grid.cols-4,
  .svc-detail-grid,
  .svc-detail-grid.cols-4,
  .testimonials-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid,
  .services-grid.cols-3,
  .benefits-grid,
  .benefits-grid.cols-3,
  .benefits-grid.cols-4,
  .svc-detail-grid,
  .svc-detail-grid.cols-4,
  .testimonials-grid,
  .gallery-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 52px 0;
  }

  .benefits-grid,
  .services-grid,
  .svc-detail-grid,
  .testimonials-grid {
    gap: 16px;
  }
}

/* ==========================================================================
   17. Alternating side-image sections (desktop only; stacks normally below)
   .flip moves the media to the left column and keeps the image in the wide col.
   ========================================================================== */
@media (min-width: 1025px) {
  .why-split.flip .why-media { order: -1; }
  .area-grid.flip { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
  .area-grid.flip .why-media { order: -1; }
}

/* ==========================================================================
   18. "For Local Businesses" grid: image height matches the parallel text
   (desktop only; mobile stacks). Image fills the text column height exactly.
   ========================================================================== */
@media (min-width: 1025px) {
  .area-grid.biz-grid {
    align-items: stretch;
  }
  .area-grid.biz-grid .why-media {
    position: static;
    top: auto;
  }
  .area-grid.biz-grid .why-media-img {
    position: relative;
    height: 100%;
    min-height: 340px;
  }
  .area-grid.biz-grid .why-media-img img {
    position: absolute;
    inset: 0;
  }
}

/* ==========================================================================
   19. Section helpers added for service-page layout fixes
   ========================================================================== */
/* Two-card grid, centered & symmetric on desktop (Patio Cleaning) */
.benefits-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* Four-step process row (Gutter cleaning) */
.process-steps.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Standalone centered map (Contact page, below the list) */
.area-map-wrap {
  max-width: 900px;
  margin: 48px auto 0;
}

@media (max-width: 1024px) {
  .benefits-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps.cols-4 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .benefits-grid.cols-2 {
    grid-template-columns: 1fr;
  }
  .process-steps.cols-4 {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   20. Mobile hero background fit
   The hero box is very tall/narrow on phones, so `cover` zooms the near-square
   hero photo ~1.6x and crops out the subject. Show the photo full-width at the
   top instead, and fade it into the navy so there is no seam.
   ========================================================================== */
@media (max-width: 768px) {
  .hero-bg {
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }

  /* Photo is 100% wide, so its height == 114vw. Fade to solid navy exactly
     where the photo ends so the transition is invisible. */
  .hero-overlay {
    background: linear-gradient(to bottom,
      rgba(0, 13, 43, 0.68) 0,
      rgba(0, 13, 43, 0.80) 55vw,
      rgba(0, 13, 43, 0.94) 92vw,
      rgba(0, 13, 43, 1) 114vw);
  }
}

/* Honeypot: off-screen for bots, invisible and unreachable for people.
   display:none is avoided — some bots skip hidden inputs but fill this. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
