/* ================================================================
   WEDGEVIEW PLUMBING & HEATING
   Premium Website — Production Stylesheet
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ================================================================
   CUSTOM PROPERTIES
   ================================================================ */
:root {
  /* Brand Colors */
  --navy:         #1C3557;
  --navy-dark:    #0F1E30;
  --navy-light:   #2A4A72;
  --gold:         #C8922A;
  --gold-light:   #E8B84B;
  --gold-pale:    #FBF0DA;
  --crimson:      #8B1C35;
  --crimson-dark: #6E1527;
  --slate:        #4A6FA5;
  --slate-light:  #6B8EC7;

  /* Neutrals */
  --white:        #FFFFFF;
  --off-white:    #F7F5F1;
  --light-gray:   #EDEAE4;
  --mid-gray:     #9CA3AF;
  --dark-gray:    #374151;
  --text:         #1A1C2E;
  --text-muted:   #6B7280;

  /* Gradients */
  --grad-navy:    linear-gradient(135deg, #0F1E30 0%, #1C3557 60%, #2A4A72 100%);
  --grad-gold:    linear-gradient(135deg, #C8922A 0%, #E8B84B 100%);
  --grad-hero:    linear-gradient(160deg, rgba(15,30,48,0.92) 0%, rgba(28,53,87,0.80) 50%, rgba(15,30,48,0.88) 100%);
  --grad-crimson: linear-gradient(135deg, #6E1527 0%, #8B1C35 100%);

  /* Shadows */
  --shadow-xs:    0 1px 2px rgba(0,0,0,0.06);
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:    0 16px 48px rgba(0,0,0,0.16), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-gold:  0 4px 24px rgba(200,146,42,0.35);
  --shadow-navy:  0 4px 20px rgba(28,53,87,0.40);
  --shadow-crim:  0 4px 20px rgba(139,28,53,0.40);

  /* Transitions */
  --ease-fast:    all 0.15s ease;
  --ease-base:    all 0.30s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow:    all 0.50s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:  all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Border Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* Spacing Scale */
  --sp-1:  0.25rem;
  --sp-2:  0.50rem;
  --sp-3:  0.75rem;
  --sp-4:  1.00rem;
  --sp-5:  1.25rem;
  --sp-6:  1.50rem;
  --sp-8:  2.00rem;
  --sp-10: 2.50rem;
  --sp-12: 3.00rem;
  --sp-16: 4.00rem;
  --sp-20: 5.00rem;
  --sp-24: 6.00rem;

  /* Typography */
  --font-head: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w:       1200px;
  --header-h:    80px;
  --announce-h:  38px;
  --total-top:   118px; /* header + announce */
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--total-top);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 5.0rem); font-weight: 900; letter-spacing: -0.025em; }
h2 { font-size: clamp(2.0rem, 4.0vw, 3.0rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
h5 { font-size: 1.0rem; font-weight: 600; }

p { color: var(--text-muted); line-height: 1.78; }

/* ================================================================
   LAYOUT
   ================================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.section      { padding: var(--sp-20) 0; }
.section--lg  { padding: var(--sp-24) 0; }
.section--sm  { padding: var(--sp-12) 0; }

.section--dark      { background: var(--grad-navy); }
.section--off-white { background: var(--off-white); }
.section--light     { background: var(--light-gray); }

/* Section Header */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-16);
}
.section-header h2    { margin-bottom: var(--sp-4); }
.section-header p     { font-size: 1.1rem; }

.label-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(200,146,42,0.25);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
}
.label-pill--light {
  color: var(--gold-light);
  background: rgba(232,184,75,0.12);
  border-color: rgba(232,184,75,0.25);
}

/* Accent line under labels */
.accent-line {
  display: block;
  width: 52px;
  height: 3px;
  background: var(--grad-gold);
  border-radius: var(--r-full);
  margin: var(--sp-5) auto 0;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-8);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  transition: var(--ease-base);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--ease-fast);
}
.btn:hover::before { background: rgba(255,255,255,0.08); }
.btn:active { transform: scale(0.98); }

.btn--crimson {
  background: var(--grad-crimson);
  color: var(--white);
  box-shadow: var(--shadow-crim);
}
.btn--crimson:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139,28,53,0.45);
}

.btn--gold {
  background: var(--grad-gold);
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,146,42,0.45);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-navy);
}
.btn--navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(28,53,87,0.50);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.10);
  transform: translateY(-2px);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: var(--sp-5) var(--sp-10);
  font-size: 0.9rem;
}
.btn--sm {
  padding: var(--sp-3) var(--sp-5);
  font-size: 0.72rem;
}
.btn i, .btn svg { transition: transform 0.25s ease; }
.btn:hover i.fa-arrow-right,
.btn:hover i.fa-phone { transform: translateX(3px); }

/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */
.announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--announce-h);
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--sp-4);
  gap: var(--sp-6);
}
.announce-bar__text {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}
.announce-bar__text span { color: var(--gold-light); }
.announce-bar__divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ================================================================
   HEADER / NAV
   ================================================================ */
.header {
  position: fixed;
  top: var(--announce-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(28,53,87,0.08);
  transition: var(--ease-base);
}
.header.scrolled {
  box-shadow: 0 4px 24px rgba(28,53,87,0.12);
  background: rgba(255,255,255,0.99);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  gap: var(--sp-4);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}
.logo__img {
  height: 54px;
  width: auto;
  object-fit: contain;
}
.logo__text { display: flex; flex-direction: column; }
.logo__name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.logo__sub {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.nav__item { position: relative; }

.nav__link {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-4);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--dark-gray);
  border-radius: var(--r-sm);
  transition: var(--ease-base);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: var(--r-full);
  transition: width 0.3s ease;
}
.nav__link:hover,
.nav__link.active { color: var(--navy); }
.nav__link:hover::after,
.nav__link.active::after { width: calc(100% - 2rem); }

.nav__link .fa-chevron-down {
  font-size: 0.6rem;
  transition: transform 0.25s ease;
}
.nav__item:hover .nav__link .fa-chevron-down { transform: rotate(180deg); }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-2) 0;
  min-width: 210px;
  border: 1px solid rgba(28,53,87,0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--ease-base);
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-link {
  display: block;
  padding: var(--sp-3) var(--sp-6);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-gray);
  transition: var(--ease-fast);
  border-left: 2px solid transparent;
}
.nav__dropdown-link:hover {
  background: var(--off-white);
  color: var(--navy);
  border-left-color: var(--gold);
  padding-left: var(--sp-8);
}

/* Nav Actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-shrink: 0;
}
.nav__phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-head);
  font-size: 1.0rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: var(--ease-fast);
}
.nav__phone:hover { color: var(--gold-light); }
.nav__phone i { font-size: 0.85rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--sp-2);
  border-radius: var(--r-sm);
  transition: var(--ease-base);
  flex-shrink: 0;
}
.hamburger:hover { background: var(--off-white); }
.hamburger__bar {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: var(--r-full);
  transition: var(--ease-base);
  transform-origin: center;
}
.hamburger.open .hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .hamburger__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,30,48,0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--ease-base);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -340px;
  bottom: 0;
  width: 320px;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 48px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { right: 0; }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-6);
  border-bottom: 1px solid rgba(28,53,87,0.07);
  flex-shrink: 0;
}
.mobile-menu__close {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  transition: var(--ease-fast);
}
.mobile-menu__close:hover { background: var(--light-gray); }

.mobile-menu__body { padding: var(--sp-4) var(--sp-5); flex: 1; }

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-4);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark-gray);
  border-radius: var(--r-sm);
  border-bottom: 1px solid rgba(28,53,87,0.05);
  transition: var(--ease-fast);
}
.mobile-nav-link:hover {
  background: var(--off-white);
  color: var(--navy);
}
.mobile-nav-sub {
  padding: var(--sp-2) 0 var(--sp-2) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.mobile-nav-sub-link {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-sm);
  border-left: 2px solid rgba(28,53,87,0.1);
  transition: var(--ease-fast);
}
.mobile-nav-sub-link:hover {
  color: var(--navy);
  border-left-color: var(--gold);
  background: var(--off-white);
}

.mobile-menu__footer {
  padding: var(--sp-5) var(--sp-5) var(--sp-8);
  border-top: 1px solid rgba(28,53,87,0.07);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.mobile-phone-block {
  background: var(--gold-pale);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  border: 1px solid rgba(200,146,42,0.2);
}
.mobile-phone-block__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-1);
}
.mobile-phone-block__number {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--navy);
}
.mobile-phone-block__emergency {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: var(--sp-1);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--total-top));
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1551632811-561732d1e306?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.hero__bg.loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-24) var(--sp-6) var(--sp-20);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(200,146,42,0.14);
  border: 1px solid rgba(232,184,75,0.35);
  color: var(--gold-light);
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
  backdrop-filter: blur(8px);
}
.hero__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse-dot 2.2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.6); }
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: var(--sp-5);
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
  max-width: 760px;
}
.hero__title .gold { color: var(--gold-light); }

.hero__sub {
  font-size: clamp(1.0rem, 2.2vw, 1.35rem);
  color: rgba(255,255,255,0.80);
  max-width: 540px;
  margin-bottom: var(--sp-6);
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-10);
}
.hero__tag {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.2);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  backdrop-filter: blur(4px);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-16);
}

/* Hero trust badges */
.hero__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  max-width: 740px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-4);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  transition: var(--ease-base);
}
.hero__trust-item:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(200,146,42,0.30);
  transform: translateY(-2px);
}
.hero__trust-icon {
  width: 38px;
  height: 38px;
  background: rgba(200,146,42,0.18);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.hero__trust-text {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.02em;
  line-height: 1.35;
}
.hero__trust-text strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.82rem;
  margin-bottom: 1px;
}

/* Scroll cue */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.40);
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: hero-scroll 2.4s ease infinite;
}
@keyframes hero-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 0.4; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 0.8; }
}
.hero__scroll-ring {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  background: var(--navy-dark);
  padding: var(--sp-4) 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-bar__item {
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
  position: relative;
}
.stats-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.stats-bar__num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--sp-1);
}
.stats-bar__label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}

/* ================================================================
   SERVICES
   ================================================================ */
.services { padding: var(--sp-24) 0; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.service-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(28,53,87,0.06);
  transition: var(--ease-base);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card__thumb {
  position: relative;
  height: 192px;
  overflow: hidden;
}
.service-card__thumb-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card__thumb-bg { transform: scale(1.06); }

.service-card__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card__thumb-img { transform: scale(1.06); }

.service-card__thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,30,48,0.6) 0%, transparent 55%);
}
.service-card__thumb-icon {
  position: absolute;
  bottom: var(--sp-4);
  left: var(--sp-4);
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  transition: var(--ease-base);
}
.service-card:hover .service-card__thumb-icon {
  background: var(--crimson);
  color: var(--white);
  transform: scale(1.08) rotate(-4deg);
}

.service-card__body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--sp-3);
}
.service-card__desc {
  font-size: 0.88rem;
  line-height: 1.72;
  color: var(--text-muted);
  flex: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--ease-base);
}
.service-card__link i { font-size: 0.75rem; transition: transform 0.25s ease; }
.service-card:hover .service-card__link { color: var(--crimson); }
.service-card:hover .service-card__link i { transform: translateX(5px); }

/* ================================================================
   ABOUT
   ================================================================ */
.about { padding: var(--sp-24) 0; background: var(--off-white); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.about__visual { position: relative; }

.about__img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}
.about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about__img-wrap:hover img { transform: scale(1.04); }

.about__badge {
  position: absolute;
  bottom: -20px;
  right: 1.5rem;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-xl);
  text-align: center;
  border: 1px solid rgba(28,53,87,0.07);
  min-width: 150px;
}
.about__badge-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.about__badge-txt {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
  margin-top: var(--sp-1);
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin: var(--sp-8) 0;
}
.about__val {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(28,53,87,0.06);
  transition: var(--ease-base);
}
.about__val:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(200,146,42,0.20);
  transform: translateY(-2px);
}
.about__val-icon {
  width: 38px;
  height: 38px;
  background: var(--gold-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--ease-base);
}
.about__val:hover .about__val-icon {
  background: var(--gold);
  color: var(--navy-dark);
}
.about__val-label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}
.about__val-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.4;
}

/* Service card gradient thumbnails (no-image variant) */
.service-card__thumb--emergency { background: linear-gradient(135deg, #0F1E30 0%, #1C3557 100%); }
.service-card__thumb--repair    { background: linear-gradient(135deg, #1C3557 0%, #2A4A72 100%); }
.service-card__thumb--reno      { background: linear-gradient(135deg, #2A4A72 0%, #4A6FA5 100%); }
.service-card__thumb--heat      { background: linear-gradient(135deg, #6E1527 0%, #C8922A 100%); }

.service-card__thumb--emergency .svc-bg-icon,
.service-card__thumb--repair    .svc-bg-icon,
.service-card__thumb--reno      .svc-bg-icon,
.service-card__thumb--heat      .svc-bg-icon {
  font-size: 4.5rem;
  color: rgba(255,255,255,0.10);
  pointer-events: none;
  transition: transform 0.6s ease;
}
.service-card:hover .svc-bg-icon { transform: scale(1.1); }

/* Service detail gradient images */
.service-detail__img--grad {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-detail__img--grad .svc-bg-icon {
  font-size: 7rem;
  color: rgba(255,255,255,0.10);
}

/* Service nav pills (services.html) */
.svc-pill {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.5rem 1.1rem;
  background: var(--white);
  border: 1px solid rgba(28,53,87,0.12);
  border-radius: var(--r-full);
  transition: var(--ease-base);
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
}
.svc-pill:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-1px);
}

/* ================================================================
   GUARANTEE STRIP
   ================================================================ */
.guarantee-strip {
  background: var(--navy);
  padding: var(--sp-12) 0;
}
.guarantee-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  align-items: start;
}
.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}
.guarantee-item__icon {
  width: 50px;
  height: 50px;
  background: rgba(200,146,42,0.15);
  border: 1px solid rgba(200,146,42,0.25);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.guarantee-item__title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-2);
}
.guarantee-item__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials {
  padding: var(--sp-24) 0;
  background: var(--grad-navy);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '\201C';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 380px;
  font-family: Georgia, serif;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}
.t-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  transition: var(--ease-base);
  position: relative;
}
.t-card::before {
  content: '\201C';
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-6);
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(200,146,42,0.20);
  line-height: 1;
}
.t-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(200,146,42,0.25);
  transform: translateY(-5px);
  box-shadow: 0 12px 44px rgba(0,0,0,0.25);
}
.t-card__stars {
  display: flex;
  gap: 3px;
  color: var(--gold-light);
  font-size: 0.85rem;
  margin-bottom: var(--sp-4);
}
.t-card__text {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.78;
  font-style: italic;
  margin-bottom: var(--sp-6);
}
.t-card__footer {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.t-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
  flex-shrink: 0;
}
.t-card__name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.t-card__source {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

.reviews-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-12);
  flex-wrap: wrap;
}

/* ================================================================
   SERVICE AREAS
   ================================================================ */
.areas { padding: var(--sp-20) 0; background: var(--off-white); }
.areas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.area-card {
  background: var(--white);
  border: 1px solid rgba(28,53,87,0.08);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  transition: var(--ease-spring);
}
.area-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.area-card__icon {
  width: 60px;
  height: 60px;
  background: var(--gold-pale);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  font-size: 1.5rem;
  color: var(--gold);
  transition: var(--ease-base);
}
.area-card:hover .area-card__icon {
  background: var(--gold);
  color: var(--navy-dark);
}
.area-card__name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}
.area-card__region {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  background: var(--grad-crimson);
  padding: var(--sp-16) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -8%;
  width: 55%;
  height: 220%;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}
.cta-banner__pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.cta-banner__title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: var(--sp-3);
}
.cta-banner__text { color: rgba(255,255,255,0.78); font-size: 0.95rem; }
.cta-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.cta-banner__phone {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: var(--ease-fast);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.cta-banner__phone:hover { color: var(--gold-light); }
.cta-banner__note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--navy-dark);
  padding: var(--sp-16) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__logo { margin-bottom: var(--sp-5); }
.footer__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.75;
  margin-bottom: var(--sp-6);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.footer__contact-icon {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}
.footer__contact-val {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}
.footer__contact-val a {
  color: rgba(255,255,255,0.75);
  transition: var(--ease-fast);
}
.footer__contact-val a:hover { color: var(--gold-light); }

.footer__col-head {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-3);
  position: relative;
}
.footer__col-head::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: var(--r-full);
}

.footer__links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: var(--ease-fast);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.footer__link i { font-size: 0.7rem; color: var(--gold); opacity: 0; transition: var(--ease-fast); }
.footer__link:hover { color: rgba(255,255,255,0.88); padding-left: var(--sp-1); }
.footer__link:hover i { opacity: 1; }

.footer__social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.footer__social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--ease-spring);
  text-decoration: none;
}
.footer__social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) 0;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer__bottom-links {
  display: flex;
  gap: var(--sp-5);
}
.footer__bottom-link {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: var(--ease-fast);
}
.footer__bottom-link:hover { color: rgba(255,255,255,0.65); }

/* ================================================================
   PAGE HERO (Inner Pages)
   ================================================================ */
.page-hero {
  background: var(--grad-navy);
  padding: var(--sp-24) 0 var(--sp-20);
  position: relative;
  overflow: hidden;
}
.page-hero__bg-texture {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  position: relative;
  z-index: 1;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.45); transition: var(--ease-fast); }
.page-hero__breadcrumb a:hover { color: var(--gold-light); }
.page-hero__breadcrumb span { color: var(--gold-light); }
.page-hero__breadcrumb i { font-size: 0.6rem; }

.page-hero__content { position: relative; z-index: 1; }
.page-hero__label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: var(--sp-4);
}
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.022em;
  margin-bottom: var(--sp-4);
}
.page-hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-10);
}
.contact-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(28,53,87,0.06);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  transition: var(--ease-base);
}
.contact-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,146,42,0.20);
  transform: translateY(-2px);
}
.contact-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--ease-base);
}
.contact-card:hover .contact-card__icon {
  background: var(--gold);
  color: var(--navy-dark);
}
.contact-card__label {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
}
.contact-card__val {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
}
.contact-card__val a {
  color: inherit;
  transition: var(--ease-fast);
}
.contact-card__val a:hover { color: var(--gold); }
.contact-card__note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: var(--sp-2);
  line-height: 1.4;
}

/* Contact layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-12);
  align-items: start;
}

/* Forms */
.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(28,53,87,0.06);
}
.form-card__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}
.form-card__sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-8);
}
.form-group { margin-bottom: var(--sp-5); }
.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-gray);
  margin-bottom: var(--sp-2);
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--sp-4) var(--sp-5);
  border: 2px solid rgba(28,53,87,0.10);
  border-radius: var(--r-lg);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: var(--ease-base);
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(28,53,87,0.08);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--mid-gray); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

/* Guarantee boxes */
.guarantee-boxes {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(28,53,87,0.07);
  box-shadow: var(--shadow-sm);
  transition: var(--ease-base);
}
.guarantee-box:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(200,146,42,0.20);
}
.guarantee-box__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.guarantee-box__title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-1);
}
.guarantee-box__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Services page detail */
.service-detail {
  padding: var(--sp-16) 0;
  border-bottom: 1px solid rgba(28,53,87,0.07);
}
.service-detail:last-child { border-bottom: none; }
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.service-detail__grid--flip .service-detail__img { order: 2; }
.service-detail__grid--flip .slide-left  { order: 2; }
.service-detail__grid--flip .slide-right { order: 1; }

.service-detail__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.service-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-detail__img:hover img { transform: scale(1.04); }

.service-detail__icon {
  width: 58px;
  height: 58px;
  background: var(--gold-pale);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: var(--sp-5);
  transition: var(--ease-base);
}
.service-detail:hover .service-detail__icon {
  background: var(--gold);
  color: var(--navy-dark);
}

.service-detail__list {
  margin-top: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.service-detail__list-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.88rem;
  color: var(--text-muted);
}
.service-detail__list-item i {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* About page specific */
.story-block {
  padding: var(--sp-20) 0;
}
.story-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.story-highlight {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.65;
  font-style: italic;
  padding-left: var(--sp-5);
  border-left: 3px solid var(--gold);
  margin: var(--sp-6) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-12);
}
.value-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  border: 1px solid rgba(28,53,87,0.07);
  box-shadow: var(--shadow-sm);
  transition: var(--ease-spring);
}
.value-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,146,42,0.20);
  transform: translateY(-6px);
}
.value-card__icon {
  width: 64px;
  height: 64px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--ease-base);
}
.value-card:hover .value-card__icon {
  background: var(--gold);
  color: var(--navy-dark);
}
.value-card__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--sp-3);
}
.value-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.65s ease;
}
.fade-in.visible { opacity: 1; }

.slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.slide-left.visible { opacity: 1; transform: translateX(0); }

.slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.slide-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }
.delay-5 { transition-delay: 0.50s; }
.delay-6 { transition-delay: 0.60s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer__grid > .footer__col:last-child { grid-column: 1 / -1; }
  .guarantee-strip__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  :root { --header-h: 72px; --total-top: 110px; }
  .hero__trust { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item:nth-child(2)::after,
  .stats-bar__item:nth-child(4)::after { display: none; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .about__img-wrap { max-height: 480px; }
  .about__badge { right: var(--sp-6); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__content { max-width: 600px; }
  .story-block__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .service-detail__grid { grid-template-columns: 1fr; }
  .service-detail__grid--flip .service-detail__img,
  .service-detail__grid--flip .slide-left,
  .service-detail__grid--flip .slide-right { order: 0; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 66px; --announce-h: 34px; --total-top: 100px; }

  .nav, .nav__actions .btn, .nav__phone { display: none; }
  .hamburger { display: flex; }

  /* Hide about badge on mobile — prevents overflow */
  .about__badge { display: none; }

  /* Stats bar dividers at 2-col */
  .stats-bar__item:nth-child(odd)::after { display: block; }
  .stats-bar__item:nth-child(even)::after { display: none; }

  /* Mobile menu safe area */
  .mobile-menu__footer { padding-bottom: max(2rem, env(safe-area-inset-bottom, 2rem)); }

  .announce-bar__divider { display: none; }
  .announce-bar__text:not(:first-child) { display: none; }

  .services__grid { grid-template-columns: 1fr; }
  .about__values { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
  .guarantee-strip__grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .contact-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; }
  .hero__trust { grid-template-columns: repeat(2, 1fr); }

  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__brand { padding-right: 0; }

  .cta-banner__phone { font-size: 1.6rem; }
  .cta-banner__actions { width: 100%; }
}

@media (max-width: 520px) {
  .container { padding: 0 var(--sp-4); }
  .hero__trust { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: 1fr; }
  .stats-bar__num { font-size: 1.9rem; }
  .form-card { padding: var(--sp-6); }
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Tighten hero padding on very small screens */
  .hero__content { padding-top: var(--sp-16); padding-bottom: var(--sp-16); }
  .hero__ctas { margin-bottom: var(--sp-10); }

  /* Service nav pills: scroll horizontally on mobile */
  .svc-pill-wrap { justify-content: flex-start !important; flex-wrap: nowrap !important; }

  /* Page hero tighten */
  .page-hero { padding-top: calc(var(--total-top) + var(--sp-12)); padding-bottom: var(--sp-12); }

  /* Footer */
  .footer__social { flex-wrap: wrap; }

  .announce-bar { height: auto; padding: var(--sp-2) var(--sp-3); }
  :root { --announce-h: 44px; --total-top: 110px; }
}

/* Ensure sticky service nav scrolls horizontally on small screens */
@media (max-width: 600px) {
  .svc-pill-nav-container { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .svc-pill-nav-container > div { flex-wrap: nowrap; min-width: max-content; padding: 0 1rem; }
}
