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

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

:root {
  --red: #c41e1e;
  --red-dark: #a01818;
  --red-light: #e02222;
  --charcoal: #1e1e1e;
  --charcoal-mid: #2d2d2d;
  --charcoal-light: #3d3d3d;
  --white: #ffffff;
  --off-white: #f4f4f4;
  --light-gray: #e8e8e8;
  --mid-gray: #999999;
  --text-dark: #1a1a1a;
  --text-body: #3a3a3a;
  --yellow: #f5c518;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ============================================================
   TOP RIBBON
   ============================================================ */
.top-ribbon {
  background: var(--charcoal);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-ribbon .ribbon-tagline {
  color: var(--mid-gray);
}

.top-ribbon .ribbon-phone {
  color: var(--yellow);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.top-ribbon .ribbon-phone a {
  color: var(--yellow);
}

.top-ribbon .ribbon-phone a:hover {
  color: var(--white);
}

.top-ribbon .ribbon-hours {
  color: var(--mid-gray);
}

.ribbon-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 0.1rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 0.4rem;
}

/* ============================================================
   PROMO STRIP
   ============================================================ */
.promo-strip {
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem 1rem;
  position: relative;
}

.promo-strip span {
  opacity: 0.85;
  font-weight: 400;
  margin: 0 0.5rem;
}

/* ============================================================
   NAV
   ============================================================ */
.site-header {
  background: var(--charcoal-mid);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid var(--red);
}

.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.nav-logo-text span {
  color: var(--red);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu a {
  color: var(--light-gray);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.75rem;
  transition: color 0.2s;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--yellow);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-phone svg {
  flex-shrink: 0;
}

.btn-book {
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.55rem 1.25rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}

.btn-book:hover {
  background: var(--red-light);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.25rem;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  background: var(--charcoal);
  padding: 1rem 1.5rem;
  border-top: 2px solid var(--red);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  color: var(--light-gray);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--charcoal-light);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--yellow);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.85rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.8rem 2rem;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--charcoal);
}

.btn-outline-red {
  display: inline-block;
  background: transparent;
  color: var(--red);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.7rem 1.75rem;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1660330590022-9f4ff56b63f6?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5MTU3NzJ8MHwxfHNlYXJjaHwxfHxwcm9mZXNzaW9uYWwlMjBFbGVjdHJpY2lhbiUyMHdvcmtpbmd8ZW58MXwwfHx8MTc3NTk0NTQyMXww&ixlib=rb-4.1.0&q=80&w=1080');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20,20,20,0.92) 0%,
    rgba(30,30,30,0.80) 50%,
    rgba(20,20,20,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-left {
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.0;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

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

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-services-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 2.25rem;
}

.hero-services-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.9);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-services-list li svg {
  color: var(--red);
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-phone-big {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--yellow);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-top: 1.75rem;
}

.hero-phone-big svg {
  color: var(--yellow);
}

.hero-phone-big small {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--mid-gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

/* Hero card */
.hero-card {
  background: rgba(30,30,30,0.92);
  border-top: 4px solid var(--red);
  padding: 2rem;
}

.hero-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--charcoal-light);
}

.hero-card-stat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero-card-stat:last-of-type {
  border-bottom: none;
}

.hero-card-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
  min-width: 70px;
}

.hero-card-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.45;
  padding-top: 0.25rem;
}

.hero-card-stat-label strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-card-btn {
  display: block;
  background: var(--red);
  color: var(--white);
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.9rem;
  margin-top: 1.5rem;
  transition: background 0.2s;
}

.hero-card-btn:hover {
  background: var(--red-light);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--red);
  color: var(--white);
  padding: 1rem 1.5rem;
}

.trust-strip-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 2rem;
  position: relative;
}

.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255,255,255,0.3);
}

.trust-item svg {
  flex-shrink: 0;
}

/* ============================================================
   SECTION UTILITY
   ============================================================ */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.section-title.white {
  color: var(--white);
}

.section-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
}

.section-body.light {
  color: rgba(255,255,255,0.78);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   GRILLE DIVIDER
   ============================================================ */
.grille-divider {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0px,
    var(--red) 18px,
    var(--charcoal) 18px,
    var(--charcoal) 24px
  );
}

/* ============================================================
   STAT BAR
   ============================================================ */
.stat-bar {
  background: var(--charcoal);
  padding: 3rem 1.5rem;
}

.stat-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--charcoal-light);
}

.stat-block {
  background: var(--charcoal-mid);
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
  display: block;
}

.stat-unit {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--red);
}

.stat-desc {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
  margin-top: 0.35rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: 5rem 1.5rem;
  background: var(--off-white);
}

.services-header {
  max-width: 1300px;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.services-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(20,20,20,0.6));
}

.service-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  flex-shrink: 0;
}

.service-card-icon svg {
  color: var(--white);
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  line-height: 1.1;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-body);
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  color: var(--red);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: gap 0.2s;
}

.service-card-link:hover {
  gap: 0.6rem;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 5rem 1.5rem;
  background: var(--white);
}

.about-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-block {
  position: relative;
}

.about-img-block img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--red);
  color: var(--white);
  padding: 1.5rem;
  min-width: 150px;
  text-align: center;
}

.about-img-badge .badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1;
  display: block;
  color: var(--white);
}

.about-img-badge .badge-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  margin-top: 0.2rem;
}

.about-content {
}

.about-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--light-gray);
}

.about-highlight {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-highlight-icon {
  width: 48px;
  height: 48px;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-highlight-icon svg {
  color: var(--red);
}

.about-highlight-text strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.about-highlight-text p {
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   EMERGENCY BAND
   ============================================================ */
.emergency-band {
  background: var(--charcoal);
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.emergency-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1607631697491-61972eecf928?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5MTU3NzJ8MHwxfHNlYXJjaHwxfHxFbGVjdHJpY2lhbiUyMGZpbmlzaGVkJTIwcHJvamVjdCUyMHJlc3VsdHxlbnwxfDB8fHwxNzc1OTQ1NDI0fDA&ixlib=rb-4.1.0&q=80&w=1080');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.emergency-band-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.emergency-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.emergency-band h2 span {
  color: var(--red);
}

.emergency-band p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.6;
}

.emergency-cta {
  text-align: right;
  flex-shrink: 0;
}

.emergency-cta .big-phone {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--yellow);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  white-space: nowrap;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.process-section {
  padding: 5rem 1.5rem;
  background: var(--off-white);
}

.process-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: var(--red);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 64px;
  height: 64px;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--off-white);
}

.process-step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #666;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--charcoal);
  padding: 5rem 1.5rem;
}

.testimonials-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.testimonials-header {
  margin-bottom: 2.5rem;
}

.testimonials-header p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  margin-top: 0.75rem;
  max-width: 560px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--charcoal-mid);
  padding: 1.75rem;
  border-left: 4px solid var(--red);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.75rem;
}

.star-filled {
  color: var(--yellow);
}

.star-empty {
  color: #555;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-initials {
  width: 42px;
  height: 42px;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--mid-gray);
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  padding: 5rem 1.5rem;
  background: var(--white);
}

.service-areas-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.areas-sidebar h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.areas-sidebar p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #666;
  margin-bottom: 1.5rem;
}

.areas-phone {
  background: var(--charcoal);
  padding: 1.25rem;
  text-align: center;
}

.areas-phone p {
  color: var(--mid-gray);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.areas-phone a {
  color: var(--yellow);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  display: block;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.area-group h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  border-bottom: 2px solid var(--red);
  padding-bottom: 0.4rem;
  margin-bottom: 0.6rem;
}

.area-group ul li {
  font-size: 0.88rem;
  color: var(--text-body);
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.area-group ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--charcoal-light);
  display: inline-block;
  flex-shrink: 0;
}

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.certs-section {
  background: var(--charcoal-mid);
  padding: 2.5rem 1.5rem;
}

.certs-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.certs-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mid-gray);
  white-space: nowrap;
  padding-right: 1.5rem;
  border-right: 1px solid var(--charcoal-light);
}

.certs-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.cert-badge {
  background: var(--charcoal);
  border: 1px solid var(--charcoal-light);
  padding: 0.6rem 1.25rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light-gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cert-badge svg {
  color: var(--red);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 5rem 1.5rem;
  background: var(--off-white);
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-item:first-child {
  border-top: 1px solid var(--light-gray);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--red);
}

.faq-question.open {
  color: var(--red);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.faq-question.open .faq-icon {
  background: var(--red);
}

.faq-icon svg {
  color: var(--white);
  transition: transform 0.25s;
}

.faq-question.open .faq-icon svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-body);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--red);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 320px;
  height: 320px;
  border: 40px solid rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.cta-phone-note {
  color: rgba(255,255,255,0.75);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.cta-phone-note a {
  color: var(--yellow);
  font-weight: 700;
}

/* ============================================================
   PROMO FINANCING
   ============================================================ */
.financing-band {
  background: var(--charcoal);
  padding: 2.5rem 1.5rem;
}

.financing-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.financing-text {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.financing-badge {
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.8rem;
  white-space: nowrap;
}

.financing-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

.financing-text p {
  font-size: 0.88rem;
  color: var(--mid-gray);
  margin-top: 0.2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 3.5rem 1.5rem 0;
  border-top: 4px solid var(--red);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand {
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border: 2px solid var(--red);
}

.footer-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.footer-logo-text span {
  color: var(--red);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--mid-gray);
  margin-bottom: 1.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
  color: var(--mid-gray);
}

.footer-contact-item svg {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: var(--light-gray);
  transition: color 0.2s;
}

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

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.footer-col ul li {
  margin-bottom: 0.4rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--mid-gray);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-col ul li a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--red);
  display: inline-block;
  flex-shrink: 0;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--mid-gray);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--charcoal-light);
}

.footer-hours-row:last-child {
  border-bottom: none;
}

.footer-hours-row span:last-child {
  color: var(--light-gray);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid var(--charcoal-light);
  padding: 1.25rem 0;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--mid-gray);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--mid-gray);
  transition: color 0.2s;
}

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

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--charcoal);
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: var(--red);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.12;
}

.page-hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb a {
  color: var(--mid-gray);
  transition: color 0.2s;
}

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

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.page-hero h1 span {
  color: var(--red);
}

.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 600px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  padding: 5rem 1.5rem;
  background: var(--white);
}

.about-story-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.story-img {
  position: relative;
}

.story-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.story-img-caption {
  background: var(--charcoal);
  padding: 1rem 1.25rem;
}

.story-img-caption p {
  font-size: 0.82rem;
  color: var(--mid-gray);
  font-style: italic;
}

.story-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.story-content p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.story-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--light-gray);
}

.story-value {
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--red);
  background: var(--off-white);
}

.story-value h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.story-value p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.about-team {
  padding: 5rem 1.5rem;
  background: var(--off-white);
}

.about-team-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.team-header {
  margin-bottom: 3rem;
}

.pledge-section {
  padding: 5rem 1.5rem;
  background: var(--white);
}

.pledge-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.pledge-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pledge-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--off-white);
  border-left: 3px solid var(--red);
}

.pledge-item svg {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.pledge-item p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-body);
}

.pledge-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-full {
  padding: 5rem 1.5rem;
  background: var(--white);
}

.services-full-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  margin-bottom: 2.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.service-detail-card:nth-child(even) {
  grid-template-columns: 1fr 380px;
}

.service-detail-card:nth-child(even) .service-detail-img {
  order: 2;
}

.service-detail-card:nth-child(even) .service-detail-body {
  order: 1;
}

.service-detail-img {
  overflow: hidden;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.4s;
}

.service-detail-card:hover .service-detail-img img {
  transform: scale(1.04);
}

.service-detail-body {
  background: var(--white);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail-body .service-icon {
  width: 52px;
  height: 52px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-detail-body .service-icon svg {
  color: var(--white);
}

.service-detail-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.service-detail-body p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.service-includes {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.service-includes li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-body);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-includes li svg {
  color: var(--red);
  flex-shrink: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: 5rem 1.5rem;
  background: var(--off-white);
}

.contact-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-block {
  background: var(--white);
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form-block h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--red);
}

.contact-form-block p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #666;
  margin-bottom: 1.75rem;
  margin-top: 0.75rem;
}

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

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--light-gray);
  background: var(--off-white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

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

.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 fill='%23333' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover {
  background: var(--red-light);
}

.form-success {
  display: none;
  background: #2d7a2d;
  color: var(--white);
  padding: 1.25rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 1rem;
}

.contact-sidebar {
}

.contact-info-card {
  background: var(--charcoal);
  padding: 2rem;
  margin-bottom: 1.25rem;
  border-top: 4px solid var(--red);
}

.contact-info-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--charcoal-light);
}

.contact-info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-info-row svg {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-row-text strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
  margin-bottom: 0.2rem;
}

.contact-info-row-text p,
.contact-info-row-text a {
  font-size: 0.95rem;
  color: var(--light-gray);
  line-height: 1.5;
}

.contact-info-row-text a:hover {
  color: var(--yellow);
}

.contact-emergency-box {
  background: var(--red);
  padding: 1.75rem;
  text-align: center;
}

.contact-emergency-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-emergency-box p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}

.contact-emergency-box a.phone-big {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--yellow);
  letter-spacing: 0.04em;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .hero-card {
    display: none;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-img-badge {
    right: 0;
    bottom: 0;
  }
  
  .stat-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .process-grid::before {
    display: none;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .service-areas-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .service-detail-card,
  .service-detail-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  
  .service-detail-card:nth-child(even) .service-detail-img,
  .service-detail-card:nth-child(even) .service-detail-body {
    order: unset;
  }
  
  .contact-inner {
    grid-template-columns: 1fr;
  }
  
  .about-story-inner,
  .pledge-inner {
    grid-template-columns: 1fr;
  }
  
  .emergency-band-inner {
    grid-template-columns: 1fr;
  }
  
  .emergency-cta {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .nav-hamburger {
    display: flex;
  }
  
  .nav-phone {
    font-size: 0.9rem;
  }
  
  .btn-book {
    display: none;
  }
  
  .top-ribbon {
    justify-content: center;
    text-align: center;
  }
  
  .top-ribbon .ribbon-tagline {
    display: none;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .areas-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .stat-bar-inner {
    grid-template-columns: 1fr 1fr;
  }
  
  .trust-item {
    padding: 0.4rem 0.75rem;
    font-size: 0.78rem;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .hero {
    min-height: 75vh;
  }
  
  .story-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
  
  .certs-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .certs-label {
    border-right: none;
    padding-right: 0;
  }
  
  .financing-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .trust-strip-inner {
    gap: 0.5rem;
  }
  
  .trust-item + .trust-item::before {
    display: none;
  }
}