/* ============================================
   MASTIN SEPTIC & WELL SERVICE
   Heritage / Industrial Aesthetic
   Brand: Navy #0A1F5C + Orange #E88B2E + Yellow #F5D948
   ============================================ */

:root {
  --navy: #0A1F5C;
  --navy-deep: #061440;
  --navy-light: #1a3478;
  --orange: #E88B2E;
  --orange-deep: #c97420;
  --orange-bright: #f29a3e;
  --yellow: #F5D948;
  --yellow-deep: #e0c32e;
  --cream: #f5efe4;
  --cream-dark: #e8dec9;
  --paper: #faf5ec;
  --ink: #1a1a1a;
  --ink-light: #4a4a4a;
  --rust: #8b3a1a;
  --shadow-sm: 0 2px 8px rgba(6, 20, 64, 0.08);
  --shadow: 0 4px 20px rgba(6, 20, 64, 0.12);
  --shadow-lg: 0 12px 40px rgba(6, 20, 64, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Libre Franklin', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(139, 58, 26, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(10, 31, 92, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
  opacity: 0.4;
}

main, section, nav, header, footer { position: relative; z-index: 3; }

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.eyebrow {
  font-family: 'Special Elite', serif;
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

/* ===== TOP STRIP ===== */
.top-strip {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 10px 0;
  font-size: 13px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(232, 139, 46, 0.2);
}

.top-strip-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-strip a { color: var(--orange); font-weight: 600; }
.top-strip a:hover { color: var(--orange-bright); }
.top-strip .divider { color: rgba(245, 239, 228, 0.3); margin: 0 14px; }

/* ===== NAVIGATION ===== */
nav.main-nav {
  background: var(--navy);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-bottom: 3px solid var(--orange);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo img {
  height: 60px;
  width: auto;
}

.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }

.logo-text-wrap .since {
  font-family: 'Special Elite', serif;
  font-size: 11px;
  color: var(--yellow);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.logo-text-wrap .sub {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  color: var(--cream);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--cream);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--orange);
  color: var(--navy-deep) !important;
  padding: 11px 22px !important;
  font-weight: 700 !important;
  border: 2px solid var(--orange);
  transition: all 0.2s;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: transparent; color: var(--orange) !important; }

.mobile-toggle {
  display: none;
  background: none;
  border: 2px solid var(--orange);
  color: var(--cream);
  padding: 8px 14px;
  cursor: pointer;
  font-size: 20px;
  font-family: 'Oswald', sans-serif;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 3px solid var(--orange);
  transition: all 0.25s;
  cursor: pointer;
  position: relative;
}

.btn-primary { background: var(--orange); color: var(--navy-deep); }
.btn-primary:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--navy-deep);
}

.btn-secondary { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-secondary:hover { background: var(--cream); color: var(--navy-deep); }

.btn-dark { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.btn-dark:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--orange);
}

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  color: var(--cream);
  padding: 100px 0 140px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--orange);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(6, 20, 64, 0.92) 0%, rgba(10, 31, 92, 0.85) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(232, 139, 46, 0.04) 60px, rgba(232, 139, 46, 0.04) 61px);
  z-index: 1;
}

/* Sunburst background signature */
.sunburst {
  position: absolute;
  right: -200px;
  top: -100px;
  width: 700px;
  height: 700px;
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-est-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 2px solid var(--orange);
  padding: 8px 18px;
  color: var(--orange);
  font-family: 'Special Elite', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-est-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.hero h1 {
  color: var(--cream);
  font-size: clamp(42px, 6vw, 84px);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero h1 .accent {
  color: var(--orange);
  display: inline-block;
  position: relative;
}

.hero h1 .underline {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

.hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(245, 239, 228, 0.85);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  margin-top: 56px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(232, 139, 46, 0.3);
}

.hero-stat .num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 44px;
  color: var(--orange);
  line-height: 1;
  display: block;
}

.hero-stat .lbl {
  font-family: 'Special Elite', serif;
  font-size: 12px;
  color: var(--cream);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge-big {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--orange) 0%, var(--orange-deep) 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  border: 6px solid var(--yellow);
  box-shadow: 0 0 0 2px var(--navy-deep), 0 20px 60px rgba(0,0,0,0.4);
  position: relative;
  animation: slowRotate 60s linear infinite;
}

@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-badge-big-inner {
  animation: slowRotate 60s linear infinite reverse;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge-big .big-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 110px;
  color: var(--navy-deep);
  line-height: 0.9;
}

.hero-badge-big .big-lbl {
  font-family: 'Special Elite', serif;
  font-size: 14px;
  color: var(--navy-deep);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 12px;
}

.hero-badge-big .big-sub {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--navy-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--navy-deep);
  width: 80%;
}

/* ===== SECTION BASICS ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--navy); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }
.section-cream { background: var(--cream); }

.section-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 16px;
}

.section-head p {
  font-size: 18px;
  color: var(--ink-light);
}

.section-dark .section-head p { color: rgba(245, 239, 228, 0.8); }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--paper);
  border: 2px solid var(--navy);
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 6px 6px 0 var(--navy);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.service-card p {
  color: var(--ink-light);
  font-size: 15px;
  line-height: 1.55;
}

/* ===== STORY / ABOUT TEASER ===== */
.story {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.story::before {
  content: 'EST. 1960';
  position: absolute;
  top: 40px;
  right: -40px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 180px;
  color: rgba(10, 31, 92, 0.05);
  letter-spacing: -0.02em;
  pointer-events: none;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.story h2 { font-size: clamp(36px, 4.5vw, 54px); margin-bottom: 24px; }

.story-lede {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--ink);
}

.generations {
  margin-top: 40px;
  border-left: 3px solid var(--orange);
  padding-left: 28px;
}

.gen {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px dashed rgba(10, 31, 92, 0.2);
}

.gen:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.gen .year {
  font-family: 'Special Elite', serif;
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gen .name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  margin: 4px 0;
}

.gen .role { font-size: 15px; color: var(--ink-light); }

.story-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--navy);
  overflow: hidden;
}

.story-visual-inner {
  position: absolute;
  inset: 12px;
  background:
    linear-gradient(135deg, rgba(232, 139, 46, 0.25) 0%, rgba(10, 31, 92, 0.6) 100%),
    repeating-linear-gradient(0deg, rgba(245, 217, 72, 0.08) 0px, rgba(245, 217, 72, 0.08) 2px, transparent 2px, transparent 12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  color: var(--cream);
  border: 1px solid rgba(245, 217, 72, 0.3);
}

.story-visual .placeholder-note {
  font-family: 'Special Elite', serif;
  font-size: 12px;
  color: var(--yellow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.story-visual h3 {
  color: var(--cream);
  font-size: 28px;
  margin-bottom: 12px;
}

.story-visual p { font-size: 14px; color: rgba(245, 239, 228, 0.8); }

/* ===== SERVICE AREA ===== */
.service-area {
  background: var(--navy);
  color: var(--cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-area h2 { color: var(--cream); font-size: clamp(36px, 4.5vw, 54px); margin-bottom: 20px; }

.counties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.county {
  border: 2px solid var(--orange);
  padding: 20px;
  background: rgba(232, 139, 46, 0.05);
  transition: all 0.2s;
}

.county:hover { background: rgba(232, 139, 46, 0.15); transform: translateY(-2px); }

.county .county-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.county .county-sub { font-size: 13px; color: rgba(245, 239, 228, 0.7); margin-top: 4px; }

.map-visual {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 60% 40%, rgba(232, 139, 46, 0.2), transparent 50%),
    var(--navy-deep);
  border: 3px solid var(--orange);
  position: relative;
  overflow: hidden;
}

.map-inner {
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(245, 239, 228, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--cream);
  text-align: center;
  padding: 30px;
}

.map-inner .pin {
  font-size: 64px;
  color: var(--orange);
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(232, 139, 46, 0.5));
}

.map-inner .city {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.05em;
  color: var(--yellow);
}

.map-inner .coords {
  font-family: 'Special Elite', serif;
  font-size: 13px;
  color: rgba(245, 239, 228, 0.6);
  letter-spacing: 0.15em;
  margin-top: 8px;
}

/* ===== BLOG TEASER ===== */
.blog-teaser { background: var(--paper); padding: 100px 0; position: relative; }

.mandi-feature {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
  background: var(--cream);
  padding: 60px;
  border: 3px solid var(--navy);
  position: relative;
}

.mandi-feature::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 60px;
  height: 60px;
  border-top: 6px solid var(--orange);
  border-left: 6px solid var(--orange);
}

.mandi-feature::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 60px;
  height: 60px;
  border-bottom: 6px solid var(--orange);
  border-right: 6px solid var(--orange);
}

.mandi-photo {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(232, 139, 46, 0.2), rgba(10, 31, 92, 0.4)),
    var(--navy);
  border: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-align: center;
  padding: 30px;
  font-family: 'Special Elite', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}

.mandi-feature h2 { font-size: clamp(32px, 3.8vw, 46px); margin-bottom: 20px; }
.mandi-feature .eyebrow { margin-bottom: 12px; }
.mandi-feature p { font-size: 17px; line-height: 1.7; color: var(--ink-light); margin-bottom: 20px; }
.mandi-feature .signature {
  font-family: 'Special Elite', serif;
  font-size: 15px;
  color: var(--navy);
  margin-top: 24px;
  margin-bottom: 28px;
}

/* ===== REVIEWS ===== */
.reviews { background: var(--cream); padding: 100px 0; }

.reviews-top {
  text-align: center;
  margin-bottom: 56px;
}

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border: 2px solid var(--navy);
  padding: 14px 26px;
  margin-bottom: 24px;
}

.stars { color: var(--orange); font-size: 22px; letter-spacing: 3px; }

.rating-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.review-card {
  background: var(--paper);
  padding: 32px;
  border: 2px solid var(--navy);
  position: relative;
}

.review-card .quote-mark {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--orange);
  color: var(--navy-deep);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 28px;
  border: 2px solid var(--navy);
}

.review-stars { color: var(--orange); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; margin-top: 8px; }
.review-text { font-size: 16px; line-height: 1.65; color: var(--ink); margin-bottom: 20px; font-style: italic; }

.review-author {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.review-source { font-size: 12px; color: var(--ink-light); margin-top: 2px; font-family: 'Special Elite', serif; letter-spacing: 0.1em; }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--orange);
  padding: 60px 0;
  border-top: 4px solid var(--navy);
  border-bottom: 4px solid var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(10, 31, 92, 0.04) 40px, rgba(10, 31, 92, 0.04) 41px);
}

.cta-strip-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-strip h3 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  max-width: 700px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 80px 0 30px;
  border-top: 4px solid var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand img {
  height: 70px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
}
.footer-brand p { font-size: 15px; color: rgba(245, 239, 228, 0.7); line-height: 1.6; margin-bottom: 20px; }
.footer-brand p.footer-slogan {
  font-size: 14px;
  color: rgba(245, 239, 228, 0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.5;
}
.footer-brand p.footer-slogan em {
  display: block;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  color: rgba(245, 239, 228, 0.7);
  margin-top: 4px;
}

.footer-col h4 {
  color: var(--orange);
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(232, 139, 46, 0.3);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: rgba(245, 239, 228, 0.75);
  font-size: 15px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--orange); }

.footer-contact { font-size: 15px; line-height: 1.8; color: rgba(245, 239, 228, 0.75); }
.footer-contact strong { color: var(--cream); }
.footer-contact .big-phone {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--orange);
  letter-spacing: 0.02em;
  margin: 8px 0;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(245, 239, 228, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(245, 239, 228, 0.5);
}

/* ===== PAGE HEADERS (interior pages) ===== */
.page-header {
  background: var(--navy);
  color: var(--cream);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--orange);
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 20, 64, 0.92) 0%, rgba(10, 31, 92, 0.85) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(232, 139, 46, 0.04) 60px, rgba(232, 139, 46, 0.04) 61px);
  z-index: 1;
}

/* Photo hero variant - bottom gradient treatment, text at bottom */
.page-header-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 420px;
  padding: 0;
  display: flex;
  align-items: flex-end;
}

.page-header-photo::before {
  background: linear-gradient(180deg,
    rgba(6, 20, 64, 0.05) 0%,
    rgba(6, 20, 64, 0.18) 35%,
    rgba(6, 20, 64, 0.65) 70%,
    rgba(6, 20, 64, 0.92) 100%);
}

.page-header-photo .container {
  width: 100%;
  padding-bottom: 36px;
  padding-top: 60px;
}

.page-header-photo h1 {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.page-header-photo p {
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
  color: rgba(245, 239, 228, 0.95);
}

.page-header-inner { position: relative; z-index: 2; text-align: center; }
.page-header h1 { color: var(--cream); font-size: clamp(42px, 6vw, 72px); margin-bottom: 16px; }

.page-header .crumb {
  font-family: 'Special Elite', serif;
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.page-header p { font-size: 18px; color: rgba(245, 239, 228, 0.85); max-width: 680px; margin: 0 auto; }

/* ===== SERVICES PAGE ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding: 80px 0;
  border-bottom: 2px solid var(--cream-dark);
  align-items: start;
}

.service-detail:last-child { border-bottom: none; }

.service-detail-head {
  position: sticky;
  top: 120px;
}

.service-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 80px;
  color: var(--orange);
  line-height: 0.9;
  margin-bottom: 16px;
  opacity: 0.9;
}

.service-detail h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.service-detail-kind {
  font-family: 'Special Elite', serif;
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.service-detail-body p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 18px;
  color: var(--ink);
}

.service-features {
  list-style: none;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.service-features li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.5;
}

.service-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 18px;
}

.services-nav {
  background: var(--cream);
  padding: 40px 0;
  border-bottom: 2px solid var(--cream-dark);
  position: sticky;
  top: 94px;
  z-index: 50;
}

.services-nav-inner {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.services-nav a {
  padding: 10px 18px;
  border: 2px solid var(--navy);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  transition: all 0.2s;
}

.services-nav a:hover { background: var(--navy); color: var(--cream); }

/* ===== ABOUT PAGE ===== */
.about-intro {
  padding: 100px 0;
  background: var(--paper);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro h2 { font-size: clamp(36px, 4.5vw, 56px); margin-bottom: 24px; }
.about-intro p { font-size: 18px; line-height: 1.75; margin-bottom: 18px; color: var(--ink); }

.timeline-section {
  padding: 100px 0;
  background: var(--navy);
  color: var(--cream);
  position: relative;
}

.timeline-section h2 { color: var(--cream); text-align: center; font-size: clamp(36px, 4.5vw, 56px); margin-bottom: 64px; }

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--orange);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--orange);
  border: 4px solid var(--navy);
  box-shadow: 0 0 0 2px var(--orange);
  border-radius: 50%;
  z-index: 2;
}

.timeline-year {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--orange);
  letter-spacing: 0.02em;
}

.timeline-content {
  background: rgba(245, 239, 228, 0.05);
  border: 1px solid rgba(232, 139, 46, 0.3);
  padding: 28px;
}

.timeline-content h3 { color: var(--cream); font-size: 22px; margin-bottom: 10px; }
.timeline-content p { font-size: 15px; color: rgba(245, 239, 228, 0.8); line-height: 1.65; }

.timeline-item:nth-child(even) .timeline-year { text-align: right; }
.timeline-item:nth-child(odd) .timeline-content { order: 3; }
.timeline-item:nth-child(odd) .timeline-year { order: 1; text-align: right; }
.timeline-item:nth-child(even) .timeline-content { order: 1; }
.timeline-item:nth-child(even) .timeline-year { order: 3; }

/* ===== BLOG PAGE ===== */
.blog-intro {
  padding: 80px 0;
  background: var(--paper);
}

.blog-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.mandi-bio {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(232, 139, 46, 0.2), rgba(10, 31, 92, 0.4)),
    var(--navy);
  border: 4px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  color: var(--yellow);
  font-family: 'Special Elite', serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}

.mandi-bio::after {
  content: '3RD GEN';
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: var(--navy-deep);
  padding: 10px 18px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.15em;
  border: 3px solid var(--navy);
}

.blog-intro h2 { font-size: clamp(36px, 4.5vw, 54px); margin-bottom: 20px; }
.blog-intro-lede { font-size: 19px; line-height: 1.7; margin-bottom: 20px; color: var(--ink); }
.blog-intro p { font-size: 16px; line-height: 1.7; margin-bottom: 16px; color: var(--ink-light); }

.blog-embed-section {
  padding: 60px 0 100px;
  background: var(--cream);
}

.blog-embed-head {
  text-align: center;
  margin-bottom: 40px;
}

.blog-embed-head h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 12px; }
.blog-embed-head p { font-size: 16px; color: var(--ink-light); }

.blog-iframe-wrap {
  background: var(--paper);
  border: 3px solid var(--navy);
  padding: 8px;
  box-shadow: var(--shadow-lg);
}

.blog-iframe-wrap iframe {
  width: 100%;
  height: 1600px;
  border: none;
  display: block;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  padding: 80px 0;
}

/* Desktop: info left (column 1), form right (column 2)
   Mobile: DOM order wins — form shows first (high-intent mobile UX) */
.contact-grid .contact-info { order: 1; }
.contact-grid .contact-form-col { order: 2; }

.contact-info h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 20px; }
.contact-info-lede { font-size: 18px; line-height: 1.7; margin-bottom: 36px; color: var(--ink-light); }

.contact-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px dashed rgba(10, 31, 92, 0.2);
}

.contact-block:last-of-type { border-bottom: none; }

.contact-block-label {
  font-family: 'Special Elite', serif;
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-block-value {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.contact-block a { transition: color 0.2s; }
.contact-block a:hover { color: var(--orange); }

.hours-list { margin-top: 8px; }
.hours-list .hour-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 15px;
  color: var(--ink);
}

.hours-list .day { font-family: 'Oswald', sans-serif; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.hours-list .closed { color: var(--rust); font-style: italic; }

.form-wrap {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  position: relative;
}

.form-wrap iframe {
  width: 100%;
  height: 700px;
  border: none;
  display: block;
}

.ghl-placeholder {
  padding: 80px 40px;
  text-align: center;
  background: repeating-linear-gradient(45deg, var(--cream), var(--cream) 20px, var(--cream-dark) 20px, var(--cream-dark) 21px);
  color: var(--navy);
}

.ghl-placeholder h3 {
  font-size: 22px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ghl-placeholder code {
  display: inline-block;
  background: var(--navy);
  color: var(--yellow);
  padding: 8px 14px;
  font-family: 'Special Elite', serif;
  font-size: 13px;
  margin-top: 12px;
  letter-spacing: 0.1em;
}

.ghl-placeholder p { font-size: 15px; color: var(--ink-light); max-width: 500px; margin: 0 auto; }

/* ============================================
   SERVICE DETAIL PAGES (individual landing pages)
   ============================================ */

.svc-hero {
  background: var(--navy);
  color: var(--cream);
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--orange);
}

/* Area-page hero variant with background photo - bottom gradient */
.svc-hero-area {
  background-image: url('assets/photos/mandi-mastin-in-septic-truck.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 50px;
}

.svc-hero-area::before {
  background: linear-gradient(180deg,
    rgba(6, 20, 64, 0.05) 0%,
    rgba(6, 20, 64, 0.25) 30%,
    rgba(6, 20, 64, 0.75) 65%,
    rgba(6, 20, 64, 0.94) 100%) !important;
}

/* Service-page hero variant with background photo - bottom gradient */
.svc-hero-service {
  background-image: url('assets/photos/septic-excavation-northwest-ohio.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 50px;
}

.svc-hero-service::before {
  background: linear-gradient(180deg,
    rgba(6, 20, 64, 0.05) 0%,
    rgba(6, 20, 64, 0.25) 30%,
    rgba(6, 20, 64, 0.75) 65%,
    rgba(6, 20, 64, 0.94) 100%) !important;
}

.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(6, 20, 64, 0.92) 0%, rgba(10, 31, 92, 0.85) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(232, 139, 46, 0.04) 60px, rgba(232, 139, 46, 0.04) 61px);
  z-index: 1;
}

.svc-hero-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(120px, 18vw, 260px);
  color: rgba(245, 217, 72, 0.06);
  letter-spacing: -0.02em;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  line-height: 1;
}

.svc-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  max-width: 760px;
  width: 100%;
}

.svc-hero .eyebrow {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 0.2em;
  background-color: rgba(6, 20, 64, 0.7);
  padding: 6px 14px;
  border-radius: 2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.svc-hero h1 {
  color: var(--cream);
  font-size: clamp(40px, 6vw, 76px);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  line-height: 1.05;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.svc-hero h1 .highlight { color: var(--orange); }

.svc-hero-lede {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(245, 239, 228, 0.95);
  max-width: 600px;
  margin-bottom: 32px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

.svc-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Alternating content rows */
.svc-row {
  padding: 80px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.svc-row:last-of-type { border-bottom: none; }

.svc-row-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.svc-row-even .svc-row-inner {
  direction: rtl;
}
.svc-row-even .svc-row-inner > * {
  direction: ltr;
}

.svc-row-copy .eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.svc-row-copy h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 22px;
  line-height: 1.15;
}

.svc-row-copy p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 18px;
}

.svc-row-copy .btn {
  margin-top: 12px;
  padding: 14px 26px;
  font-size: 14px;
}

.svc-row-image {
  aspect-ratio: 4/3;
  background:
    linear-gradient(135deg, rgba(232, 139, 46, 0.15), rgba(10, 31, 92, 0.25)),
    var(--cream-dark);
  border: 3px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-family: 'Special Elite', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.svc-row-image::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(10, 31, 92, 0.3);
}

/* Alternate backgrounds */
.svc-row-alt { background: var(--cream); }

/* FAQ section */
.svc-faq {
  background: var(--navy);
  color: var(--cream);
  padding: 100px 0;
}

.svc-faq h2 { color: var(--cream); text-align: center; margin-bottom: 48px; font-size: clamp(32px, 4vw, 48px); }

.faq-list { max-width: 860px; margin: 0 auto; }

.faq-item {
  border-top: 1px solid rgba(232, 139, 46, 0.3);
  padding: 24px 0;
}

.faq-item:last-child { border-bottom: 1px solid rgba(232, 139, 46, 0.3); }

.faq-q {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--orange);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.faq-a { font-size: 16px; line-height: 1.7; color: rgba(245, 239, 228, 0.85); }

/* Service directory (replaces old services overview) */
.service-dir {
  padding: 80px 0;
  background: var(--paper);
}

.service-dir-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.service-dir-card {
  background: var(--cream);
  border: 2px solid var(--navy);
  padding: 30px 28px;
  transition: all 0.25s;
  display: block;
  position: relative;
  overflow: hidden;
}

.service-dir-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  background: var(--orange);
  transform: translateX(-6px);
  transition: transform 0.25s;
}

.service-dir-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--navy);
}

.service-dir-card:hover::before { transform: translateX(0); }

.service-dir-card .kind {
  font-family: 'Special Elite', serif;
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-dir-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.service-dir-card p {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.55;
  margin-bottom: 16px;
}

.service-dir-card .arrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-dir-section {
  margin-bottom: 64px;
}

.service-dir-section-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--navy);
}

.service-dir-section-head h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.service-dir-section-head .count {
  font-family: 'Special Elite', serif;
  font-size: 14px;
  color: var(--orange);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============================================
   FLOATING CALL BUTTON (site-wide)
   Sits bottom-left to avoid conflict with GHL chat widget (bottom-right)
   ============================================ */
.floating-call {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: var(--navy-deep);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 24px;
  border: 3px solid var(--navy-deep);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(232, 139, 46, 0.7);
  text-decoration: none;
  transition: all 0.25s ease;
  animation: pulse-ring 2.5s infinite;
}

.floating-call:hover {
  background: var(--orange-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  animation: none;
}

.floating-call .fc-icon {
  width: 36px;
  height: 36px;
  background: var(--navy-deep);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.floating-call .fc-label {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.floating-call .fc-label-top {
  font-size: 10px;
  letter-spacing: 0.15em;
  opacity: 0.8;
  font-family: 'Special Elite', serif;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.floating-call .fc-label-num {
  font-size: 17px;
  letter-spacing: 0.02em;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(232, 139, 46, 0.5); }
  70% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 0 18px rgba(232, 139, 46, 0); }
  100% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(232, 139, 46, 0); }
}

@media (max-width: 680px) {
  .floating-call {
    bottom: 16px;
    left: 16px;
    padding: 12px 18px;
    font-size: 14px;
  }
  .floating-call .fc-icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
  .floating-call .fc-label-num {
    font-size: 15px;
  }
  .floating-call .fc-label-top {
    font-size: 9px;
  }
}

/* === EXPANDED SERVICE PAGE CONTENT === */

/* Warning signs / checklist box */
.svc-callout {
  background: var(--cream);
  border-left: 6px solid var(--orange);
  padding: 28px 32px;
  margin: 28px 0;
  position: relative;
}

.svc-callout-label {
  font-family: 'Special Elite', serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.svc-callout h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 16px 0;
  letter-spacing: 0.02em;
}

.svc-callout-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-callout-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--ink);
  line-height: 1.6;
  font-size: 15px;
}

.svc-callout-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--orange);
  font-weight: 700;
  font-size: 18px;
}

/* Numbered process steps */
.svc-process {
  background: var(--navy);
  color: var(--cream);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.svc-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(232, 139, 46, 0.04) 60px, rgba(232, 139, 46, 0.04) 61px);
  pointer-events: none;
}

.svc-process .container {
  position: relative;
  z-index: 2;
}

.svc-process-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.svc-process-head h2 {
  color: var(--cream);
  font-size: clamp(28px, 3.8vw, 40px);
  margin: 8px 0 14px;
}

.svc-process-head p {
  color: rgba(245, 239, 228, 0.85);
  font-size: 16px;
  line-height: 1.6;
}

.svc-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.svc-process-step {
  background: rgba(245, 239, 228, 0.04);
  border: 2px solid rgba(232, 139, 46, 0.3);
  padding: 28px 24px;
  position: relative;
}

.svc-process-step .num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
}

.svc-process-step h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--cream);
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

.svc-process-step p {
  color: rgba(245, 239, 228, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* "Why Mastin" trust block */
.svc-why {
  background: var(--paper);
  padding: 80px 0;
  border-top: 2px solid var(--cream-dark);
  border-bottom: 2px solid var(--cream-dark);
}

.svc-why-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.svc-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.svc-why-card {
  background: var(--cream);
  border: 2px solid var(--navy);
  padding: 28px 24px;
  text-align: center;
}

.svc-why-card .icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.svc-why-card h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: 0.04em;
}

.svc-why-card p {
  color: var(--ink-light);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Related services links */
.svc-related {
  padding: 60px 0;
  background: var(--cream);
}

.svc-related-head {
  text-align: center;
  margin-bottom: 30px;
}

.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.svc-related-card {
  background: var(--paper);
  border: 2px solid var(--navy);
  padding: 18px 22px;
  text-decoration: none;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.svc-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.svc-related-card .label {
  font-family: 'Special Elite', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.svc-related-card .title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
}

/* Inline content emphasis paragraph (subtle highlight) */
.svc-row-copy .lede {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  margin: 20px 0;
}

.svc-row-copy ul.inline-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}

.svc-row-copy ul.inline-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}

.svc-row-copy ul.inline-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero-inner,
  .story-grid,
  .service-area-grid,
  .about-intro-grid,
  .blog-intro-grid,
  .contact-grid,
  .mandi-feature { grid-template-columns: 1fr; gap: 40px; }

  /* Mobile: form first (high intent), info second */
  .contact-grid { display: flex; flex-direction: column; }
  .contact-grid .contact-form-col { order: 1; }
  .contact-grid .contact-info { order: 2; }

  .service-detail { grid-template-columns: 1fr; }
  .service-detail-head { position: static; }

  .timeline::before { left: 20px; }
  .timeline-item { grid-template-columns: 40px 1fr; gap: 20px; }
  .timeline-dot { grid-row: span 1; }
  .timeline-item:nth-child(odd) .timeline-year,
  .timeline-item:nth-child(even) .timeline-year { text-align: left; order: 2; font-size: 32px; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { order: 3; grid-column: 2; }
  .timeline-item:nth-child(odd) .timeline-year,
  .timeline-item:nth-child(even) .timeline-year { grid-column: 2; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Service detail pages mobile */
  .svc-row-inner { grid-template-columns: 1fr; gap: 40px; }
  .svc-row-even .svc-row-inner { direction: ltr; }
  .svc-row { padding: 60px 0; }
  .svc-hero { padding: 60px 0 80px; }
  .svc-hero-area, .svc-hero-service { min-height: 380px; padding: 80px 0 40px; }
}

@media (max-width: 680px) {
  .top-strip { font-size: 12px; padding: 8px 0; }
  .top-strip .divider { display: none; }
  .top-strip-inner { justify-content: center; text-align: center; }

  /* Tighter page headers on mobile so form/content is reachable faster */
  .page-header { padding: 40px 0 50px; }
  .page-header h1 { font-size: 38px; }
  .page-header p { font-size: 15px; }
  .page-header-photo { min-height: 320px; padding: 0; }
  .page-header-photo .container { padding-bottom: 24px; padding-top: 40px; }
  .contact-grid { padding: 20px 0 40px; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 3px solid var(--orange);
  }
  .mobile-toggle { display: block; }

  .section { padding: 70px 0; }
  .hero { padding: 60px 0 80px; }
  .hero-stats { gap: 24px; }
  .hero-stat .num { font-size: 32px; }

  .hero-badge-big .big-num { font-size: 70px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }

  .mandi-feature { padding: 40px 24px; }

  .cta-strip-inner { flex-direction: column; text-align: center; }

  .service-features { grid-template-columns: 1fr; }
}
